/* Main container styling */
.icon-features-slider {
  position: relative;
  padding: 20px 0 60px;
  overflow: hidden;
}

/* Feature card styling */
.icon-feature-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Image/icon styling */
.icon-feature-img-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  padding: 18px;
  transition: all 0.3s ease;
}

.icon-feature-card:hover .icon-feature-img-box {
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  transform: scale(1.05);
}

.icon-feature-img-box img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0.9);
}

.icon-feature-card:hover .icon-feature-img-box img {
  filter: brightness(0) invert(1);
}

/* Title styling */
.icon-feature-title {
  color: #1a3c2e;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.icon-feature-card:hover .icon-feature-title {
  color: #2d6a4f;
}

/* Description styling */
.icon-feature-desc {
  color: #5a6c5d;
  font-size: 1rem;
  line-height: 1.7;
  flex-grow: 1;
}

/* Pagination styling */
.icon-features-slider .swiper-pagination {
  bottom: 20px !important;
}

.icon-features-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(45, 106, 79, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.icon-features-slider .swiper-pagination-bullet-active {
  background: #2d6a4f;
  transform: scale(1.2);
}

/* Responsive design */
@media (max-width: 768px) {
  .icon-feature-card {
    padding: 25px 20px;
    margin: 0 10px;
  }
  
  .icon-feature-img-box {
    width: 70px;
    height: 70px;
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .icon-feature-img-box img {
    width: 38px;
    height: 38px;
  }
  
  .icon-feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .icon-feature-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* Tablet responsive */
@media (max-width: 1024px) {
  .swiper-slide {
    width: calc(50% - 15px) !important;
    margin-right: 30px !important;
  }
}

/* Mobile responsive */
@media (max-width: 640px) {
  .swiper-slide {
    width: calc(100% - 20px) !important;
    margin-right: 20px !important;
  }
  
  .icon-features-slider {
    padding: 15px 0 50px;
  }
}

/* Improve swiper container layout */
.swiper-wrapper {

  align-items: stretch;
}

/* Ensure all cards have equal height */
.swiper-slide {
  height: auto;
}


.contact-info-three-col-section .contact-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px 30px!important;
    text-align: center;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-info-three-col-section .contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */



/* Title */
.contact-info-three-col-section .contact-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

/* Description */
.contact-info-three-col-section .contact-desc p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

/* Links */
.contact-info-three-col-section .contact-desc a {
    display: inline-block;
    margin-top: 6px;
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-three-col-section .contact-desc a:hover {
    color: #084298;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 767px) {
    .contact-info-three-col-section {
        padding: 50px 0;
    }

    .contact-info-three-col-section .contact-card {
        padding: 30px 25px;
    }
}

.contact-form-clean-section .main-heading{
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #111827;
  margin-bottom: 16px;
}

.contact-form-clean-section .main-desc{
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 420px;
}

/* Right column form card */
.contact-form-clean-section .form-card{
  background: #ffffff!important;
  border-radius: 18px;
  padding: 34px!important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  border: 1px solid rgba(17,24,39,0.08);
}

/* CF7 label + fields */
.contact-form-clean-section .wpcf7 form label{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.contact-form-clean-section .wpcf7 form label span{
  display:block;
  margin-top: 8px;
}

/* Inputs */
.contact-form-clean-section .wpcf7 input[type="text"],
.contact-form-clean-section .wpcf7 input[type="email"],
.contact-form-clean-section .wpcf7 textarea{
  width: 100%;
  background: #f9fafb;
  border: 1px solid #dcdee3!important;
  border-radius: 12px!important;
  padding: 12px 14px;
  font-size: 15px;
  color: #111827;
  outline: none;
  transition: all .25s ease;
}

.contact-form-clean-section .wpcf7 textarea{
  min-height: 130px;
  resize: vertical;
}

/* Focus */
.contact-form-clean-section .wpcf7 input:focus,
.contact-form-clean-section .wpcf7 textarea:focus{
  background: #fff;
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13,110,253,0.15);
}

/* Submit button */
.contact-form-clean-section .wpcf7 input[type="submit"]{
  width: 100%;
  margin-top: 10px;
  padding: 13px 16px;
  border: 0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0d6efd, #20c997);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.contact-form-clean-section .wpcf7 input[type="submit"]:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(13,110,253,0.25);
}

.contact-form-clean-section .wpcf7 input[type="submit"]:active{
  transform: translateY(0);
  opacity: .9;
}

/* CF7 validation messages */
.contact-form-clean-section .wpcf7-not-valid-tip{
  font-size: 13px;
  margin-top: 6px;
  color: #dc2626;
}

.contact-form-clean-section .wpcf7-response-output{
  margin: 16px 0 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

/* Mobile spacing */
@media (max-width: 991px){
  .contact-form-clean-section{
    padding: 60px 0;
  }
}

	div#CDSWIDSSP {
    width: auto !important;
}

/* --- CF7 Enquiry Form Style --- */
.wpcf7 form { max-width: 420px; }

.cf7-title{
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  color: #0f3b2e; /* dark green */
}

.cf7-field{ margin-bottom: 14px; }

.cf7-field label{
  display:block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: #111;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 textarea{
  width: 100%;
  border: 1px solid #0f3b2e!important;
  background: #f7f8fb;
  padding: 12px 14px;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus{
  border-color:#c9d6d1;
  background:#fff;
}

.cf7-inline{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
}

.cf7-actions{ margin-top: 8px; }

.wpcf7 input[type="submit"].cf7-btn{
  width: 100%;
  border: 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;background: #19795d;
}

/* Mobile */
@media (max-width:480px){
  .cf7-inline{ grid-template-columns: 1fr; }
}