/* =============================================
   JAY NAGESHWARI ROADWAYS - MAIN STYLESHEET
   Eco-Luxury Logistics Design System
   ============================================= */

/* === CSS VARIABLES === */
:root {
    --forest:      #1a3d2b;
    --deep-green:  #2d5a3d;
    --mid-green:   #3d7a52;
    --leaf:        #4e9a68;
    --sage:        #7fba9a;
    --mint:        #b8dfc9;
    --cream:       #f4f0e8;
    --off-white:   #fafaf7;
    --charcoal:    #1c2420;
    --slate:       #3a4a42;
    --smoke:       #8a9a90;
    --gold:        #c9a84c;
    --gold-light:  #e8c97a;
    --white:       #ffffff;

    --font-display: 'Bebas Neue', cursive;
    --font-head:    'Syne', sans-serif;
    --font-body:    'DM Sans', sans-serif;

    --shadow-sm:  0 2px 8px rgba(26,61,43,0.08);
    --shadow-md:  0 8px 32px rgba(26,61,43,0.12);
    --shadow-lg:  0 20px 60px rgba(26,61,43,0.18);
    --shadow-xl:  0 40px 100px rgba(26,61,43,0.25);

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--charcoal);
    line-height: 1.65;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}
body.nav-open {
    overflow: hidden;
    touch-action: none;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

.container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}
section { padding: 100px 0; }

/* === PAGE LOADER === */
.page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--forest);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-truck {
    font-size: 3rem; color: var(--leaf);
    animation: truckDrive 1.2s ease-in-out infinite;
}
.loader-road {
    width: 120px; height: 4px; background: var(--mid-green);
    margin: 16px auto 0; border-radius: 2px;
    position: relative; overflow: hidden;
}
.loader-road::after {
    content: '';
    position: absolute; left: -100%; top: 0;
    width: 50%; height: 100%;
    background: var(--gold);
    animation: roadLine 1.2s linear infinite;
}
@keyframes truckDrive { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes roadLine { to { left: 200%; } }

/* === NAVBAR === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(26, 61, 43, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
}
.nav-container {
    max-width: 1240px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 12px;
}
.nav-logo .logo-icon {
    width: 42px; height: 42px;
    background: var(--leaf);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--white);
    transition: var(--transition);
}
.nav-logo:hover .logo-icon { background: var(--gold); transform: rotate(15deg); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
    font-family: var(--font-head); font-weight: 800;
    font-size: 1rem; color: var(--white); letter-spacing: 0.5px;
}
.logo-sub {
    font-size: 0.7rem; color: var(--sage); letter-spacing: 2px; text-transform: uppercase;
}
.nav-links {
    display: flex; align-items: center; gap: 8px;
}
.nav-links a {
    padding: 8px 16px;
    font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
    height: 2px; background: var(--leaf); border-radius: 1px;
    transform: scaleX(0); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
    background: var(--leaf) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === PAGE LAYOUT HELPERS (inline-heavy PHP sections) === */
.about-intro-section { background: var(--off-white); padding: 100px 0; }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-intro-grid > * {
    min-width: 0;
}
.mv-two-col > * {
    min-width: 0;
}
.about-mission-truck {
    font-size: clamp(2.75rem, 16vw, 9rem);
    color: rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
    line-height: 1;
    max-width: 100%;
}
.about-mission-copy {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 clamp(12px, 4vw, 40px);
    max-width: 100%;
}
.about-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-visual-card {
    background: var(--deep-green);
    border-radius: var(--radius-xl);
    height: 520px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}
.mv-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.services-process-wrap {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    position: relative;
}
.services-process-line {
    position: absolute;
    top: 40px;
    left: 8.333%;
    right: 8.333%;
    height: 2px;
    background: linear-gradient(90deg, var(--leaf), var(--gold));
    z-index: 0;
}
@media (max-width: 1199px) and (min-width: 992px) {
    .services-process-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 16px;
    }
    .services-process-line {
        display: none;
    }
}
.gallery-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    background: var(--forest);
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: 80px;
}
.hero-bg {
    position: absolute; inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(78,154,104,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0d2018 0%, #1a3d2b 50%, #0f2a1c 100%);
}
.hero-grid-overlay {
    position: absolute; inset: 0;
    background-image: 
        linear-gradient(rgba(78,154,104,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78,154,104,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-road {
    position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
}
.hero-road::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
    background: var(--charcoal);
    clip-path: polygon(0 40%, 100% 20%, 100% 100%, 0 100%);
}
.hero-road::after {
    content: '';
    position: absolute; bottom: 12px; left: 5%; right: 5%;
    height: 4px; background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 40px, transparent 40px, transparent 80px);
    animation: roadMove 2s linear infinite;
}
@keyframes roadMove { to { background-position: 80px 0; } }

.hero-container {
    max-width: 1240px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 2;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(78,154,104,0.2); border: 1px solid rgba(78,154,104,0.4);
    color: var(--sage); padding: 6px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge i { font-size: 0.75rem; color: var(--leaf); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.hero-title .highlight {
    color: var(--leaf);
    position: relative; display: inline-block;
}
.hero-title .gold { color: var(--gold); }

.hero-desc {
    font-size: 1.05rem; color: rgba(255,255,255,0.65);
    max-width: 480px; margin-bottom: 40px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
    letter-spacing: 0.5px; transition: var(--transition);
    position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--leaf); color: var(--white);
    box-shadow: 0 4px 20px rgba(78,154,104,0.4);
}
.btn-primary:hover { background: var(--mid-green); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(78,154,104,0.5); }
.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--leaf); color: var(--leaf); transform: translateY(-3px); }
.btn-gold {
    background: var(--gold); color: var(--forest);
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); }

