/* =====================================================
   KISSANDOCTOR WEBSITE
   HEADER + HERO CSS
===================================================== */


/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {

    --primary-color: #2f7d32;
    --primary-dark: #1f5d25;
    --primary-light: #eaf6e8;

    --heading-color: #18321c;
    --text-color: #222222;

    --white: #ffffff;
    --off-white: #f8faf6;

    --earth-color: #8a6a4a;

    --border-color: #eeeeee;

    --highlight-yellow: #d9a441;
    --highlight-orange: #d9822b;

    --nav-font: "Open Sans", sans-serif;
    --heading-font: "Marcellus", serif;
}


/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    padding: 0;

    font-family: var(--nav-font);

    color: var(--text-color);

    background: #ffffff;

}


/* =====================================================
   HEADER
===================================================== */

.header {

    width: 100%;

    height: 88px;

    background: #ffffff;

    border-bottom: 1px solid var(--border-color);

    position: relative;

    z-index: 999;

    transition: all 0.3s ease;

}


/* =====================================================
   HEADER CONTAINER
===================================================== */

.header-container {

    width: 100%;

    max-width: 1320px;

    height: 100%;

    margin: 0 auto;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =====================================================
   LOGO
===================================================== */

.logo {

    display: flex;

    align-items: center;

    text-decoration: none;

    flex-shrink: 0;

}


.logo img {

    width: auto;

    max-width: 190px;

    max-height: 62px;

    display: block;

    object-fit: contain;

    transition: all 0.3s ease;

}


/* =====================================================
   DESKTOP NAVIGATION
===================================================== */

@media (min-width: 1200px) {


    .navmenu {

        display: flex;

        align-items: center;

    }


    .navmenu ul {

        margin: 0;

        padding: 0;

        display: flex;

        align-items: center;

        list-style: none;

        gap: 2px;

    }


    .navmenu li {

        position: relative;

    }


    /* =================================================
       NORMAL NAVIGATION LINKS
    ================================================== */

    .navmenu > ul > li > a {

        position: relative;

        height: 88px;

        padding: 0 12px;

        display: flex;

        align-items: center;

        justify-content: center;

        color: #222222;

        font-family: var(--nav-font);

        font-size: 14px;

        font-weight: 600;

        text-decoration: none;

        white-space: nowrap;

        transition: all 0.3s ease;

    }


    /* =================================================
       NAVIGATION HOVER
    ================================================== */

    .navmenu > ul > li > a:not(.farm-assessment-btn):hover {

        color: var(--primary-color);

    }


    /* =================================================
       ACTIVE NAVIGATION
    ================================================== */

    .navmenu > ul > li > a.active {

        color: var(--primary-color);

    }


    /* =================================================
       NAVIGATION UNDERLINE
    ================================================== */

    .navmenu > ul > li > a:not(.farm-assessment-btn)::after {

        content: "";

        position: absolute;

        left: 12px;

        right: 12px;

        bottom: 20px;

        height: 2px;

        background: var(--primary-color);

        transform: scaleX(0);

        transform-origin: center;

        transition: transform 0.3s ease;

    }


    .navmenu > ul > li > a:not(.farm-assessment-btn):hover::after,

    .navmenu > ul > li > a.active:not(.farm-assessment-btn)::after {

        transform: scaleX(1);

    }


    /* =================================================
       CTA ITEM
    ================================================== */

    .navmenu .cta-item {

        margin-left: 18px;

    }


    /* =================================================
       FARM ASSESSMENT BUTTON
    ================================================== */

    .navmenu .farm-assessment-btn {

        height: auto !important;

        min-height: 48px;

        padding: 0 20px !important;

        display: inline-flex !important;

        align-items: center;

        justify-content: center;

        gap: 9px;

        background: var(--primary-color);

        border: 1px solid var(--primary-color);

        border-radius: 6px;

        color: #ffffff !important;

        font-family: var(--nav-font);

        font-size: 14px;

        font-weight: 700;

        text-decoration: none;

        white-space: nowrap;

        transition: all 0.3s ease;

    }


    /* CTA ARROW */

    .farm-assessment-btn i {

        font-size: 16px;

        line-height: 1;

        transition: transform 0.3s ease;

    }


    /* CTA HOVER */

    .farm-assessment-btn:hover {

        background: var(--primary-dark);

        border-color: var(--primary-dark);

        color: #ffffff !important;

        transform: translateY(-2px);

        box-shadow:
            0 7px 18px rgba(47, 125, 50, 0.25);

    }


    .farm-assessment-btn:hover i {

        transform: translateX(4px);

    }


    /* Remove underline from CTA */

    .farm-assessment-btn::after {

        display: none !important;

    }

}


/* =====================================================
   SCROLLED HEADER
===================================================== */

.header.scrolled {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    background: rgba(255, 255, 255, 0.97);

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08);

}


/* =====================================================
   HERO SECTION
===================================================== */

.hero-section {

    position: relative;

    width: 100%;

    min-height: calc(100vh - 88px);

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =====================================================
   HERO BACKGROUND
===================================================== */

.hero-background {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    z-index: 1;

}


.hero-background img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

}


/* =====================================================
   HERO OVERLAY
===================================================== */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(10, 35, 14, 0.72) 0%,
            rgba(18, 50, 22, 0.60) 50%,
            rgba(18, 50, 22, 0.55) 100%
        );

}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    position: relative;

    z-index: 3;

    width: 100%;

    min-height: calc(100vh - 88px);

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =====================================================
   HERO BOOTSTRAP CONTAINER
===================================================== */

.hero-content .container {

    width: 100%;

    display: flex;

    justify-content: center;

}


/* =====================================================
   HERO TEXT
===================================================== */

.hero-text {

    width: 100%;

    max-width: 900px;

    margin-left: auto;

    margin-right: auto;

    padding: 80px 20px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

}


/* =====================================================
   BRAND NAME
===================================================== */

.hero-brand {

    display: inline-block;

    margin-bottom: 14px;

    color: #ffffff;

    font-family: var(--nav-font);

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

}


/* =====================================================
   HERO TAGLINE
===================================================== */

.hero-text h1 {

    margin: 0 0 22px 0;

    color: #ffffff;

    font-family: var(--heading-font);

    font-size: 64px;

    line-height: 1.1;

    font-weight: 400;

}


/* =====================================================
   HERO MAIN HEADING
===================================================== */

.hero-text h2 {

    margin: 0 0 25px 0;

    padding: 0;

    color: #ffffff;

    font-family: var(--heading-font);

    font-size: 30px;

    line-height: 1.4;

    font-weight: 400;

}


/* =====================================================
   HERO DESCRIPTION
===================================================== */

.hero-text p {

    width: 100%;

    max-width: 760px;

    margin: 0 auto 35px auto;

    color: rgba(255, 255, 255, 0.92);

    font-family: var(--nav-font);

    font-size: 17px;

    line-height: 1.8;

    font-weight: 400;

}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

}


/* =====================================================
   COMMON HERO BUTTON
===================================================== */

.hero-btn {

    min-height: 52px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 6px;

    font-family: var(--nav-font);

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.3s ease;

}


/* =====================================================
   HERO BUTTON ICON
===================================================== */

.hero-btn i {

    font-size: 17px;

    transition: transform 0.3s ease;

}


/* =====================================================
   PRIMARY BUTTON
===================================================== */

.primary-btn {

    background: var(--primary-color);

    border: 1px solid var(--primary-color);

    color: #ffffff;

}


.primary-btn:hover {

    background: var(--primary-dark);

    border-color: var(--primary-dark);

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.20);

}


.primary-btn:hover i {

    transform: translateX(4px);

}


/* =====================================================
   SECONDARY BUTTON
===================================================== */

.secondary-btn {

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.75);

    color: #ffffff;

    backdrop-filter: blur(5px);

}


.secondary-btn:hover {

    background: #ffffff;

    border-color: #ffffff;

    color: var(--primary-color);

    transform: translateY(-2px);

}


.secondary-btn:hover i {

    transform: translateX(4px);

}


/* =====================================================
   MOBILE NAVIGATION ICON
===================================================== */

.mobile-nav-toggle {

    display: none;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199px) {


    /* Header */

    .header {

        height: 76px;

    }


    .header-container {

        padding: 0 20px;

    }


    .logo img {

        max-width: 175px;

        max-height: 54px;

    }


    /* Mobile menu icon */

    .mobile-nav-toggle {

        display: block;

        color: var(--primary-color);

        font-size: 30px;

        line-height: 1;

        cursor: pointer;

    }


    /* Navigation wrapper */

    .navmenu {

        position: relative;

    }


    /* Mobile menu */

    .navmenu ul {

        display: none;

        position: absolute;

        top: 50px;

        right: 0;

        width: 300px;

        padding: 15px;

        margin: 0;

        background: #ffffff;

        border-radius: 8px;

        box-shadow:
            0 10px 35px rgba(0, 0, 0, 0.12);

        list-style: none;

        z-index: 1000;

    }


    .navmenu.mobile-nav-active ul {

        display: block;

    }


    .navmenu li {

        width: 100%;

    }


    .navmenu li a {

        width: 100%;

        min-height: auto;

        padding: 12px 14px;

        display: flex;

        align-items: center;

        color: #222222;

        font-family: var(--nav-font);

        font-size: 15px;

        font-weight: 600;

        text-decoration: none;

        border-radius: 5px;

        transition: all 0.3s ease;

    }


    .navmenu li a:hover,

    .navmenu li a.active {

        color: var(--primary-color);

        background: var(--primary-light);

    }


    /* Mobile CTA */

    .navmenu .cta-item {

        margin-top: 10px;

    }


    .navmenu .farm-assessment-btn {

        min-height: 48px;

        justify-content: center;

        background: var(--primary-color) !important;

        color: #ffffff !important;

        border-radius: 6px;

    }


    .navmenu .farm-assessment-btn:hover {

        background: var(--primary-dark) !important;

        color: #ffffff !important;

    }


    /* Hero */

    .hero-section {

        min-height: calc(100vh - 76px);

    }


    .hero-content {

        min-height: calc(100vh - 76px);

    }


    .hero-text {

        max-width: 800px;

        padding: 70px 20px;

    }


    .hero-text h1 {

        font-size: 54px;

    }


    .hero-text h2 {

        font-size: 27px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {


    .header {

        height: 76px;

    }


    .header-container {

        padding: 0 15px;

    }


    .logo img {

        max-width: 155px;

        max-height: 50px;

    }


    /* Hero */

    .hero-section {

        min-height: 720px;

    }


    .hero-content {

        min-height: 720px;

        align-items: center;

    }


    .hero-content .container {

        padding-left: 15px;

        padding-right: 15px;

    }


    .hero-text {

        max-width: 100%;

        padding: 50px 10px;

        text-align: center;

    }


    /* Brand */

    .hero-brand {

        font-size: 14px;

        letter-spacing: 2px;

        margin-bottom: 12px;

    }


    /* Tagline */

    .hero-text h1 {

        font-size: 43px;

        line-height: 1.15;

        margin-bottom: 18px;

    }


    /* Heading */

    .hero-text h2 {

        font-size: 23px;

        line-height: 1.4;

        margin-bottom: 20px;

    }


    /* Description */

    .hero-text p {

        max-width: 100%;

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 28px;

    }


    /* Buttons */

    .hero-buttons {

        width: 100%;

        flex-direction: column;

        align-items: center;

        gap: 12px;

    }


    .hero-btn {

        width: 100%;

        max-width: 320px;

        min-height: 50px;

    }


    /* Mobile overlay */

    .hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(10, 35, 14, 0.80),
                rgba(18, 50, 22, 0.68)
            );

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {


    .logo img {

        max-width: 145px;

    }


    .hero-section {

        min-height: 680px;

    }


    .hero-content {

        min-height: 680px;

    }


    .hero-text {

        padding: 40px 10px;

    }


    .hero-text h1 {

        font-size: 37px;

    }


    .hero-text h2 {

        font-size: 20px;

    }


    .hero-text p {

        font-size: 14px;

        line-height: 1.7;

    }


    .hero-btn {

        max-width: 100%;

    }

}

/* =======================================================
   WHAT WE DO SECTION
======================================================= */

.what-we-do-section {
  padding: 100px 0;
  background: #ffffff;
}


/* Section Heading */

.section-heading {
  max-width: 780px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;

  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 700;

  color: var(--primary-color);

  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 18px;

  font-family: var(--heading-font);
  font-size: 46px;
  font-weight: 400;

  line-height: 1.25;

  color: var(--heading-color);
}

.section-heading p {
  max-width: 680px;
  margin: 0 auto;

  font-family: var(--nav-font);
  font-size: 16px;
  line-height: 1.8;

  color: #666666;
}


/* Solutions Grid */

.solutions-grid {
  margin-top: 10px;
}


/* Solution Card */

.solution-card {
  height: 100%;

  padding: 35px 30px;

  background: #ffffff;

  border: 1px solid #e7eee7;
  border-radius: 12px;

  box-shadow: 0 8px 30px rgba(30, 70, 35, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;

  position: relative;
  overflow: hidden;
}


/* Small green line on top */

.solution-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 4px;

  background: var(--primary-color);

  transition: width 0.35s ease;
}


.solution-card:hover {
  transform: translateY(-8px);

  border-color: rgba(47, 125, 50, 0.25);

  box-shadow: 0 18px 45px rgba(30, 70, 35, 0.12);
}


.solution-card:hover::before {
  width: 100%;
}


/* Icon */

.solution-icon {
  width: 64px;
  height: 64px;

  margin-bottom: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: var(--primary-light);

  color: var(--primary-color);

  font-size: 29px;

  transition: all 0.35s ease;
}


.solution-card:hover .solution-icon {
  background: var(--primary-color);
  color: #ffffff;

  transform: scale(1.05);
}


/* Card Content */

.solution-content h3 {
  margin: 0 0 10px;

  font-family: var(--heading-font);
  font-size: 25px;
  font-weight: 400;

  color: var(--heading-color);
}


.solution-content h4 {
  margin: 0 0 14px;

  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 700;

  line-height: 1.5;

  color: #315c35;
}


.solution-content p {
  margin: 0 0 22px;

  font-family: var(--nav-font);
  font-size: 14px;

  line-height: 1.75;

  color: #666666;
}


/* Learn More */

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 700;

  color: var(--primary-color);

  text-decoration: none;

  transition: all 0.3s ease;
}


.learn-more i {
  font-size: 16px;

  transition: transform 0.3s ease;
}


.learn-more:hover {
  color: var(--primary-dark);
}


.learn-more:hover i {
  transform: translateX(5px);
}


/* =======================================================
   WHAT WE DO - TABLET
======================================================= */

@media (max-width: 991px) {

  .what-we-do-section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2 {
    font-size: 40px;
  }

}


/* =======================================================
   WHAT WE DO - MOBILE
======================================================= */

@media (max-width: 767px) {

  .what-we-do-section {
    padding: 65px 0;
  }

  .section-heading {
    padding: 0 15px;
    margin-bottom: 40px;
  }

  .section-eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading p {
    font-size: 15px;
    line-height: 1.7;
  }

  .solution-card {
    padding: 30px 25px;
  }

  .solution-icon {
    width: 58px;
    height: 58px;

    font-size: 26px;
  }

  .solution-content h3 {
    font-size: 23px;
  }

}


/* =======================================================
   WHAT WE DO - SMALL MOBILE
======================================================= */

@media (max-width: 480px) {

  .what-we-do-section {
    padding: 55px 0;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .solution-card {
    padding: 28px 22px;
  }

}

/* =======================================================
   OUR APPROACH SECTION
======================================================= */

.our-approach-section {
  position: relative;

  padding: 110px 0;

  background: #f4f8f2;
}


/* Section Heading */

.approach-heading {
  max-width: 850px;
  margin-bottom: 75px;
}

.approach-heading h2 {
  font-size: 46px;
  line-height: 1.3;
}

.approach-heading p {
  max-width: 720px;
}


/* =======================================================
   APPROACH STEPS
======================================================= */

.approach-steps {
  max-width: 850px;

  margin: 0 auto;

  position: relative;
}


/* Vertical connecting line */

.approach-steps::before {
  content: "";

  position: absolute;

  top: 40px;
  bottom: 40px;

  left: 45px;

  width: 2px;

  background: #cfe1ce;
}


/* Individual Step */

.approach-step {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 150px;

  margin-bottom: 12px;

  padding: 25px 35px 25px 0;

  background: #ffffff;

  border: 1px solid #e3ebe2;

  border-radius: 12px;

  box-shadow: 0 7px 25px rgba(30, 70, 35, 0.05);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


.approach-step:hover {
  transform: translateX(7px);

  border-color: rgba(47, 125, 50, 0.25);

  box-shadow: 0 14px 35px rgba(30, 70, 35, 0.10);
}


/* Step Number */

.step-number {
  position: relative;

  z-index: 3;

  flex: 0 0 90px;

  width: 90px;
  height: 90px;

  margin: 0 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--primary-color);

  color: #ffffff;

  font-family: var(--heading-font);

  font-size: 24px;

  box-shadow:
    0 0 0 8px #f4f8f2,
    0 0 0 9px #cfe1ce;
}


/* Icon */

.step-icon {
  width: 55px;
  height: 55px;

  margin-right: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 10px;

  background: var(--primary-light);

  color: var(--primary-color);

  font-size: 25px;

  transition: all 0.3s ease;
}


.approach-step:hover .step-icon {
  background: var(--primary-color);

  color: #ffffff;
}


/* Step Content */

.step-content {
  flex: 1;
}


.step-label {
  display: block;

  margin-bottom: 5px;

  font-family: var(--nav-font);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;

  color: var(--primary-color);
}


.step-content h3 {
  margin: 0 0 7px;

  font-family: var(--heading-font);

  font-size: 27px;

  font-weight: 400;

  color: var(--heading-color);
}


.step-content p {
  margin: 0;

  font-family: var(--nav-font);

  font-size: 14px;

  line-height: 1.7;

  color: #666666;
}


/* =======================================================
   CONNECTORS
======================================================= */

.step-connector {
  position: relative;

  z-index: 4;

  width: 32px;
  height: 32px;

  margin: -2px 0 -2px 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #ffffff;

  border: 1px solid #cfe1ce;

  color: var(--primary-color);

  font-size: 15px;
}


/* =======================================================
   BRAND PHILOSOPHY
======================================================= */

.approach-philosophy {
  max-width: 900px;

  margin: 80px auto 0;

  display: flex;
  align-items: center;

  gap: 30px;
}


.philosophy-line {
  flex: 1;

  height: 1px;

  background: #c9d9c7;
}


.philosophy-content {
  text-align: center;

  min-width: 420px;
}


.philosophy-content i {
  display: block;

  margin-bottom: 10px;

  font-size: 28px;

  color: var(--primary-color);
}


.philosophy-content h3 {
  margin: 0 0 8px;

  font-family: var(--heading-font);

  font-size: 30px;

  font-weight: 400;

  font-style: italic;

  color: var(--heading-color);
}


.philosophy-content p {
  margin: 0;

  font-family: var(--nav-font);

  font-size: 14px;

  color: #6a6a6a;
}


/* =======================================================
   APPROACH - TABLET
======================================================= */

@media (max-width: 991px) {

  .our-approach-section {
    padding: 85px 0;
  }

  .approach-heading {
    margin-bottom: 55px;
  }

  .approach-heading h2 {
    font-size: 40px;
  }

  .approach-step {
    padding-right: 25px;
  }

  .step-number {
    flex-basis: 75px;

    width: 75px;
    height: 75px;

    margin: 0 25px;

    font-size: 20px;
  }

  .step-icon {
    width: 50px;
    height: 50px;

    margin-right: 20px;
  }

  .approach-steps::before {
    left: 37px;
  }

  .step-connector {
    margin-left: 25px;
  }

}


/* =======================================================
   APPROACH - MOBILE
======================================================= */

@media (max-width: 767px) {

  .our-approach-section {
    padding: 70px 0;
  }

  .approach-heading {
    margin-bottom: 45px;
  }

  .approach-heading h2 {
    font-size: 33px;
  }

  .approach-heading p {
    font-size: 15px;
  }


  /* Remove vertical line on mobile */

  .approach-steps::before {
    display: none;
  }


  .approach-step {
    min-height: auto;

    display: block;

    margin-bottom: 18px;

    padding: 28px 25px;

    text-align: center;
  }


  .step-number {
    margin: 0 auto 20px;

    width: 70px;
    height: 70px;

    font-size: 19px;

    box-shadow:
      0 0 0 7px #f4f8f2,
      0 0 0 8px #cfe1ce;
  }


  .step-icon {
    margin: 0 auto 18px;

    width: 52px;
    height: 52px;
  }


  .step-content h3 {
    font-size: 25px;
  }


  .step-content p {
    font-size: 14px;
  }


  .step-connector {
    margin: -2px auto 16px;
  }


  .approach-philosophy {
    margin-top: 60px;

    display: block;
  }


  .philosophy-line {
    display: none;
  }


  .philosophy-content {
    min-width: 0;

    padding: 0 15px;
  }


  .philosophy-content h3 {
    font-size: 27px;
  }

}


/* =======================================================
   APPROACH - SMALL MOBILE
======================================================= */

@media (max-width: 480px) {

  .approach-heading h2 {
    font-size: 29px;
  }

  .approach-step {
    padding: 25px 20px;
  }

  .step-content h3 {
    font-size: 23px;
  }

  .philosophy-content h3 {
    font-size: 24px;
  }

}

/* =======================================================
   ABOUT US SECTION
======================================================= */

.about-us-section {
  padding: 110px 0;

  background: #ffffff;
}


/* =======================================================
   ABOUT IMAGE
======================================================= */

.about-image-wrapper {
  position: relative;

  padding-right: 35px;
  padding-bottom: 35px;
}


.about-image-wrapper::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: 0;

  width: 75%;
  height: 75%;

  border: 2px solid #dcebd9;

  border-radius: 14px;

  z-index: 0;
}


.about-image {
  position: relative;

  z-index: 1;

  display: block;

  width: 100%;
  height: 520px;

  object-fit: cover;

  border-radius: 14px;

  box-shadow: 0 20px 50px rgba(25, 65, 30, 0.12);
}


/* Image Badge */

.about-image-badge {
  position: absolute;

  left: -15px;
  bottom: 15px;

  z-index: 3;

  display: flex;
  flex-direction: column;

  padding: 18px 20px;

  background: var(--primary-color);

  border-radius: 8px;

  box-shadow: 0 12px 30px rgba(25, 65, 30, 0.20);
}


.about-image-badge span {
  font-family: var(--nav-font);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2px;

  line-height: 2;

  color: #ffffff;
}


/* =======================================================
   ABOUT CONTENT
======================================================= */

.about-content {
  padding-left: 20px;
}


.about-content h2 {
  max-width: 620px;

  margin: 12px 0 25px;

  font-family: var(--heading-font);

  font-size: 46px;
  font-weight: 400;

  line-height: 1.25;

  color: var(--heading-color);
}


.about-content > p {
  max-width: 620px;

  margin: 0 0 18px;

  font-family: var(--nav-font);

  font-size: 16px;

  line-height: 1.85;

  color: #626262;
}


/* =======================================================
   OUR OBJECTIVE
======================================================= */

.about-objective {
  display: flex;
  align-items: flex-start;

  gap: 20px;

  margin-top: 32px;
  padding: 25px;

  background: #f4f8f2;

  border-left: 4px solid var(--primary-color);

  border-radius: 0 10px 10px 0;
}


.objective-icon {
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--primary-color);

  color: #ffffff;

  font-size: 20px;
}


