/* ========== BASE ========== */
:root {
    /* Palette matched to the EcoLife Green mark: leaf greens + water-drop blue */
    --paper: #F5FAF7;
    --paper-2: #E8F3EA;
    --ink: #10231A;
    --ink-soft: #435248;
    --forest: #164A19;
    --forest-deep: #0B2A0E;
    --moss: #2E7D32;
    --ochre: #164A19;
    --ochre-soft: #4FC3F7;
    --sand: #A5D6A7;
    --line: rgba(16, 35, 26, 0.14);
    --white: #FFFFFF;
    --maxw: 1240px;
    --font-display: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --logo-green: #1B5E20;
    --logo-light: #4CAF50;
    --logo-blue: #29B6F6;
    --logo-blue-soft: #B3E5FC;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
/*    overflow-x: hidden;*/
    width: 100%;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Global overflow fix */
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 10px;
}

section {
    position: relative;
    overflow-x: hidden;
}

::selection {
    background: var(--ochre-soft);
    color: var(--forest-deep);
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--moss);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-bottom: 10px;
}
.d-none{
    display: none !Important;
}
.eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--moss);
    display: inline-block;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    color: var(--forest-deep);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height:1.2;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 3px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .22s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--logo-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--forest);
}

.btn-ghost {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--white);
}

.btn-on-dark {
    border-color: rgba(251, 250, 244, 0.6);
    color: var(--white);
}

.btn-on-dark:hover {
    background: var(--white);
    color: var(--forest-deep);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--forest-deep);
}

.btn-green {
    background: var(--logo-green);
    color: #fff;
}

.btn-green:hover {
    background: var(--logo-light);
}

/* ===== HEADER ===== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    transition: all .3s ease;
    background: rgba(255, 255, 255, 0.85);
}

header.shrink {
    box-shadow: 0 4px 20px rgba(23, 36, 27, 0.08);
    background:#FFF;
}

.nav {
    max-width: var(--maxw);
    margin: 0 auto;
    /* padding: 18px 32px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding .3s ease;
}

header.shrink .nav {
/*    padding: 10px 32px;*/
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--logo-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    flex-shrink: 0;
}
.logo img {
    height: 80px;
    object-fit: contain;
}
.logo .tagline {
    font-size: 9px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--moss);
    display: block;
    font-weight: 400;
    margin-top: 1px;
}

.logo-group {
    display: flex;
    flex-direction: column;
}

.nav-links {
    display: flex;
    gap: 20px;
    font-size: 14.5px;
    font-weight: 500;
}

.nav-links a {
    position: relative;
    color: var(--ink-soft);
    transition: color .2s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1.5px;
    background: var(--logo-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.nav-links a:hover {
    color: var(--logo-green);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a .fa-chevron-down {
    font-size: 10px;
    margin-left: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: all .3s ease;
}

/* ===== MEGA MENU (DESKTOP) ===== */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 20px 40px -12px rgba(23, 36, 27, 0.25);
    padding: 20px 0;
    border-top: 2px solid var(--logo-green);
    max-height: 70vh;
    overflow-y: auto;
    z-index: 1001;
}

.mega-menu.open {
    display: block;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mega-col {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 15px;
    transition: all .25s ease;
    cursor: pointer;
}

.mega-col:hover {
    background: var(--logo-green);
    border-color: var(--logo-green);
    box-shadow: 0 12px 24px -10px rgba(23, 36, 27, 0.3);
}

.mega-col h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--forest-deep);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    transition: color .25s ease;
}

.mega-col:hover h4 {
    color: var(--white);
}

.mega-col h4 i {
    font-size: 14px;
    color: var(--logo-green);
    flex-shrink: 0;
    margin-top: 2px;
    transition: color .25s ease;
}

.mega-col:hover h4 i {
    color: var(--sand);
}

.mega-col ul li {
    margin-bottom: 6px;
}

.mega-col ul li a {
    font-size: 13px;
    color: var(--ink-soft);
    transition: color .2s ease;
}

.mega-col ul li a:hover {
    color: var(--logo-green);
}

@media (max-width: 1100px) {
    .mega-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 980px) {
    .mega-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .mega-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .mega-col {
        padding: 16px 14px;
    }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    transition: right .35s ease;
    box-shadow: -8px 0 30px rgba(23, 36, 27, 0.15);
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-inner {
    padding: 30px 24px;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--ink);
    cursor: pointer;
    float: right;
    padding: 4px 8px;
}

.mobile-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--logo-green);
    margin: 20px 0 30px;
    clear: both;
}

.mobile-logo-mark {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo-mark img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.mobile-nav li {
    border-bottom: 1px solid var(--line);
}

.mobile-nav > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    padding: 14px 0;
}

/* --- Mobile Services Accordion --- */
.mobile-nav-parent {
    display: flex;
    flex-direction: column;
}

.mobile-nav-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    padding: 14px 0;
    cursor: pointer;
    text-align: left;
}

.mobile-nav-toggle i {
    font-size: 13px;
    color: var(--logo-green);
    transition: transform .3s ease;
    flex-shrink: 0;
}

.mobile-nav-toggle.open i {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    list-style: none;
}

.mobile-submenu.open {
    max-height: 900px;
}

.mobile-submenu li {
    border-bottom: none;
    border-top: 1px solid var(--line);
}

