:root {
    --green-900: #14532d;
    --green-700: #15803d;
    --green-600: #16a34a;
    --green-500: #22c55e;
    --green-100: #dcfce7;
    --green-50: #f0fdf4;
    --white: #ffffff;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-900: #111827;
    --border: #e5e7eb;

    --text-xs: 1rem;
    --text-sm: 1.125rem;
    --text-base: 1.25rem;
    --text-md: 1.375rem;
    --text-lg: 1.625rem;

    --font: 'Outfit', sans-serif;
    --radius: 12px;
    --header-h: 80px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font);
}

a {
    text-decoration: none;
    color: inherit;
}
/* ==================== HEADER CSS ==================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--header-h);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: box-shadow .3s;
  }
  .site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
  }
  
  .header-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
  }
  
  /* ─── LOGO ───────────────────────────── */
  .site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
    z-index: 1;
  }
  .logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
  }
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }
  .logo-text strong {
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--green-700);
    letter-spacing: -.3px;
  }
  .logo-text span {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--gray-400);
    letter-spacing: .4px;
  }
  
  /* ─── CENTER NAV ─────────────────────── */
  .site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .sn-link {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--gray-600);
    padding: 8px 18px;
    border-radius: 8px;
    transition: color .2s, background .2s;
    white-space: nowrap;
    background: transparent;
    text-decoration: none;
    display: block;
  }
  .sn-link:hover {
    color: var(--green-600);
    background: transparent;
  }
  
  .sn-link.active {
    color: var(--green-700);
    font-weight: 600;
    background: transparent;
  }
  
  /* ─── CONTACT BUTTON ─────────────────── */
  .btn-contact {
    flex-shrink: 0;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    background: var(--green-600);
    padding: 11px 26px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    z-index: 1;
  }
  .btn-contact:hover {
    background: var(--green-700);
    transform: translateY(-1px);
  }
  
  /* ─── HAMBURGER ──────────────────────── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    flex-shrink: 0;
    z-index: 1;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* ─── MOBILE DRAWER ──────────────────── */
  .mobile-drawer {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 24px 24px;
    flex-direction: column;
    gap: 4px;
    z-index: 800;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    animation: slideDown .25s ease forwards;
  }
  .mobile-drawer.open {
    display: flex;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .mobile-drawer .sn-link {
    font-size: var(--text-base);
    padding: 13px 16px;
    border-radius: 8px;
  }
  .mobile-drawer .sn-link.active {
    background: transparent;
    color: var(--green-700);
  }
  
  .mobile-drawer .sn-link:hover {
    background: transparent;
    color: var(--green-600);
  }
  
  .mobile-drawer .btn-contact {
    display: block;
    text-align: center;
    margin-top: 10px;
    padding: 14px;
    border-radius: var(--radius);
  }
  
  /* ─── MEDIA QUERIES ──────────────────── */
  
  @media (max-width: 1024px) {
    .logo-img         { height: 70px; }
    .logo-text strong { font-size: var(--text-sm); }
  }
  
  @media (max-width: 768px) {
    .site-nav         { display: none; }
    .btn-contact      { display: none; }
    .hamburger        { display: flex; }
  
    .header-inner     { justify-content: space-between; }
  
    /* Logo perfectly centered on mobile */
    .site-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
  }
  
  @media (max-width: 480px) {
    :root             { --header-h: 68px; }
    .header-inner     { padding: 0 16px; }
    .logo-img         { height: 70px; }
    .logo-text strong { font-size: var(--text-sm); }
    .logo-text span   { display: none; }
  }
  


/* ==================== HERO CSS ==================== */

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header-h);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background image */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?w=1600&q=80&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Dark green overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(20, 83, 45, 0.93) 0%,
            rgba(21, 128, 61, 0.85) 50%,
            rgba(22, 163, 74, 0.80) 100%);
    z-index: 1;
}

/* Dot pattern */
.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 2;
    pointer-events: none;
}

/* Inner layout */
.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 28px 120px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ─── LEFT COPY ──────────────────────── */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    color: var(--green-100);
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    letter-spacing: .3px;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--green-500);
}

.hero-sub {
    font-size: var(--text-sm);
    font-weight: 400;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 40px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.btn-primary {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--green-900);
    background: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--green-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
}

.btn-ghost {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--white);
    background: transparent;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 1.5px solid rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: border-color .2s, background .2s;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .08);
}

/* Stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.5px;
}

.stat-label {
    font-size: var(--text-xs);
    font-weight: 400;
    color: rgba(255, 255, 255, .58);
    text-transform: uppercase;
    letter-spacing: .7px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .2);
    flex-shrink: 0;
}

/* ─── PHOTO STACK ────────────────────── */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 520px;
}

.photo-stack {
    position: relative;
    width: 420px;
    height: 460px;
}

.photo-card {
    position: absolute;
    border-radius: 18px;
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
    transition: transform .35s ease, box-shadow .35s ease;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card positions */
.photo-card--1 {
    width: 200px;
    height: 240px;
    bottom: 10px;
    left: 0;
    transform: rotate(-12deg);
    z-index: 1;
}

.photo-card--2 {
    width: 200px;
    height: 240px;
    top: 10px;
    left: 20px;
    transform: rotate(-5deg);
    z-index: 2;
}

.photo-card--3 {
    width: 220px;
    height: 265px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 5;
}

.photo-card--4 {
    width: 200px;
    height: 240px;
    top: 10px;
    right: 20px;
    transform: rotate(5deg);
    z-index: 2;
}

.photo-card--5 {
    width: 200px;
    height: 240px;
    bottom: 10px;
    right: 0;
    transform: rotate(12deg);
    z-index: 1;
}

/* Hover fan out */
.photo-stack:hover .photo-card--1 {
    transform: rotate(-16deg) translate(-12px, 12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.photo-stack:hover .photo-card--2 {
    transform: rotate(-8deg) translate(-8px, -10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.photo-stack:hover .photo-card--3 {
    transform: translate(-50%, -55%) rotate(0deg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.photo-stack:hover .photo-card--4 {
    transform: rotate(8deg) translate(8px, -10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.photo-stack:hover .photo-card--5 {
    transform: rotate(16deg) translate(12px, 12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

/* ─── BOTTOM WAVE ────────────────────── */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ─── MEDIA QUERIES ──────────────────── */

/* Tablet landscape */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-inner {
        gap: 40px;
        padding: 60px 28px 120px;
    }

    .photo-stack {
        width: 360px;
        height: 400px;
    }

    .hero-visual {
        height: 460px;
    }

    .photo-card--3 {
        width: 200px;
        height: 242px;
    }

    .photo-card--1,
    .photo-card--2,
    .photo-card--4,
    .photo-card--5 {
        width: 182px;
        height: 220px;
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 52px 20px 100px;
        text-align: center;
        gap: 40px;
    }

    /* Left copy — top */
    .hero-copy {
        order: 1;
    }

    /* Right visual — bottom */
    .hero-visual {
        order: 2;
        height: 360px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -.8px;
    }

    .hero-tag {
        margin: 0 auto 28px;
    }

    .hero-sub {
        margin: 0 auto 36px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .photo-stack {
        width: 300px;
        height: 340px;
    }

    .photo-card--3 {
        width: 170px;
        height: 206px;
    }

    .photo-card--1,
    .photo-card--2,
    .photo-card--4,
    .photo-card--5 {
        width: 155px;
        height: 186px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-inner {
        padding: 40px 16px 90px;
        gap: 32px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -.5px;
    }

    .hero-sub {
        font-size: var(--text-xs);
    }

    .hero-tag {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .btn-primary,
    .btn-ghost {
        padding: 13px 24px;
        font-size: var(--text-xs);
    }

    .stat-num {
        font-size: var(--text-base);
    }

    /* Left copy — top */
    .hero-copy {
        order: 1;
    }

    /* Right visual — bottom */
    .hero-visual {
        order: 2;
        height: 300px;
    }

    .photo-stack {
        width: 260px;
        height: 290px;
    }

    .photo-card--3 {
        width: 148px;
        height: 178px;
    }

    .photo-card--1,
    .photo-card--2,
    .photo-card--4,
    .photo-card--5 {
        width: 132px;
        height: 158px;
    }

    .photo-card {
        border-width: 5px;
        border-radius: 14px;
    }
}



/* ==================== ABOUT CSS ==================== */

.about {
    background: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.about-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ─── LEFT VISUAL ────────────────────── */
.about-visual {
    position: relative;
    height: 520px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .14);
}

.about-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.point-icon {
    width: 42px;
    height: 42px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-600);
    font-size: var(--text-sm);
}


/* ─── RIGHT CONTENT ──────────────────── */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    color: var(--green-700);
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    width: fit-content;
    letter-spacing: .3px;
}

.about-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.about-title span {
    color: var(--green-600);
}

.about-desc {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Key points list */
.about-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 28px 0 36px;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.point-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-points li div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.about-points li strong {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-900);
}

.about-points li span {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.6;
}

/* CTA Button */
.btn-about {
    display: inline-block;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    background: var(--green-600);
    padding: 14px 32px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(22, 163, 74, .3);
}

.btn-about:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, .35);
}

/* ─── MEDIA QUERIES ──────────────────── */

@media (max-width: 1024px) {
    .about-inner {
        gap: 48px;
    }

    .about-title {
        font-size: 2.25rem;
    }

    .about-visual {
        height: 460px;
    }

    .about-img-main {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 72px 0;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 20px;
    }

    /* Left image above, right content below */
    .about-visual {
        order: 1;
        height: 360px;
    }

    .about-content {
        order: 2;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-img-main {
        height: 280px;
        width: 75%;
    }

    .about-img-small {
        height: 200px;
    }

    .about-badge {
        top: 20px;
        right: 4px;
        padding: 14px 16px;
    }

    .about-badge-num {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .about {
        padding: 56px 0;
    }

    .about-inner {
        padding: 0 16px;
        gap: 36px;
    }

    .about-title {
        font-size: 1.75rem;
        letter-spacing: -.5px;
    }

    .about-desc {
        font-size: var(--text-xs);
    }

    .about-visual {
        height: 300px;
    }

    .about-img-main {
        height: 230px;
        width: 72%;
    }

    .about-img-small {
        height: 165px;
    }

    .about-badge {
        display: none;
    }

    .about-points li strong {
        font-size: var(--text-xs);
    }

    .btn-about {
        width: 100%;
        text-align: center;
        padding: 13px;
    }
}


/* ==================== HOW WE WORK CSS ==================== */

.how-work {
    background: var(--green-50);
    padding: 100px 0;
    overflow: hidden;
}

.how-work-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ─── SECTION HEADER ─────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--green-100);
    color: var(--green-700);
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: .3px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--green-600);
}

.section-sub {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto;
}

/* ─── STEPS GRID ─────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    transition: box-shadow .25s, transform .25s;
}

.step-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .09);
    transform: translateY(-4px);
}

/* Step number */
.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-100);
    line-height: 1;
    letter-spacing: -1px;
}

/* Step icon */
.step-icon {
    width: 52px;
    height: 52px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    font-size: var(--text-md);
}

.step-title {
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -.3px;
}

.step-desc {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.75;
    flex: 1;
}

/* Arrow connector */
.step-arrow {
    position: absolute;
    top: 52px;
    right: -18px;
    width: 36px;
    height: 36px;
    background: var(--green-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(22, 163, 74, .3);
}

.step-arrow.last {
    display: none;
}

/* ─── BOTTOM CTA ─────────────────────── */
.how-work-cta {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

/* ─── MEDIA QUERIES ──────────────────── */

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step-arrow {
        display: none;
    }

    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .how-work {
        padding: 72px 0;
    }

    .how-work-inner {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 44px;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .step-card {
        padding: 24px 18px;
    }

    .step-num {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .how-work {
        padding: 56px 0;
    }

    .how-work-inner {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-sub {
        font-size: var(--text-xs);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .step-card {
        padding: 22px 16px;
        gap: 12px;
    }

    .step-num {
        font-size: 1.75rem;
    }

    .step-icon {
        width: 44px;
        height: 44px;
        font-size: var(--text-sm);
    }

    .step-title {
        font-size: var(--text-sm);
    }

    .how-work-cta {
        margin-top: 40px;
    }

    .btn-about {
        width: 100%;
        text-align: center;
        padding: 13px;
    }
}


/* ==================== PRODUCTS CSS ==================== */

.products {
  background: var(--green-50);
  padding: 100px 0;
  overflow: hidden;
}
.products-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ─── HEADER ROW ─────────────────────── */
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.products-header-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
}
.products-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.products-count {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
}
.count-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--green-600);
  line-height: 1;
  letter-spacing: -1.5px;
}
.count-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
}

/* ─── PRODUCT GRID ───────────────────── */
.products-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.product-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.product-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  z-index: 0;
  border-radius: 16px;
}
.product-tag:hover::before  { transform: scaleX(1); }
.product-tag:hover {
  border-color: var(--green-600);
  box-shadow: 0 8px 28px rgba(22,163,74,.2);
  transform: translateY(-2px);
}
.ptag-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 2px solid var(--border);
  transition: border-color .3s;
}
.ptag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-tag:hover .ptag-img { border-color: rgba(255,255,255,.3); }
.ptag-img--more {
  background: var(--green-50);
  border: 2px dashed var(--green-200, #bbf7d0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  font-size: var(--text-sm);
}
.product-tag:hover .ptag-img--more {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: var(--white);
}
.ptag-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1;
}
.ptag-info strong {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-900);
  transition: color .3s;
}
.ptag-info span {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--gray-400);
  transition: color .3s;
}
.product-tag:hover .ptag-info strong { color: var(--white); }
.product-tag:hover .ptag-info span   { color: rgba(255,255,255,.75); }
.ptag-arrow {
  font-size: 0.8rem;
  color: var(--gray-400);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: color .3s, transform .3s;
}
.product-tag:hover .ptag-arrow {
  color: var(--white);
  transform: translate(2px, -2px);
}
.product-tag--more {
  border: 2px dashed var(--green-200, #bbf7d0);
  background: transparent;
}
.product-tag--more .ptag-info strong { color: var(--green-700); }
.product-tag--more .ptag-info span   { color: var(--green-600); }
.product-tag--more .ptag-arrow       { color: var(--green-600); }
.product-tag--more::before           { background: var(--green-600); }
.product-tag--more:hover             { border-color: var(--green-600); border-style: solid; }

/* ─── ENQUIRY POPUP ──────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-box {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  transform: translateY(24px) scale(.97);
  transition: transform .3s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
}
.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.popup-close:hover {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}
.popup-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.popup-icon {
  width: 52px;
  height: 52px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  font-size: var(--text-md);
  flex-shrink: 0;
}
.popup-title {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.popup-product-name {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.popup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.popup-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.popup-field label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gray-900);
}
.popup-field label span { color: #ef4444; }

/* Selected product display — read-only pill */
.popup-select-display {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-50);
  border: 1.5px solid var(--green-500);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--green-700);
  font-size: var(--text-xs);
  font-weight: 600;
  cursor: default;
  user-select: none;
}
.popup-select-display i {
  color: var(--green-600);
  font-size: 0.9rem;
}

.popup-field input,
.popup-field textarea {
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--gray-900);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: none;
  width: 100%;
}
.popup-field input:focus,
.popup-field textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,.12);
}
.popup-field input::placeholder,
.popup-field textarea::placeholder { color: var(--gray-400); }