.objective-content > span {
  display: block;

  margin-bottom: 7px;

  font-family: var(--nav-font);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2px;

  color: var(--primary-color);
}


.objective-content h3 {
  margin: 0;

  font-family: var(--nav-font);

  font-size: 17px;
  font-weight: 600;

  line-height: 1.65;

  color: var(--heading-color);
}


/* =======================================================
   ABOUT PHILOSOPHY
======================================================= */

.about-philosophy {
  display: flex;
  align-items: center;

  gap: 35px;

  margin-top: 35px;
}


.about-philosophy > div {
  display: flex;
  align-items: center;

  gap: 9px;
}


.about-philosophy i {
  font-size: 19px;

  color: var(--primary-color);
}


.about-philosophy span {
  font-family: var(--nav-font);

  font-size: 13px;
  font-weight: 700;

  color: #555555;
}


/* =======================================================
   ABOUT US - TABLET
======================================================= */

@media (max-width: 991px) {

  .about-us-section {
    padding: 85px 0;
  }

  .about-content {
    padding-left: 0;
  }

  .about-content h2 {
    font-size: 40px;
  }

  .about-image {
    height: 450px;
  }

}


/* =======================================================
   ABOUT US - MOBILE
======================================================= */

@media (max-width: 767px) {

  .about-us-section {
    padding: 70px 0;
  }

  .about-image-wrapper {
    padding-right: 20px;
    padding-bottom: 20px;
  }

  .about-image {
    height: 400px;
  }

  .about-image-badge {
    left: 0;
    bottom: 0;

    padding: 14px 16px;
  }

  .about-image-badge span {
    font-size: 9px;
  }

  .about-content {
    padding-left: 0;
  }

  .about-content h2 {
    font-size: 34px;

    margin-bottom: 20px;
  }

  .about-content > p {
    font-size: 15px;

    line-height: 1.75;
  }

  .about-objective {
    padding: 20px;

    gap: 15px;
  }

  .objective-content h3 {
    font-size: 15px;
  }

  .about-philosophy {
    gap: 20px;

    flex-wrap: wrap;
  }

}


/* =======================================================
   ABOUT US - SMALL MOBILE
======================================================= */

@media (max-width: 480px) {

  .about-image {
    height: 330px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-objective {
    display: block;
  }

  .objective-icon {
    margin-bottom: 15px;
  }

  .about-philosophy {
    gap: 15px;
  }

}

/* =======================================================
   FOUNDERS SECTION
======================================================= */

.founders-section {
  padding: 110px 0;

  background: #f8faf7;
}


/* Section Heading */

.founders-heading {
  max-width: 750px;

  margin-bottom: 65px;
}


.founders-heading h2 {
  font-size: 46px;
}


/* =======================================================
   FOUNDER PROFILE
======================================================= */

.founder-profile {
  max-width: 1050px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 420px 1fr;

  align-items: center;

  background: #ffffff;

  border: 1px solid #e3ebe2;

  border-radius: 14px;

  overflow: hidden;

  box-shadow: 0 15px 45px rgba(30, 70, 35, 0.08);
}


/* =======================================================
   FOUNDER IMAGE
======================================================= */

.founder-image-wrapper {
  height: 100%;

  min-height: 520px;

  padding: 25px;
}


.founder-image-frame {
  position: relative;

  width: 100%;
  height: 100%;

  min-height: 470px;

  overflow: hidden;

  border-radius: 10px;
}


.founder-image-frame::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(20, 60, 25, 0) 55%,
      rgba(20, 60, 25, 0.25) 100%
    );

  pointer-events: none;
}


.founder-image {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 470px;

  object-fit: cover;

  object-position: center;

  transition: transform 0.5s ease;
}


.founder-profile:hover .founder-image {
  transform: scale(1.03);
}


/* =======================================================
   FOUNDER DETAILS
======================================================= */

.founder-details {
  padding: 55px 60px;
}


.founder-role {
  display: inline-block;

  margin-bottom: 12px;

  font-family: var(--nav-font);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 3px;

  color: var(--primary-color);
}


.founder-details h3 {
  margin: 0;

  font-family: var(--heading-font);

  font-size: 42px;

  font-weight: 400;

  line-height: 1.25;

  color: var(--heading-color);
}


.founder-divider {
  width: 55px;
  height: 3px;

  margin: 22px 0;

  background: var(--primary-color);

  border-radius: 3px;
}


/* Description */

.founder-description {
  max-width: 600px;

  margin: 0 0 30px;

  font-family: var(--nav-font);

  font-size: 16px;

  line-height: 1.85;

  color: #626262;
}


/* =======================================================
   FOUNDER FOCUS
======================================================= */

.founder-focus h4 {
  margin: 0 0 15px;

  font-family: var(--nav-font);

  font-size: 14px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  color: var(--heading-color);
}


.focus-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}


.focus-tags span {
  display: inline-flex;

  align-items: center;

  padding: 8px 13px;

  background: #edf6eb;

  border: 1px solid #dcebd9;

  border-radius: 30px;

  font-family: var(--nav-font);

  font-size: 12px;

  font-weight: 600;

  color: #315c35;
}


/* =======================================================
   FOUNDER PHILOSOPHY
======================================================= */

.founder-philosophy {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-top: 35px;

  padding-top: 25px;

  border-top: 1px solid #e5ebe4;
}


.founder-philosophy i {
  flex-shrink: 0;

  font-size: 25px;

  line-height: 1;

  color: var(--primary-color);
}


.founder-philosophy p {
  margin: 0;

  font-family: var(--heading-font);

  font-size: 17px;

  font-style: italic;

  line-height: 1.6;

  color: #4f5d50;
}


/* =======================================================
   FOUNDERS - TABLET
======================================================= */

@media (max-width: 991px) {

  .founders-section {
    padding: 85px 0;
  }

  .founders-heading {
    margin-bottom: 50px;
  }

  .founders-heading h2 {
    font-size: 40px;
  }

  .founder-profile {
    grid-template-columns: 350px 1fr;
  }

  .founder-image-wrapper {
    min-height: 480px;
  }

  .founder-image-frame,
  .founder-image {
    min-height: 430px;
  }

  .founder-details {
    padding: 40px;
  }

  .founder-details h3 {
    font-size: 35px;
  }

}


/* =======================================================
   FOUNDERS - MOBILE
======================================================= */

@media (max-width: 767px) {

  .founders-section {
    padding: 70px 0;
  }

  .founders-heading {
    margin-bottom: 40px;
  }

  .founders-heading h2 {
    font-size: 34px;
  }

  .founder-profile {
    display: block;

    width: 100%;
  }

  .founder-image-wrapper {
    min-height: auto;

    padding: 18px;
  }

  .founder-image-frame {
    min-height: 420px;
  }

  .founder-image {
    min-height: 420px;
  }

  .founder-details {
    padding: 35px 25px;
  }

  .founder-details h3 {
    font-size: 32px;
  }

  .founder-description {
    font-size: 15px;

    line-height: 1.75;
  }

}


/* =======================================================
   FOUNDERS - SMALL MOBILE
======================================================= */

@media (max-width: 480px) {

  .founders-heading h2 {
    font-size: 30px;
  }

  .founder-image-frame,
  .founder-image {
    min-height: 360px;
  }

  .founder-details {
    padding: 30px 20px;
  }

  .founder-details h3 {
    font-size: 29px;
  }

  .focus-tags {
    gap: 7px;
  }

  .focus-tags span {
    font-size: 11px;

    padding: 7px 10px;
  }

}

/* =======================================================
   SECOND FOUNDER - REVERSED LAYOUT
======================================================= */

.founder-profile-reverse {
  margin-top: 35px;

  grid-template-columns: 1fr 420px;
}


/* Founder Message Label */

.founder-message-label {
  display: block;

  margin-bottom: 6px;

  font-family: var(--nav-font);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  color: var(--primary-color);
}


/* Tablet */

@media (max-width: 991px) {

  .founder-profile-reverse {
    grid-template-columns: 1fr 350px;
  }

}


/* Mobile */

@media (max-width: 767px) {

  .founder-profile-reverse {
    display: flex;

    flex-direction: column-reverse;

    margin-top: 25px;
  }

  .founder-profile-reverse .founder-details {
    width: 100%;
  }

  .founder-profile-reverse .founder-image-wrapper {
    width: 100%;
  }

}

/* =======================================================
   FOOTER
======================================================= */

.site-footer {
  background: #122b17;

  color: #ffffff;
}


/* =======================================================
   FOOTER MAIN
======================================================= */

.footer-main {
  padding: 80px 0 65px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/* =======================================================
   FOOTER BRAND
======================================================= */

.footer-logo {
  display: inline-block;

  margin-bottom: 15px;
}


.footer-logo img {
  display: block;

  max-width: 190px;
  max-height: 65px;

  object-fit: contain;

  /*
   * If your logo is dark and doesn't show well
   * on the dark footer, uncomment this:
   *
   * filter: brightness(0) invert(1);
   */
}


.footer-tagline {
  margin: 0 0 15px;

  font-family: var(--heading-font);

  font-size: 22px;

  font-style: italic;

  color: #d8ead4;
}


.footer-description {
  max-width: 400px;

  margin: 0 0 22px;

  font-family: var(--nav-font);

  font-size: 14px;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.68);
}


/* Footer Philosophy */

.footer-philosophy {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 7px;

  font-family: var(--nav-font);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: #b9d7b5;
}


/* =======================================================
   FOOTER WIDGET
======================================================= */

.footer-widget h3 {
  margin: 8px 0 25px;

  font-family: var(--heading-font);

  font-size: 21px;

  font-weight: 400;

  color: #ffffff;
}


.footer-widget ul {
  margin: 0;
  padding: 0;

  list-style: none;
}


.footer-widget ul li {
  margin-bottom: 13px;
}


.footer-widget ul li a {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  font-family: var(--nav-font);

  font-size: 14px;

  color: rgba(255, 255, 255, 0.65);

  text-decoration: none;

  transition: all 0.3s ease;
}


.footer-widget ul li a i {
  font-size: 10px;

  color: #8fbd89;

  transition: transform 0.3s ease;
}


.footer-widget ul li a:hover {
  color: #ffffff;

  transform: translateX(4px);
}


.footer-widget ul li a:hover i {
  transform: translateX(2px);
}


/* =======================================================
   FOOTER CONTACT
======================================================= */

.footer-contact > p {
  margin: 0 0 22px;

  font-family: var(--nav-font);

  font-size: 14px;

  line-height: 1.75;

  color: rgba(255, 255, 255, 0.65);
}


/* Assessment Button */

.footer-assessment-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 48px;

  margin-bottom: 28px;

  padding: 0 20px;

  border-radius: 6px;

  background: var(--primary-color);

  color: #ffffff;

  font-family: var(--nav-font);

  font-size: 13px;

  font-weight: 700;

  text-decoration: none;

  transition: all 0.3s ease;
}


.footer-assessment-btn:hover {
  background: #3d9141;

  color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
}


.footer-assessment-btn i {
  transition: transform 0.3s ease;
}


.footer-assessment-btn:hover i {
  transform: translateX(4px);
}


/* Contact Items */

.footer-contact-item {
  display: flex;

  align-items: flex-start;

  gap: 13px;

  margin-bottom: 17px;
}


.footer-contact-item > i {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 8px;

  background: rgba(255, 255, 255, 0.08);

  color: #a8d3a3;

  font-size: 16px;
}


.footer-contact-item span {
  display: block;

  margin-bottom: 3px;

  font-family: var(--nav-font);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.40);
}