.mobile-submenu li:first-child {
    border-top: 1px solid var(--line);
}

.mobile-submenu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 12px 4px 12px 8px;
    transition: color .2s ease, padding-left .2s ease;
}

.mobile-submenu li a i {
    font-size: 13px;
    color: var(--logo-green);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.mobile-submenu li a:hover,
.mobile-submenu li a:active {
    color: var(--logo-green);
    padding-left: 12px;
}

.mobile-cta {
    margin-top: 30px;
}

.mobile-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: flex-end;
    padding-top: 100px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
    height: 100%;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 24, 17, 0.35) 0%, rgba(15, 24, 17, 0.55) 10%, rgba(15, 24, 17, 0.88) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 64px;
}

.hero .eyebrow {
    color: var(--sand);
}

.hero .eyebrow::before {
    background: var(--sand);
}

.hero h1 {
    color: var(--white);
    font-size: clamp(38px, 5.6vw, 62px);
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: #A5D6A7;
}

.hero p.lede {
    font-size: 17.5px;
    color: rgba(251, 250, 244, 0.82);
    max-width: 720px;
    margin-bottom: 25px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
    display: none;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all .3s ease;
}

.hero-dots .dot.active {
    background: #A5D6A7;
    transform: scale(1.2);
}

/* ===== MARQUEE ===== */
.marquee-section {
    background: var(--logo-green);
    padding: 18px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
    /* Matches seamless with Hero */
}

.marquee-track {
    display: flex;
    gap: 50px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== STATS ===== */
.stat-strip {
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
    /* margin: 0 auto 60px; */
    /* Separation from next section */
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat {
    border-left: 1px solid var(--line);
    padding-left: 22px;
}

.stat:first-child {
    border-left: none;
    padding-left: 0;
}

.stat .num {
    font-family: var(--font-mono);
    font-size: 34px;
    color: var(--ochre);
    font-weight: 500;
}

.stat .label {
    font-size: 12.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* ===== SECTION HEAD ===== */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.12;
    /* max-width: 560px; */
}

.section-head .head-note {
    font-size: 15px;
    color: var(--ink-soft);
    max-width: 320px;
    padding-bottom: 4px;
}

section.pad {
    padding: 60px 0;
}

section.pad-tight {
    padding: 40px  0;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-photo {
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1758524053218-a80cebab26ad?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

.about-tag {
    position: absolute;
    left: 0;
    bottom: 28px;
    background: var(--logo-green);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 3px;
    max-width: 200px;
    box-shadow: 0 18px 30px -14px rgba(23, 36, 27, 0.5);
}

.about-tag .n {
    font-family: var(--font-mono);
    font-size: 22px;
    color: #fff;
}

.about-tag .t {
    font-size: 12px;
    color: #fff;
    margin-top: 2px;
    line-height: 1.4;
}

.about-copy p {
    color: var(--ink-soft);
    font-size: 16.5px;
    margin-bottom: 20px;
    max-width: 540px;
}

.mission-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 34px;
}

.mission-item {
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.mission-item .tag {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--logo-green);
    letter-spacing: 0.08em;
}

.mission-item h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin: 6px 0 4px;
    color: var(--forest-deep);
}

.mission-item p {
    font-size: 14px;
    color: var(--ink-soft);
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--logo-green);
    color: var(--white);
    padding: 80px 0 90px;
    /* Separates from previous section */
}

.services-section .eyebrow {
    color: #A5D6A7;
}

.services-section .eyebrow::before {
    background: #A5D6A7;
}

.services-section h2 {
    color: var(--white);
}

.services-section .head-note {
    color: rgba(251, 250, 244, 0.65);
}

.legend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(251, 250, 244, 0.16);
    border-left: 1px solid rgba(251, 250, 244, 0.16);
}

.legend-item {
    border-right: 1px solid rgba(251, 250, 244, 0.16);
    border-bottom: 1px solid rgba(251, 250, 244, 0.16);
    padding: 32px 34px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: background .25s ease;
}

.legend-item:hover {
    background: rgba(251, 250, 244, 0.045);
}

.legend-code {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #A5D6A7;
    flex-shrink: 0;
    padding-top: 3px;
    width: 40px;
}

.legend-icon {
    font-size: 28px;
    flex-shrink: 0;
    color: var(--sand);
    width: 32px;
    text-align: center;
}

.legend-body h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 6px;
    color: #fff;
}

.legend-body p {
    font-size: 14px;
    color: rgba(251, 250, 244, 0.68);
    max-width: 320px;
}

/* ===== PROJECTS SWIPER ===== */
.projects-swiper {
    max-width: var(--maxw);
    margin: 0 auto;
    overflow: hidden !important;
    /* FIXES OVERFLOW */
}

.projects-swiper .swiper-button-next,
.projects-swiper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--logo-green) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.projects-swiper .swiper-button-next::after,
.projects-swiper .swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: 700;
}

.project-tile {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.project-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 24, 17, 0) 35%, rgba(15, 24, 17, 0.88) 100%);
}

.tile-1 {
    background-image: url('https://images.unsplash.com/photo-1736901028031-59b51c5ff261?auto=format&fit=crop&w=1400&q=80');
}

.tile-2 {
    background-image: url('https://images.unsplash.com/photo-1743178207584-4a0c1109975e?auto=format&fit=crop&w=1400&q=80');
}

