  .feature-icon-wrapper {
        transition: all 0.3s ease;
    }

    .feature-item:hover .feature-icon-wrapper {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .image-wrapper img {
        transition: transform 0.5s ease;
    }

    .image-wrapper:hover img {
        transform: scale(1.05);
    }

    @media (max-width: 992px) {
        .main-title {
            font-size: 2.2rem !important;
        }

        .image-wrapper {
            height: 380px !important;
        }
    }

    @media (max-width: 768px) {
        .main-title {
            font-size: 1.8rem !important;
        }

        .image-wrapper {
            height: 320px !important;
        }

        .feature-icon-wrapper {
            width: 50px !important;
            height: 50px !important;
        }

        .feature-title {
            font-size: 1rem !important;
        }
    }




    .guided-demo-form-section {
  background: linear-gradient(135deg, #F5F7FA, #E8ECF1);
  padding: 100px 0;
  position: relative;
}
.guided-demo-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2078FF, #0E2041, #2078FF);
}
/* ================= LEFT INTRO CONTENT ================= */
.demo-form-intro {
  padding-right: 30px;
}
.demo-form-intro h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0E2041;
  margin-bottom: 40px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}
.intro-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.intro-points p {
  font-size: 16px;
  font-weight: 400;
  color: #2C3E50;
  line-height: 1.6;
  position: relative;
  padding-left: 0;
}
.intro-points p.highlight {
  font-weight: 600;
  color: #0E2041;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 2px solid rgba(32, 120, 255, 0.3);
}
/* ================= RIGHT FORM ================= */
.guided-contact-form {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 50px 45px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(32, 120, 255, 0.1);
}
/* Form Labels */
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.required {
  color: #E74C3C;
  font-weight: 700;
}
/* Form Inputs */
.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Sora', sans-serif;
  color: #2C3E50;
  background: #F8F9FA;
  border: 2px solid #E1E8ED;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}
.form-input:focus {
  background: #FFFFFF;
  border-color: #2078FF;
  box-shadow: 0 0 0 4px rgba(32, 120, 255, 0.1);
}
.form-input::placeholder {
  color: #95A5A6;
  font-weight: 300;
}
/* Field Helper Text */
.field-helper {
  display: block;
  font-size: 12px;
  color: #7F8C8D;
  margin-top: 5px;
  font-weight: 300;
}
/* Textarea */
textarea.form-input {
  resize: vertical;
  min-height: 120px;
  font-family: 'Sora', sans-serif;
}
/* ================= CUSTOM CHECKBOX ================= */
.form-check-wrapper {
  margin: 25px 0;
}
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  user-select: none;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 22px;
  width: 22px;
  background: #F8F9FA;
  border: 2px solid #CBD5E0;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.custom-checkbox:hover .checkmark {
  border-color: #2078FF;
  background: rgba(32, 120, 255, 0.05);
}
.custom-checkbox input:checked ~ .checkmark {
  background: #2078FF;
  border-color: #2078FF;
}
.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}
.checkbox-label {
  font-size: 14px;
  color: #2C3E50;
  line-height: 1.6;
  font-weight: 400;
}
/* ================= LEGAL NOTICE ================= */
.legal-notice {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #2078FF;
}
.legal-notice p {
  font-size: 12px;
  line-height: 1.7;
  color: #5A6C7D;
  margin-bottom: 12px;
}
.legal-notice a {
  color: #2078FF;
  text-decoration: none;
  font-weight: 500;
}
.legal-notice a:hover {
  text-decoration: underline;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-links a {
  font-size: 13px;
  color: #2078FF;
  text-decoration: underline;
  font-weight: 500;
}
/* ================= SUBMIT BUTTON ================= */
.submit-btn-demo {
  width: 100%;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #2078FF, #0E2041);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(32, 120, 255, 0.3);
}
.submit-btn-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(32, 120, 255, 0.5);
  background: linear-gradient(135deg, #1A5FD6, #0A1A2E);
}
.submit-btn-demo:active {
  transform: translateY(-1px);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .demo-form-intro {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .demo-form-intro h2 {
    font-size: 32px;
  }
  .guided-contact-form {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .guided-demo-form-section {
    padding: 60px 0;
  }
  .demo-form-intro h2 {
    font-size: 26px;
  }
  .intro-points p {
    font-size: 15px;
  }
  .guided-contact-form {
    padding: 30px 20px;
  }
  .form-input {
    padding: 12px 14px;
    font-size: 14px;
  }
  .submit-btn-demo {
    padding: 14px 30px;
    font-size: 15px;
  }
}






.garden-hero-section {
        position: relative;
    }

    /* Diagonal cut effect for content */
    .content-wrapper {
        position: relative;
    }

    /* Button hover effect */
    .btn-dark:hover {
        background-color: #333 !important;
        transform: translateX(5px);
        transition: all 0.3s ease;
    }

    .btn-dark:hover svg {
        transform: translateX(5px);
        transition: transform 0.3s ease;
    }

    /* Image zoom on hover */
    .image-wrapper img {
        transition: transform 0.5s ease;
    }

    .image-wrapper:hover img {
        transform: scale(1.05);
    }

    /* Circle icon hover */
    .rounded-circle:hover {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .content-wrapper {
            clip-path: none !important;
            max-width: 100% !important;
            margin: 0 !important;
        }

        .image-wrapper {
            clip-path: none !important;
            height: 400px !important;
        }

        .hero-title {
            font-size: 2rem !important;
        }

        .hero-description {
            font-size: 0.9rem !important;
        }
    }

    @media (max-width: 768px) {
        .content-wrapper {
            padding: 2rem !important;
        }

        .image-wrapper {
            height: 350px !important;
        }

        .hero-title {
            font-size: 1.7rem !important;
        }

        .hero-description {
            font-size: 0.85rem !important;
        }
    }




    .landscape-services-section {
  position: relative;
  padding: 6rem 0;
  background-image: url('/images/processbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.section-content {
  position: relative;
  z-index: 2;
}

/* Dark overlay */
.landscape-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.77);
  z-index: 1;
}

.service-block {
  transition: transform 0.3s ease;
}

.service-block:hover {
  transform: translateY(-8px);
}

.service-image {
  transition: all 0.3s ease;
}

.service-image img {
  transition: transform 0.5s ease;
}

.service-block:hover .service-image img {
  transform: scale(1.08);
}

.service-block:hover .service-image {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .col-lg-3[style*="margin-top"] {
    margin-top: 0 !important;
  }

  .service-block {
    margin-bottom: 3rem;
  }

  .service-title {
    font-size: 1.1rem !important;
  }

  .service-description {
    font-size: 0.85rem !important;
  }

  .service-image img {
    height: 250px !important;
  }

  .landscape-services-section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .service-title {
    font-size: 1rem !important;
  }

  .service-description {
    font-size: 0.8rem !important;
  }

  .service-image img {
    height: 220px !important;
  }

  .landscape-services-section {
    padding: 3rem 0;
  }
}

/* Ensure center column is lower on desktop only */
@media (min-width: 993px) {
  .col-lg-3:nth-child(2) {
    margin-top: 100px;
  }
}