/* Validation */
.field-error {
  font-size: 0.82rem;
  font-weight: 500;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.field-error::before {
  content: '\f071';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
}
.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important;
}
.input-success {
  border-color: var(--green-500) !important;
  box-shadow: 0 0 0 3px rgba(34,197,94,.1) !important;
}
@keyframes formShake {
  0%,100% { transform: translateX(0); }
  15%     { transform: translateX(-8px); }
  30%     { transform: translateX(8px); }
  45%     { transform: translateX(-6px); }
  60%     { transform: translateX(6px); }
  75%     { transform: translateX(-3px); }
  90%     { transform: translateX(3px); }
}
.form-shake { animation: formShake .5s ease; }

.popup-submit {
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  background: var(--green-600);
  border: none;
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(22,163,74,.3);
}
.popup-submit:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,163,74,.35);
}
.popup-submit:disabled {
  opacity: .75;
  cursor: not-allowed;
  transform: none;
}

/* ─── MEDIA QUERIES ──────────────────── */
@media (max-width: 1024px) {
  .products             { padding: 80px 0; }
  .products-header      { align-items: flex-start; }
}
@media (max-width: 768px) {
  .products             { padding: 72px 0; }
  .products-inner       { padding: 0 20px; gap: 36px; }
  .products-header      { flex-direction: column; align-items: flex-start; gap: 24px; }
  .products-header-right { width: 100%; justify-content: space-between; }
  .products-right       { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ptag-info span       { display: none; }
  .popup-box            { padding: 28px 20px; }
  .popup-row            { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .products             { padding: 56px 0; }
  .products-inner       { padding: 0 16px; gap: 28px; }
  .products-right       { grid-template-columns: 1fr; gap: 10px; }
  .product-tag          { padding: 14px 16px; }
  .ptag-img             { width: 48px; height: 48px; }
  .ptag-info strong     { font-size: var(--text-xs); }
  .count-num            { font-size: 2.25rem; }
  .products-count       { padding: 14px 18px; }
  .btn-about            { width: 100%; text-align: center; padding: 13px; }
  .products-header-right { flex-direction: column; align-items: stretch; }
  .popup-box            { padding: 24px 16px; border-radius: 18px; }
}


/* ─── FORM VALIDATION ────────────────── */

.field-error {
  font-size: 0.82rem;
  font-weight: 500;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.field-error::before {
  content: '\f071';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
}

.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important;
}

.input-success {
  border-color: var(--green-500) !important;
  box-shadow: 0 0 0 3px rgba(34,197,94,.1) !important;
}

/* Shake animation on failed submit */
@keyframes formShake {
  0%, 100% { transform: translateX(0); }
  15%       { transform: translateX(-8px); }
  30%       { transform: translateX(8px); }
  45%       { transform: translateX(-6px); }
  60%       { transform: translateX(6px); }
  75%       { transform: translateX(-3px); }
  90%       { transform: translateX(3px); }
}
.form-shake {
  animation: formShake .5s ease;
}


/* ==================== CTA BANNER CSS ==================== */

.cta-banner {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1523741543316-beb7fc7023d8?w=1600&q=80&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    overflow: hidden;
}

/* Dark green overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(20, 83, 45, 0.92) 0%,
            rgba(21, 128, 61, 0.88) 50%,
            rgba(22, 163, 74, 0.85) 100%);
    z-index: 1;
}

/* Dot pattern */
.cta-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 2;
    pointer-events: none;
}

/* Inner */
.cta-inner {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Tag */
.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    color: var(--green-100);
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: .3px;
}

/* Title */
.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.cta-title span {
    color: var(--green-500);
}

/* Subtitle */
.cta-sub {
    font-size: var(--text-sm);
    font-weight: 400;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 40px;
}

/* Buttons */
.cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-btn-primary {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--green-900);
    background: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.cta-btn-primary:hover {
    background: var(--green-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
}

.cta-btn-ghost {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--white);
    background: transparent;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 1.5px solid rgba(255, 255, 255, .35);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: border-color .2s, background .2s;
}

.cta-btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .08);
}