.footer-contact-item a {
  font-family: var(--nav-font);

  font-size: 13px;

  color: rgba(255, 255, 255, 0.75);

  text-decoration: none;

  transition: color 0.3s ease;
}


.footer-contact-item a:hover {
  color: #ffffff;
}


/* =======================================================
   FOOTER BOTTOM
======================================================= */

.footer-bottom {
  padding: 22px 0;
}


.footer-bottom-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}


.copyright {
  font-family: var(--nav-font);

  font-size: 12px;

  color: rgba(255, 255, 255, 0.50);
}


.copyright strong {
  color: rgba(255, 255, 255, 0.75);
}


.footer-bottom-links {
  display: flex;

  align-items: center;

  gap: 25px;
}


.footer-bottom-links a {
  font-family: var(--nav-font);

  font-size: 12px;

  color: rgba(255, 255, 255, 0.50);

  text-decoration: none;

  transition: color 0.3s ease;
}


.footer-bottom-links a:hover {
  color: #ffffff;
}


/* =======================================================
   FOOTER - TABLET
======================================================= */

@media (max-width: 991px) {

  .footer-main {
    padding: 70px 0 50px;
  }

  .footer-widget h3 {
    margin-top: 0;
  }

}


/* =======================================================
   FOOTER - MOBILE
======================================================= */

@media (max-width: 767px) {

  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;

    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;

    justify-content: center;

    gap: 15px 20px;
  }

}


/* =======================================================
   FOOTER - SMALL MOBILE
======================================================= */

@media (max-width: 480px) {

  .footer-philosophy {
    line-height: 1.8;
  }

  .footer-assessment-btn {
    width: 100%;
  }

}

/* =========================================================
   SOLUTIONS PAGE
========================================================= */


/* ---------------------------------------------------------
   SOLUTIONS HERO
--------------------------------------------------------- */

.solutions-hero {
            background:
                linear-gradient(rgba(24, 50, 28, 0.82), rgba(24, 50, 28, 0.82)),
                url("../img/hero.jpg") center/cover no-repeat;

            padding: 145px 0 105px;
            color: #ffffff;
            text-align: center;
        }

        .solutions-hero .eyebrow {
            font-size: 14px;
            letter-spacing: 3px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .solutions-hero h1 {
            font-family: var(--heading-font);
            font-size: clamp(42px, 5vw, 68px);
            margin-bottom: 22px;
        }

        .solutions-hero p {
            max-width: 780px;
            margin: auto;
            font-size: 18px;
            line-height: 1.8;
            color: #eef5ed;
        }

/* ---------------------------------------------------------
   SOLUTIONS INTRO
--------------------------------------------------------- */

.solutions-intro-section {

    padding: 90px 0 55px;

    background: #ffffff;

}


.solutions-intro-section .section-heading {

    max-width: 820px;

    margin: 0 auto;

}


.solutions-intro-section .section-heading h2 {

    margin-bottom: 20px;

}



/* ---------------------------------------------------------
   DIAGNOSIS SECTION
--------------------------------------------------------- */

.soil-diagnosis-section {

    padding: 75px 0;

    background: #ffffff;

}


.soil-diagnosis-box {

    display: flex;

    align-items: center;

    gap: 25px;

    max-width: 900px;

    margin: 0 auto;

    padding: 35px 40px;

    border-left: 5px solid var(--primary-color);

    border-radius: 10px;

    background: #f4f8f2;

}


.diagnosis-icon {

    flex: 0 0 auto;

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: var(--primary-color);

    font-size: 28px;

    box-shadow:
        0 5px 20px rgba(31, 72, 36, 0.08);

}


.diagnosis-content span {

    display: block;

    margin-bottom: 5px;

    font-family: var(--nav-font);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--primary-color);

}


.diagnosis-content h3 {

    margin: 0 0 8px;

    font-family: var(--heading-font);

    font-size: 28px;

    color: var(--heading-color);

}


.diagnosis-content p {

    margin: 0;

    color: #555555;

    font-family: var(--nav-font);

    font-size: 15px;

    line-height: 1.7;

}


/* ---------------------------------------------------------
   FINAL CTA
--------------------------------------------------------- */

.solutions-final-cta {

    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #1f5d25,
            #2f7d32
        );

}


.solutions-cta-content {

    max-width: 800px;

    margin: 0 auto;

}


.solutions-cta-content .section-eyebrow {

    color: #d9efd4;

}


.solutions-cta-content h2 {

    margin: 15px 0 20px;

    font-family: var(--heading-font);

    font-size: 45px;

    line-height: 1.25;

    color: #ffffff;

}


.solutions-cta-content p {

    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.88);

    font-family: var(--nav-font);

    font-size: 17px;

    line-height: 1.7;

}


/* White button for final CTA */

.solutions-final-cta .primary-btn {

    background: #ffffff;

    color: var(--primary-color);

}


.solutions-final-cta .primary-btn:hover {

    background: #eaf6e8;

    color: var(--primary-dark);

}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1199px) {

    .solutions-hero-content h1 {

        font-size: 50px;

    }

    .soil-content h2 {

        font-size: 42px;

    }

}


@media (max-width: 991px) {

    .solutions-page-hero {

        min-height: 480px;

    }


    .solutions-hero-content {

        padding: 90px 0 70px;

        text-align: center;

        margin: 0 auto;

    }


    .solutions-hero-content p {

        margin-left: auto;

        margin-right: auto;

    }


    .soil-content {

        padding-right: 0;

        text-align: center;

    }


    .solution-number {

        margin-left: auto;

        margin-right: auto;

    }


    .soil-cta {

        margin-top: 10px;

    }


    .soil-services-card {

        margin-top: 15px;

    }

}


@media (max-width: 767px) {

    .solutions-page-hero {

        min-height: 430px;

    }


    .solutions-hero-content h1 {

        font-size: 39px;

    }


    .solutions-hero-content p {

        font-size: 16px;

    }


    .solutions-intro-section {

        padding: 70px 0 35px;

    }


    .soil-intelligence-section {

        padding: 60px 0 70px;

    }


    .soil-content h2 {

        font-size: 36px;

    }


    .soil-services-card {

        padding: 25px 20px;

    }


    .soil-services-header {

        align-items: flex-start;

    }


    .soil-services-header h3 {

        font-size: 22px;

    }


    .soil-services-list {

        grid-template-columns: 1fr;

    }


    .soil-diagnosis-section {

        padding: 60px 0;

    }


    .soil-diagnosis-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 30px 25px;

    }


    .diagnosis-content h3 {

        font-size: 25px;

    }


    .solutions-final-cta {

        padding: 70px 0;

    }


    .solutions-cta-content h2 {

        font-size: 34px;

    }

}


@media (max-width: 575px) {

    .solutions-hero-content h1 {

        font-size: 33px;

    }


    .soil-content h2 {

        font-size: 31px;

    }


    .soil-services-header {

        flex-direction: column;

    }


    .solutions-cta-content h2 {

        font-size: 30px;

    }

}


        /* =========================================================
           HERO
        ========================================================= */

        .solution-detail-hero {
            background:
                linear-gradient(
                    rgba(24, 50, 28, 0.84),
                    rgba(24, 50, 28, 0.84)
                ),
                url("../assets/img/hero.jpg") center/cover no-repeat;

            padding: 145px 0 105px;

            color: #ffffff;
        }

        .solution-detail-hero .eyebrow {
            font-size: 14px;

            letter-spacing: 3px;

            font-weight: 600;

            text-transform: uppercase;

            margin-bottom: 20px;
        }

        .solution-detail-hero h1 {
            font-family: var(--heading-font);

            font-size: clamp(40px, 5vw, 68px);

            line-height: 1.15;

            margin-bottom: 25px;
        }

        .solution-detail-hero p {
            max-width: 780px;

            margin: 0 auto;

            font-size: 18px;

            line-height: 1.8;

            color: #f1f5f1;
        }


        /* =========================================================
           MAIN SECTION
        ========================================================= */

        .soil-intelligence-section {
            padding: 100px 0;

            background: #ffffff;
        }

        .soil-content {
            padding-right: 30px;
        }

        .solution-number {
            width: 55px;
            height: 55px;

            border-radius: 50%;

            background: var(--primary-light);

            color: var(--primary-color);

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: 18px;

            font-weight: 700;

            margin-bottom: 22px;
        }

        .section-eyebrow {
            display: block;

            color: var(--primary-color);

            font-size: 13px;

            font-weight: 700;

            letter-spacing: 2px;

            text-transform: uppercase;

            margin-bottom: 14px;
        }

        .soil-content h2 {
            font-family: var(--heading-font);

            color: var(--heading-color);

            font-size: clamp(36px, 4vw, 52px);

            line-height: 1.2;

            margin-bottom: 25px;
        }

        .soil-content p {
            color: #555;

            font-size: 16px;

            line-height: 1.8;

            margin-bottom: 18px;
        }

        .soil-intro {
            font-size: 18px !important;

            color: #444 !important;
        }


        /* =========================================================
           CTA BUTTON
        ========================================================= */

        .soil-cta {
            display: inline-flex;

            align-items: center;

            gap: 12px;

            margin-top: 20px;

            padding: 14px 24px;

            background: var(--primary-color);

            color: #ffffff;

            text-decoration: none;

            font-size: 15px;

            font-weight: 600;

            border-radius: 4px;

            transition: 0.3s;
        }

        .soil-cta:hover {
            background: var(--primary-dark);

            color: #ffffff;

            transform: translateY(-2px);
        }

        .soil-cta i {
            transition: 0.3s;
        }

        .soil-cta:hover i {
            transform: translateX(4px);
        }


        /* =========================================================
           SERVICES CARD
        ========================================================= */

        .soil-services-card {
            background: #f7faf6;

            border: 1px solid #e2e9df;

            padding: 38px;

            box-shadow:
                0 15px 45px rgba(24, 50, 28, 0.07);
        }

        .soil-services-header {
            display: flex;

            align-items: center;

            gap: 18px;

            padding-bottom: 25px;

            margin-bottom: 10px;

            border-bottom: 1px solid #e1e8df;
        }

        .soil-service-icon {
            width: 62px;
            height: 62px;

            flex-shrink: 0;

            border-radius: 50%;

            background: var(--primary-color);

            color: #ffffff;

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: 27px;
        }

        .soil-services-header span {
            display: block;

            color: var(--primary-color);

            font-size: 11px;

            font-weight: 700;

            letter-spacing: 1.8px;

            margin-bottom: 5px;
        }

        .soil-services-header h3 {
            font-family: var(--heading-font);

            color: var(--heading-color);

            font-size: 25px;

            margin: 0;
        }


        /* =========================================================
           SERVICES LIST
        ========================================================= */

        .soil-services-list {
            display: grid;

            grid-template-columns: 1fr 1fr;

            column-gap: 25px;
        }

        .soil-service-item {
            display: flex;

            align-items: flex-start;

            gap: 11px;

            padding: 15px 0;

            border-bottom: 1px solid #e6ece4;

            color: #444;

            font-size: 15px;

            line-height: 1.5;
        }

        .service-check {
            width: 23px;
            height: 23px;

            flex-shrink: 0;

            margin-top: 1px;

            border-radius: 50%;

            background: #e5f2e2;

            color: var(--primary-color);

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: 13px;
        }


        /* =========================================================
           DETAILS SECTION
        ========================================================= */

        .solution-detail-section {
            padding: 100px 0;

            background: #f8faf7;
        }

        .solution-intro {
            max-width: 850px;

            margin: 0 auto 60px;

            text-align: center;
        }

        .section-label {
            color: var(--primary-color);

            font-size: 13px;

            font-weight: 700;

            letter-spacing: 2px;

            text-transform: uppercase;

            margin-bottom: 12px;
        }

        .solution-intro h2 {
            font-family: var(--heading-font);

            color: var(--heading-color);

            font-size: clamp(32px, 4vw, 44px);

            margin-bottom: 20px;
        }

        .solution-intro p {
            color: #666;

            font-size: 17px;

            line-height: 1.8;
        }


        /* =========================================================
           SERVICE CARDS
        ========================================================= */

        .service-card {
            height: 100%;

            padding: 35px;

            background: #ffffff;

            border: 1px solid #e4eae1;

            transition: 0.3s;
        }

        .service-card:hover {
            transform: translateY(-6px);

            box-shadow:
                0 15px 35px rgba(24, 50, 28, 0.09);
        }

        .service-card .icon {
            width: 58px;
            height: 58px;

            border-radius: 50%;

            background: var(--primary-light);

            color: var(--primary-color);

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: 25px;

            margin-bottom: 22px;
        }

        .service-card h3 {
            font-family: var(--heading-font);

            color: var(--heading-color);

            font-size: 23px;

            margin-bottom: 15px;
        }


        /* =========================================================
           SERVICE LIST
        ========================================================= */

        .service-list {
            list-style: none;

            padding: 0;

            margin: 0;
        }

        .service-list li {
            position: relative;

            padding: 10px 0 10px 28px;

            border-bottom: 1px solid #edf0eb;

            color: #444;

            line-height: 1.5;
        }

        .service-list li:last-child {
            border-bottom: 0;
        }

        .service-list li i {
            position: absolute;

            left: 0;

            top: 12px;

            color: var(--primary-color);
        }


        /* =========================================================
           DIAGNOSIS BOX
        ========================================================= */

        .diagnosis-box {
            background: var(--primary-light);

            padding: 55px;

            margin-top: 70px;

            text-align: center;
        }

        .diagnosis-box h3 {
            font-family: var(--heading-font);

            font-size: 32px;

            color: var(--heading-color);

            margin-bottom: 15px;
        }

        .diagnosis-box p {
            color: #555;

            font-size: 17px;

            max-width: 720px;

            margin: 0 auto;

            line-height: 1.8;
        }


        /* =========================================================
           PROCESS
        ========================================================= */

        .process-row {
            margin-top: 50px;
        }

        .process-item {
            text-align: center;

            position: relative;
        }

        .process-number {
            width: 62px;
            height: 62px;

            margin: 0 auto 18px;

            border-radius: 50%;

            background: var(--primary-color);

            color: #ffffff;

            display: flex;

            align-items: center;

            justify-content: center;

            font-weight: 700;

            font-size: 15px;
        }

        .process-item h4 {
            font-family: var(--heading-font);

            color: var(--heading-color);

            font-size: 21px;

            margin-bottom: 10px;
        }

        .process-item p {
            color: #666;

            line-height: 1.7;

            margin: 0 auto;

            max-width: 230px;
        }


        /* =========================================================
           FINAL CTA
        ========================================================= */

        .solution-cta {
            background: var(--heading-color);

            color: #ffffff;

            padding: 80px 20px;

            text-align: center;
        }

        .solution-cta h2 {
            font-family: var(--heading-font);

            font-size: clamp(32px, 4vw, 42px);

            margin-bottom: 15px;
        }

        .solution-cta p {
            color: #dce7dc;

            max-width: 680px;

            margin: 0 auto 30px;

            line-height: 1.8;
        }

        .solution-cta .btn {
            display: inline-flex;

            align-items: center;

            gap: 10px;

            background: var(--primary-color);

            color: #ffffff;

            padding: 14px 28px;

            border-radius: 4px;

            text-decoration: none;

            font-weight: 600;

            transition: 0.3s;
        }

        .solution-cta .btn:hover {
            background: var(--primary-dark);

            color: #ffffff;

            transform: translateY(-2px);
        }


        /* =========================================================
           FOOTER
        ========================================================= */

        .solution-footer {
            background: #122b17;

            color: #ffffff;

            padding: 70px 0 25px;
        }

        .solution-footer h4 {
            font-family: var(--heading-font);

            margin-bottom: 20px;
        }

        .solution-footer p {
            color: #cbd8cc;

            line-height: 1.8;
        }

        .solution-footer a {
            color: #cbd8cc;

            text-decoration: none;

            display: block;

            margin-bottom: 10px;
        }

        .solution-footer a:hover {
            color: #ffffff;
        }

        .footer-logo {
            max-width: 180px;

            margin-bottom: 15px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);

            margin-top: 45px;

            padding-top: 20px;

            text-align: center;

            color: #aebdaf;

            font-size: 14px;
        }


        /* =========================================================
           RESPONSIVE
        ========================================================= */

        @media (max-width: 991px) {

            .soil-content {
                padding-right: 0;
            }

            .soil-services-card {
                padding: 30px;
            }

            .soil-intelligence-section,
            .solution-detail-section {
                padding: 75px 0;
            }

        }


        @media (max-width: 767px) {

            .solution-detail-hero {
                padding: 115px 20px 75px;
            }

            .solution-detail-hero h1 {
                font-size: 40px;
            }

            .solution-detail-hero p {
                font-size: 16px;
            }

            .soil-intelligence-section,
            .solution-detail-section {
                padding: 60px 0;
            }

            .soil-content h2 {
                font-size: 36px;
            }

            .soil-services-card {
                padding: 25px 20px;
            }

            .soil-services-header {
                align-items: flex-start;
            }

            .soil-services-header h3 {
                font-size: 21px;
            }

            .soil-services-list {
                grid-template-columns: 1fr;
            }

            .service-card {
                padding: 28px 24px;
            }

            .diagnosis-box {
                padding: 35px 22px;
            }

            .diagnosis-box h3 {
                font-size: 27px;
            }

            .process-row {
                margin-top: 30px;
            }

            .process-item {
                margin-bottom: 20px;
            }

            .solution-cta {
                padding: 65px 20px;
            }

        }


/* =========================================================
   CROP PEST MONITORING PAGE
   KissanDoctor
========================================================= */