.hero-stats {
    display: flex; gap: 40px;
}
.stat-item { text-align: left; }
.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem; color: var(--white); line-height: 1;
}
.stat-num span { color: var(--leaf); }
.stat-label { font-size: 0.78rem; color: var(--smoke); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

.hero-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-truck-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(78,154,104,0.2);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(20px);
    position: relative; overflow: hidden;
    animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.hero-truck-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--leaf), transparent);
}
.hero-truck-icon {
    font-size: 8rem; color: var(--leaf); display: block;
    filter: drop-shadow(0 20px 40px rgba(78,154,104,0.4));
    margin-bottom: 20px;
    animation: truckFloat 3s ease-in-out infinite;
}
@keyframes truckFloat { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.truck-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.truck-feat {
    background: rgba(78,154,104,0.1);
    border: 1px solid rgba(78,154,104,0.15);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: var(--sage);
}
.truck-feat i { color: var(--leaf); }
.eco-orbit {
    position: absolute; right: -20px; top: 20px;
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--leaf), var(--deep-green));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--white);
    animation: orbit 6s linear infinite;
    box-shadow: 0 0 40px rgba(78,154,104,0.6);
}
@keyframes orbit { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(180deg); } }

/* === SECTION HEADERS === */
.section-header { text-align: center; margin-bottom: 70px; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--leaf); font-size: 0.8rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px;
}
.section-tag::before, .section-tag::after {
    content: ''; width: 30px; height: 1px; background: var(--leaf);
}
.section-title {
    font-family: var(--font-head); font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--forest); line-height: 1.2; margin-bottom: 16px;
}
.section-title .accent { color: var(--leaf); }
.section-desc { color: var(--slate); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* Dark section headers */
.dark .section-title { color: var(--white); }
.dark .section-desc { color: rgba(255,255,255,0.65); }
.dark .section-tag { color: var(--sage); }
.dark .section-tag::before, .dark .section-tag::after { background: var(--sage); }

/* === ABOUT SECTION (Home) === */
.about-home { background: var(--cream); }
.about-home-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-home-grid > * {
    min-width: 0;
}
.about-visual { position: relative; }
.about-img-main {
    width: 100%; border-radius: var(--radius-lg);
    overflow: hidden; position: relative;
    background: var(--deep-green);
    height: 480px;
    display: flex; align-items: center; justify-content: center;
}
.about-img-main .truck-illustration {
    font-size: 10rem; color: rgba(78,154,104,0.4);
}
.about-img-main::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--deep-green), var(--forest));
}
.about-badge-float {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--gold);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.about-badge-float .num {
    font-family: var(--font-display); font-size: 2.5rem; color: var(--forest); line-height: 1;
}
.about-badge-float .label { font-size: 0.75rem; color: var(--forest); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.about-content { padding: 20px 0; }
.about-title {
    font-family: var(--font-head); font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--forest); line-height: 1.2; margin-bottom: 20px;
}
.about-title .accent { color: var(--leaf); }
.about-desc { color: var(--slate); line-height: 1.8; margin-bottom: 24px; }
.about-checkpoints { margin-bottom: 32px; }
.checkpoint {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px;
}
.checkpoint-icon {
    width: 28px; height: 28px; background: rgba(78,154,104,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--leaf); font-size: 0.8rem; flex-shrink: 0; margin-top: 2px;
}
.checkpoint p { color: var(--slate); font-size: 0.95rem; }

/* Home — about visual (replaces oversized inline icons on small screens) */
.home-about-illus {
    position: relative;
    z-index: 1;
    text-align: center;
}
.home-about-truck {
    color: rgba(255, 107, 0, 0.5);
    font-size: clamp(3.25rem, 16vw, 10rem);
    line-height: 1;
    display: inline-block;
    max-width: 100%;
}
.home-about-leaves {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
}
.home-about-leaf { line-height: 1; }
.home-about-leaf--lg { color: rgba(255, 138, 51, 0.6); font-size: clamp(1.2rem, 5vw, 2rem); }
.home-about-leaf--md { color: rgba(255, 107, 0, 0.4); font-size: clamp(1rem, 4vw, 1.5rem); }
.home-about-leaf--sm { color: rgba(255, 138, 51, 0.5); font-size: clamp(1.05rem, 4.5vw, 1.8rem); }

/* === SERVICES SECTION === */
.services-home { background: var(--off-white); }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.services-grid > * {
    min-width: 0;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(26,61,43,0.06);
    position: relative; overflow: hidden;
    transition: var(--transition-slow);
    group: true;
}
.service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--deep-green), var(--forest));
    opacity: 0; transition: var(--transition-slow);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon { background: rgba(255,255,255,0.15); color: var(--white); }
.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.75); }
.service-card:hover .service-link { color: var(--gold); }

.service-icon {
    width: 64px; height: 64px;
    background: rgba(78,154,104,0.1);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--leaf);
    margin-bottom: 24px;
    transition: var(--transition);
    position: relative; z-index: 1;
}
.service-number {
    position: absolute; top: 24px; right: 24px;
    font-family: var(--font-display); font-size: 3rem;
    color: rgba(26,61,43,0.06); line-height: 1;
    transition: var(--transition);
}
.service-card:hover .service-number { color: rgba(255,255,255,0.06); }
.service-title {
    font-family: var(--font-head); font-weight: 700;
    font-size: 1.15rem; color: var(--forest);
    margin-bottom: 12px; position: relative; z-index: 1;
    transition: var(--transition);
}
.service-desc {
    color: var(--slate); font-size: 0.92rem; line-height: 1.7;
    margin-bottom: 24px; position: relative; z-index: 1;
    transition: var(--transition);
}
.service-link {
    color: var(--leaf); font-weight: 700; font-size: 0.85rem;
    display: flex; align-items: center; gap: 6px;
    position: relative; z-index: 1; transition: var(--transition);
}
.service-link i { transition: var(--transition); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* Home: ten services + compact cards */
.services-grid.services-grid--home {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}
.service-card.service-card--compact {
    padding: 26px 20px 28px;
}
.service-card.service-card--compact .service-icon {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
    margin-bottom: 18px;
}
.service-card.service-card--compact .service-title {
    font-size: 1.02rem;
    line-height: 1.35;
}
.service-card.service-card--compact .service-desc {
    font-size: 0.84rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 18px;
}
.service-card.service-card--compact .service-number {
    font-size: 2.15rem;
    top: 18px;
    right: 16px;
}
.services-home-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
}
.hero-badge--accent {
    border-left: 3px solid var(--gold);
    padding-left: 14px;
    margin-left: 2px;
}