.tile-3 {
    background-image: url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=1400&q=80');
}

.project-content {
    position: relative;
    z-index: 2;
    padding: 30px 30px 32px;
    color: var(--white);
}

.project-cat {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #A5D6A7;
    margin-bottom: 10px;
    display: block;
}

.project-content h4 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.project-content p {
    font-size: 14px;
    color: rgba(251, 250, 244, 0.78);
    max-width: 360px;
    margin-bottom: 16px;
}

.project-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(251, 250, 244, 0.5);
    padding-bottom: 2px;
}

.project-link:hover i {
    transform: translateX(3px);
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
    background: var(--paper-2);
    padding: 60px 0;
}

.testimonial-swiper {
    /* padding: 20px 0 50px; */
    overflow: hidden !important;
}

.testimonial-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(21px, 2.6vw, 28px);
    line-height: 1.5;
    color: var(--forest-deep);
    margin-bottom: 20px;
}

.testimonial-mark {
    font-size: 34px;
    color: var(--logo-green);
    margin-bottom: 20px;
    opacity: 0.8;
}

.testimonial-attrib {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--logo-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-who {
    text-align: left;
}

.testimonial-who .name {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--forest-deep);
}

.testimonial-who .role {
    font-size: 13px;
    color: var(--ink-soft);
}

/* ===== WHY CHOOSE ===== */
.why-section {
    padding: 60px 0;
    margin-top: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.why-item {
    background: var(--paper-2);
    padding: 32px 26px;
}

.why-icon {
    font-size: 30px;
    color: var(--logo-green);
    margin-bottom: 18px;
}

.why-item h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 13.5px;
    color: var(--ink-soft);
}

/* ===== BEFORE/AFTER ===== */
.ba-section {
    background: var(--logo-green);
    color: #fff;
    padding: 60px 0;
    /* SEPARATION FROM PREVIOUS SECTION */
}

.ba-section .eyebrow {
    color: #A5D6A7;
}

.ba-section .eyebrow::before {
    background: #A5D6A7;
}

.ba-section h2 {
    color: #fff;
}

.ba-section .head-note {
    color: rgba(251, 250, 244, 0.65);
}

/* ===== BEFORE/AFTER SWIPER - UPDATED ===== */
.ba-swiper {
    overflow: hidden !important;
}

.ba-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.ba-slider-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5);
    touch-action: none;
    user-select: none;
}

.ba-slider .ba-before,
.ba-slider .ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-slider .ba-before {
    position: relative;
    z-index: 1;
}

.ba-slider .ba-after {
    z-index: 2;
    width: 50%;
}

.ba-slider .ba-before img,
.ba-slider .ba-after img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-slider .ba-after img {
    position: absolute;
    top: 0;
    left: 0;
}

.ba-slider .ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 3;
    width: 4px;
    background: #fff;
    cursor: ew-resize;
    transform: translateX(-50%);
    touch-action: none;
}

.ba-slider .ba-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    transform: translateX(-50%);
}

.ba-slider .ba-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-green);
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.ba-slider .ba-label {
    position: absolute;
    top: 20px;
    padding: 6px 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 4px;
    z-index: 4;
}

.ba-slider .ba-label-before {
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.ba-slider .ba-label-after {
    right: 20px;
    background: var(--logo-green);
    color: #fff;
}

.ba-caption {
    text-align: center;
    padding: 18px 20px 10px;
}

.ba-caption h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.ba-caption p {
    font-size: 13px;
    color: rgba(251, 250, 244, 0.65);
}

.ba-swiper .swiper-pagination {
    position: relative;
    margin-top: 10px;
}

.ba-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.ba-swiper .swiper-pagination-bullet-active {
    background: var(--sand);
}

.ba-swiper .swiper-button-next,
.ba-swiper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--logo-green) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ba-swiper .swiper-button-next::after,
.ba-swiper .swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: 700;
}

.ba-swiper .swiper-button-disabled {
    opacity: 0.3 !important;
}

/* ===== INDUSTRY SWIPER ===== */
.industry-swiper {
    max-width: var(--maxw);
    margin: 0 auto;
    overflow: hidden !important;
}

.industry-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.industry-swiper .swiper-slide img {
    /* max-width: 160px; */
    height: 120px;
    object-fit: contain;
    border-radius: 4px;
    filter: grayscale(45%);
    opacity: 0.82;
    transition: all .3s ease;
    border: 1px solid var(--line);
}

.industry-swiper .swiper-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}

/* ===== GALLERY SWIPER ===== */
.gallery-section {
    background: var(--paper-2);
    padding: 60px 0;
}

.gallery-swiper {
    max-width: var(--maxw);
    margin: 0 auto;
    overflow: hidden !important;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--logo-green) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
    font-size: 14px !important;
    font-weight: 700;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform .3s ease;
}

.gallery-swiper .swiper-slide:hover img {
    transform: scale(1.02);
}

/* ===== BLOG SWIPER ===== */
.blog-section {
    background: var(--white);
    padding: 80px 0;
}

.blog-swiper {
    max-width: var(--maxw);
    margin: 0 auto;
    overflow: hidden !important;
}

.blog-swiper .swiper-button-next,
.blog-swiper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--logo-green) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-swiper .swiper-button-next::after,
.blog-swiper .swiper-button-prev::after {
    font-size: 14px !important;
    font-weight: 700;
}