/* =========================================================
   HERO
========================================================= */

.solution-detail-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.solution-detail-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.solution-detail-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.solution-detail-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(16, 48, 21, 0.90) 0%,
        rgba(22, 65, 28, 0.75) 50%,
        rgba(22, 65, 28, 0.35) 100%
    );
    z-index: 2;
}

.solution-detail-hero .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 100px 0;
}

.solution-detail-hero .hero-text {
    max-width: 800px;
}

.solution-detail-hero .hero-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.solution-detail-hero h1 {
    margin: 0 0 25px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 58px;
    line-height: 1.15;
    font-weight: 400;
}

.solution-detail-hero .hero-description {
    max-width: 680px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.solution-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 27px;
    background: #2f7d32;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.solution-hero-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.solution-hero-btn:hover {
    background: #1f5d25;
    color: #ffffff;
}

.solution-hero-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   MAIN CROP MONITORING SECTION
========================================================= */

.crop-monitoring-section {
    padding: 100px 0;
    background: #ffffff;
}

.monitoring-content {
    padding-right: 45px;
}

.monitoring-number {
    margin-bottom: 10px;
    color: #2f7d32;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.monitoring-eyebrow {
    margin-bottom: 15px;
    color: #2f7d32;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.monitoring-content h2 {
    margin-bottom: 25px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 43px;
    line-height: 1.2;
    font-weight: 400;
}

.monitoring-content p {
    margin-bottom: 20px;
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   CONTENT BUTTON
========================================================= */

.monitoring-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 14px 24px;
    background: #2f7d32;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.monitoring-btn:hover {
    background: #1f5d25;
    color: #ffffff;
}

.monitoring-btn i {
    transition: transform 0.3s ease;
}

.monitoring-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   SERVICES CARD
========================================================= */

.monitoring-services-card {
    padding: 40px;
    background: #f4f9f2;
    border: 1px solid #e2eee0;
    border-radius: 8px;
}

.monitoring-services-card h3 {
    margin-bottom: 28px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 400;
}

.monitoring-services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.monitoring-service-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid #dfe9dc;
    color: #444444;
    font-size: 15px;
    line-height: 1.6;
}

.monitoring-service-item:last-child {
    border-bottom: none;
}

.monitoring-service-item i {
    flex-shrink: 0;
    margin-top: 3px;
    color: #2f7d32;
    font-size: 18px;
}


/* =========================================================
   MONITORING DETAILS
========================================================= */

.monitoring-details {
    padding: 100px 0;
    background: #f8fbf7;
}

.monitoring-details-header {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.monitoring-details-header .section-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #2f7d32;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.monitoring-details-header h2 {
    margin-bottom: 20px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 400;
}

.monitoring-details-header p {
    margin: 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   DETAIL CARDS
========================================================= */

.monitoring-detail-card {
    height: 100%;
    padding: 35px 30px;
    background: #ffffff;
    border: 1px solid #e5eee2;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.monitoring-detail-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(35, 75, 40, 0.10);
}

.monitoring-detail-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: #eaf6e8;
    border-radius: 50%;
}

.monitoring-detail-icon i {
    color: #2f7d32;
    font-size: 28px;
}

.monitoring-detail-card h3 {
    margin-bottom: 18px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 400;
}

.monitoring-detail-card p {
    margin: 0;
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   DETAIL CARD LIST
========================================================= */

.monitoring-detail-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.monitoring-detail-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
}

.monitoring-detail-list li:last-child {
    margin-bottom: 0;
}

.monitoring-detail-list li::before {
    content: "\f26a";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2f7d32;
    font-family: "bootstrap-icons";
    font-size: 15px;
}


/* =========================================================
   MONITORING PROCESS
========================================================= */

.monitor-process {
    padding: 100px 0;
    background: #ffffff;
}

.monitor-process-header {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}

.monitor-process-header .section-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #2f7d32;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.monitor-process-header h2 {
    margin-bottom: 18px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 400;
}

.monitor-process-header p {
    margin: 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   PROCESS ITEMS
========================================================= */

.monitor-process-wrapper {
    position: relative;
}

.monitor-process-wrapper::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: #cfe1cc;
    z-index: 0;
}

.monitor-process-item {
    position: relative;
    z-index: 1;
    text-align: center;
}

.monitor-process-number {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: #2f7d32;
    border: 7px solid #eaf6e8;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.monitor-process-item h3 {
    margin-bottom: 10px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 23px;
    font-weight: 400;
}

.monitor-process-item p {
    margin: 0 auto;
    max-width: 180px;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   MONITORING PHILOSOPHY - NEW UI
========================================================= */

.monitoring-philosophy {
    position: relative;
    margin-top: 80px;
    padding: 70px 50px 65px;
    background: #f5f9f3;
    border: 1px solid #e1ecdf;
    border-radius: 12px;
    overflow: hidden;
}


/* Decorative background */

.monitoring-philosophy::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -130px;
    right: -100px;
    background: #eaf6e8;
    border-radius: 50%;
    opacity: 0.8;
}

.monitoring-philosophy::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -100px;
    left: -70px;
    background: #eaf6e8;
    border-radius: 50%;
    opacity: 0.7;
}


/* =========================================================
   PHILOSOPHY HEADING
========================================================= */

.philosophy-heading {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto 55px;
    text-align: center;
}

.philosophy-heading .section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #2f7d32;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.philosophy-heading h3 {
    margin: 0 0 15px;
    color: #18321c;
    font-family: var(--heading-font);
    font-size: 38px;
    line-height: 1.25;
    font-weight: 400;
}

.philosophy-heading p {
    max-width: 600px;
    margin: 0 auto;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   PHILOSOPHY FLOW
========================================================= */

.philosophy-flow {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}


/* =========================================================
   PHILOSOPHY STEP
========================================================= */

.philosophy-step {
    position: relative;
    width: 180px;
    padding: 0 8px;
    text-align: center;
}


/* =========================================================
   ICON
========================================================= */

.philosophy-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: #ffffff;
    border: 2px solid #2f7d32;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(35, 75, 40, 0.10);
}

.philosophy-icon i {
    color: #2f7d32;
    font-size: 27px;
}


/* =========================================================
   NUMBER
========================================================= */

.philosophy-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    background: #2f7d32;
    border-radius: 50%;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   TITLE
========================================================= */

.philosophy-step h4 {
    margin: 0 0 10px;
    color: #18321c;
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 400;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.philosophy-step p {
    margin: 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   ARROWS
========================================================= */

.philosophy-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    min-width: 45px;
    height: 68px;
}

.philosophy-arrow i {
    color: #7ca77d;
    font-size: 25px;
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.philosophy-step {
    transition: transform 0.3s ease;
}

.philosophy-step:hover {
    transform: translateY(-6px);
}

.philosophy-step:hover .philosophy-icon {
    background: #2f7d32;
}

.philosophy-step:hover .philosophy-icon i {
    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .monitoring-philosophy {
        padding: 60px 30px;
    }

    .philosophy-flow {
        flex-wrap: wrap;
        gap: 35px 15px;
    }

    .philosophy-step {
        width: 180px;
    }

    .philosophy-arrow {
        width: 30px;
        min-width: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .monitoring-philosophy {
        margin-top: 55px;
        padding: 50px 20px;
        border-radius: 10px;
    }

    .philosophy-heading {
        margin-bottom: 40px;
    }

    .philosophy-heading h3 {
        font-size: 31px;
    }

    .philosophy-heading p {
        font-size: 14px;
    }

    .philosophy-flow {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .philosophy-step {
        width: 100%;
        max-width: 300px;
    }

    .philosophy-arrow {
        width: auto;
        min-width: auto;
        height: 42px;
    }

    .philosophy-arrow i {
        transform: rotate(90deg);
        font-size: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .monitoring-philosophy {
        padding: 45px 16px;
    }

    .philosophy-heading h3 {
        font-size: 28px;
    }

    .philosophy-icon {
        width: 62px;
        height: 62px;
    }

    .philosophy-icon i {
        font-size: 24px;
    }

    .philosophy-step h4 {
        font-size: 21px;
    }

    .philosophy-step p {
        font-size: 13px;
    }

}

/* =========================================================
   FINAL CTA
========================================================= */

.solution-cta {
    padding: 90px 0;
    background: #1f5d25;
    text-align: center;
}

.solution-cta h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 43px;
    line-height: 1.2;
    font-weight: 400;
}

.solution-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
}

.solution-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    background: #ffffff;
    color: #1f5d25;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.solution-cta .cta-btn:hover {
    background: #eaf6e8;
    color: #1f5d25;
}

.solution-cta .cta-btn i {
    transition: transform 0.3s ease;
}

.solution-cta .cta-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER
========================================================= */

.solution-footer {
    background: #122b17;
    color: #ffffff;
}

.solution-footer a {
    text-decoration: none;
}

.solution-footer .footer-top {
    padding: 70px 0 50px;
}

.solution-footer .footer-brand img {
    max-width: 180px;
    max-height: 65px;
    object-fit: contain;
    margin-bottom: 20px;
}

.solution-footer .footer-brand p {
    max-width: 350px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    line-height: 1.8;
}

.solution-footer .footer-tagline {
    color: #ffffff !important;
    font-weight: 600;
}

.solution-footer h4 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
}

.solution-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.solution-footer ul li {
    margin-bottom: 10px;
}

.solution-footer ul li a {
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    transition: all 0.3s ease;
}

.solution-footer ul li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.solution-footer .footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
}

.solution-footer .footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.60);
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .solution-detail-hero {
        min-height: 560px;
    }

    .solution-detail-hero h1 {
        font-size: 48px;
    }

    .solution-detail-hero .hero-description {
        font-size: 17px;
    }

    .crop-monitoring-section {
        padding: 80px 0;
    }

    .monitoring-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .monitoring-content h2 {
        font-size: 38px;
    }

    .monitoring-services-card {
        padding: 35px;
    }

    .monitoring-details {
        padding: 80px 0;
    }

    .monitor-process {
        padding: 80px 0;
    }

    .monitor-process-wrapper::before {
        display: none;
    }

    .monitor-process-item {
        margin-bottom: 40px;
    }

    .monitor-process-item:last-child {
        margin-bottom: 0;
    }

    .solution-cta {
        padding: 75px 0;
    }

    .solution-cta h2 {
        font-size: 38px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .solution-detail-hero {
        min-height: 520px;
    }

    .solution-detail-hero .hero-content {
        padding: 80px 0;
    }

    .solution-detail-hero .hero-text {
        max-width: 100%;
    }

    .solution-detail-hero .hero-eyebrow {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .solution-detail-hero h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .solution-detail-hero .hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .solution-hero-btn {
        padding: 13px 20px;
        font-size: 14px;
    }

    .crop-monitoring-section {
        padding: 65px 0;
    }

    .monitoring-content {
        margin-bottom: 40px;
    }

    .monitoring-content h2 {
        font-size: 34px;
    }

    .monitoring-content p {
        font-size: 15px;
    }

    .monitoring-services-card {
        padding: 28px 22px;
    }

    .monitoring-services-card h3 {
        font-size: 27px;
    }

    .monitoring-service-item {
        font-size: 14px;
    }

    .monitoring-details {
        padding: 65px 0;
    }

    .monitoring-details-header {
        margin-bottom: 40px;
    }

    .monitoring-details-header h2 {
        font-size: 34px;
    }

    .monitoring-detail-card {
        padding: 30px 25px;
    }

    .monitor-process {
        padding: 65px 0;
    }

    .monitor-process-header {
        margin-bottom: 45px;
    }

    .monitor-process-header h2 {
        font-size: 34px;
    }

    .monitoring-philosophy {
        margin-top: 45px;
        padding: 28px 20px;
    }

    .monitoring-philosophy h3 {
        font-size: 25px;
    }

    .monitoring-philosophy p {
        font-size: 17px;
        line-height: 1.8;
    }

    .solution-cta {
        padding: 65px 20px;
    }

    .solution-cta h2 {
        font-size: 34px;
    }

    .solution-cta p {
        font-size: 15px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .solution-detail-hero {
        min-height: 500px;
    }

    .solution-detail-hero h1 {
        font-size: 32px;
    }

    .solution-detail-hero .hero-description {
        font-size: 14px;
    }

    .solution-hero-btn {
        width: 100%;
        justify-content: center;
    }

    .monitoring-content h2 {
        font-size: 30px;
    }

    .monitoring-services-card {
        padding: 25px 18px;
    }

    .monitoring-services-card h3 {
        font-size: 24px;
    }

    .monitoring-details-header h2,
    .monitor-process-header h2,
    .solution-cta h2 {
        font-size: 30px;
    }

    .monitoring-detail-card h3 {
        font-size: 24px;
    }

    .monitoring-philosophy p {
        font-size: 15px;
    }
}

/* =========================================================
   KISSANDOCTOR - CROP DOCTOR
========================================================= */


/* =========================================================
   CROP DOCTOR MAIN HERO
========================================================= */

.crop-doctor-hero {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(18, 52, 22, 0.92),
            rgba(31, 93, 37, 0.55)
        ),
        url("../img/hero.jpg");

    background-size: cover;

    background-position: center;

}


.crop-doctor-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(18, 52, 22, 0.35),
            rgba(18, 52, 22, 0.05)
        );

}


.crop-doctor-hero-content {

    position: relative;

    z-index: 2;

    max-width: 760px;

    padding: 100px 0;
    

}


.hero-eyebrow {

    display: inline-block;

    margin-bottom: 20px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.crop-doctor-hero h1 {

    margin-bottom: 25px;

    color: #ffffff;

    font-family: var(--heading-font);

    font-size: 62px;

    line-height: 1.12;

    font-weight: 400;

}


.crop-doctor-hero p {

    max-width: 650px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 18px;

    line-height: 1.8;

}


/* =========================================================
   BUTTON
========================================================= */

.crop-doctor-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 27px;

    background: #2f7d32;

    color: #ffffff;

    text-decoration: none;

    border-radius: 4px;

    font-size: 15px;

    font-weight: 600;

    transition: all 0.3s ease;

}


.crop-doctor-btn:hover {

    background: #1f5d25;

    color: #ffffff;

}


.crop-doctor-btn i {

    transition: transform 0.3s ease;

}


.crop-doctor-btn:hover i {

    transform: translateX(5px);

}


/* =========================================================
   SECTION HEADING
========================================================= */

.crop-doctor-section-heading {

    max-width: 760px;

    margin: 0 auto 60px;

    text-align: center;

}


.crop-doctor-section-heading > span {

    display: block;

    margin-bottom: 13px;

    color: #2f7d32;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.crop-doctor-section-heading h2 {

    margin-bottom: 20px;

    color: var(--heading-color);

    font-family: var(--heading-font);

    font-size: 43px;

    line-height: 1.25;

    font-weight: 400;

}


.crop-doctor-section-heading p {

    margin: 0;

    color: #666666;

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   INTRO
========================================================= */

.crop-doctor-intro {

    padding: 100px 0 40px;

    background: #ffffff;

}


/* =========================================================
   CROP CARDS
========================================================= */

.crop-doctor-cards-section {

    padding: 40px 0 100px;

    background: #ffffff;

}


.crop-doctor-card {

    height: 100%;

    background: #ffffff;

    border: 1px solid #e4ece2;

    border-radius: 8px;

    overflow: hidden;

    transition: all 0.3s ease;

}


.crop-doctor-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(31, 93, 37, 0.12);

}


.crop-doctor-image {

    position: relative;

    height: 250px;

    overflow: hidden;

}


.crop-doctor-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}


.crop-doctor-card:hover
.crop-doctor-image img {

    transform: scale(1.06);

}


.crop-number {

    position: absolute;

    left: 20px;

    bottom: 18px;

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #2f7d32;

    color: #ffffff;

    border-radius: 50%;

    font-size: 12px;

    font-weight: 700;

}


.crop-doctor-card-content {

    padding: 30px;

}


.crop-label {

    display: block;

    margin-bottom: 10px;

    color: #2f7d32;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.crop-doctor-card-content h3 {

    margin-bottom: 15px;

    color: var(--heading-color);

    font-family: var(--heading-font);

    font-size: 29px;

    font-weight: 400;

}


.crop-doctor-card-content p {

    margin-bottom: 22px;

    color: #666666;

    font-size: 14px;

    line-height: 1.8;

}


.crop-learn-more {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #2f7d32;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

}


.crop-learn-more:hover {

    color: #1f5d25;

}


.crop-learn-more i {

    transition: transform 0.3s ease;

}


.crop-learn-more:hover i {

    transform: translateX(5px);

}


/* =========================================================
   PROCESS
========================================================= */

.crop-doctor-process {

    padding: 100px 0;

    background: #f6faf5;

}


.crop-process-card {

    height: 100%;

    padding: 35px 28px;

    background: #ffffff;

    border: 1px solid #e1ebe0;

    border-radius: 8px;

    text-align: center;

    transition: all 0.3s ease;

}


.crop-process-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(31, 93, 37, 0.10);

}


.process-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 18px;

    background: #eaf6e8;

    border-radius: 50%;

}


.process-icon i {

    color: #2f7d32;

    font-size: 27px;

}


.crop-process-card > span {

    display: block;

    margin-bottom: 10px;

    color: #2f7d32;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

}


.crop-process-card h3 {

    margin-bottom: 12px;

    color: var(--heading-color);

    font-family: var(--heading-font);

    font-size: 25px;

    font-weight: 400;

}