/* Trust pills */
.cta-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .85);
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
}

.cta-trust-item i {
    color: var(--green-400);
    font-size: 0.9rem;
}

/* ─── MEDIA QUERIES ──────────────────── */

@media (max-width: 1024px) {
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-banner {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .cta-inner {
        padding: 0 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-sub {
        font-size: var(--text-xs);
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 64px 0;
    }

    .cta-inner {
        padding: 0 16px;
    }

    .cta-title {
        font-size: 1.75rem;
        letter-spacing: -.5px;
    }

    .cta-btn-primary,
    .cta-btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 13px;
    }

    .cta-trust {
        gap: 8px;
    }

    .cta-trust-item {
        font-size: 0.85rem;
        padding: 7px 12px;
    }
}


/* ==================== TESTIMONIALS CSS ==================== */

.testimonials {
    padding: 100px 0;
    overflow: hidden;
  }
  
  .testimonials-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
  }
  
  /* ─── SWIPER ─────────────────────────── */
  .testimonials-swiper {
    padding-bottom: 56px !important;
  }
  
  /* ─── CARD ───────────────────────────── */
  .testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    transition: box-shadow .25s, transform .25s;
  }
  .testi-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,.09);
    transform: translateY(-4px);
  }
  
  /* Top row: stars + quote icon */
  .testi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .testi-stars {
    display: flex;
    gap: 4px;
  }
  .testi-stars i {
    color: #f59e0b;
    font-size: 0.95rem;
  }
  .testi-quote {
    font-size: 1.8rem;
    color: var(--green-100);
  }
  
  /* Review text */
  .testi-text {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.85;
    flex: 1;
  }
  
  /* Author */
  .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .testi-avatar {
    width: 46px;
    height: 46px;
    background: var(--green-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 700;
    flex-shrink: 0;
  }
  .testi-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .testi-info strong {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gray-900);
  }
  .testi-info span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-400);
  }
  
  /* ─── PAGINATION ─────────────────────── */
  .testimonials-pagination {
    bottom: 0 !important;
  }
  .testimonials-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--green-200, #bbf7d0);
    opacity: 1;
  }
  .testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--green-600);
    width: 24px;
    border-radius: 4px;
  }
  
  /* ─── CUSTOM NAV ─────────────────────── */
  .testi-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
  }
  .testi-prev,
  .testi-next {
    width: 46px;
    height: 46px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
  }
  .testi-prev:hover,
  .testi-next:hover {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
    transform: scale(1.08);
  }
  
  /* ─── MEDIA QUERIES ──────────────────── */
  
  @media (max-width: 1024px) {
    .testimonials     { padding: 80px 0; }
  }
  
  @media (max-width: 768px) {
    .testimonials     { padding: 72px 0; }
    .testimonials-inner { padding: 0 20px; }
    .testi-card       { padding: 24px 20px; }
  }
  
  @media (max-width: 480px) {
    .testimonials     { padding: 56px 0; }
    .testimonials-inner { padding: 0 16px; }
    .testi-card       { padding: 20px 16px; gap: 16px; }
    .testi-quote      { font-size: 1.4rem; }
    .testi-prev,
    .testi-next       { width: 40px; height: 40px; font-size: 0.8rem; }
  }
  

