:root {
    --primary-color: #8e0c0d;
    --primary-dark: #630506;
    --primary-light: #fee2e2;
    --accent-color: #c21a1b;
    --text-main: #0f172a;
    --text-muted: #1e293b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.5;
}

section {
    scroll-margin-top: 80px;
}

/* NAVBAR */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar.scrolled .nav-container {
    padding: 0.6rem 2rem;
}

/* Logo Area Styling */
.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 450px;
}

.nav-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -0.2px;
}

.logo-subtitle {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.1;
    letter-spacing: 0.2px;
    margin-top: 2px;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 1px;
}

.logo-tagline em {
    font-family: 'Caveat', cursive;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-style: normal;
    font-weight: 700;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.mobile-only-cta {
    display: none;
}

.nav-links a {
    color: #334155;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.25s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

/* Navigation Dropdowns */
.dropdown-li {
    position: relative;
}

.dropdown-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.arrow-icon {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
}

.dropdown-li:hover .arrow-icon {
    transform: rotate(180deg);
}

.dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-white);
    min-width: 240px;
    border-radius: 12px;
    padding: 0.75rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.dropdown-menu-list li {
    padding: 0;
}

.dropdown-menu-list a {
    color: #475569 !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    padding: 0.65rem 1.25rem !important;
    display: block !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
    border-radius: 6px;
    margin: 0 0.5rem;
}

.dropdown-menu-list a::after {
    display: none !important; /* Hide standard nav underline */
}

.dropdown-menu-list a:hover {
    background-color: rgba(194, 26, 27, 0.04) !important;
    color: var(--accent-color) !important;
}

.dropdown-li:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.lang-selector-container {
    margin-left: 1.5rem;
    flex-shrink: 0;
}

/* Adjustments for the CTA dropdown */
.nav-cta {
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta.dropdown-li {
    display: inline-block;
}

.cta-dropdown-list {
    left: auto !important;
    right: 0 !important;
    transform: translateX(0) translateY(10px) !important;
}

.nav-cta.dropdown-li:hover .cta-dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(5px) !important;
}

/* Mobile dropdown styles */
@media (max-width: 1024px) {
    .dropdown-menu-list {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        padding-left: 1.5rem !important;
        display: none !important;
        background: transparent !important;
        width: 100% !important;
    }
    
    .dropdown-li.active .dropdown-menu-list {
        display: flex !important;
    }
    
    .dropdown-li.active .arrow-icon {
        transform: rotate(180deg);
    }
    
    .nav-links {
        overflow-y: auto;
        max-height: calc(100vh - 80px);
    }
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chevron {
    width: 12px;
    height: 12px;
    margin-top: 1px;
}

/* Nav CTA */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.btn-consultation {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.75rem 1.25rem;
    font-size: 0.88rem;
    border: none;
}

.btn-consultation:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(142, 12, 13, 0.2);
}

.btn-planner {
    background-color: var(--text-main);
    color: var(--bg-white);
    padding: 0.75rem 1.25rem;
    font-size: 0.88rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-planner:hover {
    background-color: #1e293b;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}


/* HERO SECTION */
.hero-section {
    min-height: calc(100vh - 40px);
    padding-top: 85px;
    display: flex;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    background: var(--bg-white);
    overflow: hidden;
}

.hero-section .parallax-bg {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 40%, rgba(255, 255, 255, 0.2) 100%), url('images/golden_gate.png') center/cover no-repeat;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--bg-white) 100%);
    z-index: 5;
    pointer-events: none;
}

/* Subtle background Golden Gate Bridge watermark */
.watermark-bg {
    display: none;
}

.hero-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    padding-left: max(2rem, calc((100vw - 1400px) / 2));
    padding-right: 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-logo-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.hero-logo-text {
    display: flex;
    flex-direction: column;
}

.hero-logo-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -0.2px;
}

.hero-logo-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.25;
    letter-spacing: -0.2px;
    margin-top: 2px;
}

.hero-logo-tagline {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 1px;
}