.crop-process-card p {

    margin: 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   MAIN CROP DETAIL HERO
========================================================= */

.crop-detail-hero {

    position: relative;

    min-height: 610px;

    display: flex;

    align-items: center;

    background-size: cover;

    background-position: center;

}


.crop-detail-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15, 48, 20, 0.91),
            rgba(20, 66, 27, 0.55),
            rgba(20, 66, 27, 0.18)
        );

}


.crop-detail-hero-content {

    position: relative;

    z-index: 2;

    max-width: 800px;

    padding: 100px 0;

}


.crop-detail-hero-content > span {

    display: inline-block;

    margin-bottom: 18px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.crop-detail-hero-content h1 {

    margin-bottom: 15px;

    color: #ffffff;

    font-family: var(--heading-font);

    font-size: 62px;

    line-height: 1.15;

    font-weight: 400;

}


.crop-detail-hero-content h2 {

    margin-bottom: 22px;

    color: #ffffff;

    font-family: var(--heading-font);

    font-size: 30px;

    line-height: 1.3;

    font-weight: 400;

}


.crop-detail-hero-content p {

    max-width: 680px;

    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.87);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   DETAIL SECTION
========================================================= */

.crop-detail-section {

    padding: 100px 0;

    background: #ffffff;

}


.detail-label {

    display: block;

    margin-bottom: 12px;

    color: #2f7d32;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.crop-detail-section h2 {

    margin-bottom: 25px;

    color: var(--heading-color);

    font-family: var(--heading-font);

    font-size: 45px;

    font-weight: 400;

}


.crop-detail-section p {

    color: #555555;

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   CROP FOCUS CARD
========================================================= */

.crop-focus-card {

    padding: 40px;

    background: #f5f9f3;

    border: 1px solid #e1ebe0;

    border-radius: 8px;

}


.crop-focus-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    background: #eaf6e8;

    border-radius: 50%;

}


.crop-focus-icon i {

    color: #2f7d32;

    font-size: 28px;

}


.crop-focus-card h3 {

    margin-bottom: 25px;

    color: var(--heading-color);

    font-family: var(--heading-font);

    font-size: 28px;

    font-weight: 400;

}


.focus-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

}


.focus-list span {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #555555;

    font-size: 14px;

}


.focus-list i {

    color: #2f7d32;

}


/* =========================================================
   PROBLEMS
========================================================= */

.crop-problems-section {

    padding: 100px 0;

    background: #f7faf6;

}


.detail-heading {

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;

}


.detail-heading > span {

    display: block;

    margin-bottom: 12px;

    color: #2f7d32;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.detail-heading h2 {

    margin-bottom: 18px;

    color: var(--heading-color);

    font-family: var(--heading-font);

    font-size: 42px;

    line-height: 1.25;

    font-weight: 400;

}


.detail-heading p {

    margin: 0;

    color: #666666;

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   PROBLEM CARD
========================================================= */

.problem-card {

    height: 100%;

    padding: 35px 30px;

    background: #ffffff;

    border: 1px solid #e3ece1;

    border-radius: 8px;

    transition: all 0.3s ease;

}


.problem-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(31, 93, 37, 0.10);

}


.problem-card > i {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 60px;

    height: 60px;

    margin-bottom: 20px;

    background: #eaf6e8;

    border-radius: 50%;

    color: #2f7d32;

    font-size: 27px;

}


.problem-card h3 {

    margin-bottom: 20px;

    color: var(--heading-color);

    font-family: var(--heading-font);

    font-size: 27px;

    font-weight: 400;

}


.problem-card ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.problem-card li {

    position: relative;

    margin-bottom: 11px;

    padding-left: 23px;

    color: #666666;

    font-size: 14px;

}


.problem-card li::before {

    content: "\f26a";

    position: absolute;

    left: 0;

    top: 0;

    color: #2f7d32;

    font-family: "bootstrap-icons";

}


/* =========================================================
   DIAGNOSIS
========================================================= */

.diagnosis-section {

    padding: 100px 0;

    background: #ffffff;

}


.diagnosis-flow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

}


.diagnosis-flow > i {

    color: #86a987;

    font-size: 25px;

}


.diagnosis-step {

    width: 190px;

    padding: 30px 20px;

    text-align: center;

}


.diagnosis-step > span {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 17px;

    background: #2f7d32;

    border: 6px solid #eaf6e8;

    border-radius: 50%;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

}


.diagnosis-step h3 {

    margin-bottom: 10px;

    color: var(--heading-color);

    font-family: var(--heading-font);

    font-size: 23px;

    font-weight: 400;

}


.diagnosis-step p {

    margin: 0;

    color: #666666;

    font-size: 13px;

    line-height: 1.6;

}


/* =========================================================
   PRACTICES
========================================================= */

.crop-practices-section {

    padding: 100px 0;

    background: #f7faf6;

}


.practice-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.practice-card {

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e2ebe0;

    border-radius: 8px;

    transition: all 0.3s ease;

}


.practice-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(31, 93, 37, 0.09);

}


.practice-card > span {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 36px;

    height: 36px;

    margin-bottom: 17px;

    background: #eaf6e8;

    border-radius: 50%;

    color: #2f7d32;

    font-size: 11px;

    font-weight: 700;

}


.practice-card h3 {

    margin-bottom: 12px;

    color: var(--heading-color);

    font-family: var(--heading-font);

    font-size: 24px;

    font-weight: 400;

}


.practice-card p {

    margin: 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   STAGE TABLE
========================================================= */

.stage-table {

    border: 1px solid #dfe9dd;

    border-radius: 8px;

    overflow: hidden;

    background: #ffffff;

}


.stage-row {

    display: grid;

    grid-template-columns: 35% 65%;

    border-bottom: 1px solid #e5ece3;

}


.stage-row:last-child {

    border-bottom: none;

}


.stage-row > div {

    padding: 17px 22px;

    color: #555555;

    font-size: 14px;

}


.stage-row > div:first-child {

    color: var(--heading-color);

    font-weight: 600;

}


.stage-header {

    background: #2f7d32;

}


.stage-header > div {

    color: #ffffff !important;

    font-weight: 600;

}


/* =========================================================
   PRODUCTS
========================================================= */

.crop-products-section {

    padding: 100px 0;

    background: #ffffff;

}


.product-placeholder-card {

    height: 100%;

    padding: 35px 30px;

    background: #f7faf6;

    border: 1px solid #e1ebe0;

    border-radius: 8px;

    transition: all 0.3s ease;

}


.product-placeholder-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(31, 93, 37, 0.10);

}


.product-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    background: #eaf6e8;

    border-radius: 50%;

}


.product-icon i {

    color: #2f7d32;

    font-size: 26px;

}


.product-placeholder-card h3 {

    margin-bottom: 15px;

    color: var(--heading-color);

    font-family: var(--heading-font);

    font-size: 25px;

    font-weight: 400;

}


.product-placeholder-card p {

    margin-bottom: 20px;

    color: #666666;

    font-size: 14px;

    line-height: 1.7;

}


.product-placeholder-card a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #2f7d32;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

}


/* =========================================================
   MONITORING
========================================================= */

.crop-monitoring-section {

    padding: 100px 0;

    background: #f7faf6;

}


.monitor-card {

    height: 100%;

    padding: 30px 25px;

    background: #ffffff;

    border: 1px solid #e1ebe0;

    border-radius: 8px;

    text-align: center;

}


.monitor-card > i {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 58px;

    height: 58px;

    margin-bottom: 18px;

    background: #eaf6e8;

    border-radius: 50%;

    color: #2f7d32;

    font-size: 25px;

}


.monitor-card h3 {

    margin-bottom: 12px;

    color: var(--heading-color);

    font-family: var(--heading-font);

    font-size: 23px;

    font-weight: 400;

}


.monitor-card p {

    margin: 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   EXPERT ADVICE
========================================================= */

.expert-advice-section {

    padding: 100px 0;

    background: #ffffff;

}


.expert-advice-box {

    max-width: 850px;

    margin: auto;

    padding: 65px 40px;

    background: #f1f8ef;

    border: 1px solid #dce9d9;

    border-radius: 10px;

    text-align: center;

}


.expert-advice-box > span {

    display: block;

    margin-bottom: 12px;

    color: #2f7d32;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.expert-advice-box h2 {

    margin-bottom: 18px;

    color: var(--heading-color);

    font-family: var(--heading-font);

    font-size: 40px;

    font-weight: 400;

}


.expert-advice-box p {

    max-width: 600px;

    margin: 0 auto 28px;

    color: #666666;

    font-size: 15px;

    line-height: 1.8;

}


.expert-advice-box a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 25px;

    background: #2f7d32;

    color: #ffffff;

    text-decoration: none;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 600;

}


.expert-advice-box a:hover {

    background: #1f5d25;

    color: #ffffff;

}


/* =========================================================
   CTA
========================================================= */

.crop-doctor-cta {

    padding: 90px 0;

    background: #1f5d25;

}


.crop-doctor-cta-content {

    max-width: 750px;

    margin: auto;

    text-align: center;

}


.crop-doctor-cta-content > span {

    display: block;

    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}


.crop-doctor-cta-content h2 {

    margin-bottom: 18px;

    color: #ffffff;

    font-family: var(--heading-font);

    font-size: 43px;

    font-weight: 400;

}


.crop-doctor-cta-content p {

    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;

    line-height: 1.8;

}


.crop-doctor-cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 28px;

    background: #ffffff;

    color: #1f5d25;

    text-decoration: none;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 600;

}


.crop-doctor-cta-btn:hover {

    background: #eaf6e8;

    color: #1f5d25;

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991px) {

    .crop-doctor-hero,
    .crop-detail-hero {

        min-height: 560px;

    }


    .crop-doctor-hero h1,
    .crop-detail-hero-content h1 {

        font-size: 50px;

    }


    .crop-detail-hero-content h2 {

        font-size: 27px;

    }


    .diagnosis-flow {

        flex-wrap: wrap;

        gap: 10px;

    }


    .practice-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .diagnosis-flow > i {

        display: none;

    }


    .diagnosis-step {

        width: 45%;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .crop-doctor-hero,
    .crop-detail-hero {

        min-height: 530px;

    }


    .crop-doctor-hero-content,
    .crop-detail-hero-content {

        padding: 80px 0;

    }


    .crop-doctor-hero h1,
    .crop-detail-hero-content h1 {

        font-size: 38px;

    }


    .crop-doctor-hero p,
    .crop-detail-hero-content p {

        font-size: 14px;

    }


    .crop-detail-hero-content h2 {

        font-size: 24px;

    }


    .crop-doctor-intro,
    .crop-doctor-process,
    .crop-detail-section,
    .crop-problems-section,
    .diagnosis-section,
    .crop-practices-section,
    .crop-products-section,
    .crop-monitoring-section,
    .expert-advice-section {

        padding: 65px 0;

    }


    .crop-doctor-section-heading h2,
    .detail-heading h2 {

        font-size: 33px;

    }


    .crop-doctor-image {

        height: 220px;

    }


    .crop-doctor-card-content {

        padding: 25px;

    }


    .crop-detail-section h2 {

        font-size: 35px;

    }


    .crop-focus-card {

        padding: 28px 22px;

    }


    .focus-list {

        grid-template-columns: 1fr;

    }


    .practice-grid {

        grid-template-columns: 1fr;

    }


    .diagnosis-step {

        width: 100%;

    }


    .stage-row {

        grid-template-columns: 1fr;

    }


    .stage-header {

        display: none;

    }


    .stage-row > div {

        padding: 13px 18px;

    }


    .stage-row > div:first-child {

        background: #f1f7ef;

    }


    .expert-advice-box {

        padding: 45px 25px;

    }


    .expert-advice-box h2 {

        font-size: 32px;

    }


    .crop-doctor-cta {

        padding: 65px 20px;

    }


    .crop-doctor-cta-content h2 {

        font-size: 34px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .crop-doctor-hero h1,
    .crop-detail-hero-content h1 {

        font-size: 33px;

    }


    .crop-detail-hero-content h2 {

        font-size: 21px;

    }


    .crop-doctor-btn {

        width: 100%;

        justify-content: center;

    }


    .crop-doctor-section-heading h2,
    .detail-heading h2 {

        font-size: 29px;

    }


    .crop-detail-section h2 {

        font-size: 31px;

    }


    .problem-card,
    .product-placeholder-card {

        padding: 28px 22px;

    }


    .expert-advice-box h2 {

        font-size: 29px;

    }

}

/* =========================================================
   KNOWLEDGE CENTRE HERO
========================================================= */

.knowledge-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #18321c;
}

.knowledge-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.knowledge-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.knowledge-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(16, 48, 21, 0.92),
        rgba(24, 50, 28, 0.72),
        rgba(24, 50, 28, 0.30)
    );
}

.knowledge-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0;
    color: #ffffff;
}

.knowledge-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #b9dcae;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.knowledge-hero h1 {
    max-width: 750px;
    margin: 0 0 20px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 58px;
    line-height: 1.15;
    font-weight: 400;
}

.knowledge-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   INTRO
========================================================= */

.knowledge-intro {
    padding: 90px 0 70px;
}

.knowledge-intro-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.knowledge-intro .section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.knowledge-intro h2 {
    margin: 0 0 20px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.25;
    font-weight: 400;
}

.knowledge-intro p {
    max-width: 760px;
    margin: 0 auto;
    color: #666666;
    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   KNOWLEDGE CATEGORIES
========================================================= */

.knowledge-categories {
    padding: 20px 0 100px;
}

.knowledge-category-card {
    position: relative;
    height: 100%;
    padding: 38px 32px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5ebe4;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.knowledge-category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.knowledge-category-card:hover {
    border-color: #cfe0cc;
    box-shadow: 0 18px 40px rgba(35, 75, 40, 0.10);
    transform: translateY(-7px);
}

.knowledge-category-card:hover::before {
    transform: scaleX(1);
}

.knowledge-category-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: var(--primary-light);
    border-radius: 50%;
}

.knowledge-category-icon i {
    color: var(--primary-color);
    font-size: 28px;
}

.knowledge-category-number {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #e7eee5;
    font-size: 42px;
    font-weight: 700;
}

.knowledge-category-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 13px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 400;
}

.knowledge-category-card p {
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   FEATURED ARTICLES
========================================================= */

.knowledge-articles {
    padding: 100px 0;
    background: #f5f9f3;
}

.knowledge-section-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.knowledge-section-heading .section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.knowledge-section-heading h2 {
    margin: 0 0 15px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.25;
    font-weight: 400;
}

.knowledge-section-heading p {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   ARTICLE CARDS
========================================================= */

.knowledge-article-card {
    height: 100%;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e1e9df;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.knowledge-article-card:hover {
    box-shadow: 0 15px 35px rgba(35, 75, 40, 0.09);
    transform: translateY(-5px);
}

.article-category {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 13px;
    background: var(--primary-light);
    border-radius: 30px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.knowledge-article-card h3 {
    margin: 0 0 15px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 22px;
    line-height: 1.4;
    font-weight: 400;
}

.knowledge-article-card p {
    margin: 0 0 22px;
    color: #666666;
    font-size: 14px;
    line-height: 1.75;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.article-link:hover {
    color: var(--primary-dark);
}

.article-link i {
    transition: transform 0.3s ease;
}

.article-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   KNOWLEDGE PHILOSOPHY
========================================================= */

.knowledge-philosophy {
    padding: 100px 0;
}

.knowledge-philosophy-box {
    position: relative;
    padding: 70px 60px;
    overflow: hidden;
    background: #18321c;
    border-radius: 14px;
    text-align: center;
}

.knowledge-philosophy-box::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.knowledge-philosophy-box::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.knowledge-philosophy-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.knowledge-philosophy-content .section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #b9dcae;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.knowledge-philosophy-content h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 400;
}

.knowledge-philosophy-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   CTA
========================================================= */

.knowledge-cta {
    padding: 0 0 100px;
}

.knowledge-cta-box {
    padding: 60px;
    background: #eaf6e8;
    border-radius: 14px;
    text-align: center;
}

.knowledge-cta-box h2 {
    margin: 0 0 15px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 400;
}

.knowledge-cta-box p {
    max-width: 700px;
    margin: 0 auto 28px;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

.knowledge-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: var(--primary-color);
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.knowledge-cta-btn:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .knowledge-hero {
        min-height: 430px;
    }

    .knowledge-hero h1 {
        font-size: 48px;
    }

    .knowledge-intro,
    .knowledge-articles,
    .knowledge-philosophy {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .knowledge-category-card {
        padding: 32px 28px;
    }

    .knowledge-philosophy-box {
        padding: 55px 35px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .knowledge-hero {
        min-height: 400px;
    }

    .knowledge-hero-content {
        padding: 80px 0;
    }

    .knowledge-hero h1 {
        font-size: 40px;
    }

    .knowledge-hero p {
        font-size: 15px;
    }

    .knowledge-intro h2,
    .knowledge-section-heading h2,
    .knowledge-philosophy-content h2 {
        font-size: 34px;
    }

    .knowledge-cta-box {
        padding: 45px 25px;
    }

    .knowledge-cta-box h2 {
        font-size: 32px;
    }

}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .knowledge-hero h1 {
        font-size: 34px;
    }

    .knowledge-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .knowledge-intro h2,
    .knowledge-section-heading h2,
    .knowledge-philosophy-content h2 {
        font-size: 30px;
    }

    .knowledge-category-card {
        padding: 28px 24px;
    }

    .knowledge-philosophy-box {
        padding: 45px 25px;
    }

}

/* =========================================================
   ENQUIRY HERO
========================================================= */

.enquiry-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #18321c;
}

.enquiry-hero-background {
    position: absolute;
    inset: 0;
}

.enquiry-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enquiry-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(18, 55, 23, 0.94),
        rgba(24, 50, 28, 0.75),
        rgba(24, 50, 28, 0.35)
    );
}

.enquiry-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 100px 0;
    color: #ffffff;
}

.enquiry-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #b9dcae;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.enquiry-hero h1 {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 58px;
    line-height: 1.15;
    font-weight: 400;
}