.blog-card {
    background: var(--paper);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 20px 40px -16px rgba(23, 36, 27, 0.2);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-body {
    padding: 22px 24px 28px;
}

.blog-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--moss);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-body h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin: 8px 0 10px;
    color: var(--forest-deep);
}

.blog-body p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.blog-link {
    font-weight: 600;
    font-size: 13px;
    color: var(--logo-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    border-bottom: 1px solid var(--logo-light);
    padding-bottom: 2px;
}

/* ===== CSR / SPONSORSHIP ===== */
.csr-band {
    position: relative;
    background: linear-gradient(100deg, rgba(15, 24, 17, 0.94) 42%, rgba(15, 24, 17, 0.55) 75%, rgba(15, 24, 17, 0.25) 100%),
        url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 80px 0;
}

.csr-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.csr-band .eyebrow {
    color: var(--sand);
}

.csr-band .eyebrow::before {
    background: var(--sand);
}

.csr-band h2 {
    color: var(--white);
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.14;
    margin-bottom: 20px;
}

.csr-band p {
    color: rgba(251, 250, 244, 0.75);
    font-size: 15.5px;
    max-width: 460px;
    margin-bottom: 30px;
}

.slot-panel {
    background: rgba(23, 36, 27, 0.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(251, 250, 244, 0.18);
    border-radius: 6px;
    padding: 26px;
}

.slot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(251, 250, 244, 0.12);
    font-size: 14px;
}

.slot-row:last-child {
    border-bottom: none;
}

.slot-name {
    font-weight: 500;
}

.slot-loc {
    color: rgba(251, 250, 244, 0.55);
    font-size: 12.5px;
}

.slot-status {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}

.status-available {
    background: rgba(122, 178, 122, 0.18);
    color: #9FD39F;
}

.status-limited {
    background: rgba(41, 182, 246, 0.18);
    color: var(--ochre-soft);
}

.status-booked {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(251, 250, 244, 0.45);
}

/* ===== ATTRACTIVE CTA ===== */
.cta-band {
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--logo-green) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(165, 214, 167, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    gap: 30px;
}

.cta-text .cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: #A5D6A7;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta-text h2 {
    color: #fff;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.15;
    margin-bottom: 10px;
}

.cta-text h2 span {
    color: #A5D6A7;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0 auto 20px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: var(--forest-deep);
    padding: 16px 36px;
    font-size: 16px;
}

.cta-buttons .btn-primary:hover {
    background: #8bc34a;
}

.cta-buttons .btn-outline-light {
    padding: 16px 36px;
    font-size: 16px;
}

@media (max-width: 600px) {
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== FLOATING ===== */
.float-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px -8px rgba(23, 36, 27, 0.45);
    transition: transform .2s ease;
    color: var(--white);
    font-size: 24px;
}

.float-btn:hover {
    transform: scale(1.07);
}

.float-whatsapp {
    background: #25D366;
}

/* ===== FOOTER ===== */
footer {
    background:#000;
    color: rgba(251, 250, 244, 0.6);
    padding: 60px 0 30px;
    overflow-x: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.8fr 1.5fr;
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(251, 250, 244, 0.12);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 14px;
}
.f-logo{
    width: 95%;
    border-radius: 10px;
}
.footer-brand p {
    font-size: 13.5px;
    max-width: 280px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, transform .25s ease;
    font-size: 14px;
    color: rgba(251, 250, 244, 0.6);
}

.footer-social a:hover {
    background: var(--logo-green);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sand);
    margin-bottom: 16px;
}

.footer-col li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col li i {
    margin-right: 10px;
    width: 16px;
    color: var(--sand);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 26px;
    font-size: 12.5px;
    flex-wrap: wrap;
    gap: 10px;
}

/* ===== SWIPER OVERRIDES ===== */
.swiper-pagination-bullet-active {
    background: var(--logo-green) !important;
}
.swiper-pagination{
    display: none !important;
}
.swiper-button-next,
.swiper-button-prev {
    color: var(--logo-green) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px !important;
}

/* ===== QUICK ENQUIRY BUTTON ===== */
.inquiry-toggle {
    position: fixed;
    right: 24px;
    bottom: 90px;
    z-index: 9998;
    background: var(--logo-green);
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
    font-family: var(--font-body);
    border: 1px solid #fff;
}

.inquiry-toggle:hover {
    transform: scale(1.02);
}

.inquiry-panel {
    position: fixed;
    right: 24px;
    bottom: 150px;
    z-index: 9999;
    width: 340px;
    background: var(--white);
    border-radius: 8px;
    padding: 28px 26px;
    box-shadow: 0 24px 56px -12px rgba(23, 36, 27, 0.5);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    border: 1px solid var(--line);
}

.inquiry-panel.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.inquiry-panel h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--logo-green);
}

.inquiry-panel .sub {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 18px;
}

.inquiry-panel input,
.inquiry-panel textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 13px;
    margin-bottom: 12px;
    background: var(--paper);
}

.inquiry-panel textarea {
    min-height: 70px;
    resize: vertical;
}

.inquiry-panel .btn {
    width: 100%;
    justify-content: center;
}

/* =============================================
   REDESIGNED INDUSTRIES SERVED SECTION
   ============================================= */