/* ==================== FAQ CSS ==================== */

.faq {
    background: var(--white);
    padding: 100px 0;
    overflow: hidden;
  }
  
  .faq-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
  }
  
  /* ─── FAQ GRID ───────────────────────── */
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }
  
  .faq-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  /* ─── FAQ ITEM ───────────────────────── */
  .faq-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .25s;
    background: var(--white);
  }
  .faq-item:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.07);
  }
  .faq-item.open {
    border-color: var(--green-200, #bbf7d0);
    box-shadow: 0 8px 28px rgba(22,163,74,.1);
  }
  
  /* Question button */
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-family: var(--font);
  }
  .faq-question span {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.5;
  }
  .faq-icon {
    font-size: 0.9rem;
    color: var(--green-600);
    flex-shrink: 0;
    transition: transform .3s ease;
    width: 28px;
    height: 28px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
  }
  
  /* Answer */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 24px;
  }
  .faq-answer p {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.8;
    padding-bottom: 22px;
  }
  .faq-item.open .faq-answer {
    max-height: 300px;
  }
  
  /* ─── MEDIA QUERIES ──────────────────── */
  
  @media (max-width: 1024px) {
    .faq-grid         { gap: 18px; }
    .section-title    { font-size: 2.25rem; }
  }
  
  @media (max-width: 768px) {
    .faq              { padding: 72px 0; }
    .faq-inner        { padding: 0 20px; }
    .faq-grid         { grid-template-columns: 1fr; gap: 14px; }
    .section-title    { font-size: 2rem; }
  }
  
  @media (max-width: 480px) {
    .faq              { padding: 56px 0; }
    .faq-inner        { padding: 0 16px; }
    .section-title    { font-size: 1.75rem; }
    .faq-question     { padding: 18px 16px; }
    .faq-question span { font-size: var(--text-xs); }
    .faq-answer       { padding: 0 16px; }
  }

  
 /* ==================== FOOTER CSS ==================== */