/* Home: journey strip */
.home-journey {
    padding: 88px 0;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(255, 248, 240, 0.94) 100%);
    border-top: 1px solid rgba(26, 61, 43, 0.06);
    border-bottom: 1px solid rgba(26, 61, 43, 0.06);
}
.home-journey-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}
.home-journey-track {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}
.home-journey-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px 14px;
    text-align: center;
    border: 1px solid rgba(26, 61, 43, 0.08);
    box-shadow: var(--shadow-sm);
}
.home-journey-ico {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(78, 154, 104, 0.12);
    color: var(--leaf);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.home-journey-n {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
}
.home-journey-t {
    display: block;
    font-family: var(--font-head);
    color: var(--forest);
    font-size: 0.92rem;
    margin-bottom: 6px;
}
.home-journey-d {
    font-size: 0.76rem;
    color: var(--slate);
    line-height: 1.55;
    display: block;
}
.gallery-home-more {
    text-align: center;
    margin-top: 28px;
}
.metric-num--text {
    font-size: 1.12rem !important;
    letter-spacing: 0.04em;
}

@media (max-width: 1199px) {
    .services-grid.services-grid--home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .home-journey-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* === WHY CHOOSE US === */
.why-us { background: var(--forest); position: relative; overflow: hidden; }
.why-us::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(78,154,104,0.15) 0%, transparent 60%);
}
.why-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    position: relative; z-index: 1;
}
.why-content .section-header { text-align: left; }
.reasons-list { margin-top: 40px; }
.reason-item {
    display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start;
}
.reason-num {
    font-family: var(--font-display); font-size: 2.5rem;
    color: var(--leaf); line-height: 1; flex-shrink: 0; width: 50px;
}
.reason-body h4 {
    font-family: var(--font-head); font-weight: 700;
    color: var(--white); font-size: 1rem; margin-bottom: 6px;
}
.reason-body p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }

.eco-pledge-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(78,154,104,0.2);
    border-radius: var(--radius-xl);
    padding: 48px;
    backdrop-filter: blur(20px);
    position: relative; overflow: hidden;
}
.eco-pledge-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--leaf), var(--gold));
}
.pledge-icon {
    font-size: 3.5rem; color: var(--leaf);
    margin-bottom: 24px; display: block;
}
.pledge-title {
    font-family: var(--font-head); font-weight: 800;
    font-size: 1.5rem; color: var(--white); margin-bottom: 16px;
}
.pledge-desc { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 32px; }
.pledge-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pledge-metrics.pledge-metrics--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.metric {
    background: rgba(78,154,104,0.1);
    border: 1px solid rgba(78,154,104,0.15);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}
.metric-num {
    font-family: var(--font-display); font-size: 2rem;
    color: var(--gold); line-height: 1; display: block;
}
.metric-label { font-size: 0.78rem; color: var(--sage); letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }

/* === TESTIMONIALS === */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(26,61,43,0.06);
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
    content: '\201C';
    position: absolute; top: 20px; right: 28px;
    font-family: Georgia, serif; font-size: 5rem;
    color: var(--mint); line-height: 1;
}
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }
.testimonial-text { color: var(--slate); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--leaf), var(--deep-green));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 800; color: var(--white);
    font-size: 1.1rem; flex-shrink: 0;
}
.author-name { font-family: var(--font-head); font-weight: 700; color: var(--forest); }
.author-company { font-size: 0.8rem; color: var(--smoke); margin-top: 2px; }

/* === CTA STRIP === */
.cta-strip {
    background: linear-gradient(135deg, var(--leaf), var(--mid-green));
    padding: 80px 0;
    position: relative; overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute; top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-content {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; position: relative; z-index: 1;
}
.cta-text h2 {
    font-family: var(--font-head); font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white); margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,0.8); }
.btn-white {
    background: var(--white); color: var(--forest);
    font-weight: 800;
    flex-shrink: 0;
}
.btn-white:hover { background: var(--cream); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* === GALLERY === */
.gallery-section { background: var(--off-white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--deep-green);
    min-height: 260px;
    display: flex; align-items: center; justify-content: center;
}
.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; min-height: 340px; }
.gallery-item:nth-child(5) { grid-column: 2 / 4; }
.gallery-item:nth-child(8) { grid-column: 1 / 3; }
.gallery-icon {
    font-size: 4rem; color: rgba(255,255,255,0.2);
    transition: var(--transition-slow);
    z-index: 1; position: relative;
}
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,61,43,0.7), rgba(78,154,104,0.5));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px;
    opacity: 0; transition: var(--transition-slow);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-icon { transform: scale(1.2) rotate(5deg); }
.gallery-overlay-icon { font-size: 2rem; color: var(--white); }
.gallery-overlay-label { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1rem; }