.industries-hero-section {
    padding: 60px 0 40px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.industries-hero-section .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px;
}

.industries-hero-header {
    text-align: center;
    margin-bottom: 40px;
}

.industries-hero-header .eyebrow {
    justify-content: center;
}

.industries-hero-header h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    line-height: 1.15;
    max-width: 700px;
    margin: 0 auto;
}

.industries-hero-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.industry-hero-card {
    background: var(--paper);
    border-radius: 12px;
    padding: 24px 18px;
    text-align: center;
    border: 1px solid var(--line);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.industry-hero-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--logo-green);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.industry-hero-card:hover {
    border-color: var(--logo-green);
    box-shadow: 0 12px 30px rgba(27, 94, 32, 0.08);
}

.industry-hero-card:hover::before {
    transform: scaleX(1);
}

.industry-hero-card .ihc-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: var(--paper-2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--logo-green);
    transition: all 0.35s ease;
}

.industry-hero-card:hover .ihc-icon {
    background: var(--logo-green);
    color: var(--white);
    transform: scale(1.05);
}

.industry-hero-card h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 4px;
}

.industry-hero-card p {
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.5;
    margin-bottom: 10px;
}

.industry-hero-card .ihc-count {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--logo-green);
    background: var(--paper-2);
    padding: 3px 14px;
    border-radius: 50px;
    letter-spacing: 0.04em;
    transition: all 0.35s ease;
}

.industry-hero-card:hover .ihc-count {
    background: var(--logo-green);
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-photo {
        aspect-ratio: 16/9;
    }

    .about-tag {
        left: 16px;
    }

    .legend-grid {
        grid-template-columns: 1fr;
    }

    .csr-inner {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 24px;
    }

    .stat {
        border-left: none;
        padding-left: 0;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--line);
    }

    .projects-swiper .swiper-button-next,
    .projects-swiper .swiper-button-prev,
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev,
    .blog-swiper .swiper-button-next,
    .blog-swiper .swiper-button-prev {
        display: none !important;
    }

    .inquiry-panel {
        width: 300px;
        right: 12px;
        bottom: 140px;
    }

    .inquiry-toggle {
        right: 16px;
        bottom: 90px;
        padding: 12px 16px;
        font-size: 12px;
    }

    /* Industries Responsive */
    .industries-hero-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 720px) {
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stat {
        border-left: none;
        padding-left: 0;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--line);
    }

    .mission-list {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    section.pad {
        padding: 60px 0;
    }

    .wrap {
        padding: 0 20px;
    }

    .projects-swiper,
    .gallery-swiper,
    .blog-swiper,
    .industry-swiper {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-dots {
        bottom: 20px;
        gap: 6px;
    }

    .hero-dots .dot {
        width: 10px;
        height: 10px;
    }

    .hero {
        min-height: 480px;
        padding-top: 60px;
    }

    .hero h1 {
        font-size: clamp(32px, 8vw, 44px);
    }

    .hero p.lede {
        font-size: 15px;
    }

    .hero-inner {
        padding-bottom: 40px;
    }

    .cta-text h2 {
        font-size: clamp(28px, 7vw, 38px);
    }

    .cta-text p {
        font-size: 15px;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .section-head .head-note {
        max-width: 100%;
    }

    .inquiry-panel {
        width: calc(100% - 24px);
        right: 12px;
        bottom: 140px;
    }

    .inquiry-toggle {
        right: 16px;
        bottom: 90px;
        padding: 12px 16px;
        font-size: 12px;
    }

    /* Industries Responsive */
    .industries-hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .industry-hero-card {
        padding: 18px 14px;
    }
    
    .industry-hero-card .ihc-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .industry-hero-card h4 {
        font-size: 13px;
    }

    /* Before/After Swiper Responsive */
    .ba-slider {
        aspect-ratio: 16/12;
    }
    
    .ba-slider .ba-circle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .ba-swiper .swiper-button-next,
    .ba-swiper .swiper-button-prev {
        display: none !important;
    }
}

@media (max-width: 480px) {
    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
        width: 100%;
    }
    .nav {
        padding:5px 10px;
    }

    header.shrink .nav {
        padding: 8px 16px;
    }

    .legend-item {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
    }

    .legend-icon {
        width: 28px;
    }

    .logo {
        font-size: 17px;
        gap: 8px;
    }
        .logo a img {
            height: 50px;
        }
    .logo svg,
    .logo img.logo-mark {
        width: 32px;
        height: 32px;
    }

    .ba-label {
        font-size: 10px;
        padding: 4px 12px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }

    /* Industries Responsive */
    .industries-hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .industry-hero-card {
        padding: 14px 10px;
    }
    
    .industry-hero-card .ihc-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .industry-hero-card h4 {
        font-size: 12px;
    }
    
    .industry-hero-card p {
        font-size: 10px;
    }
    
    .industry-hero-card .ihc-count {
        font-size: 9px;
        padding: 2px 10px;
    }

    /* Before/After Swiper Responsive */
    .ba-slider {
        aspect-ratio: 16/14;
    }
    
    .ba-slider .ba-circle {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .ba-slider .ba-label {
        font-size: 10px;
        padding: 4px 12px;
        top: 12px;
    }
    
    .ba-slider .ba-label-before {
        left: 12px;
    }
    
    .ba-slider .ba-label-after {
        right: 12px;
    }
    
    .ba-caption h4 {
        font-size: 16px;
    }
}

.footer-bottom .watermark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: rgba(251, 250, 244, 0.4);
}

.footer-bottom .watermark a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: rgba(251, 250, 244, 0.5);
    transition: color 0.3s ease;
    font-size: 12.5px;
}