.footer {
  background: var(--green-900);
  position: relative;
  padding-top: 0;
}

/* Top wave */
.footer-wave {
  line-height: 0;
  margin-bottom: -2px;
}
.footer-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 28px 0;
}

/* ─── MAIN GRID ──────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* ─── BRAND COL ──────────────────────── */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  text-decoration: none;
}
.footer-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.footer-logo-text strong {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text span {
  font-size: var(--text-xs);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.4px;
}

.footer-about {
  font-size: var(--text-xs);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
  transform: translateY(-3px);
}

/* ─── FOOTER COLS ────────────────────── */
.footer-col-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.2px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}

/* Links list */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.footer-links li a i {
  font-size: 0.65rem;
  color: var(--green-500);
  transition: transform 0.2s;
}
.footer-links li a:hover {
  color: var(--white);
  gap: 12px;
}
.footer-links li a:hover i {
  transform: translateX(3px);
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-400, #4ade80);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-list li span,
.footer-contact-list li a {
  font-size: var(--text-xs);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list li a:hover {
  color: var(--white);
}

/* ─── DIVIDER ────────────────────────── */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ─── BOTTOM BAR ─────────────────────── */
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: var(--text-xs);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

/* Powered by link */
.footer-powered-link {
  color: var(--green-400, #4ade80);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.footer-powered-link:hover {
  color: var(--white);
}


/* ─── MEDIA QUERIES ──────────────────── */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .footer-inner     { padding: 48px 20px 0; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom    { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .footer-inner     { padding: 40px 16px 0; }
  .footer-grid      { grid-template-columns: 1fr; gap: 28px; }
  .footer-wave svg  { height: 50px; }
  .footer-logo-img  { height: 42px; }
  .footer-bottom    { text-align: center; }
}