/* Gallery backgrounds */
.gallery-item:nth-child(1) { background: linear-gradient(135deg, #1a3d2b, #0f2218); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #2d5a3d, #1a3d2b); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #0f2a1c, #2d5a3d); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #3d7a52, #1a3d2b); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, #1a3d2b, #4e9a68); }
.gallery-item:nth-child(6) { background: linear-gradient(135deg, #0f2218, #3d7a52); }
.gallery-item:nth-child(7) { background: linear-gradient(135deg, #2d5a3d, #0f2a1c); }
.gallery-item:nth-child(8) { background: linear-gradient(135deg, #1a3d2b, #2d5a3d); }
.gallery-item:nth-child(9) { background: linear-gradient(135deg, #4e9a68, #1a3d2b); }

/* === ABOUT PAGE === */
.page-hero {
    background: var(--forest);
    padding: 160px clamp(12px, 4vw, 24px) 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 100%;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(78,154,104,0.2) 0%, transparent 70%);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--white); letter-spacing: 3px; margin-bottom: 16px;
}
.page-hero h1 span { color: var(--leaf); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }
.breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 24px; font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--sage); }
.breadcrumb a:hover { color: var(--leaf); }
.breadcrumb i { font-size: 0.7rem; }

.timeline {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    padding: 10px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(255,107,0,0.2), rgba(255,107,0,0.85), rgba(255,107,0,0.2));
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    gap: 34px;
    margin-bottom: 34px;
    align-items: stretch;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-item:nth-child(even) .timeline-content { text-align: right; }
.timeline-year {
    font-family: var(--font-head);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 800;
    color: var(--leaf);
    width: calc(50% - 28px);
    flex-shrink: 0;
    text-align: right;
    padding-right: 44px;
    padding-top: 14px;
}
.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-right: 0;
    padding-left: 44px;
}
.timeline-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff6b00;
    border: 4px solid #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 18px;
    box-shadow: 0 0 0 5px rgba(255,107,0,0.2);
}
.timeline-content {
    width: calc(50% - 28px);
    background: #ffffff;
    border: 1px solid rgba(17,17,17,0.08);
    border-left: 4px solid #ff6b00;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.timeline-item:nth-child(even) .timeline-content {
    border-left: 1px solid rgba(17,17,17,0.08);
    border-right: 4px solid #ff6b00;
}
.timeline-content h4 {
    font-family: var(--font-head);
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
    font-size: 1.08rem;
}
.timeline-content p {
    color: #4a4a4a;
    font-size: 0.96rem;
    line-height: 1.75;
}

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
    background: var(--white);
    border-radius: var(--radius-lg); padding: 36px 24px;
    text-align: center; border: 1px solid rgba(26,61,43,0.06);
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--leaf); }
.value-icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: rgba(78,154,104,0.1); margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--leaf);
}
.value-card h4 {
    font-family: var(--font-head); font-weight: 700;
    color: var(--forest); margin-bottom: 10px;
}
.value-card p { color: var(--slate); font-size: 0.88rem; line-height: 1.7; }

.eco-initiatives { background: var(--cream); }
.initiatives-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.initiative-card {
    background: var(--white);
    border-radius: var(--radius-lg); padding: 36px;
    position: relative; overflow: hidden;
    transition: var(--transition);
}
.initiative-card:hover { box-shadow: var(--shadow-lg); }
.initiative-num {
    font-family: var(--font-display); font-size: 6rem;
    color: rgba(78,154,104,0.06); position: absolute; top: 0; right: 16px; line-height: 1;
}
.initiative-icon {
    font-size: 2.5rem; color: var(--leaf); margin-bottom: 20px; display: block;
}
.initiative-card h4 {
    font-family: var(--font-head); font-weight: 700;
    color: var(--forest); font-size: 1.1rem; margin-bottom: 12px;
}
.initiative-card p { color: var(--slate); font-size: 0.92rem; line-height: 1.7; }

/* === SERVICES PAGE === */
.service-full-card {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; margin-bottom: 80px;
}
.service-full-card:nth-child(even) { direction: rtl; }
.service-full-card:nth-child(even) > * { direction: ltr; }
.service-visual {
    background: var(--deep-green);
    border-radius: var(--radius-xl);
    height: 400px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.service-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,61,43,0.9), rgba(78,154,104,0.4));
}
.service-visual-icon {
    font-size: 8rem; color: rgba(255,255,255,0.15);
    position: relative; z-index: 1;
}
.service-visual-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: var(--gold); color: var(--forest);
    padding: 8px 16px; border-radius: 50px;
    font-weight: 800; font-size: 0.82rem;
    z-index: 1; letter-spacing: 0.5px;
}
.service-body {}
.service-body .service-icon { margin-bottom: 20px; }
.service-body h3 {
    font-family: var(--font-head); font-weight: 800;
    font-size: 1.8rem; color: var(--forest); margin-bottom: 16px;
}
.service-body p { color: var(--slate); line-height: 1.8; margin-bottom: 24px; }
.service-features { margin-bottom: 28px; }
.service-feature {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px; font-size: 0.9rem; color: var(--slate);
}
.service-feature i { color: var(--leaf); }

/* === CONTACT PAGE === */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 60px; }
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl); padding: 48px;
    border: 1px solid rgba(26,61,43,0.06);
    box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
    font-family: var(--font-head); font-weight: 800;
    font-size: 1.6rem; color: var(--forest); margin-bottom: 8px;
}
.contact-form-wrap .sub { color: var(--slate); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block; margin-bottom: 8px;
    font-family: var(--font-head); font-weight: 600;
    font-size: 0.85rem; color: var(--forest);
    letter-spacing: 0.5px;
}
.form-group label span { color: #e53e3e; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 18px;
    border: 2px solid rgba(26,61,43,0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-body); font-size: 0.95rem;
    color: var(--charcoal); background: var(--off-white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--leaf);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(78,154,104,0.1);
}
.form-group input.error, .form-group textarea.error { border-color: #e53e3e; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }
.form-note { font-size: 0.8rem; color: var(--smoke); margin-top: 12px; text-align: center; }
.form-note i { color: var(--leaf); }

.alert {
    padding: 16px 20px; border-radius: var(--radius-md);
    margin-bottom: 24px; font-size: 0.9rem;
    display: flex; align-items: center; gap: 10px;
}
.alert-success { background: rgba(78,154,104,0.1); border: 1px solid var(--leaf); color: var(--deep-green); }
.alert-error { background: rgba(229,62,62,0.1); border: 1px solid #e53e3e; color: #c53030; }

.contact-info-wrap { padding: 20px 0; }
.contact-info-title {
    font-family: var(--font-head); font-weight: 800;
    font-size: 1.6rem; color: var(--forest); margin-bottom: 8px;
}
.contact-info-sub { color: var(--slate); margin-bottom: 36px; }
.info-cards { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.info-card {
    background: var(--white);
    border-radius: var(--radius-lg); padding: 24px;
    border: 1px solid rgba(26,61,43,0.06);
    display: flex; gap: 20px; align-items: flex-start;
    transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); border-color: var(--mint); }
.info-icon {
    width: 50px; height: 50px; flex-shrink: 0;
    background: rgba(78,154,104,0.1); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--leaf);
}
.info-card h4 {
    font-family: var(--font-head); font-weight: 700;
    color: var(--forest); font-size: 0.9rem; margin-bottom: 4px;
}
.info-card p { color: var(--slate); font-size: 0.9rem; line-height: 1.6; }
.info-card a { color: var(--leaf); }
.info-card a:hover { color: var(--mid-green); }

.map-embed {
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid rgba(26,61,43,0.06);
    box-shadow: var(--shadow-sm);
}
.map-embed iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}
.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