.hero-logo-tagline em {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: var(--accent-color);
    font-style: normal;
    font-weight: 700;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.accent-cursive {
    font-family: 'Caveat', cursive;
    color: var(--accent-color);
    font-weight: 700;
    position: relative;
    white-space: nowrap;
}

.drawn-heart {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    vertical-align: middle;
    margin-left: 6px;
    display: inline-block;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 600px;
}

.highlight-red {
    color: var(--accent-color);
    font-weight: 700;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 1.8rem;
    border: none;
    box-shadow: 0 4px 15px rgba(142, 12, 13, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 12, 13, 0.35);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.9rem 1.8rem;
}

.btn-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Features Bar */
.hero-features-bar {
    display: flex;
    background-color: #fafaf9;
    border: 1px solid #f2f2f0;
    border-radius: 20px;
    padding: 1.25rem 2rem;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    color: var(--primary-color);
}

.feature-icon.bg-red { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); color: #ffffff; box-shadow: 0 4px 10px rgba(239, 68, 68, 0.35); }
.feature-icon.bg-red-light { background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%); color: #ffffff; box-shadow: 0 4px 10px rgba(244, 63, 94, 0.35); }
.feature-icon.bg-red-dark { background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%); color: #ffffff; box-shadow: 0 4px 10px rgba(220, 38, 38, 0.35); }
.feature-icon.bg-red-accent { background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%); color: #ffffff; box-shadow: 0 4px 10px rgba(251, 191, 36, 0.35); }

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.feature-text strong {
    color: var(--text-main);
    font-weight: 700;
}

/* Right Hero Visuals */
.hero-visuals {
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@keyframes gradient-wave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.visuals-bg-wave {
    position: absolute;
    top: -5%;
    right: -25%;
    width: 115%;
    height: 110%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 33%, #e11d48 66%, var(--primary-dark) 100%);
    background-size: 300% 300%;
    border-radius: 48% 0% 10% 52% / 50% 0% 0% 50%;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(142, 12, 13, 0.25);
    animation: gradient-wave 14s ease infinite;
}

.main-hero-image-wrapper {
    position: absolute;
    z-index: 2;
    width: 85%;
    height: 55%;
    top: -5%;
    right: 0;
    overflow: hidden;
    border-radius: 48% 0% 10% 52% / 50% 0% 0% 50%;
    border: 5px solid var(--bg-white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.main-hero-image-wrapper:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.25);
}

.main-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlapping cards container */
.slanted-cards-container {
    position: absolute;
    bottom: 15%;
    left: -10%;
    width: 110%;
    display: flex;
    gap: 1.25rem;
    z-index: 3;
}

.slanted-card {
    background-color: var(--bg-white);
    border: 5px solid var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
    overflow: hidden;
    width: 32%;
    aspect-ratio: 4/3;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.slanted-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-classroom {
    transform: rotate(-3deg) translateY(0);
}

.card-community {
    transform: rotate(0deg) translateY(12px);
}

.card-bridge {
    transform: rotate(3deg) translateY(6px);
}

.slanted-card:hover {
    transform: scale(1.06) translateY(-8px);
    z-index: 10;
    box-shadow: 0 20px 35px rgba(142, 12, 13, 0.15);
}

/* Circular Logo Badge */
.circular-logo-badge {
    position: absolute;
    bottom: -6%;
    left: 36%;
    width: 120px;
    height: 120px;
    background-color: var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(142, 12, 13, 0.35), 0 0 25px rgba(251, 191, 36, 0.4);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 4px solid var(--bg-white);
    animation: float 4s ease-in-out infinite;
}

.badge-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c21a1b 0%, #8e0c0d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: #ffffff;
}

.badge-inner svg {
    width: 100%;
    height: 100%;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}



.what-we-do-section {
    padding: 6rem 2rem 5rem;
    background-color: #fdfbf7;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.what-we-do-section .parallax-bg {
    background-image: url('images/what_we_do_bg.png');
    background-size: cover;
    background-position: right 0%;
    background-repeat: no-repeat;
    filter: blur(3px) contrast(1.1) brightness(1.02);
    opacity: 0.45; /* Lower opacity so background is lighter */
    top: -5%;
    height: 120%;
}

/* Light overlay to fade background on the left for text readability */
.what-we-do-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(253, 251, 247, 0.95) 30%, rgba(253, 251, 247, 0.7) 70%, rgba(253, 251, 247, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.what-we-do-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.what-we-do-badge {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(194, 26, 27, 0.2);
}

.badge-icon {
    width: 14px;
    height: 14px;
}

.what-we-do-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: -1.2px;
    text-align: center;
    line-height: 1.2;
}

.what-we-do-heading .font-red {
    color: var(--accent-color);
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.title-divider .divider-line {
    width: 45px;
    height: 2px;
    background-color: #eab308;
}

.title-divider .divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #eab308;
}

.what-we-do-description {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
    max-width: 780px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    text-align: center;
}

/* Services 5-Column Grid */
.services-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.035);
    padding: 3.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 5px solid transparent;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.service-card .card-icon {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--bg-white);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    z-index: 3;
    color: var(--bg-white);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card .card-icon svg {
    width: 24px;
    height: 24px;
}

/* Card Themes & Hover Effects */
.bg-navy { background-color: #0f2942; }
.bg-red { background-color: #c21a1b; }
.bg-orange { background-color: #f97316; }
.bg-yellow { background-color: #eab308; }
.bg-green { background-color: #10b981; }
.bg-blue { background-color: #2563eb; }

.service-card.border-navy { border-bottom-color: #0f2942; }
.service-card.border-red { border-bottom-color: #c21a1b; }
.service-card.border-orange { border-bottom-color: #f97316; }
.service-card.border-yellow { border-bottom-color: #eab308; }
.service-card.border-green { border-bottom-color: #10b981; }
.service-card.border-blue { border-bottom-color: #2563eb; }

.service-card.border-navy h3 { color: #0f2942; }
.service-card.border-red h3 { color: #c21a1b; }
.service-card.border-orange h3 { color: #f97316; }
.service-card.border-yellow h3 { color: #eab308; }
.service-card.border-green h3 { color: #10b981; }
.service-card.border-blue h3 { color: #2563eb; }

.service-card:hover {
    transform: translate3d(0, -12px, 0) scale(1.02);
}

.service-card:hover .card-icon {
    transform: translateX(-50%) scale(1.15) rotate(5deg);
}

.service-card.border-navy:hover {
    box-shadow: 0 20px 40px rgba(15, 41, 66, 0.15);
}

.service-card.border-red:hover {
    box-shadow: 0 20px 40px rgba(194, 26, 27, 0.15);
}

.service-card.border-orange:hover {
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.service-card.border-yellow:hover {
    box-shadow: 0 20px 40px rgba(234, 179, 8, 0.15);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    line-height: 1.25;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 500;
}

/* Bottom Full-Circle Banner */
.full-circle-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(250, 249, 246, 0.95);
    border-radius: 24px;
    padding: 1.75rem 3rem;
    width: 100%;
    border: 1px solid rgba(230, 225, 215, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
}

.heart-badge-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border: 1.5px solid #fcbf49;
    color: var(--accent-color);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(252, 191, 73, 0.15);
}

.heart-badge-circle svg {
    width: 30px;
    height: 30px;
}

.banner-text {
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.55;
    margin: 0;
    max-width: 700px;
}

.banner-text .font-red {
    color: var(--accent-color);
    font-weight: 700;
}

.banner-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.connection-illustration {
    width: 360px;
    height: 120px;
    display: block;
}

/* Responsiveness for Section 2 */
@media (max-width: 1200px) {
    .services-grid-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .full-circle-banner {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }
    .services-grid-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.25rem;
        padding-top: 1rem;
    }
    
    .what-we-do-heading {
        font-size: 2.4rem;
    }
}

@media (max-width: 600px) {
    .services-grid-8 {
        grid-template-columns: 1fr;
        gap: 3.5rem 1.25rem;
    }
    
    .connection-illustration {
        width: 300px;
        height: 100px;
    }
}


/* SECTION 3: OUR IMPACT ECOSYSTEM */
.eco-section {
    padding: 3.25rem 2rem 2.75rem;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0) 85%, var(--bg-white) 100%), url('images/section3_bg.png');
    background-size: 100% 100%, cover;
    background-position: center top, center bottom;
    background-repeat: no-repeat, no-repeat;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.eco-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 3.5rem;
    align-items: center;
}

.eco-left {
    display: flex;
    flex-direction: column;
}

.align-left {
    justify-content: flex-start;
}

.eco-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.heading-underline-long {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    color: var(--accent-color);
}

.highlight-underline {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.eco-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* Support Card */
.support-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.support-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f43f5e 0%, #9f1239 100%);
    color: var(--bg-white);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.35);
}

.support-icon-wrapper svg {
    width: 26px;
    height: 26px;
}

.support-info h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.support-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.btn-eco-cta {
    align-self: flex-start;
    padding: 0.9rem 1.8rem;
}

/* Right Side: Circular Diagram */
.eco-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 720px;
}

.ecosystem-circle-container {
    position: relative;
    width: 640px;
    height: 640px;
    transform: scale(0.92);
    transform-origin: center right;
}

/* Center Node */
.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(142, 12, 13, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 10;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.center-node:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 15px 40px rgba(142, 12, 13, 0.25);
}

/* Center Node Typography */
.center-node-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.center-node-subtitle {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.center-node-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--bg-white);
    background-color: var(--primary-color);
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(142, 12, 13, 0.2);
}

/* Emoji Node Circles */
.node-emoji-circle {
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.node-emoji-circle.border-navy { border: 3px solid #0f2942; }
.node-emoji-circle.border-red { border: 3px solid #c21a1b; }
.node-emoji-circle.border-orange { border: 3px solid #f97316; }
.node-emoji-circle.border-yellow { border: 3px solid #eab308; }

.node-emoji {
    font-size: 2.2rem;
    line-height: 1;
}

/* Dotted connections SVG */
.dotted-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Outer Nodes absolute styling */
.eco-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 5;
    transition: transform 0.3s ease;
}

.eco-node:hover {
    transform: scale(1.05);
}

.node-circle {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    position: relative;
    flex-shrink: 0;
}

.node-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.node-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--bg-white);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    z-index: 2;
}

.node-badge svg {
    width: 14px;
    height: 14px;
}

/* Specific Node Colors */
.node-top .node-badge { background-color: var(--bg-white); border-color: var(--accent-color); color: var(--accent-color); }
.node-right-top .node-badge { background-color: var(--primary-color); border-color: var(--primary-color); color: var(--bg-white); }
.node-right-bottom .node-badge { background-color: var(--primary-color); border-color: var(--primary-color); color: var(--bg-white); }
.node-bottom .node-badge { background-color: var(--bg-white); border-color: var(--accent-color); color: var(--accent-color); }
.node-left-bottom .node-badge { background-color: var(--bg-white); border-color: var(--accent-color); color: var(--accent-color); }
.node-left-top .node-badge { background-color: var(--bg-white); border-color: var(--accent-color); color: var(--accent-color); }

.node-info {
    width: 180px;
}

.node-info h3 {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 2px;
}

.node-info p {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Left side node texts aligned right */
.node-left-top .node-info,
.node-left-bottom .node-info {
    text-align: right;
}

/* Coordinates calculated for circle Y-mid, X-mid */
.node-top {
    top: 67px;
    left: 277px;
    width: 280px;
}

.node-right-top {
    top: 172px;
    left: 459px;
    width: 280px;
}

.node-right-bottom {
    top: 382px;
    left: 459px;
    width: 280px;
}

.node-bottom {
    top: 487px;
    left: 277px;
    width: 280px;
}

.node-left-bottom {
    top: 382px;
    left: -139px;
    width: 320px;
    justify-content: flex-end;
}

.node-left-top {
    top: 172px;
    left: -139px;
    width: 320px;
    justify-content: flex-end;
}

.growth-section {
    padding: 3rem 2rem 2rem;
    position: relative;
    border-top: none;
}

.growth-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.growth-content-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.growth-left {
    display: flex;
    flex-direction: column;
}

.growth-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
    position: relative;
}

.sketch-heart-inline {
    width: 45px;
    height: 45px;
    color: var(--accent-color);
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

.growth-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.locations-cards-flex {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.loc-card {
    flex: 1;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.loc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.loc-card-header {
    display: flex;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    align-items: center;
}

.loc-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc-card-icon.bg-green-light {
    background: linear-gradient(135deg, #4ade80 0%, #166534 100%);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(74, 222, 128, 0.3);
}

.loc-card-icon.bg-red-light {
    background: linear-gradient(135deg, #f43f5e 0%, #9f1239 100%);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(244, 63, 94, 0.3);
}

.loc-card-icon svg {
    width: 24px;
    height: 24px;
}

.loc-card-title h3 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.loc-card-title p {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.bullet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.bullet-dot.bg-green { background-color: #22c55e; }
.bullet-dot.bg-red { background-color: #ef4444; }

.loc-list {
    list-style: none;
    padding: 0.85rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px dashed var(--border-color);
}

.loc-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.mission-bar-compact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mission-bar-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.support-icon-wrapper.size-small {
    width: 50px;
    height: 50px;
}

.mission-text-bar {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* California Map column */
.growth-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-wrapper-california {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.map-wrapper-california::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1.5px solid #e2e8f0;
    border-radius: 32px;
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.california-map-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.7 !important;
    filter: brightness(0.6) contrast(1.1);
}

.map-pin-plot {
    position: absolute;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: transform 0.25s ease, z-index 0s;
    cursor: pointer;
    transform: translate(-50%, -100%);
    transform-origin: bottom center;
}

.map-pin-plot:hover {
    transform: translate(-50%, -100%) scale(1.15);
    z-index: 10;
}

.pin-dot-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-core-icon {
    width: 24px;
    height: 24px;
    z-index: 2;
}

.green-pin .pin-core-icon {
    color: #16a34a;
    filter: drop-shadow(0 2px 4px rgba(22, 163, 74, 0.3));
}

.red-pin .pin-core-icon {
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(142, 12, 13, 0.3));
}

.pin-pulse {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    animation: pinPulse 2s infinite;
    z-index: 1;
}

.green-pin .pin-pulse {
    background-color: rgba(22, 163, 74, 0.3);
}

.red-pin .pin-pulse {
    background-color: rgba(142, 12, 13, 0.3);
}

@keyframes pinPulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

.pin-label-pill {
    position: absolute;
    background-color: var(--bg-white);
    color: var(--text-main);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    white-space: nowrap;
    
    /* Default: label on the right */
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
}

/* Custom label placements to prevent overlaps */
.pin-sanjose .pin-label-pill,
.pin-losangeles .pin-label-pill {
    left: auto;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
}

.pin-antioch .pin-label-pill {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 32px;
    transform: translateX(-50%);
}

/* Coordinates mapping to the California graphic shape */
.pin-stockton { top: 31%; left: 44%; }
.pin-sanjose { top: 39%; left: 32%; }
.pin-antioch { top: 33%; left: 38%; }
.pin-losangeles { top: 66%; left: 63%; }
.pin-orangecounty { top: 72%; left: 67%; }
.pin-sandiego { top: 82%; left: 74%; }

/* Map Quote Bubble styling */
.map-quote-bubble {
    position: absolute;
    top: 5%;
    right: -5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 220px;
    z-index: 6;
}

.quote-symbol {
    font-size: 4rem;
    color: rgba(142, 12, 13, 0.1);
    line-height: 0.1;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.quote-text-cursive {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: #1e293b;
    line-height: 1.2;
    font-weight: 700;
}

.quote-underline {
    width: 130px;
    height: 15px;
    color: var(--accent-color);
    margin-top: -5px;
}

/* Stats Footer Bar */
.stats-footer-bar {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin-top: 2rem;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stats-footer-bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.stats-footer-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-badge-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4444 0%, #8e0c0d 100%);
    color: var(--bg-white);
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(239, 68, 68, 0.35);
}

.footer-badge-icon svg {
    width: 26px;
    height: 26px;
}

.footer-stats-desc h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.footer-stats-desc p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.stats-items-flex {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.stat-bubble-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff8a8a 0%, #c21a1b 100%);
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(194, 26, 27, 0.3);
}

.stat-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.stat-nums h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-nums p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

/* SECTION 5: REAL NUMBERS, REAL CHANGE */
.impact-stats-section {
    padding: 3rem 2rem;
    background-color: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.impact-stats-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.impact-stats-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.impact-stats-left {
    display: flex;
    flex-direction: column;
}

.impact-stats-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
    position: relative;
}

.impact-stats-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 88%;
}

/* 5 Cards Stats Grid */
.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    width: 100%;
}

.stat-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem 0.75rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(142, 12, 13, 0.08);
    border-color: rgba(142, 12, 13, 0.15);
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.35);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-card-icon {
    transform: scale(1.1);
}

.stat-card-icon svg {
    width: 22px;
    height: 22px;
}

.stat-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.stat-card h3.font-red-flat {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    word-break: break-word;
}

.stat-card h4 {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.1px;
}

.stat-card p {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Right Imagery Column */
.impact-stats-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
}

.impact-imagery-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.imagery-bg-wave {
    position: absolute;
    top: 5%;
    left: -2%;
    width: 85%;
    height: 90%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 60% 40% 60% 40% / 40% 50% 50% 60%;
    z-index: 1;
    opacity: 0.95;
    box-shadow: 0 15px 35px rgba(99, 5, 6, 0.25);
}

.main-imagery-photo-wrapper {
    position: absolute;
    left: 2%;
    width: 72%;
    height: 75%;
    overflow: hidden;
    border-radius: 40% 60% 40% 60% / 50% 40% 60% 50%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    z-index: 2;
    border: 4px solid var(--bg-white);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.main-imagery-photo-wrapper:hover {
    transform: scale(1.04) rotate(1deg);
    box-shadow: 0 20px 40px rgba(142, 12, 13, 0.35), 0 0 25px rgba(251, 191, 36, 0.2);
    border-color: var(--primary-color);
}

.main-imagery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stacked-side-photos {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 3;
    width: 32%;
}

.side-photo-card {
    background-color: var(--bg-white);
    border: 4px solid var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

.side-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-photo-card:hover {
    transform: scale(1.08) translateX(-5px);
    z-index: 10;
}

.animate-side-1 { transform: rotate(-3deg); }
.animate-side-2 { transform: rotate(2deg); }
.animate-side-3 { transform: rotate(-2deg); }

/* Grid 4 Columns Mini-stats */
.stats-items-flex.grid-4-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-mini-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.mini-icon {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.mini-icon svg {
    width: 18px;
    height: 18px;
}

.mini-texts h5 {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2px;
    letter-spacing: 0.2px;
}

.mini-texts p {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* SECTION 6: RESOURCES */
.resources-section {
    padding: 3rem 2rem 2.5rem;
    background-image: linear-gradient(to bottom, var(--bg-white) 0%, rgba(255,255,255,0) 15%), url('images/section6_bg.png');
    background-size: 100% 100%, cover;
    background-position: center top, center bottom;
    background-repeat: no-repeat, no-repeat;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
    border-top: none;
}

.resources-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.resources-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.resources-header-left {
    max-width: 750px;
}

.resources-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.resources-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.6;
}

.btn-resources-cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 1.8rem;
    border: none;
    box-shadow: 0 4px 15px rgba(142, 12, 13, 0.2);
    font-size: 0.88rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-resources-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 12, 13, 0.3);
    color: var(--bg-white);
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    width: 100%;
}

.resource-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border-bottom: 6px solid transparent;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(142, 12, 13, 0.08);
}

.resource-card.border-red {
    border-bottom-color: var(--primary-color);
}

.resource-card.border-black {
    border-bottom-color: #1e293b;
}

.resource-card.border-yellow {
    border-bottom-color: #f59e0b;
}

.resource-image-container {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: visible;
}

.resource-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.resource-card:hover .resource-img {
    transform: scale(1.08);
}

.resource-overlap-icon {
    position: absolute;
    bottom: -28px;
    left: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 2;
    color: var(--bg-white);
}

.resource-overlap-icon.bg-red {
    background: linear-gradient(135deg, #f43f5e 0%, #9f1239 100%);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

.resource-overlap-icon.bg-black {
    background: linear-gradient(135deg, #475569 0%, #0f172a 100%);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

.resource-overlap-icon.bg-yellow {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.resource-overlap-icon svg {
    width: 24px;
    height: 24px;
}

.resource-body {
    padding: 3rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.resource-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.resource-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.resource-link-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border-color);
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.resource-link-btn svg {
    width: 16px;
    height: 16px;
}

.resource-link-btn.color-red:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.resource-link-btn.color-black:hover {
    background-color: #1e293b;
    color: var(--bg-white);
    border-color: #1e293b;
}

.resource-link-btn.color-yellow:hover {
    background-color: #f59e0b;
    color: var(--bg-white);
    border-color: #f59e0b;
}

.resources-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
}

/* SECTION 7: CTA BANNER */
.cta-banner-section {
    padding: 2.75rem 2rem;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #0d0102;
}

.cta-banner-section .parallax-bg {
    background: url('images/footer_bg.png') center/cover no-repeat;
}

.cta-bridge-bg {
    display: none;
}

.cta-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.cta-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
}

.cta-heading .text-white {
    color: #ffffff;
}

.cta-drawn-heart {
    width: 36px;
    height: 36px;
    vertical-align: middle;
    margin-left: 10px;
    display: inline-block;
}

.cta-yellow-stroke {
    display: block;
    width: 100%;
    max-width: 420px;
    height: 6px;
    background-color: #fbbf24;
    border-radius: 4px;
    margin-top: 8px;
    position: relative;
}

.cta-right-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
}

.btn-cta-support {
    background-color: #ffffff;
    color: var(--primary-color);
    padding: 1rem 1.8rem;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-support:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-partner {
    background-color: #fbbf24;
    color: #000000;
    padding: 1rem 1.8rem;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-partner:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-logo-faded-circle {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.faded-circle-logo-icon svg {
    width: 180px;
    height: 180px;
    color: rgba(255, 255, 255, 0.03);
}

/* GALLERY SECTION */
.gallery-section {
    padding: 6rem 0;
    background-color: #faf9f6;
    position: relative;
    overflow: hidden;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(194, 26, 27, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    transition: all 0.4s ease;
}

.gallery-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(194, 26, 27, 0.1);
}

.gallery-media-wrapper {
    position: relative;
    padding-top: 65%; /* 16:10 Aspect Ratio */
    overflow: hidden;
    background-color: #f1f5f9;
}

.gallery-media-wrapper img,
.gallery-media-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-media-wrapper img {
    transform: scale(1.08);
}

.video-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 54px;
    height: 54px;
    background: rgba(194, 26, 27, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(194, 26, 27, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-card:hover .video-play-badge {
    transform: translate(-50%, -50%) scale(1.15);
    background: #c21a1b;
}

.gallery-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--bg-white);
    flex-grow: 1;
}

.gallery-cat {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-cap {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

/* LIGHTBOX MODAL */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-container {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    animation: zoomIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-img,
.lightbox-video {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    display: none;
}

.lightbox-caption {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #94a3b8;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #ffffff;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 1.25rem;
    margin-top: -3rem;
    color: #94a3b8;
    font-weight: bold;
    font-size: 2.25rem;
    transition: all 0.2s ease;
    border-radius: 50%;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        display: none !important; /* Hide arrows on mobile */
    }
    .lightbox-content-container {
        max-width: 95%;
    }
}

/* FOOTER */
.main-footer {
    background-color: #0b0f19; /* Rich modern dark blue-black */
    padding: 4rem 2rem 2rem;
    color: #f8fafc;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 3;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 3rem;
}

.brand-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1); /* Premium clean white logo look */
}

.footer-brand-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.footer-brand-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.footer-links-list a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.socials-inline {
    display: none;
}

.social-circle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-circle-btn svg {
    width: 16px;
    height: 16px;
}

.social-circle-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.newsletter-col {
    display: flex;
    flex-direction: column;
}

.newsletter-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    padding: 2px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(194, 26, 27, 0.15);
}

.newsletter-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 0.65rem 1rem;
    color: #ffffff;
    font-size: 0.85rem;
    font-family: inherit;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.newsletter-btn svg {
    width: 16px;
    height: 16px;
}

.newsletter-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* OTHER SECTIONS */
.glass-section {
    min-height: 100vh;
    padding: 4.5rem 2rem 3rem;
    background: var(--bg-light);
}

.glass-section.dark-bg {
    background-color: #0f172a;
    color: #f8fafc;
}

.glass-section.dark-bg h2 {
    color: #ffffff;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* MEDIA QUERIES */
@media (max-width: 1200px) {
    .hero-heading {
        font-size: 2.8rem;
    }
    .hero-features-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .feature-item {
        width: 45%;
    }
    .logo-tagline {
        display: none;
    }
    .serve-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .eco-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .eco-heading, .eco-description {
        text-align: center;
    }
    .align-left {
        justify-content: center;
    }
    .support-card {
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    .btn-eco-cta {
        align-self: center;
    }
    .growth-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .growth-heading {
        text-align: center;
    }
    .growth-description {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .locations-cards-flex {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    .mission-bar-compact {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
    .stats-footer-bar {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .stats-footer-left {
        flex-direction: column;
        text-align: center;
    }
    .stats-items-flex {
        justify-content: center;
        gap: 3rem;
    }
    .impact-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .impact-stats-heading {
        text-align: center;
    }
    .impact-stats-description {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .stats-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .stats-items-flex.grid-4-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: left;
    }
    .resources-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cta-banner-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }
    .cta-yellow-stroke {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}
@media (max-width: 1024px) {
    .logo-area {
        order: 1;
    }
    .lang-selector-container {
        order: 2;
        margin-left: 0.75rem !important;
    }
    .nav-cta {
        display: flex;
        align-items: center;
        order: 3;
        margin-left: auto;
        gap: 0.5rem;
    }
    @media (max-width: 576px) {
        .nav-cta .btn-planner {
            display: none !important;
        }
    }
    .nav-cta a {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Mobile Menu Toggle Button styling */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1010;
        position: relative;
        margin-left: 1rem;
        order: 4;
    }

    .nav-toggle .hamburger-bar {
        width: 100%;
        height: 2px;
        background-color: var(--text-main);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 2px;
    }

    /* Menu Toggle open animation states */
    .nav-toggle.open .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--primary-color);
    }
    .nav-toggle.open .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--primary-color);
    }

    /* Mobile Drawer links navigation menu styling */
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 90px 2.25rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1005;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a {
        display: block;
        padding: 1.25rem 0;
        font-size: 1.05rem;
        width: 100%;
    }

    .nav-links a::after {
        display: none; /* Hide hover underline on mobile view */
    }

    .mobile-only-cta {
        display: block;
        width: 100%;
        margin-top: 2rem;
        border-bottom: none !important;
    }

    .mobile-only-cta .btn-consultation {
        width: 100%;
        text-align: center;
        padding: 0.85rem;
        background-color: var(--primary-color);
        color: #ffffff;
        justify-content: center;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-visuals {
        height: 400px;
    }
    .visuals-bg-wave {
        right: 0;
        width: 90%;
    }
    .eco-right {
        height: 480px;
    }
    .ecosystem-circle-container {
        transform: scale(0.8);
        transform-origin: center center;
    }
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .serve-heading {
        font-size: 2.8rem;
    }
    .serve-cards-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 3rem;
    }
    .serve-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    .serve-footer-line {
        display: none;
    }
    .eco-heading {
        font-size: 2.8rem;
    }
    .eco-right {
        height: 380px;
    }
    .ecosystem-circle-container {
        transform: scale(0.6);
    }
    .growth-heading {
        font-size: 2.8rem;
    }
    .locations-cards-flex {
        flex-direction: column;
        max-width: 450px;
    }
    .stats-items-flex {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .map-quote-bubble {
        right: 0;
        transform: scale(0.8);
    }
    .impact-stats-heading {
        font-size: 2.8rem;
    }
    .stats-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 450px;
    }
    .stats-items-flex.grid-4-cols {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .stacked-side-photos {
        display: none;
    }
    .main-imagery-photo-wrapper {
        width: 100%;
        left: 0;
        border-radius: 24px;
    }
    .impact-stats-right {
        height: 380px;
        max-width: 450px;
        margin: 0 auto;
    }
    .resources-heading {
        font-size: 2.8rem;
    }
    .resources-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .cta-heading {
        font-size: 2.4rem;
    }
    .footer-socials {
        display: none;
    }
    .socials-inline {
        display: flex;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .feature-item {
        width: 100%;
    }
    .slanted-cards-container {
        display: none;
    }
    .circular-logo-badge {
        bottom: 5%;
        left: 5%;
        width: 80px;
        height: 80px;
    }
    .eco-heading {
        font-size: 2.2rem;
    }
    .eco-right {
        height: 300px;
    }
    .ecosystem-circle-container {
        transform: scale(0.48);
    }
    .growth-heading {
        font-size: 2.2rem;
    }
    .map-quote-bubble {
        display: none;
    }
    .impact-stats-heading {
        font-size: 2.2rem;
    }
    .stats-cards-grid {
        grid-template-columns: 1fr;
    }
    .resources-heading {
        font-size: 2.2rem;
    }
    .cta-heading {
        font-size: 2rem;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-cta-support, .btn-cta-partner {
        width: 100%;
        max-width: 320px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
}

/* --- MODERN ANIMATIONS & MICRO-INTERACTIONS --- */

/* Scroll Reveal Classes */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for child animations */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Alternate animation varieties */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.93);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Floating Gradient Blobs for background depth */
@keyframes float-blob-1 {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.15); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

@keyframes float-blob-2 {
    0% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(-40px, 40px) scale(1.2); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.blob-red {
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    width: 350px;
    height: 350px;
    animation: float-blob-1 15s ease-in-out infinite;
}

.blob-amber {
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
    width: 300px;
    height: 300px;
    animation: float-blob-2 18s ease-in-out infinite;
}

/* Upgraded Card Hovers with Vibrant Shadows */
.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(142, 12, 13, 0.1);
}

.stat-card-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-card:hover .stat-card-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Premium button hover glows */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(142, 12, 13, 0.2);
}

.btn-cta-partner:hover {
    box-shadow: 0 10px 20px rgba(30, 41, 59, 0.2);
}

/* Button sheen sliding glow effect */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    opacity: 0;
    pointer-events: none;
}

.btn:hover::after {
    left: 120%;
    opacity: 1;
}

/* Connection Dotted Lines flow animation for Section 3 */
@keyframes dotted-flow {
    to {
        stroke-dashoffset: -20px;
    }
}

.dotted-connections circle {
    stroke-dasharray: 6 6;
    animation: dotted-flow 25s linear infinite;
}

.dotted-connections line {
    stroke-dasharray: 6 6;
    animation: dotted-flow 18s linear infinite;
}

/* Hand-drawn inline SVGs stroke drawing animations */
@keyframes svg-draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* SVG outline paths start invisible and draw themselves in on scroll reveal */
.heading-underline path,
.heading-underline-long path,
.drawn-heart path,
.sketch-heart-inline path,
.cta-drawn-heart path,
.quote-underline path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed .heading-underline path,
.revealed .heading-underline-long path,
.revealed .drawn-heart path,
.revealed .sketch-heart-inline path,
.revealed .cta-drawn-heart path,
.revealed .quote-underline path {
    animation: svg-draw 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

/* PARALLAX BACKDROP ELEMENTS */
.parallax-bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    z-index: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

/* Ensure sections containing parallax blobs or background elements are positioned relatively and crop overflows */
.hero-section, 
.serve-section, 
.eco-section, 
.growth-section, 
.impact-stats-section, 
.resources-section, 
.cta-banner-section {
    position: relative;
    overflow: hidden;
}

/* Ensure parent contents remain above the parallax background/blobs */
.hero-container, 
.serve-container, 
.eco-container, 
.growth-container, 
.impact-stats-container, 
.resources-container, 
.cta-banner-container {
    position: relative;
    z-index: 2;
}

/* Ensure parents of parallax-bg are correctly relative and overflow hidden */
.parent-resource-section,
.journal-section,
.rise-above-risk-section {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-white);
}

.parent-resource-container,
.journal-container,
.rar-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* TRUST STRIP */
.trust-strip {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 2rem;
    position: relative;
    z-index: 5;
}

.trust-strip-container {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap !important;
    width: max-content;
    gap: 4.5rem !important;
    padding-right: 4.5rem !important;
    animation: scroll-marquee 25s linear infinite;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-color);
}

/* FREE PARENT RESOURCE SECTION */
.resource-heading-new {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.resource-subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lead-capture-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 450px;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    background-color: var(--bg-light);
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.btn-download {
    padding: 0.95rem 2rem;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(142, 12, 13, 0.25);
}

.guide-mockup-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
}

.guide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.guide-mockup-container:hover .guide-bg-image {
    transform: scale(1.08);
}

.guide-overlay-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.guide-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.guide-overlay-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.guide-overlay-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.guide-mock-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #0f172a;
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

/* SECTION DIVIDER */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color) 15%, var(--border-color) 85%, transparent);
    max-width: 1200px;
    margin: 0 auto;
}

/* JOURNAL SECTION */
.journal-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.journal-subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2.2rem;
}

.journal-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.journal-mockup-wrapper {
    position: relative;
    width: 85%;
    max-width: 380px;
    aspect-ratio: 1/1.3;
    background-color: var(--bg-white);
    border-radius: 12px 24px 24px 12px;
    box-shadow: 15px 25px 45px rgba(0,0,0,0.12), -2px 0 5px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0 auto;
}

.journal-cover {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--bg-white);
    position: relative;
}

.journal-cover::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 15px;
    background: linear-gradient(to right, rgba(0,0,0,0.15), transparent);
}

.journal-badge {
    align-self: flex-start;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--bg-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    border: 1px solid rgba(255,255,255,0.25);
    letter-spacing: 0.5px;
}

.journal-cover h3 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 2rem;
}

.journal-cover p {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
    margin-top: 0.5rem;
}

.journal-heart-icon {
    align-self: flex-end;
    color: rgba(255, 255, 255, 0.35);
    margin-top: auto;
}

.journal-heart-icon svg {
    width: 2.2rem;
    height: 2.2rem;
}

.journal-page-preview {
    height: 60px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    justify-content: center;
}

.preview-line {
    height: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
}

.preview-line:nth-child(2) {
    width: 80%;
}

.preview-line:nth-child(3) {
    width: 60%;
}

/* RISE ABOVE RISK SECTION */
.rar-family-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.rar-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.rar-subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2.2rem;
}

.rar-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.ecosystem-flow-container {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.ecosystem-flow-container h3 {
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: var(--text-main);
}

.flow-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.flow-step {
    width: 100%;
    display: flex;
    justify-content: center;
}

.step-circle {
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.step-circle.bg-red {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.step-circle.bg-black {
    background-color: #0f172a;
    color: var(--bg-white);
}

.flow-arrow {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
}

.flow-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* COMBINED IMPACT SECTION & STATS INTEGRATION */
.combined-impact-section .cta-banner-container {
    grid-template-columns: 1.1fr 0.9fr;
}

.stats-integration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-cards-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    width: 100%;
}

.stat-card-mini {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card-mini:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-card-mini h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.stat-card-mini p {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
    .parent-resource-container,
    .journal-container,
    .rar-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .parent-resource-content,
    .journal-content,
    .rar-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .lead-capture-form {
        width: 100%;
    }
    
    .guide-mockup-container {
        max-width: 420px;
        margin: 0 auto;
    }
    
    .journal-actions,
    .rar-actions {
        justify-content: center;
    }
    
    .combined-impact-section .cta-banner-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    
    .resource-heading-new,
    .journal-heading,
    .rar-heading {
        font-size: 2.4rem;
    }
    
    .stats-cards-grid-mini {
        grid-template-columns: 1fr;
    }
}

/* SECTION 2.5: WHO WE HELP */
.who-we-help-section {
    padding: 6rem 2rem 5rem;
    background-color: #fdfbf7;
    position: relative;
    overflow: hidden;
}

.who-we-help-section .parallax-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.95;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.who-we-help-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.who-we-help-section .section-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.who-we-help-badge {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(194, 26, 27, 0.2);
    margin-bottom: 1rem;
}

.who-we-help-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -1.5px;
}

.who-we-help-description {
    font-size: 1.15rem;
    color: #1e293b;
    font-weight: 600;
    max-width: 780px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    text-align: center;
}

/* 3-Column Grid */
.who-we-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 4rem;
}

.wwh-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.035);
    overflow: visible;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 5px solid transparent;
}

.wwh-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.wwh-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.wwh-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wwh-card:hover .wwh-card-img {
    transform: scale(1.08);
}

.wwh-card-icon {
    position: absolute;
    top: 156px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 3;
    color: var(--bg-white);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wwh-card:hover .wwh-card-icon {
    transform: scale(1.15);
}

.wwh-card-icon svg {
    width: 20px;
    height: 20px;
}

.wwh-card-content {
    padding: 2.25rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wwh-card-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.card-inner-divider {
    width: 30px;
    height: 2px;
    background-color: #eab308;
    margin-bottom: 0.85rem;
}

.wwh-card-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Themes */
.wwh-card.border-navy { border-bottom-color: #0f2942; }
.wwh-card.border-red { border-bottom-color: #c21a1b; }
.wwh-card.border-orange { border-bottom-color: #f97316; }
.wwh-card.border-yellow { border-bottom-color: #eab308; }
.wwh-card.border-green { border-bottom-color: #10b981; }
.wwh-card.border-blue { border-bottom-color: #2563eb; }

.wwh-card.border-navy h3 { color: #0f2942; }
.wwh-card.border-red h3 { color: #c21a1b; }
.wwh-card.border-orange h3 { color: #f97316; }
.wwh-card.border-yellow h3 { color: #eab308; }
.wwh-card.border-green h3 { color: #10b981; }
.wwh-card.border-blue h3 { color: #2563eb; }

.wwh-card.border-navy:hover { box-shadow: 0 20px 40px rgba(15, 41, 66, 0.12); }
.wwh-card.border-red:hover { box-shadow: 0 20px 40px rgba(194, 26, 27, 0.12); }
.wwh-card.border-orange:hover { box-shadow: 0 20px 40px rgba(249, 115, 22, 0.12); }
.wwh-card.border-yellow:hover { box-shadow: 0 20px 40px rgba(234, 179, 8, 0.12); }
.wwh-card.border-green:hover { box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12); }
.wwh-card.border-blue:hover { box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12); }

/* Bottom Horizontal Banner */
.wwh-bottom-banner {
    background-color: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
    width: 100%;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.wwh-banner-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-grow: 1;
}

.wwh-banner-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(194, 26, 27, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wwh-banner-icon-circle svg {
    width: 26px;
    height: 26px;
}

.wwh-banner-left-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f2942;
    margin-bottom: 0.25rem;
}

.wwh-banner-left-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.wwh-banner-divider {
    width: 1px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.08);
}

.wwh-banner-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.wwh-right-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.wwh-right-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wwh-right-icon.bg-navy-light { background-color: rgba(15, 41, 66, 0.08); color: #0f2942; }
.wwh-right-icon.bg-red-light { background-color: rgba(194, 26, 27, 0.08); color: var(--accent-color); }
.wwh-right-icon.bg-yellow-light { background-color: rgba(234, 179, 8, 0.08); color: #d97706; }

.wwh-right-icon svg {
    width: 20px;
    height: 20px;
}

.wwh-right-item span {
    font-size: 0.72rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

/* RESPONSIVE FOR NEW SECTION */
@media (max-width: 1024px) {
    .who-we-help-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .wwh-bottom-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
    }
    
    .wwh-banner-divider {
        width: 100%;
        height: 1px;
    }
    
    .wwh-banner-right {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .who-we-help-heading {
        font-size: 2.6rem;
    }
    
    .who-we-help-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 3rem;
    }
    
    .wwh-banner-left {
        flex-direction: column;
        text-align: center;
    }
}

.heading-underline {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 12px;
    color: var(--accent-color);
}

.additional-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    width: 100%;
    margin-bottom: 3rem;
    align-items: stretch;
}

.additional-support-card {
    background-color: var(--bg-white);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
}

.card-mockup-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
    width: 150px;
}

.card-details-wrapper {
    flex: 1.1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    z-index: 2;
}

.support-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.card-image-overlay {
    flex: 0.9;
    min-width: 180px;
    height: 100%;
    min-height: 280px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.additional-support-slogan {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
    width: 100%;
    max-width: 800px;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .additional-support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .additional-support-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .additional-support-slogan {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-mockup-wrapper {
        width: 100%;
    }
    
    .card-image-overlay {
        width: 100%;
        min-height: 200px;
    }
}

/* How It Works Section Styling */
.how-it-works-section {
    border-top: 1px solid var(--border-color);
}
.tab-btn {
    transition: all 0.3s ease;
}
.tab-btn:hover {
    background-color: var(--primary-light) !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-light) !important;
    transform: translateY(-2px);
}
.tab-btn.active {
    background-color: var(--primary-color) !important;
    color: var(--bg-white) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(142, 12, 13, 0.2) !important;
}
.step-flow-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.step-flow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05) !important;
    border-color: rgba(142, 12, 13, 0.1) !important;
}

/* Arrows between steps on desktop */
@media (min-width: 1025px) {
    .step-flow-card:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -1.35rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: var(--primary-color);
        opacity: 0.35;
        font-weight: 800;
        pointer-events: none;
    }
}

@media (max-width: 1024px) {
    .steps-flow-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem 1.5rem !important;
    }
}

@media (max-width: 600px) {
    .steps-flow-container {
        grid-template-columns: 1fr !important;
    }
    .tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* Mental Wellness Resources Section Styling */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}
.resource-card-new {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.resource-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04) !important;
    border-color: rgba(0,0,0,0.08) !important;
}

@media (max-width: 1024px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .resources-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Global Mobile/Tablet Enhancements */
@media (max-width: 768px) {
    /* Hero title font size scale-downs for audience pages */
    main h1 {
        font-size: 2.25rem !important;
        line-height: 1.2 !important;
    }
    
    /* Content sections structure optimizations */
    main section {
        padding: 3.5rem 1.25rem !important;
    }
    
    main section > div {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    /* Form containers optimization */
    main form {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }
    
    /* Process steps container styling overrides for mobile */
    .process-steps-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
    }
    
    .process-steps-container > div {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 1024px) {
    /* Process section on tablet views */
    .process-steps-container {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 2.5rem 1.5rem !important;
    }
    
    .process-steps-container > div {
        flex: unset !important;
        width: calc(50% - 1rem) !important;
        min-width: 200px !important;
    }
}

/* SECTION 4: HOW IT WORKS */
.how-it-works-section {
    position: relative;
    padding: 6rem 2rem;
    background-color: #faf8f5;
    overflow: hidden;
}
.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}
.how-it-works-badge {
    background-color: rgba(194, 26, 27, 0.08);
    color: var(--accent-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.how-it-works-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    margin-top: 4rem;
}
.step-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    transition: all 0.3s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(194, 26, 27, 0.2);
}
.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-icon svg {
    width: 100%;
    height: 100%;
}
.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}
.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    opacity: 0.6;
    animation: pulse 2s infinite ease-in-out;
}
.step-connector svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 991px) {
    .steps-grid {
        flex-direction: column;
        gap: 2.5rem;
    }
    .step-connector {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

/* TRUSTED BY INFINITE MARQUEE TICKER */
.marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 1.5rem;
    display: flex;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.trusted-logos-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 4.5rem !important;
    padding-right: 4.5rem !important;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
    align-items: center;
}
@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-16.666667%);
    }
}
.trusted-logo-item {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #475569;
    white-space: nowrap;
    opacity: 0.75;
    transition: opacity 0.3s, color 0.3s;
}
.trusted-logo-item:hover {
    opacity: 1;
    color: var(--accent-color);
}
.trusted-logo-icon {
    width: 28px;
    height: 28px;
    color: #64748b;
    transition: color 0.3s;
}
.trusted-logo-item:hover .trusted-logo-icon {
    color: var(--accent-color);
}

/* GALLERY PREVIEW CARDS STYLING */
.gallery-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.gallery-preview-card:hover .preview-media {
    transform: scale(1.04);
}
.preview-media {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 768px) {
    .gallery-preview-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}



/* Hide image/video names per user request */
.gallery-cap,
#lightboxCaption {
    display: none !important;
}

/* SECTION 8: PLANNER RESPONSIVE & INTERACTIVE STYLES */
@media (max-width: 768px) {
    .planner-section-container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center;
    }
    .planner-lead-form {
        grid-template-columns: 1fr !important;
        margin: 0 auto;
    }
    .planner-content {
        align-items: center;
    }
}
.spiral-notebook {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.planner-mockup-wrapper:hover .spiral-notebook {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.35), -5px 0 20px rgba(0,0,0,0.08) !important;
}
.planner-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.planner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}
.planner-lead-form input:focus {
    border-color: #c21a1b !important;
    box-shadow: 0 0 0 3px rgba(194, 26, 27, 0.1);
}
.planner-lead-form button:hover {
    transform: translateY(-2px);
    background-color: #a81415 !important;
    box-shadow: 0 12px 24px rgba(194, 26, 27, 0.25) !important;
}

/* SECTION 8.5: RISE ABOVE RISK FEATURED INITIATIVE */
.rar-hero {
    background-color: #0f172a;
}
.rar-grunge-title {
    font-family: 'Permanent Marker', cursive, sans-serif;
}
.rar-link-btn:hover {
    background-color: #c21a1b !important;
    border-color: #ffffff !important;
    transform: scale(1.03);
}
@media (max-width: 991px) {
    .rar-hero-container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .rar-right-col {
        align-items: flex-start !important;
        text-align: left !important;
    }
    .rar-cta-box {
        margin-top: 0 !important;
        max-width: 100% !important;
    }
}
@media (max-width: 768px) {
    .rar-grunge-title {
        font-size: 3rem !important;
    }
    .rar-grunge-title span {
        font-size: 3.5rem !important;
    }
    .rar-pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .rar-bottom-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
}
@media (max-width: 480px) {
    .rar-grunge-title {
        font-size: 2.25rem !important;
    }
    .rar-grunge-title span {
        font-size: 2.75rem !important;
    }
    .rar-bottom-grid {
        grid-template-columns: 1fr !important;
    }
}

/* BOOKING MODAL */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.booking-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.booking-modal.active .booking-modal-content {
    transform: translateY(0) scale(1);
}

.booking-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.05);
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    z-index: 2;
}

.booking-close-btn:hover {
    background-color: rgba(194, 26, 27, 0.1);
    color: #c21a1b;
}

.booking-modal-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.booking-modal-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.booking-modal-header p {
    font-size: 1.05rem;
    color: #475569;
    margin: 0;
}

.booking-iframe-container {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-placeholder-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #64748b;
}

.booking-placeholder-overlay svg {
}



/* RESPONSIVE LAYOUT OPTIMIZATIONS FOR MOBILE & IPAD */

/* Landing Page Hero Title & Subtitle */
.landing-hero-title {
    font-size: 3.5rem;
}
.landing-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

@media (max-width: 1024px) {
    .landing-hero-title {
        font-size: 2.75rem !important;
    }
    .landing-hero-subtitle {
        font-size: 1.15rem !important;
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 768px) {
    .landing-hero-title {
        font-size: 2.2rem !important;
        letter-spacing: -1px !important;
    }
    .landing-hero-subtitle {
        font-size: 1.05rem !important;
    }
}

/* Challenges Grid */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .challenges-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* Services Grid */
.landing-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .landing-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .landing-services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
}

/* Why F.A.C.E.S. Section Grid */
.why-faces-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .why-faces-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center !important;
    }
    .why-faces-grid div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .why-faces-grid blockquote, 
    .why-faces-grid div > div {
        text-align: left !important;
    }
    .why-faces-grid img {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-faces-grid img {
        max-width: 100%;
    }
}

/* Intake Consultation Form & Title */
.landing-intake-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.landing-intake-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
    background-color: #fdfbf7;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

@media (max-width: 768px) {
    .landing-intake-title {
        font-size: 2rem !important;
    }
    .landing-intake-form {
        padding: 1.75rem 1.25rem !important;
        border-radius: 16px !important;
        gap: 1rem !important;
    }
}

/* Phone Input Responsive Fixes */
@media (max-width: 400px) {
    .country-select-wrapper {
        width: 85px !important;
    }
    .selected-flag-code {
        font-size: 0.8rem !important;
    }
}

/* Booking Modal Mobile Responsiveness */
@media (max-width: 768px) {
    .booking-modal-content {
        width: 95% !important;
        max-height: 95vh !important;
        border-radius: 12px !important;
    }
    .booking-modal-header {
        padding: 1.5rem 1.25rem 0.75rem !important;
    }
    .booking-modal-header h3 {
        font-size: 1.35rem !important;
    }
    .booking-modal-header p {
        font-size: 0.85rem !important;
    }
    .booking-iframe-container {
        min-height: 450px !important;
    }
}

/* ===== Mobile nav refinements (added) ===== */
@media (max-width: 640px) {
    .nav-container { padding: 0.75rem 1rem !important; gap: 0.5rem; }
    #navbar.scrolled .nav-container { padding: 0.55rem 1rem !important; }
    .logo-area { min-width: 0; flex: 1 1 auto; gap: 0.5rem; }
    .logo-area img.nav-logo, .logo-area img[alt*="Logo"] { height: 40px !important; flex-shrink: 0; }
    .logo-area span, .logo-title { white-space: nowrap; font-size: 1rem !important; }
    /* Hide top-nav language selector on mobile; the floating switcher covers it */
    .lang-selector-container { display: none !important; }
    .nav-cta { margin-left: auto; gap: 0.4rem; flex-shrink: 0; }
    .nav-cta a, .nav-cta .btn {
        white-space: nowrap;
        padding: 0.5rem 0.85rem !important;
        font-size: 0.78rem !important;
    }
    .nav-toggle { margin-left: 0.5rem !important; }
}

/* ===== Mobile compact pass (added) =====
   Global mobile-only scale-down so pages feel less "full".
   Only applied at <=640px so tablet/desktop remain unchanged. */
@media (max-width: 640px) {
    :root { --mobile-scale: 0.9; }

    /* Hero titles/subtitles */
    .landing-hero-title,
    .hero h1,
    section h1 { font-size: 2rem !important; line-height: 1.15 !important; letter-spacing: -0.5px !important; }
    .landing-hero-subtitle,
    section p.hero-sub,
    section .hero-subtitle { font-size: 0.95rem !important; line-height: 1.55 !important; }

    /* Section headings */
    section h2 { font-size: 1.65rem !important; line-height: 1.2 !important; letter-spacing: -0.3px !important; }
    section h3 { font-size: 1.2rem !important; }
    section h4 { font-size: 1.05rem !important; }

    /* Body copy shrink */
    section p { font-size: 0.92rem !important; line-height: 1.55 !important; }
    section span, section li { font-size: 0.9rem; }

    /* Tighten section padding */
    section { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; padding-left: 1.15rem !important; padding-right: 1.15rem !important; }

    /* Card/tile padding */
    .challenges-grid > div,
    .service-card,
    .card,
    .info-card,
    .stat-card,
    .feature-card { padding: 1.5rem 1.25rem !important; border-radius: 16px !important; }

    /* Buttons */
    .btn, a.btn, button.btn {
        padding: 0.7rem 1.15rem !important;
        font-size: 0.85rem !important;
        border-radius: 999px;
    }

    /* Grids collapse to single column with tighter gap */
    .challenges-grid,
    .services-grid,
    .cards-grid,
    .grid-2,
    .grid-3,
    .grid-4 { grid-template-columns: 1fr !important; gap: 1rem !important; }

    /* Images and media never overflow */
    img, video, iframe, svg { max-width: 100%; height: auto; }

    /* Floating language switcher a touch smaller */
    .lang-selector-container.lang-floating,
    .lang-floating { transform: scale(0.9); transform-origin: bottom right; }
}

@media (max-width: 400px) {
    .landing-hero-title, .hero h1, section h1 { font-size: 1.75rem !important; }
    section h2 { font-size: 1.45rem !important; }
    section { padding-top: 2.25rem !important; padding-bottom: 2.25rem !important; }
    .btn, a.btn, button.btn { padding: 0.65rem 1rem !important; font-size: 0.8rem !important; }
}