.footer-bottom .watermark a:hover {
    color: var(--white);
}

.footer-bottom .watermark a img {
    height: 30px;
    width: auto;
    vertical-align: middle;
    transition: filter 0.3s ease;
}

.footer-bottom .watermark a:hover img {
    filter: brightness(1.2);
}

.footer-bottom > span:first-child {
    font-size: 12.5px;
    color: rgba(251, 250, 244, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-bottom .footer-links {
        justify-content: center;
    }
    
    .footer-bottom .watermark {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-bottom .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
    }
    
    .footer-bottom .footer-links a:not(:last-child)::after {
        display: none;
    }
    
    .footer-bottom .watermark a img {
        height: 20px;
    }
}


    /* =============================================
       SERVICE DETAIL PAGE SPECIFIC STYLES
       ============================================= */
    
    /* Hero with Background Image */
    .service-detail-hero {
      position: relative;
      padding: 80px 0 60px;
      background-size: cover;
      background-position: center;
      background-image: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&w=1920&q=80');
      overflow: hidden;
    }
    
    .service-detail-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(11, 42, 14, 0.92) 0%, rgba(27, 94, 32, 0.85) 60%, rgba(27, 94, 32, 0.70) 100%);
      z-index: 1;
    }
    
    .service-detail-hero .wrap {
      position: relative;
      z-index: 2;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .service-detail-hero .breadcrumb {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: rgba(251, 250, 244, 0.6);
      margin-bottom: 20px;
      font-family: var(--font-mono);
      letter-spacing: 0.04em;
      flex-wrap: wrap;
    }
    
    .service-detail-hero .breadcrumb a {
      color: rgba(251, 250, 244, 0.7);
      text-decoration: none;
      transition: color 0.25s ease;
    }
    
    .service-detail-hero .breadcrumb a:hover {
      color: var(--sand);
    }
    
    .service-detail-hero .breadcrumb .current {
      color: var(--sand);
    }
    
    .service-detail-hero .breadcrumb .separator {
      color: rgba(251, 250, 244, 0.3);
      font-size: 10px;
    }
    
    .service-detail-hero .hero-badge {
      display: inline-block;
      background: var(--logo-green);
      color: var(--white);
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 4px 16px;
      border-radius: 50px;
      font-family: var(--font-mono);
      margin-bottom: 12px;
    }
    
    .service-detail-hero h1 {
      color: var(--white);
      font-size: clamp(32px, 4.5vw, 48px);
      line-height: 1.1;
      margin-bottom: 12px;
    }
    
    .service-detail-hero p {
      color: rgba(251, 250, 244, 0.78);
      font-size: 17px;
      max-width: 600px;
    }
    
    /* Service Overview */
    .service-overview {
      padding: 50px 0;
      background: var(--white);
    }
    
    .service-overview .wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .overview-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 30px;
      align-items: start;
    }
    
    .overview-content h2 {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 600;
      color: var(--forest-deep);
      margin-bottom: 16px;
    }
    
    .overview-content p {
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.8;
      margin-bottom: 16px;
    }
    
    .overview-content .key-points {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin: 20px 0;
    }
    
    .overview-content .key-points .point {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--ink-soft);
    }
    
    .overview-content .key-points .point i {
      color: var(--logo-green);
      font-size: 16px;
    }
    
    /* Sidebar */
    .overview-sidebar {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    
    .sidebar-card {
      background: var(--paper);
      border-radius: 12px;
      padding: 28px 26px;
      border: 1px solid var(--line);
    }
    
    .sidebar-card h4 {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 600;
      color: var(--forest-deep);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--line);
    }
    
    .sidebar-card .info-row {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid var(--line);
      font-size: 14px;
    }
    
    .sidebar-card .info-row:last-child {
      border-bottom: none;
    }
    
    .sidebar-card .info-row .label {
      color: var(--ink-soft);
    }
    
    .sidebar-card .info-row .value {
      color: var(--forest-deep);
      font-weight: 600;
    }
    
    .sidebar-card .info-row .value i {
      color: var(--logo-green);
      margin-right: 4px;
    }
    
    .sidebar-card .btn {
      width: 100%;
      justify-content: center;
      margin-top: 10px;
    }
    
    /* Sub Services - Grid with Images */
    .sub-services-section {
      padding: 60px 0;
      background: var(--paper);
    }
    
    .sub-services-section .wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .sub-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    
    .sub-service-card {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--line);
      transition: all 0.35s ease;
    }
    
    .sub-service-card:hover {
      border-color: var(--logo-green);
      box-shadow: 0 12px 40px rgba(27, 94, 32, 0.07);
    }
    
    .sub-service-card .card-img {
      height: 200px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    
    .sub-service-card .card-img .icon-overlay {
      position: absolute;
      bottom: 14px;
      left: 14px;
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(4px);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--logo-green);
      transition: all 0.35s ease;
    }
    
    .sub-service-card:hover .card-img .icon-overlay {
      background: var(--logo-green);
      color: var(--white);
    }
    
    .sub-service-card .card-body {
      padding: 20px 22px 24px;
    }
    
    .sub-service-card .card-body h4 {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 600;
      color: var(--forest-deep);
      margin-bottom: 6px;
    }
    
    .sub-service-card .card-body p {
      font-size: 13.5px;
      color: var(--ink-soft);
      line-height: 1.6;
      margin-bottom: 14px;
    }
    
    .sub-service-card .card-body .card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid var(--line);
    }
    
    .sub-service-card .card-body .enquiry-btn {
      font-size: 12px;
      font-weight: 600;
      color: var(--logo-green);
      background: transparent;
      border: 2px solid var(--logo-green);
      padding: 6px 18px;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: var(--font-body);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    
    .sub-service-card .card-body .enquiry-btn:hover {
      background: var(--logo-green);
      color: var(--white);
    }
    
    .sub-service-card .card-body .sub-count {
      font-size: 12px;
      color: var(--ink-soft);
      font-family: var(--font-mono);
    }
    
    .sub-service-card .card-body .sub-count i {
      color: var(--logo-green);
      margin-right: 4px;
    }
    
    /* Related Projects */
    .related-projects-section {
      padding: 60px 0;
      background: var(--white);
    }
    
    .related-projects-section .wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    
    .related-card {
      background: var(--paper);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--line);
      transition: all 0.35s ease;
      cursor: pointer;
    }
    
    .related-card:hover {
      border-color: var(--logo-green);
      box-shadow: 0 12px 40px rgba(27, 94, 32, 0.07);
    }
    
    .related-card .card-img {
      height: 220px;
      background-size: cover;
      background-position: center;
    }
    
    .related-card .card-body {
      padding: 20px 22px 24px;
    }
    
    .related-card .card-body .category {
      font-family: var(--font-mono);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--logo-green);
      font-weight: 600;
    }
    
    .related-card .card-body .category i {
      margin-right: 4px;
    }
    
    .related-card .card-body h4 {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 600;
      color: var(--forest-deep);
      line-height: 1.3;
      margin: 6px 0 8px;
    }
    
    .related-card .card-body p {
      font-size: 13px;
      color: var(--ink-soft);
      line-height: 1.6;
      margin-bottom: 12px;
    }
    
    .related-card .card-body .related-link {
      font-size: 13px;
      font-weight: 600;
      color: var(--logo-green);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.3s ease;
      text-decoration: none;
    }
    
    .related-card .card-body .related-link:hover {
      gap: 10px;
    }
    
    /* CTA */
    .service-cta {
      padding: 40px 0;
      background: var(--paper);
    }
    
    .service-cta .wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .service-cta .cta-wrap {
      background: linear-gradient(135deg, var(--forest-deep) 0%, var(--logo-green) 100%);
      padding: 40px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      position: relative;
      overflow: hidden;
    }
    
    .service-cta .cta-wrap::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(165, 214, 167, 0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    
    .service-cta .cta-text {
      position: relative;
      z-index: 2;
    }
    
    .service-cta .cta-text h2 {
      color: var(--white);
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.2;
      margin-bottom: 8px;
    }
    
    .service-cta .cta-text p {
      color: rgba(251, 250, 244, 0.7);
      font-size: 15px;
      margin-bottom: 0;
    }
    
    .service-cta .cta-btn {
      position: relative;
      z-index: 2;
      flex-shrink: 0;
    }
    
    .service-cta .btn-white {
      background: var(--white);
      color: var(--logo-green);
      padding: 16px 36px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    
    .service-cta .btn-white:hover {
      background: var(--paper-2);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    
    /* Modal - Enquiry Popup */
    .enquiry-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(6px);
      z-index: 99999;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    
    .enquiry-modal-overlay.active {
      display: flex;
    }
    
    .enquiry-modal {
      background: var(--white);
      border-radius: 16px;
      max-width: 520px;
      width: 100%;
      padding: 36px 40px 32px;
      position: relative;
      animation: modalFadeIn 0.3s ease;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    }
    
    @keyframes modalFadeIn {
      from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
      }
      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }
    
    .enquiry-modal .modal-close {
      position: absolute;
      top: 14px;
      right: 18px;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--ink-soft);
      cursor: pointer;
      transition: color 0.3s ease;
    }
    
    .enquiry-modal .modal-close:hover {
      color: var(--logo-green);
    }
    
    .enquiry-modal .modal-icon {
      font-size: 40px;
      color: var(--logo-green);
      margin-bottom: 12px;
      display: none;
    }
    
    .enquiry-modal h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 600;
      color: var(--forest-deep);
      margin-bottom: 4px;
    }
    
    .enquiry-modal .modal-sub {
      font-size: 14px;
      color: var(--ink-soft);
      margin-bottom: 20px;
    }
    
    .enquiry-modal .modal-service-tag {
      display: inline-block;
      background: var(--paper-2);
      color: var(--logo-green);
      padding: 4px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 16px;
      font-family: var(--font-mono);
    }
    
    .enquiry-modal input,
    .enquiry-modal textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid var(--line);
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--ink);
      background: var(--paper);
      transition: border-color 0.3s ease;
      margin-bottom: 14px;
    }
    
    .enquiry-modal input:focus,
    .enquiry-modal textarea:focus {
      outline: none;
      border-color: var(--logo-green);
    }
    
    .enquiry-modal textarea {
      min-height: 80px;
      resize: vertical;
    }
    
    .enquiry-modal .btn-submit {
      width: 100%;
      justify-content: center;
      padding: 14px;
      font-size: 16px;
      background: var(--logo-green);
      color: var(--white);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    
    .enquiry-modal .btn-submit:hover {
      background: var(--forest);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(27, 94, 32, 0.2);
    }
    
    .enquiry-modal .modal-note {
      font-size: 12px;
      color: var(--ink-soft);
      text-align: center;
      margin-top: 12px;
    }
    
    .enquiry-modal .modal-note i {
      color: var(--logo-green);
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
      .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .sub-services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .related-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .service-detail-hero {
        padding: 50px 0 40px;
      }
      
      .service-detail-hero h1 {
        font-size: clamp(26px, 5vw, 32px);
      }
      
      .overview-content .key-points {
        grid-template-columns: 1fr;
      }
      
      .sub-services-grid {
        grid-template-columns: 1fr;
      }
      
      .related-grid {
        grid-template-columns: 1fr;
      }
      
      .service-cta .cta-wrap {
        flex-direction: column;
        text-align: center;
        padding: 24px;
      }
      
      .service-cta .cta-text p {
        max-width: 100%;
      }
      
      .service-cta .btn-white {
        width: 100%;
        justify-content: center;
      }
      
      .enquiry-modal {
        padding: 28px 24px 24px;
      }
    }
    
    @media (max-width: 480px) {
      .service-detail-hero {
        padding: 35px 0 30px;
      }
      
      .service-detail-hero .breadcrumb {
        font-size: 11px;
        gap: 6px;
      }
      
      .service-detail-hero h1 {
        font-size: 24px;
      }
      
      .overview-content h2 {
        font-size: 22px;
      }
      
      .sidebar-card {
        padding: 20px 18px;
      }
      
      .sub-service-card .card-img {
        height: 160px;
      }
      
      .sub-service-card .card-body {
        padding: 16px 16px 18px;
      }
      
      .sub-service-card .card-body .card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
      }
      
      .related-card .card-img {
        height: 180px;
      }
      
      .service-cta .cta-wrap {
        padding: 16px;
      }
      
      .enquiry-modal {
        padding: 20px 16px 18px;
      }
      
      .enquiry-modal h3 {
        font-size: 18px;
      }
    }

    /* ===== FOOTER SPONSORSHIP BUTTON ===== */