.enquiry-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   FARMER ENQUIRY SECTION
========================================================= */

.farmer-enquiry-section {
    padding: 100px 0;
    background: #ffffff;
}

.enquiry-content {
    padding-top: 15px;
}

.enquiry-content .section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.enquiry-content h2 {
    margin: 0 0 22px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.25;
    font-weight: 400;
}

.enquiry-content > p {
    margin: 0 0 18px;
    color: #666666;
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   PHILOSOPHY BOX
========================================================= */

.enquiry-philosophy {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 35px;
    padding: 25px;
    background: #f5f9f3;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.enquiry-philosophy-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #dce8d9;
    border-radius: 50%;
}

.enquiry-philosophy-icon i {
    color: var(--primary-color);
    font-size: 23px;
}

.enquiry-philosophy h3 {
    margin: 0 0 7px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 400;
}

.enquiry-philosophy p {
    margin: 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   ENQUIRY POINTS
========================================================= */

.enquiry-points {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 28px;
}

.enquiry-point {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #555555;
    font-size: 14px;
}

.enquiry-point i {
    color: var(--primary-color);
    font-size: 18px;
}


/* =========================================================
   FORM CARD
========================================================= */

.farmer-enquiry-form-card {
    padding: 45px;
    background: #ffffff;
    border: 1px solid #e2eae0;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(35, 75, 40, 0.08);
}

.form-header {
    margin-bottom: 32px;
}

.form-number {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.form-header h2 {
    margin: 0 0 10px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 400;
}

.form-header p {
    margin: 0;
    color: #777777;
    font-size: 14px;
}


/* =========================================================
   FORM
========================================================= */

.farmer-enquiry-form label {
    display: block;
    margin-bottom: 9px;
    color: #263b29;
    font-size: 13px;
    font-weight: 700;
}

.farmer-enquiry-form label span {
    color: #d9534f;
}

.input-wrapper,
.textarea-wrapper {
    position: relative;
}

.input-wrapper > i,
.textarea-wrapper > i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;
    color: #7b927d;
    font-size: 17px;
    transform: translateY(-50%);
    pointer-events: none;
}

.textarea-wrapper > i {
    top: 19px;
    transform: none;
}

.farmer-enquiry-form .form-control {
    min-height: 52px;
    padding: 13px 16px 13px 45px;
    background: #fafcf9;
    border: 1px solid #dfe8dd;
    border-radius: 7px;
    color: #333333;
    font-family: var(--nav-font);
    font-size: 14px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.farmer-enquiry-form textarea.form-control {
    min-height: 145px;
    resize: vertical;
    padding-top: 15px;
}

.farmer-enquiry-form .form-control:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(47, 125, 50, 0.08);
}

.farmer-enquiry-form .form-control::placeholder {
    color: #9aa49b;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.submit-farm-btn {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 5px;
    padding: 14px 25px;
    background: var(--primary-color);
    border: 0;
    border-radius: 6px;
    color: #ffffff;
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-farm-btn:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.submit-farm-btn i {
    transition: transform 0.3s ease;
}

.submit-farm-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   PROCESS SECTION
========================================================= */

.enquiry-process-section {
    padding: 100px 0;
    background: #f5f9f3;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading .section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 15px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.25;
    font-weight: 400;
}

.section-heading p {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   PROCESS CARDS
========================================================= */

.enquiry-process-card {
    position: relative;
    height: 100%;
    padding: 38px 28px;
    background: #ffffff;
    border: 1px solid #e1e9df;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.enquiry-process-card:hover {
    box-shadow: 0 15px 35px rgba(35, 75, 40, 0.09);
    transform: translateY(-6px);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #e7eee5;
    font-size: 32px;
    font-weight: 700;
}

.process-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: var(--primary-light);
    border-radius: 50%;
}

.process-icon i {
    color: var(--primary-color);
    font-size: 26px;
}

.enquiry-process-card h3 {
    margin: 0 0 13px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 23px;
    font-weight: 400;
}

.enquiry-process-card p {
    margin: 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   FINAL SECTION
========================================================= */

.enquiry-final-section {
    padding: 100px 0;
}

.enquiry-final-box {
    position: relative;
    padding: 70px 50px;
    background: #18321c;
    border-radius: 14px;
    text-align: center;
    overflow: hidden;
}

.enquiry-final-box::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: -140px;
    right: -80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.enquiry-final-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: -70px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.enquiry-final-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.enquiry-final-icon i {
    color: #b9dcae;
    font-size: 30px;
}

.enquiry-final-box h2 {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 17px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 40px;
    line-height: 1.3;
    font-weight: 400;
}

.enquiry-final-box p {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.8;
}

.back-to-form-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: #ffffff;
    border-radius: 5px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-form-btn:hover {
    background: #eaf6e8;
    color: var(--primary-dark);
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .enquiry-hero {
        min-height: 430px;
    }

    .enquiry-hero h1 {
        font-size: 48px;
    }

    .farmer-enquiry-section,
    .enquiry-process-section,
    .enquiry-final-section {
        padding: 75px 0;
    }

    .farmer-enquiry-form-card {
        padding: 35px;
    }

    .enquiry-content h2 {
        font-size: 38px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .enquiry-hero {
        min-height: 400px;
    }

    .enquiry-hero-content {
        padding: 80px 0;
    }

    .enquiry-hero h1 {
        font-size: 40px;
    }

    .enquiry-hero p {
        font-size: 15px;
    }

    .enquiry-content h2 {
        font-size: 34px;
    }

    .farmer-enquiry-form-card {
        padding: 28px 22px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .enquiry-final-box {
        padding: 55px 25px;
    }

    .enquiry-final-box h2 {
        font-size: 32px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .enquiry-hero h1 {
        font-size: 34px;
    }

    .enquiry-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .enquiry-content h2 {
        font-size: 30px;
    }

    .enquiry-philosophy {
        padding: 20px;
    }

    .farmer-enquiry-form-card {
        padding: 25px 18px;
    }

    .enquiry-final-box h2 {
        font-size: 28px;
    }

}

/* =========================================================
   IMPACT HERO
========================================================= */

.impact-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #18321c;
}

.impact-hero-background {
    position: absolute;
    inset: 0;
}

.impact-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(18, 55, 23, 0.94),
        rgba(24, 50, 28, 0.75),
        rgba(24, 50, 28, 0.35)
    );
}

.impact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 100px 0;
}

.impact-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #b9dcae;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.impact-hero h1 {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 58px;
    line-height: 1.15;
    font-weight: 400;
}

.impact-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   INTRO
========================================================= */

.impact-intro {
    padding: 90px 0 70px;
}

.impact-intro-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.impact-intro .section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.impact-intro h2 {
    margin: 0 0 20px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.25;
    font-weight: 400;
}

.impact-intro p {
    max-width: 730px;
    margin: 0 auto;
    color: #666666;
    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   DASHBOARD SECTION
========================================================= */

.impact-dashboard-section {
    padding: 30px 0 100px;
}

.impact-dashboard {
    padding: 55px;
    background: #f5f9f3;
    border: 1px solid #e0e9de;
    border-radius: 14px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.dashboard-header .section-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dashboard-header h2 {
    margin: 0;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 38px;
    font-weight: 400;
}

.dashboard-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    background: #ffffff;
    border: 1px solid #dce7da;
    border-radius: 30px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.dashboard-status i {
    font-size: 17px;
}


/* =========================================================
   IMPACT CARDS
========================================================= */

.impact-card {
    position: relative;
    height: 100%;
    padding: 35px 30px;
    background: #ffffff;
    border: 1px solid #e0e9de;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.impact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    border-color: #cdddc9;
    box-shadow: 0 16px 35px rgba(35, 75, 40, 0.09);
    transform: translateY(-6px);
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: var(--primary-light);
    border-radius: 50%;
}

.impact-icon i {
    color: var(--primary-color);
    font-size: 25px;
}

.impact-number {
    margin-bottom: 7px;
    color: var(--primary-color);
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
}

.impact-card h3 {
    margin: 0 0 12px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 23px;
    line-height: 1.35;
    font-weight: 400;
}

.impact-card p {
    margin: 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   IMPACT AREAS
========================================================= */

.impact-areas-section {
    padding: 100px 0;
}

.impact-section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.impact-section-heading .section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.impact-section-heading h2 {
    margin: 0 0 15px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 400;
}

.impact-section-heading p {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   IMPACT AREA CARDS
========================================================= */

.impact-area-card {
    height: 100%;
    padding: 35px 28px;
    background: #ffffff;
    border: 1px solid #e3ebe1;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.impact-area-card:hover {
    border-color: #cbdcc8;
    box-shadow: 0 15px 35px rgba(35, 75, 40, 0.08);
    transform: translateY(-5px);
}

.impact-area-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--primary-light);
    border-radius: 50%;
}

.impact-area-icon i {
    color: var(--primary-color);
    font-size: 26px;
}

.impact-area-card h3 {
    margin: 0 0 12px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 23px;
    font-weight: 400;
}

.impact-area-card p {
    margin: 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   FUTURE IMPACT
========================================================= */

.future-impact-section {
    padding: 0 0 100px;
}

.future-impact-box {
    position: relative;
    padding: 70px 60px;
    background: #18321c;
    border-radius: 14px;
    overflow: hidden;
}

.future-impact-box::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -70px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.future-impact-box::after {
    content: "";
    position: absolute;
    bottom: -130px;
    left: -70px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.future-impact-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.future-impact-content .section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #b9dcae;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.future-impact-content h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.3;
    font-weight: 400;
}

.future-impact-content > p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.9;
}

.future-impact-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 35px;
    max-width: 650px;
    margin-top: 30px;
}

.future-impact-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}

.future-impact-points i {
    color: #b9dcae;
    font-size: 17px;
}


/* =========================================================
   CTA
========================================================= */

.impact-cta-section {
    padding: 0 0 100px;
}

.impact-cta-box {
    padding: 65px 40px;
    background: #eaf6e8;
    border-radius: 14px;
    text-align: center;
}

.impact-cta-box .section-label {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.impact-cta-box h2 {
    margin: 0 0 17px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 400;
}

.impact-cta-box p {
    max-width: 700px;
    margin: 0 auto 28px;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

.impact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: var(--primary-color);
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.impact-cta-btn:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.impact-cta-btn i {
    transition: transform 0.3s ease;
}

.impact-cta-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .impact-hero {
        min-height: 430px;
    }

    .impact-hero h1 {
        font-size: 48px;
    }

    .impact-intro,
    .impact-areas-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .impact-dashboard {
        padding: 40px 30px;
    }

    .dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .future-impact-box {
        padding: 55px 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .impact-hero {
        min-height: 400px;
    }

    .impact-hero-content {
        padding: 80px 0;
    }

    .impact-hero h1 {
        font-size: 40px;
    }

    .impact-hero p {
        font-size: 15px;
    }

    .impact-intro h2,
    .impact-section-heading h2 {
        font-size: 34px;
    }

    .dashboard-header h2 {
        font-size: 32px;
    }

    .impact-dashboard {
        padding: 35px 20px;
    }

    .dashboard-status {
        white-space: normal;
    }

    .future-impact-box {
        padding: 45px 25px;
    }

    .future-impact-content h2 {
        font-size: 34px;
    }

    .future-impact-points {
        grid-template-columns: 1fr;
    }

    .impact-cta-box {
        padding: 50px 25px;
    }

    .impact-cta-box h2 {
        font-size: 32px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .impact-hero h1 {
        font-size: 34px;
    }

    .impact-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .impact-intro h2,
    .impact-section-heading h2 {
        font-size: 30px;
    }

    .impact-card {
        padding: 30px 24px;
    }

    .impact-number {
        font-size: 38px;
    }

    .future-impact-content h2 {
        font-size: 30px;
    }

}

/* =========================================================
   CONTACT PAGE
   KISSANDOCTOR
========================================================= */


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(18, 43, 23, 0.94),
        rgba(18, 43, 23, 0.70),
        rgba(18, 43, 23, 0.35)
    );
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    max-width: 760px;
    padding: 90px 0;
}

.contact-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: #d9efd3;
    font-family: var(--nav-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-hero h1 {
    margin: 0 0 22px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.08;
    font-weight: 400;
}

.contact-hero p {
    max-width: 650px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
}

.contact-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-hero-btn:hover {
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);
}


/* =========================================================
   INTRO
========================================================= */

.contact-intro {
    padding: 90px 0 70px;
    background: var(--white);
}

.section-heading {
    max-width: 760px;
    margin: auto;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-family: var(--nav-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 18px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 400;
}

.section-heading p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    padding: 30px 0 100px;
    background: #f8fbf7;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info {
    height: 100%;
    padding: 20px 20px 20px 0;
}

.contact-info h2 {
    margin: 0 0 20px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 400;
}

.contact-info-text {
    max-width: 480px;
    margin-bottom: 38px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


/* Contact item */

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    background: var(--primary-light);
    font-size: 21px;
}

.contact-info-content span {
    display: block;
    margin-bottom: 5px;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info-content p {
    margin: 0;
    color: var(--heading-color);
    font-size: 15px;
    line-height: 1.6;
}

.contact-info-content a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--primary-color);
}


/* =========================================================
   QUICK CONTACT
========================================================= */

.quick-contact {
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid #dfe8df;
}

.quick-contact h4 {
    margin-bottom: 18px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 400;
}

.quick-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border: 1px solid #d7e2d7;
    border-radius: 5px;
    color: var(--heading-color);
    background: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-contact-btn i {
    color: var(--primary-color);
    font-size: 16px;
}

.quick-contact-btn:hover {
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.quick-contact-btn:hover i {
    color: var(--white);
}


/* =========================================================
   CONTACT FORM CARD
========================================================= */

.contact-form-card {
    padding: 45px;
    border: 1px solid #e4ebe4;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 15px 45px rgba(25, 60, 30, 0.07);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h2 {
    margin: 0 0 12px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 34px;
    font-weight: 400;
}

.contact-form-header p {
    margin: 0;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.contact-form-card label {
    display: block;
    margin-bottom: 8px;
    color: var(--heading-color);
    font-size: 13px;
    font-weight: 700;
}

.form-input-wrapper,
.form-textarea-wrapper {
    position: relative;
}

.form-input-wrapper > i,
.form-textarea-wrapper > i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;
    color: #7b927e;
    font-size: 16px;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-textarea-wrapper > i {
    top: 18px;
    transform: none;
}

.contact-form-card .form-control {
    min-height: 52px;
    padding: 13px 16px 13px 45px;
    border: 1px solid #dce5dc;
    border-radius: 6px;
    color: var(--text-color);
    background: #fbfdfb;
    font-family: var(--nav-font);
    font-size: 14px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.contact-form-card textarea.form-control {
    min-height: 140px;
    resize: vertical;
    padding-top: 15px;
}

.contact-form-card select.form-control {
    cursor: pointer;
}

.contact-form-card .form-control::placeholder {
    color: #9aa59c;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(47, 125, 50, 0.08);
}

.contact-form-card .form-input-wrapper:focus-within > i,
.contact-form-card .form-textarea-wrapper:focus-within > i {
    color: var(--primary-color);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-btn {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 5px;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    color: var(--white);
    background: var(--primary-color);
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-submit-btn i {
    font-size: 17px;
}


/* =========================================================
   FARM SUPPORT SECTION
========================================================= */

.contact-help-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-help-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    padding: 60px;
    border-radius: 14px;
    background: var(--primary-light);
}

.contact-help-content h2 {
    margin: 0 0 20px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.2;
    font-weight: 400;
}

.contact-help-content p {
    max-width: 500px;
    margin: 0;
    color: #5f6f61;
    font-size: 15px;
    line-height: 1.9;
}


/* Help points */

.contact-help-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.help-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px;
    border: 1px solid rgba(47, 125, 50, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.75);
}

.help-point > span {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.help-point h4 {
    margin: 0 0 6px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 400;
}

.help-point p {
    margin: 0;
    color: #687568;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   CTA
========================================================= */

.contact-cta-section {
    padding: 0 0 100px;
    background: var(--white);
}

.contact-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 55px 60px;
    border-radius: 12px;
    background: var(--heading-color);
}

.contact-cta-box .section-eyebrow {
    color: #b9d9b7;
}

.contact-cta-box h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 400;
}

.contact-cta-box p {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
}

.contact-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 23px;
    border-radius: 6px;
    color: var(--white);
    background: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.contact-cta-btn:hover {
    color: var(--white);
    background: #256428;
    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .contact-hero {
        min-height: 500px;
    }

    .contact-hero-content {
        padding: 80px 0;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-form-card {
        padding: 35px;
    }

    .contact-help-box {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 45px;
    }

    .contact-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 45px;
    }

}


@media (max-width: 767px) {

    .contact-hero {
        min-height: 470px;
    }

    .contact-hero-content {
        padding: 70px 0;
    }

    .contact-hero h1 {
        font-size: 46px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .contact-intro {
        padding: 70px 0 50px;
    }

    .contact-section {
        padding-bottom: 70px;
    }

    .contact-form-card {
        padding: 28px 22px;
    }

    .contact-form-header h2 {
        font-size: 29px;
    }

    .contact-help-section {
        padding: 70px 0;
    }

    .contact-help-box {
        padding: 35px 25px;
    }

    .contact-help-points {
        grid-template-columns: 1fr;
    }

    .contact-cta-section {
        padding-bottom: 70px;
    }

    .contact-cta-box {
        padding: 35px 25px;
    }

}


@media (max-width: 480px) {

    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .contact-info h2 {
        font-size: 35px;
    }

    .contact-form-card {
        padding: 25px 18px;
    }

    .quick-contact-buttons {
        flex-direction: column;
    }

    .quick-contact-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-cta-btn {
        width: 100%;
        justify-content: center;
    }

}

/* =========================================================
   ABOUT PAGE
   KISSANDOCTOR
========================================================= */


/* =========================================================
   HERO
========================================================= */

.about-hero {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;

    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(18, 43, 23, 0.95),
        rgba(18, 43, 23, 0.72),
        rgba(18, 43, 23, 0.35)
    );
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 780px;
    padding: 90px 0;
}

.about-eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: #d9efd3;

    font-family: var(--nav-font);
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.about-hero h1 {
    margin: 0 0 22px;

    color: var(--white);

    font-family: var(--heading-font);
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.08;
    font-weight: 400;
}

.about-hero p {
    max-width: 650px;

    margin: 0 0 32px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 17px;
    line-height: 1.8;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 24px;

    border-radius: 6px;

    color: var(--white);
    background: var(--primary-color);

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.about-hero-btn:hover {
    color: var(--white);
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* =========================================================
   INTRO
========================================================= */

.about-intro {
    padding: 100px 0;

    background: var(--white);
}

.about-intro-content {
    padding-right: 35px;
}

.about-intro-content h2 {
    margin: 0 0 25px;

    color: var(--heading-color);

    font-family: var(--heading-font);
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 400;
}

.about-intro-content p {
    margin: 0 0 18px;

    color: #666;

    font-size: 16px;
    line-height: 1.9;
}

.about-intro-content p:last-child {
    margin-bottom: 0;
}


/* Intro card */

.about-intro-card {
    position: relative;

    padding: 55px 50px;

    border-radius: 12px;

    background: var(--primary-light);

    overflow: hidden;
}

.about-intro-card::after {
    content: "";

    position: absolute;

    right: -60px;
    bottom: -70px;

    width: 190px;
    height: 190px;

    border: 1px solid rgba(47, 125, 50, 0.14);

    border-radius: 50%;
}

.intro-card-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    color: var(--white);
    background: var(--primary-color);

    font-size: 27px;
}

.about-intro-card > span {
    display: block;

    margin-bottom: 12px;

    color: var(--primary-color);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.about-intro-card h3 {
    max-width: 420px;

    margin: 0 0 18px;

    color: var(--heading-color);

    font-family: var(--heading-font);
    font-size: 35px;
    line-height: 1.25;
    font-weight: 400;
}

.about-intro-card p {
    max-width: 500px;

    margin: 0;

    color: #5f6f61;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   PURPOSE
========================================================= */

.purpose-section {
    padding: 100px 0;

    background: #f8fbf7;
}

.section-heading {
    max-width: 760px;

    margin: 0 auto 55px;
}

.section-heading.text-center {
    text-align: center;
}

.section-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--primary-color);

    font-family: var(--nav-font);
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 18px;

    color: var(--heading-color);

    font-family: var(--heading-font);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 400;
}

.section-heading p {
    margin: 0;

    color: #6b756c;

    font-size: 16px;
    line-height: 1.8;
}


/* Purpose grid */

.purpose-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.purpose-card {
    position: relative;

    min-height: 330px;

    padding: 35px 28px;

    border: 1px solid #e0e9e0;
    border-radius: 10px;

    background: var(--white);

    overflow: hidden;

    transition: all 0.35s ease;
}

.purpose-card:hover {
    transform: translateY(-7px);

    border-color: rgba(47, 125, 50, 0.25);

    box-shadow: 0 18px 40px rgba(30, 70, 35, 0.08);
}

.purpose-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #e4eee4;

    font-family: var(--heading-font);
    font-size: 42px;
}

.purpose-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 50%;

    color: var(--primary-color);
    background: var(--primary-light);

    font-size: 23px;
}

.purpose-card h3 {
    margin: 0 0 13px;

    color: var(--heading-color);

    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 400;
}

.purpose-card p {
    margin: 0;

    color: #6c756d;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   BELIEF SECTION
========================================================= */

.belief-section {
    padding: 100px 0;

    background: var(--white);
}

.belief-box {
    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: 70px;

    padding: 65px;

    border-radius: 14px;

    background: var(--heading-color);
}

.belief-content .section-eyebrow {
    color: #b9d9b7;
}

.belief-content h2 {
    max-width: 500px;

    margin: 0 0 22px;

    color: var(--white);

    font-family: var(--heading-font);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 400;
}

.belief-content p {
    max-width: 540px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    line-height: 1.9;
}


/* Belief points */

.belief-points {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.belief-point {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 24px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.04);
}

.belief-point > i {
    flex-shrink: 0;

    color: #9bc99a;

    font-size: 20px;
}

.belief-point h4 {
    margin: 0 0 7px;

    color: var(--white);

    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 400;
}

.belief-point p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   EXPERTISE
========================================================= */

.expertise-section {
    padding: 100px 0;

    background: #f8fbf7;
}

.expertise-section .section-heading {
    margin-left: 0;

    max-width: 700px;
}

.expertise-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.expertise-card {
    padding: 35px 30px;

    border: 1px solid #e1e9e1;
    border-radius: 10px;

    background: var(--white);

    transition: all 0.35s ease;
}

.expertise-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 16px 35px rgba(30, 70, 35, 0.07);
}

.expertise-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    color: var(--primary-color);
    background: var(--primary-light);

    font-size: 23px;
}

.expertise-card h3 {
    margin: 0 0 12px;

    color: var(--heading-color);

    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 400;
}

.expertise-card p {
    min-height: 75px;

    margin: 0 0 22px;

    color: #6b756c;

    font-size: 14px;
    line-height: 1.75;
}

.expertise-card a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary-color);

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.expertise-card a:hover {
    gap: 12px;
}


/* =========================================================
   FOUNDERS
========================================================= */

.founders-section {
    padding: 100px 0;

    background: var(--white);
}

.founder-card {
    height: 100%;

    padding: 40px;

    border: 1px solid #e1e9e1;
    border-radius: 12px;

    background: var(--white);

    transition: all 0.35s ease;
}

.founder-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(30, 70, 35, 0.07);
}

.founder-top {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;
}

.founder-icon {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--primary-color);
    background: var(--primary-light);

    font-size: 27px;
}