/* === FOOTER === */
.footer { background: var(--charcoal); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.8; margin-bottom: 28px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--leaf); border-color: var(--leaf); color: var(--white); transform: translateY(-3px); }
.footer-heading {
    font-family: var(--font-head); font-weight: 700;
    color: var(--white); font-size: 0.95rem;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(78,154,104,0.3);
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255,255,255,0.55); font-size: 0.9rem;
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.footer-links a i { color: var(--leaf); font-size: 0.7rem; }
.footer-links a:hover { color: var(--leaf); padding-left: 4px; }
.footer-contact li {
    display: flex; gap: 14px; margin-bottom: 16px;
    align-items: flex-start;
}
.footer-contact i { color: var(--leaf); margin-top: 4px; flex-shrink: 0; font-size: 0.95rem; }
.footer-contact span { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    display: flex;
}
.footer-bottom .container {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.eco-badge { color: var(--sage) !important; display: flex; align-items: center; gap: 6px; }
.eco-badge i { color: var(--leaf); }

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 99;
    width: 48px; height: 48px;
    background: var(--leaf); color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(78,154,104,0.4);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); transform: translateY(-4px); }

/* === STATS BAR === */
.stats-bar {
    background: var(--deep-green);
    padding: 32px 0;
    border-top: 1px solid rgba(78,154,104,0.2);
    border-bottom: 1px solid rgba(78,154,104,0.2);
}
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats-bar-item {
    text-align: center; padding: 20px;
    border-right: 1px solid rgba(78,154,104,0.2);
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-num {
    font-family: var(--font-display); font-size: 2.8rem;
    color: var(--white); line-height: 1; display: block;
}
.stats-bar-num span { color: var(--gold); }
.stats-bar-label { color: var(--sage); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }

/* === ORANGE + BLACK THEME OVERRIDES === */
:root {
    --forest:      #111111;
    --deep-green:  #1a1a1a;
    --mid-green:   #2a2a2a;
    --leaf:        #ff6b00;
    --sage:        #ff9a52;
    --mint:        #ffd7bf;
    --cream:       #f4f4f4;
    --off-white:   #f4f4f4;
    --charcoal:    #222222;
    --slate:       #444444;
    --smoke:       #666666;
    --gold:        #ff6b00;
    --gold-light:  #ff8a33;
    --white:       #ffffff;

    --font-display: 'Poppins', sans-serif;
    --font-head:    'Poppins', sans-serif;
    --font-body:    'Inter', sans-serif;

    --shadow-sm:  0 2px 10px rgba(0,0,0,0.08);
    --shadow-md:  0 10px 30px rgba(0,0,0,0.12);
    --shadow-lg:  0 20px 50px rgba(0,0,0,0.18);
    --shadow-xl:  0 28px 70px rgba(0,0,0,0.22);
}

body { background: var(--off-white); color: var(--charcoal); }
/* Always-solid header on hero video — no need to scroll for contrast */
.navbar {
    background: #131313;
    border-bottom: 1px solid rgba(255, 107, 0, 0.34);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.navbar.scrolled {
    background: #0c0c0c;
    border-bottom-color: rgba(255, 107, 0, 0.48);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.55);
}
.nav-logo .logo-icon { background: var(--leaf); }
.nav-logo:hover .logo-icon { background: var(--gold-light); }
.logo-sub { color: var(--mint); }

.btn,
.service-card,
.testimonial-card,
.value-card,
.initiative-card,
.info-card,
.gallery-item,
.footer-social a,
.scroll-top {
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
}

.btn-primary { background: var(--leaf); color: var(--white); box-shadow: 0 8px 26px rgba(255, 107, 0, 0.35); }
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 14px 30px rgba(255, 107, 0, 0.35); }
.btn-outline { border-color: rgba(255, 255, 255, 0.5); }
.btn-outline:hover { border-color: var(--leaf); color: var(--leaf); }
.btn-white { color: #111111; }

.section-title { color: #111111; }
.section-title .accent,
.about-title .accent,
.section-tag,
.service-link,
.info-card a,
.breadcrumb a:hover { color: var(--leaf); }
.section-tag::before, .section-tag::after { background: var(--leaf); }

.cta-strip { background: linear-gradient(120deg, #ff6b00 0%, #ff8a33 100%); }
.cta-text p { color: rgba(255,255,255,0.9); }

.why-us { background: #111111; }
.eco-pledge-card,
.hero-truck-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255, 107, 0, 0.28);
}
.reason-num,
.service-icon,
.value-icon,
.initiative-icon,
.info-icon,
.footer-links a:hover { color: var(--leaf); }

.stats-bar { background: #171717; border-color: rgba(255, 107, 0, 0.2); }
.stats-bar-item { border-color: rgba(255, 107, 0, 0.15); }
.stats-bar-label { color: #ffd4bc; }

.footer { background: #111111; }
.footer-heading { border-color: rgba(255, 107, 0, 0.35); }
.footer-social a:hover { background: var(--leaf); border-color: var(--leaf); }

/* Hero video */
.hero.hero-video {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 70px;
    display: flex;
    align-items: center;
}
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.6)),
        radial-gradient(circle at 70% 20%, rgba(255, 107, 0, 0.22), transparent 45%);
}
.hero.hero-video .hero-container {
    grid-template-columns: 1fr;
    max-width: 980px;
}
.hero.hero-video .hero-content { text-align: left; }
.hero.hero-video .hero-badge {
    background: rgba(255, 107, 0, 0.18);
    border-color: rgba(255, 107, 0, 0.44);
    color: #ffd3ba;
}
.hero.hero-video .hero-title { letter-spacing: 1px; }
.hero-title .highlight,
.hero-title .gold { color: var(--leaf); }
.hero.hero-video .hero-desc { color: rgba(255,255,255,0.87); max-width: 720px; }
.hero.hero-video .hero-stats { gap: 24px; flex-wrap: wrap; }
.hero.hero-video .stat-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    min-width: 180px;
}
.hero.hero-video .stat-label { color: #ffd5be; }
.hero.hero-video .stat-num span { color: #ff8a33; }

/* Gallery upgrades */
.gallery-section { background: var(--off-white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.gallery-grid-home { margin-top: 8px; }
.gallery-grid-home .gallery-item { min-height: 240px; }
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    min-height: 260px;
    border: 1px solid rgba(17,17,17,0.08);
    background: #e9e9e9;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6),
.gallery-item:nth-child(7),
.gallery-item:nth-child(8),
.gallery-item:nth-child(9) {
    grid-column: auto;
    grid-row: auto;
}
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.gallery-overlay {
    background: linear-gradient(180deg, rgba(17,17,17,0.12), rgba(17,17,17,0.82));
    opacity: 0;
    transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-image { transform: scale(1.08); }
.gallery-overlay-label {
    color: #fff;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 600;
}
.gallery-overlay-icon { color: var(--leaf); }
.gallery-category-badge {
    color: #fff;
    font-size: 0.78rem;
    background: rgba(255, 107, 0, 0.9);
    padding: 5px 12px;
    border-radius: 999px;
}
.gallery-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}
.gallery-filter {
    padding: 8px 20px;
    border-radius: 999px;
    border: 2px solid rgba(17,17,17,0.15);
    background: transparent;
    color: var(--slate);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}
.gallery-filter:hover {
    border-color: var(--leaf);
    color: var(--leaf);
    transform: translateY(-2px);
}
.gallery-filter.active-filter {
    background: var(--leaf);
    color: var(--white);
    border-color: var(--leaf);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.nav-backdrop {
    display: none;
}

/* === ≤1024px (tablet) — MUST appear before ≤991 / ≤768 or it overrides mobile === */
@media (max-width: 1024px) {
    .services-grid.services-grid--home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero.hero-video .hero-content { text-align: center; }
    .hero.hero-video .hero-actions,
    .hero.hero-video .hero-stats { justify-content: center; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .about-home-grid { grid-template-columns: 1fr; }
    .about-home {
        overflow-x: hidden;
    }
    .about-img-main {
        height: auto;
        min-height: 320px;
        padding: 24px 12px;
    }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .why-content .section-header { text-align: center; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .initiatives-grid { grid-template-columns: 1fr 1fr; }
    .service-full-card { grid-template-columns: 1fr; }
    .service-full-card:nth-child(even) { direction: ltr; }
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === TABLET + MOBILE NAV (≤991px) === */
@media (max-width: 991px) {
    /* Lift entire header above page content when drawer is open (fixes “see-through” menu) */
    body.nav-open .nav-backdrop.is-open {
        z-index: 19980;
    }
    body.nav-open .navbar {
        z-index: 20000;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1095;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.28s ease, visibility 0.28s;
    }
    .nav-backdrop.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-container {
        gap: 12px;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    .nav-logo {
        min-width: 0;
        flex: 1;
        max-width: calc(100% - 56px);
    }
    .nav-logo .logo-main {
        font-size: clamp(0.82rem, 3.5vw, 1rem);
    }
    .nav-logo .logo-sub {
        font-size: 0.62rem;
        letter-spacing: 1.5px;
    }

    .navbar {
        z-index: 1100;
        background: #121212;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
        border-bottom: 1px solid rgba(255, 107, 0, 0.38);
        padding: 12px 0;
    }
    .navbar.scrolled {
        background: #0c0c0c;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65);
        border-bottom-color: rgba(255, 107, 0, 0.48);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 90vw);
        height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        z-index: 1150;
        /* Solid base + gradient — some WebKit builds drop gradient-only fills behind scroll/flex */
        background-color: #151515;
        background-image: linear-gradient(180deg, #1c1c1c 0%, #141414 35%, #0d0d0d 100%);
        border-left: 3px solid var(--leaf);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding-top: max(88px, calc(env(safe-area-inset-top, 0px) + 72px));
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
        gap: 6px;
        box-sizing: border-box;
        transition: right var(--transition-slow), box-shadow var(--transition-slow);
        box-shadow: -16px 0 48px rgba(0, 0, 0, 0.65);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        isolation: isolate;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links li {
        width: 100%;
        list-style: none;
        flex-shrink: 0;
        background: rgba(10, 10, 10, 0.55);
        border-radius: var(--radius-sm);
    }
    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
        color: #ffffff;
        border-radius: var(--radius-sm);
    }
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 107, 0, 0.22);
        color: var(--white);
    }
    .nav-links a::after {
        display: none !important;
    }
    .nav-cta {
        margin-top: 12px;
        text-align: center;
        width: 100% !important;
        box-sizing: border-box;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1200;
        flex-shrink: 0;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 12px;
        background: linear-gradient(145deg, #ff7a1a, #e85d00);
        border: 2px solid rgba(255, 255, 255, 0.35);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    }
    .hamburger span {
        background: #ffffff;
    }
    body.nav-open .hamburger {
        z-index: 20100;
    }

    .page-hero {
        padding: 120px clamp(12px, 4vw, 20px) 72px;
    }
    .page-hero h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        letter-spacing: 1px;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .about-intro-section {
        padding: 70px 0;
    }
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual-card {
        height: auto;
        min-height: 300px;
        padding: 40px 20px;
    }
    .mv-two-col {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 40px;
    }

    .services-process-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .services-process-line {
        display: none;
    }
    .service-visual {
        height: 260px;
        min-height: 220px;
    }
    .service-body h3 {
        font-size: 1.45rem;
    }

    .gallery-highlights-grid {
        grid-template-columns: 1fr;
    }

    .contact-quick-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-quick-grid > div {
        border-left: none !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(17, 17, 17, 0.1) !important;
        padding: 22px 16px !important;
    }
    .contact-quick-grid > div:last-child {
        border-bottom: none !important;
    }

    .map-embed iframe {
        height: min(360px, 52vh);
    }

    .section-header {
        margin-bottom: 44px;
    }

    section {
        overflow-x: hidden;
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .services-grid.services-grid--home {
        grid-template-columns: minmax(0, 1fr);
    }
    .home-journey-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    /* Override wider ≤1024 rules — single column on phones / small tablets */
    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .values-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .initiatives-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .stats-bar-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .about-img-main {
        height: auto;
        min-height: 260px;
        padding: 28px 16px;
    }
    .about-title {
        font-size: clamp(1.45rem, 4.5vw, 2.2rem);
    }
    .about-badge-float {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 20px auto 0;
        max-width: 240px;
    }
    .about-visual {
        overflow: visible;
    }
    .pledge-metrics {
        grid-template-columns: 1fr 1fr;
    }
    .pledge-metrics.pledge-metrics--three {
        grid-template-columns: 1fr;
    }
    .eco-pledge-card {
        padding: 32px 22px;
    }
}

@media (max-width: 768px) {
    .home-journey-track {
        grid-template-columns: 1fr;
    }
    .home-journey {
        padding: 72px 0;
    }
    section { padding: 70px 0; }
    .container { padding-left: 18px; padding-right: 18px; }
    .hero-title {
        word-break: break-word;
        overflow-wrap: anywhere;
        letter-spacing: 0.5px;
    }
    .hero.hero-video { min-height: auto; padding-top: 96px; padding-bottom: 48px; }
    .hero.hero-video .hero-title {
        font-size: clamp(1.85rem, 9.5vw, 3.2rem);
        letter-spacing: 0.35px;
    }
    .hero.hero-video .hero-stats { gap: 12px; }
    .hero.hero-video .stat-item { min-width: 0; width: 100%; }
    /* Single-column gallery on phones (was overridden to 2 cols — caused cramped tiles) */
    .gallery-grid { grid-template-columns: 1fr !important; }
    .gallery-grid-home .gallery-item { min-height: 200px; }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(8) {
        grid-column: 1 / -1;
        min-height: 220px;
    }
    @media (hover: none) {
        .gallery-item .gallery-overlay {
            opacity: 1;
            background: linear-gradient(180deg, rgba(17,17,17,0.05), rgba(17,17,17,0.75));
        }
    }
    .gallery-filters {
        gap: 8px;
        margin-bottom: 32px;
    }
    .gallery-filter {
        padding: 7px 14px;
        font-size: 0.78rem;
    }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-content { flex-direction: column; text-align: center; }
    .cta-strip { padding: 56px 0; }
    .cta-text h2 { font-size: clamp(1.25rem, 5vw, 1.75rem); }
    .values-grid { grid-template-columns: 1fr; }
    .initiatives-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
    .timeline { padding-left: 0; }
    .timeline::before { left: 16px; }
    .timeline-item { flex-direction: column !important; gap: 10px; margin-bottom: 24px; padding-left: 44px; }
    .timeline-year {
        width: auto;
        padding: 0;
        text-align: left !important;
        padding-left: 0 !important;
        font-size: 1.1rem;
    }
    .timeline-content {
        width: 100%;
        text-align: left !important;
        padding: 14px 16px;
        border-left: 4px solid #ff6b00 !important;
        border-right: 1px solid rgba(17,17,17,0.08) !important;
    }
    .timeline-dot { left: 16px; margin-top: 10px; width: 14px; height: 14px; border-width: 3px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
    .contact-form-wrap { padding: 28px 20px; }
    .page-hero {
        padding: 100px 0 56px;
    }
    .stats-bar-grid {
        grid-template-columns: 1fr;
    }
    .stats-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 107, 0, 0.15);
        padding: 16px;
    }
    .stats-bar-item:last-child {
        border-bottom: none;
    }
    .about-intro-stats {
        grid-template-columns: 1fr;
    }
    .pledge-metrics {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: clamp(1.35rem, 6vw, 2rem);
    }
    .section-desc {
        font-size: 0.95rem;
    }
    .scroll-top {
        bottom: 18px;
        right: 18px;
        z-index: 1180;
    }
    .btn {
        padding: 12px 22px;
        font-size: 0.88rem;
    }
}

/* === SEO / long-form content (readable blocks) === */
.seo-section {
    padding: 80px 0;
    background: var(--off-white);
}
.seo-section--cream {
    background: var(--cream);
}
.seo-section--dark {
    background: #111111;
    color: rgba(255, 255, 255, 0.88);
}
.seo-inner {
    max-width: 920px;
    margin: 0 auto;
}
.seo-prose {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.1rem;
}
.seo-section--dark .seo-prose {
    color: rgba(255, 255, 255, 0.82);
}
.seo-prose strong {
    color: var(--forest);
    font-weight: 700;
}
.seo-section--dark .seo-prose strong {
    color: #fff;
}
.seo-h3 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.15rem, 3vw, 1.35rem);
    color: #111111;
    margin: 2rem 0 0.75rem;
    line-height: 1.3;
}
.seo-section--dark .seo-h3 {
    color: #ffffff;
}
.seo-ul {
    margin: 0 0 1.25rem 1.2rem;
    padding: 0;
    list-style: disc;
    color: var(--slate);
    line-height: 1.75;
}
.seo-section--dark .seo-ul {
    color: rgba(255, 255, 255, 0.8);
}
.seo-ul li {
    margin-bottom: 0.45rem;
}
.seo-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-top: 1.5rem;
}
.seo-check-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
    color: var(--slate);
}
.seo-section--dark .seo-check-row {
    color: rgba(255, 255, 255, 0.85);
}
.seo-check-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.seo-tagline {
    margin-top: 1.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--leaf);
    background: rgba(255, 107, 0, 0.08);
    font-weight: 700;
    color: #111111;
    font-size: 1.05rem;
    line-height: 1.5;
}
.seo-section--dark .seo-tagline {
    background: rgba(255, 107, 0, 0.12);
    color: #ffffff;
}
.seo-note {
    font-size: 0.88rem;
    color: var(--smoke);
    margin-top: 1.5rem;
    line-height: 1.65;
}
.seo-section--dark .seo-note {
    color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 768px) {
    .seo-section {
        padding: 56px 0;
    }
    .seo-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* === Home: Why Jay Nageshwari (enriched layout) === */
.seo-section--why-home {
    position: relative;
    overflow: hidden;
    padding: 96px 0 100px;
    background: linear-gradient(165deg, #fdf8f2 0%, var(--cream) 45%, #f3ece3 100%);
}
.seo-section--why-home::before {
    content: '';
    position: absolute;
    width: min(520px, 90vw);
    height: min(520px, 90vw);
    top: -200px;
    right: -140px;
    background: radial-gradient(circle, rgba(78, 154, 104, 0.14) 0%, transparent 68%);
    pointer-events: none;
}
.seo-section--why-home::after {
    content: '';
    position: absolute;
    width: min(380px, 75vw);
    height: min(380px, 75vw);
    bottom: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.09) 0%, transparent 68%);
    pointer-events: none;
}
.seo-section--why-home .container {
    position: relative;
    z-index: 1;
}
.seo-why-head {
    margin-bottom: 2.5rem;
}
.seo-why-shell {
    max-width: 1080px;
    margin: 0 auto;
}
.seo-why-lead {
    display: grid;
    grid-template-columns: 1fr minmax(200px, 260px);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 28px;
}
.seo-why-lead-main {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 32px 30px;
    border: 1px solid rgba(26, 61, 43, 0.08);
    box-shadow: 0 18px 50px rgba(17, 17, 17, 0.07);
    position: relative;
    overflow: hidden;
}
.seo-why-lead-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest), var(--leaf), var(--gold));
}
.seo-why-lead-kicker {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--leaf);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.seo-why-lead-text {
    margin-bottom: 0 !important;
    font-size: 1.03rem;
}
.seo-why-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.seo-why-stat {
    background: var(--forest);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 28px rgba(26, 61, 43, 0.28);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.seo-why-stat__num {
    font-family: var(--font-display);
    font-size: 1.85rem;
    color: var(--gold);
    line-height: 1.1;
}
.seo-why-stat__lbl {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.88;
}
.seo-why-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.seo-why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 26px 24px 28px;
    border: 1px solid rgba(26, 61, 43, 0.07);
    box-shadow: 0 6px 22px rgba(17, 17, 17, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.seo-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(17, 17, 17, 0.1);
}
.seo-why-card--wide {
    grid-column: 1 / -1;
}
.seo-why-card--solo {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    width: 100%;
}
.seo-why-card--solo .seo-why-card__icon {
    margin-left: auto;
    margin-right: auto;
}
.seo-why-card--solo .seo-why-card__text {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.seo-why-card--accent {
    background: linear-gradient(155deg, #ffffff 0%, rgba(78, 154, 104, 0.09) 55%, #ffffff 100%);
    border-color: rgba(78, 154, 104, 0.28);
}
.seo-why-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.seo-why-card--wide .seo-why-card__head {
    margin-bottom: 18px;
}
.seo-why-card--wide .seo-why-card__title {
    margin: 0;
}
.seo-why-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(78, 154, 104, 0.18), rgba(255, 107, 0, 0.12));
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.18rem;
    flex-shrink: 0;
    margin-bottom: 14px;
}
.seo-why-card__head .seo-why-card__icon {
    margin-bottom: 0;
}
.seo-why-card__title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.06rem;
    color: var(--forest);
    margin: 0 0 12px;
    line-height: 1.3;
}
.seo-why-card__text {
    color: var(--slate);
    font-size: 0.93rem;
    line-height: 1.78;
    margin: 0;
}
.seo-why-fleet-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.seo-why-fleet-chips span {
    font-size: 0.76rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(78, 154, 104, 0.11);
    color: var(--forest);
    border: 1px solid rgba(78, 154, 104, 0.2);
}
.seo-why-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.seo-why-pill {
    font-size: 0.76rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, #faf7f2, #f0ebe3);
    color: var(--forest);
    border: 1px solid rgba(26, 61, 43, 0.1);
    line-height: 1.35;
}
.seo-why-tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.seo-why-tile {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--forest);
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: rgba(78, 154, 104, 0.08);
    border: 1px solid rgba(78, 154, 104, 0.16);
}
.seo-why-tile i {
    color: var(--leaf);
    flex-shrink: 0;
}
.seo-why-closer {
    margin-top: 36px;
    padding-top: 4px;
}
.seo-why-closer .seo-tagline {
    border-left-width: 5px;
    box-shadow: 0 6px 28px rgba(255, 107, 0, 0.12);
}
@media (max-width: 900px) {
    .seo-section--why-home {
        padding: 72px 0 80px;
    }
    .seo-why-lead {
        grid-template-columns: 1fr;
    }
    .seo-why-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .seo-why-stat {
        flex: 1 1 calc(33.333% - 10px);
        min-width: 140px;
    }
    .seo-why-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .seo-why-mosaic {
        grid-template-columns: 1fr;
    }
    .seo-why-stat {
        flex: 1 1 100%;
    }
    .seo-why-tiles {
        grid-template-columns: 1fr;
    }
}