.footer-sponsor-btn {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 250, 244, 0.1);
}

.btn-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #A5D6A7 0%, #4CAF50 100%);
  color: var(--forest-deep);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  width: 100%;
  justify-content: center;
}

.btn-sponsor:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #8bc34a 0%, #388E3C 100%);
  color: var(--white);
}

.btn-sponsor i:first-child {
  font-size: 18px;
}

.btn-sponsor i:last-child {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-sponsor:hover i:last-child {
  transform: translateX(4px);
}

.sponsor-tagline {
  font-size: 11px;
  color: rgba(251, 250, 244, 0.4);
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 768px) {
  .btn-sponsor {
    padding: 14px 20px;
    font-size: 15px;
  }
  
  .sponsor-tagline {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .btn-sponsor {
    padding: 12px 16px;
    font-size: 14px;
    gap: 10px;
  }
  
  .btn-sponsor i:first-child {
    font-size: 16px;
  }
}
@media (max-width: 1500px) {
.hero {
    height: 90vh;
}
}

/* ===== ASSOCIATES SECTION ===== */
.associates-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.associates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.associate-card {
  background: var(--paper);
  border-radius: 12px;
  padding: 32px 26px 28px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.associate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-green), var(--logo-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.associate-card:hover {
  border-color: var(--logo-green);
  box-shadow: 0 12px 40px rgba(27, 94, 32, 0.08);
}

.associate-card:hover::before {
  transform: scaleX(1);
}

/* UPDATED: Logo with Image Support */
.associate-card .associate-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  border: 2px solid var(--paper-2);
}

.associate-card .associate-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.35s ease;
}

/* Fallback icon if image fails */
.associate-card .associate-logo .fallback-icon {
  font-size: 32px;
  color: var(--logo-green);
}

.associate-card:hover .associate-logo {
  border-color: var(--logo-green);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(27, 94, 32, 0.15);
}

.associate-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 6px;
}

.associate-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 12px;
}

.associate-card .associate-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--logo-green);
  background: var(--paper-2);
  padding: 4px 16px;
  border-radius: 50px;
  transition: all 0.35s ease;
}

.associate-card:hover .associate-tag {
  background: var(--logo-green);
  color: var(--white);
}

/* ===== ASSOCIATES RESPONSIVE ===== */
@media (max-width: 980px) {
  .associates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .associates-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  
  .associate-card {
    padding: 20px 14px 18px;
  }
  
  .associate-card .associate-logo {
    width: 64px;
    height: 64px;
  }
  
  .associate-card h4 {
    font-size: 14px;
  }
  
  .associate-card p {
    font-size: 11px;
  }
  
  .associate-card .associate-tag {
    font-size: 9px;
    padding: 3px 12px;
  }
}

@media (max-width: 400px) {
  .associates-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}