.founder-role {
    display: block;

    margin-bottom: 5px;

    color: var(--primary-color);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.founder-top h3 {
    margin: 0;

    color: var(--heading-color);

    font-family: var(--heading-font);
    font-size: 29px;
    font-weight: 400;
}

.founder-description {
    margin: 0 0 28px;

    color: #666;

    font-size: 15px;
    line-height: 1.85;
}

.founder-focus {
    padding-top: 22px;

    border-top: 1px solid #e8eee8;
}

.founder-focus > span {
    display: block;

    margin-bottom: 12px;

    color: #777;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.focus-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.focus-tags span {
    padding: 7px 11px;

    border-radius: 4px;

    color: #547057;
    background: var(--primary-light);

    font-size: 11px;
    font-weight: 600;
}


/* Founder message */

.founder-message {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 45px;

    padding: 40px 45px;

    border-left: 4px solid var(--primary-color);

    background: #f8fbf7;
}

.founder-message-icon {
    flex-shrink: 0;

    color: var(--primary-color);

    font-size: 42px;
}

.founder-message span {
    display: block;

    margin-bottom: 7px;

    color: var(--primary-color);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.founder-message h3 {
    margin: 0;

    color: var(--heading-color);

    font-family: var(--heading-font);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.45;
    font-weight: 400;
}


/* =========================================================
   APPROACH
========================================================= */

.about-approach-section {
    padding: 0 0 100px;

    background: var(--white);
}

.about-approach-box {
    padding: 60px;

    border-radius: 14px;

    background: var(--primary-light);
}

.about-approach-heading {
    max-width: 750px;

    margin-bottom: 45px;
}

.about-approach-heading h2 {
    margin: 0 0 18px;

    color: var(--heading-color);

    font-family: var(--heading-font);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 400;
}

.about-approach-heading p {
    max-width: 650px;

    margin: 0;

    color: #607061;

    font-size: 15px;
    line-height: 1.8;
}


/* Steps */

.about-approach-steps {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.about-step {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 23px;

    border: 1px solid rgba(47, 125, 50, 0.12);
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.7);
}

.about-step > span {
    color: var(--primary-color);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}

.about-step h4 {
    margin: 0 0 7px;

    color: var(--heading-color);

    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 400;
}

.about-step p {
    margin: 0;

    color: #687568;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   CTA
========================================================= */

.about-cta-section {
    padding: 0 0 100px;

    background: var(--white);
}

.about-cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 55px 60px;

    border-radius: 12px;

    background: var(--heading-color);
}

.about-cta-box .section-eyebrow {
    color: #b9d9b7;
}

.about-cta-box h2 {
    margin: 0 0 12px;

    color: var(--white);

    font-family: var(--heading-font);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 400;
}

.about-cta-box p {
    max-width: 600px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    line-height: 1.7;
}

.about-cta-btn {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 23px;

    border-radius: 6px;

    color: var(--white);
    background: var(--primary-color);

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    color: var(--white);

    background: var(--primary-dark);

    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 991px) {

    .about-hero {
        min-height: 510px;
    }

    .about-intro {
        padding: 80px 0;
    }

    .about-intro-content {
        padding-right: 0;
    }

    .about-intro-card {
        padding: 45px 35px;
    }

    .belief-box {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 50px 40px;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-approach-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 45px;
    }

}


@media (max-width: 767px) {

    .about-hero {
        min-height: 480px;
    }

    .about-hero-content {
        padding: 70px 0;
    }

    .about-hero h1 {
        font-size: 46px;
    }

    .about-hero p {
        font-size: 15px;
    }

    .about-intro {
        padding: 70px 0;
    }

    .purpose-section,
    .belief-section,
    .expertise-section,
    .founders-section {
        padding: 70px 0;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
    }

    .purpose-card {
        min-height: auto;
    }

    .belief-box {
        padding: 38px 25px;
    }

    .belief-points {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card p {
        min-height: auto;
    }

    .founder-card {
        padding: 30px 25px;
    }

    .founder-message {
        align-items: flex-start;

        padding: 30px 25px;
    }

    .about-approach-section {
        padding-bottom: 70px;
    }

    .about-approach-box {
        padding: 38px 25px;
    }

    .about-approach-steps {
        grid-template-columns: 1fr;
    }

    .about-cta-section {
        padding-bottom: 70px;
    }

    .about-cta-box {
        padding: 35px 25px;
    }

}


@media (max-width: 480px) {

    .about-hero h1 {
        font-size: 40px;
    }

    .about-eyebrow {
        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .about-intro-card {
        padding: 35px 25px;
    }

    .about-intro-card h3 {
        font-size: 30px;
    }

    .founder-top {
        align-items: flex-start;
    }

    .founder-top h3 {
        font-size: 25px;
    }

    .founder-message {
        flex-direction: column;

        gap: 10px;
    }

    .about-cta-btn {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================================
   DIGITAL FARM DIAGNOSIS
========================================================= */


/* =========================================================
   HERO
========================================================= */

.digital-diagnosis-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(18, 43, 23, 0.72),
            rgba(18, 43, 23, 0.72)
        ),
        url("../img/hero.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.digital-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(127, 125, 53, 0.18),
            transparent 35%
        );
}

.digital-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 100px 0;
}

.digital-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    backdrop-filter: blur(8px);
}

.digital-coming-soon i {
    font-size: 14px;
}

.digital-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: #d7ead3;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.digital-hero-content h1 {
    margin: 0 0 25px;
    font-family: var(--heading-font);
    font-size: 68px;
    line-height: 1.05;
    font-weight: 400;
    color: var(--white);
}

.digital-hero-content p {
    max-width: 650px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
}

.digital-hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.digital-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.digital-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.digital-btn:hover i {
    transform: translateX(4px);
}

.digital-btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.digital-btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.digital-btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.digital-btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
}



/* =========================================================
   INTRO
========================================================= */

.digital-intro-section {
    padding: 95px 0 45px;
    background: var(--white);
}

.digital-intro-section .section-heading {
    max-width: 850px;
    margin: 0 auto;
}

.digital-intro-section .section-heading h2 {
    margin-bottom: 20px;
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.3;
    color: var(--heading-color);
}

.digital-intro-section .section-heading p {
    margin: 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}



/* =========================================================
   UPLOAD CONCEPT
========================================================= */

.digital-upload-section {
    padding: 55px 0 100px;
    background: var(--white);
}

.digital-upload-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 60px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        #edf7eb,
        #f7fbf5
    );
    border: 1px solid #dcebd8;
}


/* Upload visual */

.upload-visual {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 390px;
    padding: 45px 30px;
    text-align: center;
    border: 2px dashed #b9d5b4;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
}

.upload-circle {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #e5f3e1;
    color: var(--primary-color);
    font-size: 38px;
}

.upload-label {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.upload-visual h3 {
    margin-bottom: 12px;
    font-family: var(--heading-font);
    font-size: 28px;
    color: var(--heading-color);
}

.upload-visual p {
    max-width: 470px;
    margin-bottom: 22px;
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}

.diagnosis-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    border: 1px solid #cbdac8;
    border-radius: 6px;
    background: #ffffff;
    color: #82927e;
    font-size: 13px;
    font-weight: 700;
    cursor: not-allowed;
}

.diagnosis-upload-btn i {
    font-size: 16px;
}

.upload-visual small {
    display: block;
    margin-top: 13px;
    color: #8a8a8a;
    font-size: 11px;
}


/* Upload content */

.upload-content {
    max-width: 520px;
}

.section-label {
    display: block;
    margin-bottom: 13px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.upload-content h2 {
    margin-bottom: 22px;
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.25;
    color: var(--heading-color);
}

.upload-content p {
    margin-bottom: 15px;
    color: #5d5d5d;
    font-size: 15px;
    line-height: 1.8;
}

.upload-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 25px;
    padding: 15px 18px;
    border-left: 3px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.75);
    color: #5e6b5b;
    font-size: 12px;
    line-height: 1.6;
}

.upload-note i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--primary-color);
    font-size: 16px;
}



/* =========================================================
   CAPABILITIES
========================================================= */

.digital-capabilities-section {
    padding: 100px 0;
    background: #f8faf7;
}

.digital-capabilities-section .section-heading {
    max-width: 780px;
    margin: 0 auto 55px;
}

.digital-capabilities-section .section-heading h2 {
    margin-bottom: 18px;
    font-family: var(--heading-font);
    font-size: 42px;
    color: var(--heading-color);
}

.digital-capabilities-section .section-heading p {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

.capability-card {
    position: relative;
    height: 100%;
    padding: 35px 30px;
    border: 1px solid #e3e9e1;
    border-radius: 14px;
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-6px);
    border-color: #cfe2cb;
    box-shadow: 0 15px 35px rgba(31, 93, 37, 0.09);
}

.capability-number {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #e1eade;
    font-family: var(--heading-font);
    font-size: 30px;
}

.capability-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 24px;
}

.capability-card h3 {
    margin-bottom: 12px;
    font-family: var(--heading-font);
    font-size: 22px;
    color: var(--heading-color);
}

.capability-card p {
    margin: 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.75;
}



/* =========================================================
   PROCESS
========================================================= */

.digital-process-section {
    padding: 105px 0;
    background: var(--white);
}

.digital-process-section .section-heading {
    max-width: 780px;
    margin: 0 auto 60px;
}

.digital-process-section .section-heading h2 {
    margin-bottom: 18px;
    font-family: var(--heading-font);
    font-size: 42px;
    color: var(--heading-color);
}

.digital-process-section .section-heading p {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

.digital-process-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.digital-process-step {
    flex: 1;
    max-width: 150px;
    text-align: center;
}

.process-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 25px;
    box-shadow: 0 8px 20px rgba(31, 93, 37, 0.08);
}

.process-number {
    display: block;
    margin-bottom: 5px;
    color: #9aaa96;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.digital-process-step h3 {
    margin-bottom: 7px;
    font-family: var(--heading-font);
    font-size: 18px;
    color: var(--heading-color);
}

.digital-process-step p {
    margin: 0;
    color: #707070;
    font-size: 11px;
    line-height: 1.55;
}

.process-arrow {
    flex: 0 0 auto;
    margin-top: 25px;
    color: var(--primary-color);
    font-size: 20px;
}



/* =========================================================
   DIFFERENTIATOR
========================================================= */

.digital-differentiator-section {
    padding: 100px 0;
    background: #f8faf7;
}

.digital-differentiator-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    padding: 65px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e9df;
}

.differentiator-content {
    max-width: 510px;
}

.differentiator-content h2 {
    margin-bottom: 22px;
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.25;
    color: var(--heading-color);
}

.differentiator-content p {
    margin-bottom: 15px;
    color: #626262;
    font-size: 15px;
    line-height: 1.8;
}


/* Orbit visual */

.differentiator-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 390px;
}

.diagnosis-orbit {
    position: relative;
    width: 350px;
    height: 350px;
    border: 1px dashed #b8ceb4;
    border-radius: 50%;
}

.diagnosis-orbit::before {
    content: "";
    position: absolute;
    top: 35px;
    right: 35px;
    bottom: 35px;
    left: 35px;
    border: 1px dashed #d2e2cf;
    border-radius: 50%;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 105px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(31, 93, 37, 0.20);
}

.orbit-center i {
    font-size: 27px;
}

.orbit-center span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.orbit-item {
    position: absolute;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    border-radius: 50%;
    background: #edf7eb;
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(31, 93, 37, 0.08);
}

.orbit-item i {
    font-size: 19px;
}

.orbit-item span {
    font-size: 9px;
    font-weight: 700;
}

.orbit-item-1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-item-2 {
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
}

.orbit-item-3 {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-item-4 {
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
}



/* =========================================================
   PHILOSOPHY
========================================================= */

.digital-philosophy-section {
    padding: 70px 0;
    background: var(--white);
}

.digital-philosophy-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 45px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #edf7eb,
        #f7fbf5
    );
    border: 1px solid #dcebd8;
}

.digital-philosophy-box > .philosophy-icon {
    flex: 0 0 auto;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    font-size: 27px;
    box-shadow: 0 8px 20px rgba(31, 93, 37, 0.08);
}

.digital-philosophy-box .philosophy-content {
    min-width: 0;
}

.digital-philosophy-box .philosophy-content > span {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.digital-philosophy-box h3 {
    margin-bottom: 8px;
    font-family: var(--heading-font);
    font-size: 27px;
    color: var(--heading-color);
}

.digital-philosophy-box p {
    max-width: 850px;
    margin: 0;
    color: #656565;
    font-size: 13px;
    line-height: 1.7;
}



/* =========================================================
   FINAL CTA
========================================================= */

.digital-final-cta {
    padding: 105px 0;
    background: var(--primary-dark);
}

.digital-cta-content {
    max-width: 750px;
    margin: 0 auto;
}

.digital-cta-content .section-eyebrow {
    color: #b9d9b5;
}

.digital-cta-content h2 {
    margin: 15px 0 20px;
    font-family: var(--heading-font);
    font-size: 45px;
    line-height: 1.3;
    color: var(--white);
}

.digital-cta-content p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .digital-hero-content h1 {
        font-size: 58px;
    }

    .digital-upload-box {
        gap: 45px;
        padding: 45px;
    }

    .digital-differentiator-box {
        gap: 45px;
        padding: 50px;
    }

    .digital-process-wrapper {
        flex-wrap: wrap;
        row-gap: 35px;
    }

}


@media (max-width: 991px) {

    .digital-diagnosis-hero {
        min-height: 580px;
    }

    .digital-hero-content {
        padding: 90px 0;
    }

    .digital-hero-content h1 {
        font-size: 52px;
    }

    .digital-upload-box {
        grid-template-columns: 1fr;
    }

    .upload-content {
        max-width: none;
    }

    .digital-differentiator-box {
        grid-template-columns: 1fr;
    }

    .differentiator-content {
        max-width: none;
    }

    .digital-process-step {
        flex: 0 0 calc(33.333% - 20px);
        max-width: none;
    }

}


@media (max-width: 767px) {

    .digital-diagnosis-hero {
        min-height: 560px;
    }

    .digital-hero-content {
        padding: 80px 0;
    }

    .digital-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .digital-hero-content h1 {
        font-size: 45px;
    }

    .digital-hero-content p {
        font-size: 14px;
    }

    .digital-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .digital-intro-section {
        padding-top: 70px;
    }

    .digital-intro-section .section-heading h2,
    .digital-capabilities-section .section-heading h2,
    .digital-process-section .section-heading h2 {
        font-size: 34px;
    }

    .digital-upload-section {
        padding-top: 35px;
    }

    .digital-upload-box {
        padding: 25px;
        gap: 35px;
    }

    .upload-visual {
        min-height: 340px;
        padding: 35px 20px;
    }

    .upload-content h2 {
        font-size: 34px;
    }

    .digital-process-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .digital-process-step {
        width: 100%;
        max-width: 280px;
    }

    .process-arrow {
        margin: 0;
        transform: rotate(90deg);
    }

    .digital-differentiator-box {
        padding: 30px 25px;
    }

    .differentiator-content h2 {
        font-size: 34px;
    }

    .differentiator-visual {
        min-height: 330px;
    }

    .diagnosis-orbit {
        width: 280px;
        height: 280px;
    }

    .orbit-item {
        width: 62px;
        height: 62px;
    }

    .orbit-item-1 {
        top: -15px;
    }

    .orbit-item-2 {
        right: -18px;
    }

    .orbit-item-3 {
        bottom: -15px;
    }

    .orbit-item-4 {
        left: -18px;
    }

    .orbit-center {
        width: 90px;
        height: 90px;
    }

    .digital-philosophy-box {
        align-items: flex-start;
        padding: 28px 25px;
    }

    .digital-philosophy-box h3 {
        font-size: 23px;
    }

    .digital-cta-content h2 {
        font-size: 35px;
    }

}


@media (max-width: 480px) {

    .digital-hero-content h1 {
        font-size: 40px;
    }

    .digital-coming-soon {
        font-size: 9px;
    }

    .digital-btn {
        width: 100%;
    }

    .upload-visual h3 {
        font-size: 24px;
    }

    .digital-upload-box {
        padding: 18px;
    }

    .digital-differentiator-box {
        padding: 25px 18px;
    }

    .diagnosis-orbit {
        width: 245px;
        height: 245px;
    }

    .orbit-item {
        width: 56px;
        height: 56px;
    }

    .orbit-item i {
        font-size: 16px;
    }

    .orbit-item span {
        font-size: 8px;
    }

    .orbit-center {
        width: 82px;
        height: 82px;
    }

    .digital-philosophy-box {
        flex-direction: column;
    }

}

/* =========================================================
   CARBON & CLIMATE PAGE
   KissanDoctor
========================================================= */


/* =========================================================
   HERO
========================================================= */

.carbon-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.carbon-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(18, 43, 23, 0.88) 0%,
            rgba(18, 43, 23, 0.68) 48%,
            rgba(18, 43, 23, 0.30) 100%
        );
}

.carbon-hero .container {
    position: relative;
    z-index: 2;
}

.carbon-hero-content {
    max-width: 760px;
    padding: 100px 0;
}

.carbon-hero .eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: #d5ebd0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.carbon-hero h1 {
    margin: 0 0 24px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.15;
}

.carbon-hero p {
    max-width: 650px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
}

.carbon-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 26px;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.carbon-primary-btn i {
    font-size: 17px;
    transition: transform 0.3s ease;
}

.carbon-primary-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.carbon-primary-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   COMMON SECTION
========================================================= */

.section-padding {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   INTRO
========================================================= */

.carbon-intro {
    background: var(--white);
}

.carbon-intro h2 {
    max-width: 600px;
    margin-bottom: 25px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.25;
}

.carbon-intro p {
    max-width: 600px;
    margin-bottom: 16px;
    color: #555;
    font-size: 15px;
    line-height: 1.85;
}

.carbon-intro-card {
    position: relative;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            #edf7eb,
            #f7fbf5
        );
    border: 1px solid #dcebd8;
    overflow: hidden;
}

.carbon-intro-card::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    border: 35px solid rgba(47, 125, 50, 0.06);
}

.carbon-intro-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -90px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(47, 125, 50, 0.04);
}

.carbon-intro-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    font-size: 31px;
    box-shadow: 0 10px 30px rgba(31, 93, 37, 0.10);
}

.carbon-intro-card > span {
    position: relative;
    z-index: 2;
    margin-bottom: 13px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.carbon-intro-card h3 {
    position: relative;
    z-index: 2;
    max-width: 430px;
    margin-bottom: 20px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 32px;
    line-height: 1.35;
}

.intro-line {
    position: relative;
    z-index: 2;
    width: 55px;
    height: 2px;
    margin-bottom: 20px;
    background: var(--primary-color);
}

.carbon-intro-card p {
    position: relative;
    z-index: 2;
    max-width: 450px;
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SERVICES
========================================================= */

.carbon-services {
    background: #f8fbf7;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 20px;
}

.section-heading h2 {
    margin-bottom: 18px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.25;
}

.section-heading p {
    margin: 0 auto;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.carbon-service-card {
    position: relative;
    height: 100%;
    min-height: 300px;
    padding: 35px 30px 32px;
    background: var(--white);
    border: 1px solid #e5eee2;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.carbon-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.carbon-service-card:hover {
    transform: translateY(-7px);
    border-color: #cfe2ca;
    box-shadow: 0 18px 40px rgba(31, 93, 37, 0.10);
}

.carbon-service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #dbe9d8;
    font-family: var(--heading-font);
    font-size: 34px;
    line-height: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 25px;
    transition: all 0.35s ease;
}

.carbon-service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
}

.carbon-service-card h3 {
    max-width: 280px;
    margin-bottom: 14px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 23px;
    font-weight: 400;
    line-height: 1.35;
}

.carbon-service-card p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   APPROACH
========================================================= */

.carbon-approach {
    background: var(--white);
}

.approach-box {
    padding: 60px;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            #edf7eb,
            #f8fbf6
        );
    border: 1px solid #dcebd8;
}

.approach-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.approach-heading h2 {
    margin-bottom: 18px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
}

.approach-heading p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   HORIZONTAL FLOW
========================================================= */

.carbon-flow {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.carbon-flow-step {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.flow-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    font-size: 25px;
    box-shadow: 0 8px 25px rgba(31, 93, 37, 0.10);
    transition: all 0.3s ease;
}

.carbon-flow-step:hover .flow-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
}

.carbon-flow-step > span {
    display: block;
    margin-bottom: 5px;
    color: #91a98c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.carbon-flow-step h4 {
    margin-bottom: 7px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 19px;
    font-weight: 400;
    white-space: nowrap;
}

.carbon-flow-step p {
    max-width: 150px;
    margin: 0 auto;
    color: #666;
    font-size: 11px;
    line-height: 1.55;
}

.flow-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 23px;
    color: var(--primary-color);
    font-size: 21px;
}


/* =========================================================
   CARBON CREDIT NOTE
========================================================= */

.carbon-note {
    background: #f8fbf7;
}

.carbon-note-box {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 50px;
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 10px 35px rgba(31, 93, 37, 0.06);
}

.note-icon {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 26px;
}

.note-content {
    flex: 1;
}

.note-content h2 {
    margin-bottom: 18px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 400;
}

.note-content p {
    max-width: 950px;
    margin-bottom: 13px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.note-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   PHILOSOPHY
========================================================= */

.carbon-philosophy {
    background: var(--white);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content h2 {
    margin-bottom: 20px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.3;
}

.philosophy-content > p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 15px;
    line-height: 1.85;
}

.philosophy-line {
    width: 60px;
    height: 2px;
    margin: 30px auto;
    background: var(--primary-color);
}

.philosophy-content h3 {
    margin: 0;
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 400;
}


/* =========================================================
   CTA
========================================================= */

.carbon-cta {
    padding: 80px 0;
    background: #f8fbf7;
}

.carbon-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 60px;
    border-radius: 18px;
    background: var(--heading-color);
}

.carbon-cta-box .section-label {
    color: #b9dcb4;
}

.carbon-cta-box h2 {
    margin-bottom: 15px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 38px;
    font-weight: 400;
}

.carbon-cta-box p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.75;
}

.carbon-cta-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.carbon-cta-btn i {
    transition: transform 0.3s ease;
}

.carbon-cta-btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--heading-color);
}

.carbon-cta-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER
========================================================= */

.solution-footer {
    padding: 75px 0 0;
    background: #122b17;
    color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 190px;
    max-height: 62px;
    object-fit: contain;
}

.solution-footer h4 {
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 400;
}

.solution-footer h5 {
    margin-bottom: 22px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 400;
}

.solution-footer p {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.7;
}

.solution-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.solution-footer ul li {
    margin-bottom: 10px;
}

.solution-footer ul li a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution-footer ul li a:hover {
    color: var(--white);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 20px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 5px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #9bc796;
}

.footer-bottom {
    margin-top: 55px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .carbon-hero {
        min-height: 540px;
    }

    .carbon-hero h1 {
        font-size: 52px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .carbon-intro h2,
    .section-heading h2 {
        font-size: 36px;
    }

    .carbon-intro-card {
        min-height: 350px;
        padding: 45px;
    }

    .approach-box {
        padding: 45px 30px;
    }

    .carbon-flow {
        flex-wrap: wrap;
        row-gap: 35px;
    }

    .carbon-flow-step {
        flex: 0 0 calc(33.333% - 20px);
    }

    .flow-arrow {
        display: none;
    }

    .carbon-cta-box {
        padding: 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .section-padding {
        padding: 65px 0;
    }


    /* Hero */

    .carbon-hero {
        min-height: 520px;
        background-position: center;
    }

    .carbon-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(18, 43, 23, 0.90),
                rgba(18, 43, 23, 0.72)
            );
    }

    .carbon-hero-content {
        padding: 80px 0;
    }

    .carbon-hero h1 {
        font-size: 42px;
    }

    .carbon-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .carbon-primary-btn {
        padding: 13px 20px;
        font-size: 12px;
    }


    /* Intro */

    .carbon-intro h2 {
        font-size: 34px;
    }

    .carbon-intro-card {
        min-height: 320px;
        padding: 35px;
    }

    .carbon-intro-card h3 {
        font-size: 27px;
    }


    /* Section heading */

    .section-heading h2 {
        font-size: 34px;
    }


    /* Service cards */

    .carbon-service-card {
        min-height: auto;
        padding: 30px 25px;
    }

    .carbon-service-card h3 {
        font-size: 21px;
    }


    /* Approach */

    .approach-box {
        padding: 40px 20px;
    }

    .approach-heading {
        margin-bottom: 40px;
    }

    .approach-heading h2 {
        font-size: 32px;
    }

    .carbon-flow {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .carbon-flow-step {
        width: 100%;
        flex: none;
    }

    .carbon-flow-step p {
        max-width: 230px;
    }

    .flow-arrow {
        display: flex;
        padding: 0;
        transform: rotate(90deg);
    }


    /* Carbon note */

    .carbon-note-box {
        flex-direction: column;
        gap: 20px;
        padding: 35px 25px;
    }

    .note-content h2 {
        font-size: 28px;
    }


    /* Philosophy */

    .philosophy-content h2 {
        font-size: 34px;
    }

    .philosophy-content > p {
        font-size: 14px;
    }


    /* CTA */

    .carbon-cta {
        padding: 60px 0;
    }

    .carbon-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 25px;
    }

    .carbon-cta-box h2 {
        font-size: 32px;
    }

    .carbon-cta-btn {
        white-space: normal;
    }


    /* Footer */

    .solution-footer {
        padding-top: 60px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .carbon-hero h1 {
        font-size: 36px;
    }

    .carbon-hero-content {
        padding: 65px 0;
    }

    .carbon-primary-btn {
        width: 100%;
        justify-content: center;
    }

    .carbon-intro h2,
    .section-heading h2 {
        font-size: 30px;
    }

    .carbon-intro-card {
        padding: 30px 25px;
    }

    .carbon-intro-card h3 {
        font-size: 25px;
    }

    .carbon-service-card {
        padding: 28px 22px;
    }

    .approach-heading h2 {
        font-size: 29px;
    }

    .carbon-cta-box h2 {
        font-size: 29px;
    }

    .carbon-cta-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

}

/* =========================================================
   WHAT IS YOUR FARM TELLING YOU?
========================================================= */

.farm-signals-section {
    padding: 90px 0;
    background: var(--off-white);
}

.farm-signals-section .section-header {
    max-width: 760px;
    margin: 0 auto 50px;
}

.farm-signals-section .section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.farm-signals-section .section-header h2 {
    margin: 0 0 15px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.2;
}

.farm-signals-section .section-header p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


/* Farm Signal Card */

.farm-signal-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 32px 18px 28px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.farm-signal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.farm-signal-card:hover {
    transform: translateY(-8px);
    border-color: rgba(47, 125, 50, 0.25);
    box-shadow: 0 15px 35px rgba(24, 50, 28, 0.10);
}

.farm-signal-card:hover::before {
    transform: scaleX(1);
}


/* Icon */

.farm-signal-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 28px;
    transition: all 0.3s ease;
}

.farm-signal-card:hover .farm-signal-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}


/* Heading */

.farm-signal-card h3 {
    margin: 0 0 10px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 21px;
    line-height: 1.3;
}


/* Description */

.farm-signal-card p {
    min-height: 58px;
    margin: 0 0 18px;
    color: #666;
    font-size: 13px;
    line-height: 1.65;
}


/* Link */

.farm-signal-link {
    margin-top: auto;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.farm-signal-link i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.farm-signal-card:hover .farm-signal-link i {
    margin-left: 9px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .farm-signals-section {
        padding: 75px 0;
    }

    .farm-signals-section .section-header h2 {
        font-size: 36px;
    }

    .farm-signal-card {
        padding: 28px 16px 25px;
    }

}

@media (max-width: 575px) {

    .farm-signals-section {
        padding: 60px 0;
    }

    .farm-signals-section .section-header {
        margin-bottom: 35px;
    }

    .farm-signals-section .section-header h2 {
        font-size: 30px;
    }

    .farm-signals-section .section-header p {
        font-size: 14px;
    }

    .farm-signal-card {
        padding: 25px 12px 22px;
        border-radius: 12px;
    }

    .farm-signal-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 15px;
        font-size: 24px;
    }

    .farm-signal-card h3 {
        font-size: 18px;
    }

    .farm-signal-card p {
        min-height: auto;
        font-size: 12px;
    }

    .farm-signal-link {
        font-size: 10px;
    }

}