@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('fonts.css');
@import url('page-bg.css');

:root {
    --bg: #e2e5e9;
    --panel: #d8dce1;
    --text: #2c3e50;
    --muted: #6c757d;
    --brand: #28a745;
    --accent: #ffc107;
    --danger: #dc3545;
    --primary: #007bff;
    --light: #d8dce1;
    --dark: #343a40;
    --surface-dark: #070f12;
    --glass-panel: rgba(11, 61, 32, 0.48);
    --gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --accent-text-bright: #e8fff0;
    --accent-text-highlight: #ffeeb8;0
    --jungle-mask: linear-gradient(
        160deg,
        rgba(8, 38, 22, 0.97) 0%,
        rgba(13, 45, 28, 0.95) 35%,
        rgba(18, 58, 35, 0.93) 60%,
        rgba(27, 94, 32, 0.91) 100%
    );
    --jungle-vignette:
        linear-gradient(to bottom, rgba(8, 32, 18, 0.66) 0%, transparent 38%, rgba(6, 28, 15, 0.7) 100%),
        radial-gradient(ellipse at center, transparent 18%, rgba(10, 42, 24, 0.62) 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --bg-black-mask: rgba(0, 0, 0, 0.5);
    --bg-black-mask-layer: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));

    /* Typography — custom display fonts read smaller than system UI */
    --text-xs: 14px;
    --text-sm: 16px;
    --text-base: 18px;
    --text-md: 20px;
    --text-lg: 22px;
    --text-xl: 28px;
    --text-2xl: 32px;
    --text-3xl: 36px;
}

@media (max-width: 768px) {
    :root {
        --text-xs: 15px;
        --text-sm: 17px;
        --text-base: 19px;
        --text-md: 21px;
        --text-lg: 23px;
        --text-xl: 29px;
        --text-2xl: 33px;
        --text-3xl: 37px;
        --font-display: 'Urban Jungle', 'Poppins', sans-serif;
        --font-heading: 'Rusty Forest', 'Urban Jungle', 'Poppins', sans-serif;
        --font-body: 'Poppins', sans-serif;
        --font-accent: 'Entropic Brush', 'Rusty Forest', 'Poppins', cursive;
    }
}

* { box-sizing: border-box; }
html {
    height: 100%;
    font-size: 106.25%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    min-height: 100%;
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text);
    background: var(--bg);
    line-height: 1.75;
    font-weight: normal;
    letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    line-height: 1.2;
}

h1, .hero-tagline {
    font-family: var(--font-display);
    letter-spacing: 0.04em;
}

h2, section h2, .section-head h2 {
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
}

h3, h4, h5, h6,
.card h3,
.section-header h2 {
    font-family: var(--font-heading);
    letter-spacing: 0.025em;
}

.nav-link,
.btn,
input,
textarea,
select,
button {
    font-family: var(--font-body);
}

.nav-link {
    letter-spacing: 0.02em;
}

.footer-title,
.brand-name {
    font-family: var(--font-heading);
    font-weight: normal;
    letter-spacing: 0.05em;
}

.hero-eyebrow,
.title-highlight,
.btn-primary,
.btn-donate {
    font-family: var(--font-accent);
    font-weight: normal;
    letter-spacing: 0.06em;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: headerSlideIn 0.6s ease-out;
}

.site-header.over-hero {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    animation: none;
}

.site-header.scrolled {
    background: rgba(7, 15, 18, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    animation: none;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@keyframes headerSlideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 94%;
    animation: containerFadeIn 0.8s ease-out 0.2s both;
}

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Brand */
.header-brand {
    display: flex;
    align-items: center;
    z-index: 1001;
    margin-left: -18px;
    padding: 12px 20px 12px 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.site-header.scrolled .logo {
    color: var(--text);
}

.logo img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: normal;
    background: linear-gradient(135deg, var(--brand), #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c3e50;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.site-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.site-header.over-hero .nav-link,
.site-header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.site-header.over-hero .nav-link:hover,
.site-header:not(.scrolled) .nav-link:hover {
    color: var(--accent-text-bright);
}

.site-header.over-hero .nav-link.active,
.site-header:not(.scrolled) .nav-link.active {
    color: var(--accent-text-bright);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(32, 201, 151, 0.15));
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 12px;
    transform: scale(0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.3), transparent);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover::after {
    width: 100px;
    height: 100px;
}

.nav-link:hover {
    color: var(--brand);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    text-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.site-header.scrolled .nav-link:hover {
    color: var(--brand);
}

.nav-link.active {
    color: var(--brand);
    background: rgba(40, 167, 69, 0.15);
    border: 2px solid rgba(40, 167, 69, 0.3);
    animation: activeGlow 3s infinite;
}

@keyframes activeGlow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
    }
}

.nav-link i {
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--brand);
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.2) rotate(10deg); }
    50% { transform: scale(1.3) rotate(15deg); }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.site-header.donate-visible .header-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

@keyframes donatePulse {
    0%, 100% { 
        box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
    }
    50% { 
        box-shadow: 0 15px 45px rgba(40, 167, 69, 0.7);
    }
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1.3) rotate(15deg); }
    50% { transform: scale(1.4) rotate(20deg); }
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.nav-toggle:hover {
    background: rgba(40, 167, 69, 0.1);
    transform: scale(1.1);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
    position: relative;
}

.bar {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: relative;
}

.site-header.scrolled .bar {
    background: white;
}

.nav-toggle:hover .bar {
    background: var(--brand);
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    transform: scaleY(1.2);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--brand);
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--brand);
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

/* Mobile Navigation */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-link {
        font-size: 16px;
        font-weight: 400;
        padding: 16px 24px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }

    .nav-link:hover {
        background: rgba(40, 167, 69, 0.2);
        border-color: var(--brand);
    }

    .nav-toggle {
        display: block;
    }

    .header-actions {
        position: relative;
        z-index: 1001;
    }

    .logo-text {
        display: none;
    }
}

/* Mobile Navigation Styles */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10000;
    position: relative;
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 25px;
    height: 20px;
    position: relative;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger .bar:nth-child(1) {
    margin-bottom: 4px;
}

.hamburger .bar:nth-child(2) {
    margin-bottom: 4px;
}

.nav-toggle[aria-expanded="true"] .hamburger .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle[aria-expanded="true"] .hamburger .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-actions {
    display: none;
}

@media (max-width: 768px) {
    .site-header {
        background: transparent !important;
        backdrop-filter: none;
        border-bottom: 1px solid transparent;
        box-shadow: none;
        z-index: 10000 !important;
    }

    .site-header.scrolled {
        background: rgba(7, 15, 18, 0.35) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: none;
    }

    .site-header.header-hidden {
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .site-header .container { 
        padding: max(14px, env(safe-area-inset-top, 0px)) max(20px, env(safe-area-inset-right, 0px)) 14px max(12px, env(safe-area-inset-left, 0px));
        gap: 10px;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap;
    }

    .logo img { width: 110px; height: 110px; }

    .logo {
        color: #2c3e50 !important;
        padding: 8px;
    }

    .header-brand {
        flex: 1 1 auto;
        min-width: 0;
        z-index: 10002;
        margin-left: -10px;
        padding: 8px 12px 8px 6px;
    }

    .nav-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0;
        order: 3;
        position: relative;
        z-index: 10003 !important;
        background: transparent;
        border: none;
        padding: 8px;
        cursor: pointer !important;
        min-width: 44px;
        min-height: 44px;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: rgba(40, 167, 69, 0.3);
    }

    .nav-toggle .hamburger .bar {
        background: #fff !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    }

    .site-header.scrolled .nav-toggle .hamburger .bar {
        background: #fff !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    }

    .nav-toggle.is-open {
        z-index: 10003 !important;
    }

    .nav-toggle.is-open .bar,
    body.menu-open .nav-toggle .hamburger .bar {
        background: #2c3e50 !important;
        box-shadow: none;
    }

    .nav {
        position: fixed !important;
        inset: 0 !important;
        background: #e2e5e9 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.35s ease, visibility 0.35s ease !important;
        z-index: 10001 !important;
        padding: 72px 20px 32px !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        height: 100% !important;
        transform: none !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .nav.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        display: flex !important;
    }

    .mobile-nav-logo {
        display: block !important;
        margin-bottom: 16px;
        text-align: center;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav.active .mobile-nav-logo {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .mobile-nav-logo .logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-logo .logo img {
        width: 140px;
        height: 140px;
        object-fit: contain;
    }

    .nav-list {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        text-align: center;
        width: 100%;
        max-width: 360px;
        padding: 0;
        margin: 0;
        animation: menuFadeIn 0.4s ease both;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav.active .nav-list {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-item { 
        width: 100%; 
    }

    .nav-link {
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.02em;
        text-transform: none;
        padding: 10px 14px;
        line-height: 1.25;
        color: #1a2e1a !important;
        text-shadow: none !important;
        transition: background 0.2s ease, border-color 0.2s ease;
        display: block;
        width: 100%;
        border-radius: 10px;
        background: #eef1ee !important;
        border: 1px solid #d4ddd4 !important;
        box-shadow: none !important;
        transform: none !important;
        animation: none !important;
    }

    .nav-link::before,
    .nav-link::after {
        display: none !important;
    }

    .site-header:not(.scrolled) .nav-link,
    .site-header.scrolled .nav-link {
        color: #1a2e1a !important;
        text-shadow: none !important;
        background: #eef1ee !important;
        border-color: #d4ddd4 !important;
    }

    .nav-link:hover,
    .nav-link:focus {
        color: #1a2e1a !important;
        background: #c8e6c9 !important;
        border-color: #4caf50 !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .nav-link.active {
        color: #1a2e1a !important;
        background: #4caf50 !important;
        border-color: #388e3c !important;
        font-weight: 500;
    }

    .nav.active .nav-link {
        color: #1a2e1a !important;
        text-shadow: none !important;
        background: #eef1ee !important;
        border: 1px solid #d4ddd4 !important;
        box-shadow: none !important;
        transform: none !important;
        animation: none !important;
    }

    .nav.active .nav-link.active {
        background: #4caf50 !important;
        border-color: #388e3c !important;
        color: #1a2e1a !important;
    }

    .nav.active .nav-link:hover,
    .site-header:not(.scrolled) .nav-link:hover,
    .site-header.scrolled .nav-link:hover {
        background: #c8e6c9 !important;
        border-color: #4caf50 !important;
        color: #1a2e1a !important;
        box-shadow: none !important;
        transform: none !important;
    }

    @keyframes menuFadeIn {
        from { opacity: 0; transform: translateY(24px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .header-actions {
        display: flex !important;
        align-items: center;
        flex-shrink: 0;
        order: 2;
        z-index: 10002;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .site-header.donate-visible .header-actions {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header-actions .btn.btn-donate {
        padding: 4px 12px;
        gap: 6px;
        border-radius: 16px;
        font-family: var(--font-accent);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.2px;
        line-height: 1.05;
        text-transform: none;
    }

    .header-actions .btn.btn-donate span {
        font-family: inherit;
        font-size: inherit;
        font-weight: inherit;
        letter-spacing: inherit;
        line-height: inherit;
    }

    .header-actions .btn.btn-donate i {
        font-size: 18px;
        margin: 0;
    }

    .mobile-actions { display: none; }

    body.menu-open .header-brand {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    body.menu-open .header-actions {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    body.menu-open .nav-toggle {
        position: fixed;
        top: max(10px, env(safe-area-inset-top, 0px));
        right: max(12px, env(safe-area-inset-right, 0px));
    }

    /* Map section header — Seven Strategic Response Centers */
    .map-header {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
        margin-bottom: 20px;
    }

    .map-header .header-content {
        width: 100%;
    }

    .map-header .header-content h4 {
        font-size: clamp(20px, 5vw, 24px);
        line-height: 1.35;
    }

    .map-header .header-subtitle {
        font-size: 14px;
    }

    .map-header .center-badge {
        align-self: center;
        padding: 10px 16px;
    }
}

@media (min-width: 769px) {
    .mobile-nav-logo {
        display: none !important;
    }
    
    .nav {
        position: static !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        background: transparent !important;
        padding: 0 !important;
        overflow: visible !important;
    }
}

@media (max-width: 480px) {
    .site-header .container {
        padding: 12px 14px;
        gap: 8px;
    }

    .header-brand {
        margin-left: -6px;
        padding: 6px 10px 6px 4px;
    }

    .logo {
        padding: 6px;
    }

    .logo img {
        width: 100px;
        height: 100px;
    }

    .header-actions .btn.btn-donate {
        padding: 4px 10px;
        border-radius: 16px;
        width: auto;
        height: auto;
        min-width: 0;
        font-family: var(--font-accent);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.2px;
        line-height: 1.05;
        text-transform: none;
    }

    .header-actions .btn.btn-donate span {
        font-family: inherit;
        font-size: inherit;
        font-weight: inherit;
        letter-spacing: inherit;
        line-height: inherit;
    }

    .header-actions .btn.btn-donate i {
        font-size: 18px;
    }

    .nav {
        padding: 64px 16px 24px !important;
    }

    .mobile-nav-logo {
        margin-bottom: 12px;
    }

    .mobile-nav-logo .logo img {
        width: 120px;
        height: 120px;
    }

    .nav-list {
        gap: 5px;
        max-width: 100%;
    }

    .nav-link {
        font-size: 16px;
        font-weight: 400;
        padding: 9px 12px;
        letter-spacing: 0.02em;
    }
    
    /* Crisis Section Mobile Styles */
    .crisis-section {
        padding: 40px 0;
    }
    
    .crisis-content {
        gap: 20px;
    }
    
    .crisis-text h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .crisis-text p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .crisis-stats {
        gap: 15px;
        margin: 15px 0;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .crisis-images img {
        height: 200px;
    }
}

/* =========================================================
   HERO — redesigned slideshow with rich content overlay
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--surface-dark);
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    display: flex;
    align-items: center;
}

/* Slideshow layer */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    transition: opacity 1.4s ease;
    will-change: opacity;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
}
.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}
.hero-slide.is-active img {
    animation: heroKenBurns 12s ease-out forwards;
}
@keyframes heroKenBurns {
    0%   { transform: scale(1.04) translate3d(0, 0, 0); }
    100% { transform: scale(1.16) translate3d(-1.5%, -1%, 0); }
}

/* Cinematic overlay so any image keeps text legible */
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
        radial-gradient(ellipse at 30% 40%, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.48) 75%),
        linear-gradient(180deg, rgba(7,15,18,0.42) 0%, rgba(7,15,18,0.14) 45%, rgba(7,15,18,0.66) 100%),
        linear-gradient(115deg, rgba(40,167,69,0.11) 0%, rgba(32,201,151,0.03) 50%, rgba(10,21,24,0.06) 100%);
    pointer-events: none;
}

/* Main content block */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 240px 24px 180px;
    text-align: left;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #d8f3dc;
    font-size: 17px;
    font-weight: normal;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(12px);
    animation: heroFadeUp 0.9s 0.1s ease-out forwards;
}
.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #20c997;
    box-shadow: 0 0 0 0 rgba(32, 201, 151, 0.7);
    animation: heroPulse 2.2s ease-out infinite;
}
@keyframes heroPulse {
    0%   { box-shadow: 0 0 0 0 rgba(32, 201, 151, 0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(32, 201, 151, 0); }
    100% { box-shadow: 0 0 0 0 rgba(32, 201, 151, 0); }
}

.hero-tagline {
    margin: 0 0 24px;
    font-size: clamp(44px, 7vw, 96px);
    line-height: 1.05;
    font-weight: normal;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s 0.2s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08em;
}
.hero-tagline-line {
    display: block;
    word-spacing: 0.35em;
}
.hero-tagline-accent {
    font-size: 1.06em;
    display: block;
    background: linear-gradient(135deg, #6bff9a 0%, #20c997 55%, #28a745 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
}

.hero-lead {
    max-width: 720px;
    margin: 0 0 40px;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s 0.35s ease-out forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s 0.5s ease-out forwards;
}
.hero-actions .btn { transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
.hero-actions .hero-cta i { font-size: 16px; }

/* Hero primary CTA — must override later global .btn-primary rules */
.hero-actions .btn-primary,
.hero-actions .btn-ghost {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-text-fill-color: #fff;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 28px rgba(32, 201, 151, 0.45);
}
.hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    border-color: #28a745;
    box-shadow: 0 12px 36px rgba(32, 201, 151, 0.55);
    transform: translateY(-2px);
}
.hero-actions .btn-large.btn-primary {
    border-color: rgba(255, 255, 255, 0.25);
}
.hero-actions .btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}
.hero-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    border-color: white;
}

.hero-stats-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 720px;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s 0.65s ease-out forwards;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 2px solid rgba(32, 201, 151, 0.6);
    padding-left: 14px;
}
.hero-stat strong {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 800;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.01em;
}
.hero-stat span {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Side navigation arrows */
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(13, 27, 31, 0.35);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.hero-nav-arrow:hover,
.hero-nav-arrow:focus-visible {
    background: rgba(32, 201, 151, 0.85);
    border-color: rgba(32, 201, 151, 0.9);
    outline: none;
    transform: translateY(-50%) scale(1.08);
}
.hero-nav-prev { left: 28px; }
.hero-nav-next { right: 28px; }

/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13, 27, 31, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-dot {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}
.hero-dot:hover { background: rgba(255, 255, 255, 0.6); }
.hero-dot.is-active {
    background: linear-gradient(90deg, #28a745, #20c997);
    width: 42px;
}

/* Scroll cue */
.hero-scroll-cue {
    position: absolute;
    right: 32px;
    bottom: 36px;
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.hero-scroll-cue:hover { color: #fff; }
.hero-scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(255,255,255,0));
    position: relative;
    overflow: hidden;
}
.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -40%;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #20c997);
    animation: heroScrollLine 2.2s ease-in-out infinite;
}
@keyframes heroScrollLine {
    0%   { top: -40%; }
    100% { top: 100%; }
}

@media (max-width: 992px) {
    .hero-inner { padding: 200px 24px 160px; }
    .hero-stats-strip { padding: 20px; gap: 16px; }
    .hero-scroll-cue { display: none; }
}

@media (max-width: 768px) {
    .hero { min-height: 92vh; align-items: flex-start; }
    .hero-inner { padding: 180px 20px 140px; text-align: left; }
    .hero-actions { gap: 10px; margin-bottom: 36px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats-strip {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }
    .hero-nav-arrow { width: 42px; height: 42px; font-size: 17px; }
    .hero-nav-prev { left: 12px; }
    .hero-nav-next { right: 12px; }
    .hero-dots { bottom: 22px; padding: 6px 10px; }
    .hero-dot { width: 22px; }
    .hero-dot.is-active { width: 32px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide.is-active,
    .hero-slide img,
    .hero-eyebrow,
    .hero-tagline,
    .hero-lead,
    .hero-actions,
    .hero-stats-strip,
    .hero-scroll-line::after,
    .hero-eyebrow-dot {
        animation: none !important;
        transition: opacity 0.3s ease !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Shared button styles (kept from original) */
.btn { appearance: none; border: 2px solid transparent; padding: 12px 16px; border-radius: 10px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary { background: var(--gradient); color: white; box-shadow: var(--shadow); border-color: #28a745; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); border-color: #20c997; }
.btn-ghost { background: rgba(255,255,255,0.15); border: 2px solid rgba(255, 255, 255, 0.5); color: white; backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.28); color: white; border-color: white; }

.header-actions .btn.btn-donate {
    gap: 6px;
    padding: 6px 16px;
    border-radius: 16px;
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.2px;
    line-height: 1.05;
    text-align: center;
    text-transform: none;
    background: linear-gradient(135deg, var(--brand), #20c997);
    color: #2c3e50;
    border: 1px solid #28a745;
    box-shadow: 0 1px 4px rgba(40, 167, 69, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-actions .btn.btn-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.header-actions .btn.btn-donate:hover::before {
    left: 100%;
}

.header-actions .btn.btn-donate:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
    background: linear-gradient(135deg, #20c997, var(--brand));
    animation: donatePulse 2s infinite;
    border-color: #20c997;
}

.header-actions .btn.btn-donate i {
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-actions .btn.btn-donate span {
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    text-align: center;
}

.header-actions .btn.btn-donate:hover i {
    transform: scale(1.3) rotate(15deg);
    animation: heartBeat 1s infinite;
}


/* Crisis Section */
.crisis-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--surface-dark);
    background-image: url('../images/bg/40522.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.crisis-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(
        135deg,
        rgba(11, 61, 32, 0.58) 0%,
        rgba(13, 27, 31, 0.42) 45%,
        rgba(27, 94, 32, 0.48) 100%
    );
    pointer-events: none;
}

.crisis-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.16) 0%,
        transparent 42%,
        rgb(0, 0, 0) 100%
    );
    pointer-events: none;
}

.crisis-section .container {
    position: relative;
    z-index: 1;
}

.crisis-section .section-head h2,
.crisis-section .crisis-text h3 {
    color: rgba(245, 245, 220, 0.96);
}

.crisis-section .section-head .lead,
.crisis-section .crisis-text p {
    color: rgba(245, 245, 220, 0.82);
}
.crisis-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
.crisis-text h3 {
    font-size: 32px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 700;
}
.crisis-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 20px;
}
.crisis-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--danger);
    margin-bottom: 5px;
}
.stat-label {
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
}
.crisis-media {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.crisis-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--brand);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    background: #000;
}

.crisis-media .crisis-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.crisis-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--brand);
}

/* Solution Section */
.solution-section {
    position: relative;
    padding: 80px 0;
    background: url('../images/bg/6b3j_yj53_211202.jpg') center center / cover no-repeat;
}

.solution-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        var(--bg-black-mask-layer),
        var(--jungle-mask);
    pointer-events: none;
}

.solution-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--jungle-vignette);
    pointer-events: none;
}

.solution-section > .container {
    position: relative;
    z-index: 1;
}

.solution-section .solution-header h2 {
    color: rgba(245, 245, 220, 0.96);
}

.solution-section .solution-header p {
    color: rgba(245, 245, 220, 0.82);
}

.solution-section .awareness-campaigns {
    background: rgba(11, 61, 32, 0.44);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(107, 142, 35, 0.28);
    box-shadow: none;
}

.solution-section .campaign-item,
.solution-section .campaign-impact {
    background: rgba(11, 61, 32, 0.54);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(76, 175, 80, 0.22);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.solution-section .campaign-item h5,
.solution-section .campaign-item p,
.solution-section .campaign-item .label,
.solution-section .campaigns-header p,
.solution-section .impact-statement h5,
.solution-section .impact-statement .description {
    color: rgba(245, 245, 220, 0.85);
}

.solution-section .campaigns-header h4 {
    background: linear-gradient(135deg, rgba(107, 191, 115, 1), rgba(32, 201, 151, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-section .campaign-item .stat {
    color: var(--accent-text-bright);
}

.solution-section .campaign-stats {
    background: rgba(76, 175, 80, 0.18);
    border-color: rgba(76, 175, 80, 0.28);
}

.solution-section .impact-item .number {
    color: var(--accent-text-bright);
}

.solution-section .impact-item .description {
    color: rgba(245, 245, 220, 0.8);
}

/* Funding Section */
.funding-section {
    position: relative;
    padding: 80px 0;
    background: url('../images/bg/czbt_47u4_211202.jpg') center center / cover no-repeat;
}

.funding-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(
        135deg,
        rgba(62, 39, 35, 0.82) 0%,
        rgba(139, 69, 19, 0.64) 45%,
        rgba(27, 94, 32, 0.52) 100%
    );
    pointer-events: none;
}

.funding-section > .container {
    position: relative;
    z-index: 1;
}

.funding-section .section-head h2 {
    color: rgba(255, 140, 140, 0.95);
}

.funding-section .funding-crisis {
    background: rgba(62, 39, 35, 0.32);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-left: 4px solid rgba(220, 53, 69, 0.85);
    border-radius: 12px;
    padding: 32px;
    margin: 0;
}

.funding-section .funding-crisis p {
    color: rgba(245, 245, 220, 0.88);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

/* Monitoring Section */
.monitoring-section {
    position: relative;
    padding: 80px 0;
    background: url('../images/bg/gfg9_oa26_211202.jpg') center center / cover no-repeat;
}

.monitoring-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(
        135deg,
        rgba(27, 94, 32, 0.79) 0%,
        rgba(76, 175, 80, 0.62) 50%,
        rgba(107, 142, 35, 0.5) 100%
    );
    pointer-events: none;
}

.monitoring-section > .container {
    position: relative;
    z-index: 1;
}

.monitoring-section .section-head h2 {
    color: rgba(245, 245, 220, 0.96);
}

.monitoring-section .section-head .lead {
    color: rgba(245, 245, 220, 0.82);
}

.monitoring-section .activity-card {
    background: rgba(11, 61, 32, 0.48);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(76, 175, 80, 0.24);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.monitoring-section .activity-card h5,
.monitoring-section .activity-card p {
    color: rgba(245, 245, 220, 0.88);
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-header h2 {
    font-size: 40px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 700;
}

.solution-header p {
    font-size: 20px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.solution-approach {
    margin-bottom: 80px;
}

.approach-text {
    max-width: 800px;
    margin: 0 auto;
}

.approach-text h3 {
    font-size: 32px;
    color: var(--text);
    margin: 0 0 24px;
    font-weight: 600;
}

.approach-text p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 24px;
}

.monitoring-grid {
    margin: 0;
}

.monitoring-grid h4 {
    font-size: 26px;
    color: var(--text);
    margin: 0 0 32px;
    font-weight: 600;
    text-align: center;
}

.activity-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.activity-card {
    background: var(--panel);
    border: 2px solid var(--light);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.activity-card:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}

.activity-image {
    width: 100%;
    height: 140px;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-card h5 {
    font-size: 17px;
    color: var(--text);
    margin: 0 0 8px;
    font-weight: 600;
}

.activity-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.solution-strategy {
    margin-top: 80px;
}

/* Strategy Section */
.strategy-section {
    position: relative;
    padding: 80px 0;
    background: url('../images/bg/2.jpg') center center / cover no-repeat;
}

.strategy-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(
        135deg,
        rgba(27, 94, 32, 0.8) 0%,
        rgba(76, 175, 80, 0.62) 50%,
        rgba(201, 162, 39, 0.42) 100%
    );
    pointer-events: none;
}

.strategy-section > .container {
    position: relative;
    z-index: 1;
}

.strategy-section .strategy-item {
    background: rgba(11, 61, 32, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(76, 175, 80, 0.24);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.strategy-section .strategy-item h4,
.strategy-section .strategy-item p {
    color: rgba(245, 245, 220, 0.9);
}

.strategy-section .strategy-item:hover {
    border-color: rgba(107, 191, 115, 0.6);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.strategy-grid--triptych {
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: stretch;
    max-width: 1200px;
    gap: 32px;
}

.strategy-item--center {
    border-color: rgba(107, 191, 115, 0.45);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.strategy-section .strategy-item--center {
    background: rgba(11, 61, 32, 0.58);
    border-color: rgba(107, 191, 115, 0.5);
}

.strategy-item--center:hover {
    transform: translateY(-6px);
}

.strategy-question {
    margin: 16px 16px 0;
    padding-top: 16px;
    border-top: 1px solid rgba(76, 175, 80, 0.35);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
    font-style: italic;
    color: var(--accent-text-highlight);
}

.strategy-section .strategy-question {
    color: rgba(255, 238, 184, 0.95);
    border-top-color: rgba(107, 191, 115, 0.4);
}

.strategy-item {
    background: var(--panel);
    border: 2px solid var(--light);
    border-radius: 16px;
    padding: 0 0 24px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.strategy-item:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}

.strategy-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 20px;
}

.strategy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.strategy-item:hover .strategy-image img {
    transform: scale(1.05);
}

.strategy-item h4 {
    font-size: 24px;
    color: var(--text);
    margin: 0 16px 12px;
    font-weight: 600;
}

.strategy-item p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 16px;
}

/* Solution Call Section */
.solution-call {
    margin: 60px 0;
    padding: 40px;
    background: var(--light);
    border-radius: 16px;
    border-left: 6px solid var(--brand);
}

.call-content h3 {
    font-size: 32px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 700;
}

.call-content p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

.urgent-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    justify-content: center;
}

.stat-box {
    text-align: center;
    background: var(--panel);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--brand);
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: var(--danger);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
}

.urgent-question {
    font-size: 22px;
    color: var(--danger);
    font-weight: 600;
    text-align: center;
    margin: 30px 0 0;
    font-style: italic;
}

/* Solution Challenges Section */
.solution-challenges {
    margin: 60px 0;
}

.challenge-content h3 {
    font-size: 32px;
    color: var(--text);
    margin: 0 0 24px;
    font-weight: 700;
}

.challenge-content p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

.awareness-campaigns {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.05));
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(40, 167, 69, 0.1);
}

.campaigns-header {
    text-align: center;
    margin-bottom: 40px;
}

.campaigns-header h4 {
    font-size: 32px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.campaigns-header p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.campaigns-showcase {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.campaign-item {
    background: var(--panel);
    border-radius: 16px;
    padding: 24px 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.campaign-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.campaign-item:hover::before {
    opacity: 1;
}

.campaign-item:hover {
    border-color: var(--brand);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.2);
}

.campaign-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.icon-wrapper.newspaper {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.icon-wrapper.television {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.icon-wrapper.radio {
    background: linear-gradient(135deg, #45b7d1, #45b7d1);
}

.icon-wrapper.social {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.icon-wrapper.community {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.icon-wrapper i {
    font-size: 36px;
    color: white;
    transition: transform 0.3s ease;
}

.campaign-item:hover .icon-wrapper i {
    transform: scale(1.2);
}

.campaign-item h5 {
    font-size: 20px;
    color: var(--text);
    margin: 0 0 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.campaign-item p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
}

.campaign-stats {
    background: rgba(40, 167, 69, 0.1);
    border-radius: 20px;
    padding: 12px 16px;
    border: 1px solid rgba(40, 167, 69, 0.2);
    position: relative;
    z-index: 1;
}

.campaign-stats .stat {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 4px;
}

.campaign-stats .label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.campaign-impact {
    background: var(--panel);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--brand);
}

.impact-statement {
    text-align: center;
}

.impact-statement h5 {
    font-size: 26px;
    color: var(--text);
    margin: 0 0 25px;
    font-weight: 700;
}

.impact-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.impact-item {
    text-align: center;
}

.impact-item .number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 8px;
}

.impact-item .description {
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
}

.funding-crisis {
    background: rgba(220, 53, 69, 0.05);
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
    border-left: 4px solid var(--danger);
}

.funding-crisis h4 {
    font-size: 22px;
    color: var(--danger);
    margin: 0 0 16px;
    font-weight: 600;
}

.funding-crisis p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 16px;
}

/* Implementation Section */
.implementation-section {
    position: relative;
    padding: 80px 0;
    background: url('../images/bg/vjha_je0w_211202.jpg') center center / cover no-repeat;
}

.implementation-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        var(--bg-black-mask-layer),
        var(--jungle-mask);
    pointer-events: none;
}

.implementation-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--jungle-vignette);
    pointer-events: none;
}

.implementation-section > .container {
    position: relative;
    z-index: 1;
}

.implementation-section .section-head h2 {
    color: rgba(245, 245, 220, 0.96);
}

.implementation-section .section-head .lead {
    color: rgba(245, 245, 220, 0.82);
    max-width: 800px;
}

.implementation-section .implementation-card {
    background: rgba(11, 61, 32, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(76, 175, 80, 0.24);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.implementation-section .implementation-card h4,
.implementation-section .implementation-card p {
    color: rgba(245, 245, 220, 0.88);
}

.implementation-header {
    text-align: center;
    margin-bottom: 50px;
}

.implementation-header h3 {
    font-size: 36px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 700;
}

.implementation-header p {
    font-size: 20px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.implementation-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.implementation-card {
    background: var(--panel);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.implementation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.implementation-card:hover {
    border-color: var(--brand);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.15);
}

.implementation-card h4 {
    font-size: 26px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 700;
    text-align: center;
}

.implementation-card p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 16px;
    text-align: center;
}

.implementation-card p:last-child {
    margin-bottom: 0;
}

/* Looking Back Section */
.looking-back-section {
    position: relative;
    padding: 80px 0;
    background: url('../images/bg/40522.jpg') center center / cover no-repeat;
}

.looking-back-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(
        160deg,
        rgba(62, 39, 35, 0.84) 0%,
        rgba(107, 142, 35, 0.64) 50%,
        rgba(27, 94, 32, 0.54) 100%
    );
    pointer-events: none;
}

.looking-back-section > .container {
    position: relative;
    z-index: 1;
}

.looking-back-section .section-head h2 {
    color: rgba(245, 245, 220, 0.96);
}

.looking-back-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.looking-back-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(245, 245, 220, 0.85);
    margin: 0 0 40px;
}

.looking-back-section .reality-challenge-cards {
    text-align: left;
}

.looking-back-section .reality-card,
.looking-back-section .challenge-card {
    background: rgba(11, 61, 32, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(76, 175, 80, 0.22);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.looking-back-section .reality-card {
    border-left: 4px solid rgba(220, 53, 69, 0.85);
}

.looking-back-section .challenge-card {
    border-left: 4px solid rgba(255, 193, 7, 0.85);
}

.looking-back-section .reality-card h4 {
    color: rgba(255, 140, 140, 0.95);
}

.looking-back-section .challenge-card h4 {
    color: rgba(255, 210, 100, 0.95);
}

.looking-back-section .reality-card p,
.looking-back-section .challenge-card p {
    color: rgba(245, 245, 220, 0.85);
}

.looking-back-section .time-warning {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.35);
    color: rgba(255, 140, 140, 0.95);
}

/* Historical Context Section */
.historical-context {
    margin: 60px 0;
    background: var(--light);
    border-radius: 16px;
    padding: 40px;
}

.context-content h3 {
    font-size: 32px;
    color: var(--text);
    margin: 0 0 24px;
    font-weight: 700;
}

.context-content p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

.reality-challenge-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.reality-card {
    background: var(--panel);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 4px solid var(--danger);
    transition: all 0.3s ease;
}

.reality-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.reality-card h4 {
    font-size: 24px;
    color: var(--danger);
    margin: 0 0 20px;
    font-weight: 600;
}

.reality-card p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 16px;
}

.reality-card p:last-child {
    margin-bottom: 0;
}

.challenge-card {
    background: var(--panel);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.challenge-card h4 {
    font-size: 24px;
    color: #e0a800;
    margin: 0 0 20px;
    font-weight: 600;
}

.challenge-card p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 16px;
}

.challenge-card p:last-child {
    margin-bottom: 0;
}

.time-warning {
    font-size: 20px;
    color: var(--danger);
    font-weight: 700;
    text-align: center;
    margin: 20px 0 0;
    padding: 16px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0 20px; }
.card { background: var(--panel); border: 1px solid rgba(0,0,0,.1); border-radius: 16px; padding: 24px; transition: all .3s ease; box-shadow: var(--shadow); }
.card:hover { transform: translateY(-5px); border-color: var(--brand); box-shadow: var(--shadow-lg); }
.card h3 { margin: 0 0 8px; font-size: 20px; color: var(--text); font-weight: 600; }
.card p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.5; }

/* Responsive Design */
@media (max-width: 1024px) {
    .crisis-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .crisis-images {
        grid-template-columns: 1fr;
    }
    .crisis-stats {
        justify-content: center;
    }
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strategy-grid--triptych {
        grid-template-columns: 1fr 1fr;
    }

    .strategy-item--center {
        grid-column: 1 / -1;
        max-width: 640px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .crisis-section,
    .solution-section,
    .funding-section,
    .monitoring-section,
    .implementation-section,
    .strategy-section,
    .looking-back-section,
    .mission-section {
        padding: 60px 0;
    }
    
    .crisis-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .crisis-text h3 {
        font-size: 26px;
    }
    
    .crisis-text p {
        font-size: 17px;
    }
    
    .crisis-stats {
        flex-direction: column;
        gap: 20px;
        margin: 20px 0;
    }
    
    .crisis-media {
        max-width: 560px;
        margin: 0 auto;
    }

    .crisis-video {
        max-height: none;
    }

    .crisis-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .crisis-images img {
        height: 250px;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solution-header h2 {
        font-size: 32px;
    }
    .solution-header p {
        font-size: 18px;
    }
    .solution-call {
        padding: 24px;
    }
    .call-content h3 {
        font-size: 26px;
    }
    .urgent-stats {
        flex-direction: column;
        gap: 20px;
    }
    .stat-box {
        padding: 20px;
    }
    .stat-number {
        font-size: 32px;
    }
    .challenge-content h3 {
        font-size: 26px;
    }
    .awareness-campaigns {
        padding: 24px;
    }
    .campaigns-header h4 {
        font-size: 26px;
    }
    .campaigns-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .campaign-item {
        padding: 20px 15px;
    }
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .icon-wrapper .icon {
        font-size: 32px;
    }
    .campaign-impact {
        padding: 24px;
    }
    .impact-statement h5 {
        font-size: 22px;
    }
    .impact-numbers {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .funding-crisis {
        padding: 24px;
    }
    .implementation-header h3 {
        font-size: 32px;
    }
    .implementation-header p {
        font-size: 18px;
    }
    .implementation-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .implementation-card {
        padding: 30px;
    }
    .implementation-card h4 {
        font-size: 22px;
    }
    .monitoring-section,
    .funding-section,
    .implementation-section,
    .strategy-section,
    .looking-back-section,
    .mission-section {
        padding: 60px 0;
    }
    .historical-context {
        padding: 24px;
    }
    .context-content h3 {
        font-size: 26px;
    }
    .reality-challenge-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .reality-card {
        padding: 24px;
    }
    .challenge-card {
        padding: 24px;
    }
    .monitoring-grid h4 {
        font-size: 22px;
    }
    .activity-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .activity-card {
        padding: 20px;
    }
    .strategy-grid,
    .strategy-grid--triptych {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .strategy-item--center {
        grid-column: auto;
        max-width: none;
    }
    .strategy-item {
        padding: 0 0 20px;
    }

    .strategy-image {
        height: 160px;
    }
}

@media (max-width: 620px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .activity-cards {
        grid-template-columns: 1fr;
    }
    .activity-card {
        padding: 16px;
    }
    .campaigns-showcase {
        grid-template-columns: 1fr;
    }
    .campaign-item {
        padding: 20px;
    }
    .mission-content h2 {
        font-size: 32px;
    }
    .mission-content p {
        font-size: 18px;
    }
}
@media (max-width: 1100px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }

/* Mission Section */
.mission-section {
    position: relative;
    padding: 80px 0;
    background: url('../images/bg/gfg9_oa26_211202.jpg') center center / cover no-repeat;
}

.mission-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(
        135deg,
        rgba(11, 61, 32, 0.82) 0%,
        rgba(27, 94, 32, 0.66) 50%,
        rgba(201, 162, 39, 0.44) 100%
    );
    pointer-events: none;
}

.mission-section > .container {
    position: relative;
    z-index: 1;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 40px;
    color: rgba(245, 245, 220, 0.96);
    margin: 0 0 30px;
    font-weight: 700;
}

.mission-content p {
    font-size: 20px;
    color: rgba(245, 245, 220, 0.85);
    line-height: 1.8;
    margin: 0;
}

/* Issues Sections — individual photo backgrounds */
.issue-bg-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.issue-hec-section {
    background: url('../images/bg/2.jpg') center center / cover no-repeat;
}

.issue-landfill-section {
    background: url('../images/bg/czbt_47u4_211202.jpg') center center / cover no-repeat;
}

.issue-accidents-section {
    background: url('../images/bg/6b3j_yj53_211202.jpg') center center / cover no-repeat;
}

.issue-bg-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.issue-hec-section::before {
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(135deg, rgba(62, 39, 35, 0.86) 0%, rgba(27, 94, 32, 0.72) 50%, rgba(13, 27, 31, 0.84) 100%);
}

.issue-landfill-section::before {
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(160deg, rgba(11, 61, 32, 0.89) 0%, rgba(62, 39, 35, 0.69) 45%, rgba(27, 94, 32, 0.82) 100%);
}

.issue-accidents-section::before {
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(135deg, rgba(13, 27, 31, 0.86) 0%, rgba(27, 94, 32, 0.69) 50%, rgba(11, 61, 32, 0.84) 100%);
}

.issue-bg-section > .container {
    position: relative;
    z-index: 1;
}

.issue-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.issue-content {
    padding: 40px;
    background: rgba(11, 61, 32, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(76, 175, 80, 0.24);
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.issue-content h3 {
    font-size: 36px;
    color: rgba(245, 245, 220, 0.96);
    margin: 0 0 24px;
    font-weight: normal;
}

.issue-content p {
    font-size: 18px;
    color: rgba(245, 245, 220, 0.82);
    line-height: 1.7;
    margin: 0 0 20px;
}

.issue-content p:last-of-type {
    margin-bottom: 30px;
}

.issue-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.issue-bg-section .issue-image {
    border: 2px solid rgba(76, 175, 80, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.issue-bg-section .read-more-btn {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.left-content .issue-image,
.right-content .issue-image {
    transform: none;
    border-radius: 16px;
}

.issue-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}

.read-more-btn {
    display: inline-block;
    background: var(--brand);
    color: white;
    border: 2px solid #28a745;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.read-more-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
    border-color: #20c997;
}

/* Left Content Layout (Content Left, Image Right) */
.left-content {
    direction: ltr;
}

/* Right Content Layout (Image Left, Content Right) */
.right-content {
    direction: rtl;
}

.right-content .issue-content {
    direction: ltr;
    text-align: left;
}

/* Issue sections — mobile only (HEC, Landfills, Train & Road) */
@media (max-width: 768px) {
    .issue-hec-section,
    .issue-landfill-section,
    .issue-accidents-section {
        padding: 48px 0;
    }

    .issue-hec-section > .container,
    .issue-landfill-section > .container,
    .issue-accidents-section > .container {
        width: min(1200px, 92%);
    }

    .issue-hec-section .issue-item,
    .issue-landfill-section .issue-item,
    .issue-accidents-section .issue-item {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 0;
    }

    .issue-hec-section .left-content,
    .issue-hec-section .right-content,
    .issue-landfill-section .left-content,
    .issue-landfill-section .right-content,
    .issue-accidents-section .left-content,
    .issue-accidents-section .right-content {
        direction: ltr;
    }

    .issue-hec-section .issue-image,
    .issue-landfill-section .issue-image,
    .issue-accidents-section .issue-image {
        order: -1;
        width: 100%;
        border-radius: 12px !important;
    }

    .issue-hec-section .issue-content,
    .issue-landfill-section .issue-content,
    .issue-accidents-section .issue-content {
        order: 0;
        direction: ltr;
        text-align: left;
        width: 100%;
        padding: 20px 18px;
        border-radius: 14px;
        box-sizing: border-box;
    }

    .issue-hec-section .issue-content h3,
    .issue-landfill-section .issue-content h3,
    .issue-accidents-section .issue-content h3 {
        font-size: clamp(24px, 5.5vw, 32px);
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .issue-hec-section .issue-content p,
    .issue-landfill-section .issue-content p,
    .issue-accidents-section .issue-content p {
        font-size: 17px;
        line-height: 1.65;
        margin-bottom: 12px;
    }

    .issue-hec-section .issue-content p:last-of-type,
    .issue-landfill-section .issue-content p:last-of-type,
    .issue-accidents-section .issue-content p:last-of-type {
        margin-bottom: 18px;
    }

    .issue-hec-section .issue-image img,
    .issue-landfill-section .issue-image img,
    .issue-accidents-section .issue-image img {
        width: 100%;
        height: auto;
        min-height: 180px;
        max-height: 240px;
        object-fit: cover;
        object-position: center;
    }

    .issue-hec-section .read-more-btn,
    .issue-landfill-section .read-more-btn,
    .issue-accidents-section .read-more-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 12px 18px;
        font-size: 16px;
        letter-spacing: 0.4px;
        text-align: center;
        box-sizing: border-box;
        color: #fff !important;
        background: #4caf50 !important;
        border: 2px solid #388e3c !important;
        border-radius: 8px;
        transform: none !important;
    }

    .issue-hec-section .read-more-btn:hover,
    .issue-landfill-section .read-more-btn:hover,
    .issue-accidents-section .read-more-btn:hover {
        background: #43a047 !important;
        transform: none !important;
        box-shadow: 0 4px 14px rgba(76, 175, 80, 0.35);
    }
}

@media (max-width: 480px) {
    .issue-hec-section,
    .issue-landfill-section,
    .issue-accidents-section {
        padding: 40px 0;
    }

    .issue-hec-section .issue-item,
    .issue-landfill-section .issue-item,
    .issue-accidents-section .issue-item {
        gap: 16px;
    }

    .issue-hec-section .issue-content,
    .issue-landfill-section .issue-content,
    .issue-accidents-section .issue-content {
        padding: 16px 14px;
    }

    .issue-hec-section .issue-content h3,
    .issue-landfill-section .issue-content h3,
    .issue-accidents-section .issue-content h3 {
        font-size: 22px;
    }

    .issue-hec-section .issue-content p,
    .issue-landfill-section .issue-content p,
    .issue-accidents-section .issue-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .issue-hec-section .issue-image img,
    .issue-landfill-section .issue-image img,
    .issue-accidents-section .issue-image img {
        min-height: 160px;
        max-height: 200px;
    }
}

/* Sections */
section { padding: 60px 0; }
section:nth-child(even):not(.crisis-section):not(.solution-section):not(.funding-section):not(.monitoring-section):not(.implementation-section):not(.strategy-section):not(.looking-back-section):not(.mission-section):not(.investment-section):not(.financial-breakdown-section):not(.investment-timeline-section):not(.cost-optimization-section):not(.hero):not(.rapid-response-section):not(.response-capabilities-section):not(.response-monitoring-section):not(.response-goal-section):not(.response-operations-section):not(.issue-hec-section):not(.issue-landfill-section):not(.issue-accidents-section):not(.page-content-bg):not(.page-hero-bg) { background: var(--light); }
section .section-head { margin-bottom: 40px; text-align: center; }
.section-head h2 .section-icon {
    color: var(--brand);
    margin-right: 10px;
    font-size: 0.85em;
}
section h2 { margin: 0 0 12px; font-size: clamp(32px, 4vw, 40px); color: var(--text); font-weight: normal; }
section p.lead { color: var(--muted); margin: 0; font-size: 20px; max-width: 600px; margin: 0 auto; }

/* Gallery rows */
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gallery img { width: 100%; height: 140px; object-fit: cover; border-radius: 12px; border: 2px solid var(--brand); transition: transform .2s ease; }
.gallery img:hover { transform: scale(1.05); }
@media (max-width: 1100px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery img { height: 100px; } }

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1e2d3a 0%, #263544 50%, #1e2d3a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(32, 201, 151, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-section {
    max-width: 400px;
}

.footer-brand {
    margin-bottom: 30px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.brand-logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 3px solid var(--brand);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.brand-text {
    font-size: 26px;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--brand), #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 30px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--brand);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    border-color: var(--brand);
}

.social-link i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 24px;
    font-weight: normal;
    color: #fff;
    margin: 0 0 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--brand), #20c997);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    width: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--brand);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.site-footer a.contact-value {
    text-decoration: none;
}

.site-footer a.contact-value:hover {
    color: var(--accent-text-bright);
}

.footer-stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(40, 167, 69, 0.1);
    border-color: var(--brand);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-newsletter {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(40, 167, 69, 0.2);
    position: relative;
    z-index: 1;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h4 {
    font-size: 26px;
    color: #fff;
    margin: 0 0 12px;
    font-weight: 700;
}

.newsletter-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.newsletter-form {
    flex: 1;
    max-width: 400px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 12px;
    background: var(--panel);
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-group input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 18px;
    background: transparent;
    outline: none;
    color: var(--text);
}

.newsletter-form .form-group input::placeholder {
    color: var(--muted);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--brand), #20c997);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.emergency-banner {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    position: relative;
    z-index: 1;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.emergency-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    flex-shrink: 0;
}

.emergency-text {
    flex: 1;
}

.emergency-text h5 {
    font-size: 22px;
    color: white;
    margin: 0 0 8px;
    font-weight: 700;
}

.emergency-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.emergency-btn {
    background: #2c3e50;
    color: #ff6b6b;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.footer-mission {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-style: italic;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--brand);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand-section {
        grid-column: 1 / -1;
        max-width: none;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .newsletter-form {
        max-width: none;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section .footer-title {
        text-align: center;
    }

    .footer-section .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-links a::before {
        display: none;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item:hover {
        transform: translateY(-2px);
    }

    .contact-details {
        align-items: center;
        text-align: center;
    }

    .brand-description {
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .newsletter-text h4 {
        font-size: 22px;
    }
    
    .newsletter-text p {
        font-size: 16px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .newsletter-form .form-group input {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .newsletter-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .emergency-text h5 {
        font-size: 20px;
    }
    
    .emergency-text p {
        font-size: 16px;
    }
    
    .emergency-btn {
        padding: 14px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .brand-logo {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .brand-text {
        font-size: 22px;
    }
    
    .brand-description {
        font-size: 16px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .footer-newsletter {
        padding: 30px 20px;
    }
    
    .emergency-banner {
        padding: 20px;
    }
    
    .emergency-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

/* Rapid-Response Centers Section - Creative Design */
.rapid-response-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #174d23 50%, #210b0b 100%);
    position: relative;
    overflow: hidden;
}

.rapid-response-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: 
        var(--bg-black-mask-layer),
        radial-gradient(circle at 20% 80%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(32, 201, 151, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

/* Response sub-sections — photo backgrounds */
.response-capabilities-section,
.response-monitoring-section,
.response-goal-section,
.response-operations-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.response-capabilities-section {
    background: url('../images/bg/6b3j_yj53_211202.jpg') center center / cover no-repeat;
}

.response-monitoring-section {
    background: url('../images/bg/gfg9_oa26_211202.jpg') center center / cover no-repeat;
}

.response-goal-section {
    background: url('../images/bg/vjha_je0w_211202.jpg') center center / cover no-repeat;
}

.response-operations-section {
    background: url('../images/bg/40522.jpg') center center / cover no-repeat;
}

.response-capabilities-section::before,
.response-monitoring-section::before,
.response-goal-section::before,
.response-operations-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.response-capabilities-section::before {
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(135deg, rgba(11, 61, 32, 0.92) 0%, rgba(27, 94, 32, 0.76) 50%, rgba(13, 27, 31, 0.86) 100%);
}

.response-monitoring-section::before {
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(160deg, rgba(13, 27, 31, 0.89) 0%, rgba(27, 94, 32, 0.72) 45%, rgba(11, 61, 32, 0.84) 100%);
}

.response-goal-section::before {
    background: rgba(0, 0, 0, 0.72);
}

.response-goal-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

.response-operations-section::before {
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(135deg, rgba(11, 61, 32, 0.86) 0%, rgba(62, 39, 35, 0.69) 50%, rgba(27, 94, 32, 0.79) 100%);
}

.response-capabilities-section > .container,
.response-monitoring-section > .container,
.response-goal-section > .container,
.response-operations-section > .container {
    position: relative;
    z-index: 1;
}

.response-section-head {
    text-align: center;
    margin-bottom: 50px;
}

.response-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-text-bright);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.response-section-head h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 44px);
    color: #fff;
}

.response-section-head .lead {
    max-width: 640px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.6;
}

.response-operations-section .goal-operations {
    margin-top: 0;
}

@media (max-width: 768px) {
    .response-capabilities-section,
    .response-monitoring-section,
    .response-goal-section,
    .response-operations-section {
        padding: 60px 0;
    }

    .response-section-head {
        margin-bottom: 36px;
    }
}

/* Hero Section */
.response-hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: clamp(36px, 5vw, 52px);
    color: #fff;
    margin: 0 0 20px;
    font-weight: 800;
    line-height: 1.2;
}

.title-highlight {
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 50px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 24px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card.urgent .stat-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.stat-card.success .stat-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.stat-card .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.stat-content {
    text-align: left;
}

.stat-card .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.hero-callout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    padding: 24px 32px;
    border-radius: 16px;
    margin-top: 40px;
    max-width: 800px;
    margin: 40px auto 0;
}

.hero-callout i {
    font-size: 26px;
    color: #ffc107;
    flex-shrink: 0;
}

.hero-callout p {
    font-size: 20px;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

/* Strategy Showcase */
.strategy-showcase {
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.strategy-header {
    text-align: center;
    margin-bottom: 60px;
}

.strategy-header h3 {
    font-size: 40px;
    color: #fff;
    margin: 0 0 24px;
    font-weight: 700;
}

.strategy-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 auto 20px;
    max-width: 900px;
}

.strategy-header p:last-child {
    margin-bottom: 0;
}

.map-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.map-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.05));
    pointer-events: none;
}

.map-container {
    position: relative;
    z-index: 1;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.header-content h4 {
    font-size: 26px;
    color: #fff;
    margin: 0 0 8px;
    font-weight: 700;
}

.header-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.center-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.center-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.map-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.map-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.map-wrapper {
    position: relative;
    line-height: 0;
}

.response-map {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.map-visual:hover .response-map {
    transform: scale(1.02);
}

.map-overlay {
    display: none;
}

.overlay-content {
    display: none;
}

.center-dots {
    display: none;
}

.center-dot {
    display: none;
}

.map-legend {
    display: none;
}

.legend-item {
    display: none;
}

.legend-dot {
    display: none;
}

.map-description {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    z-index: 1;
    position: relative;
}

.description-content {
    width: 100%;
}

.description-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.description-header h5 {
    font-size: 24px;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.2);
    color: var(--accent-text-bright);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 30px;
}

.location-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-content h6 {
    font-size: 16px;
    color: #fff;
    margin: 0 0 4px;
    font-weight: 700;
}

.feature-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.coverage-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 16px;
    padding: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-text-bright);
    margin-bottom: 4px;
}

.coverage-stats .stat-label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.capability-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #28a745, #20c997);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.capability-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(40, 167, 69, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    transition: all 0.3s ease;
}

.capability-card:hover .card-icon {
    transform: scale(1.1);
}

.card-header h4 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 22px;
    color: #fff;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.capability-card p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 20px;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
}

.staff-count, .comm-feature, .ops-feature, .transport-feature {
    background: rgba(40, 167, 69, 0.2);
    color: var(--accent-text-bright);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Monitoring Showcase */
.monitoring-showcase {
    margin: 0;
    position: relative;
    z-index: 1;
}

.monitoring-header {
    text-align: center;
    margin-bottom: 60px;
}

.monitoring-header h3 {
    font-size: 40px;
    color: white; margin: 0 0 20px;
    font-weight: 700;
}

.monitoring-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.monitoring-showcase .benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.monitoring-showcase .benefit-card:nth-child(1),
.monitoring-showcase .benefit-card:nth-child(2) {
    grid-column: span 3;
}

.monitoring-showcase .benefit-card:nth-child(3),
.monitoring-showcase .benefit-card:nth-child(4),
.monitoring-showcase .benefit-card:nth-child(5) {
    grid-column: span 2;
}

.monitoring-showcase .benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    gap: 0;
}

.monitoring-showcase .benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(40, 167, 69, 0.3);
}

.monitoring-showcase .benefit-visual {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.monitoring-showcase .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.monitoring-showcase .benefit-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(40, 167, 69, 0.3);
    animation: benefitPulse 2s infinite;
}

@keyframes benefitPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.monitoring-showcase .benefit-content h4 {
    font-size: 22px;
    color: #fff;
    margin: 0 0 12px;
    font-weight: 700;
}

.monitoring-showcase .benefit-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 16px;
    font-weight: 400;
}

.monitoring-showcase .benefit-tag {
    display: inline-block;
    background: rgba(40, 167, 69, 0.2);
    color: var(--accent-text-bright);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.groups-needs-list {
    margin: 12px 0 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.groups-needs-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.groups-needs-list li:last-child {
    margin-bottom: 0;
}

/* Action Showcase */
.action-showcase {
    margin: 0;
    position: relative;
    z-index: 1;
}

.action-hero {
    text-align: center;
    margin-bottom: 60px;
}

.action-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.action-hero h3 {
    font-size: 40px;
    color: white; margin: 0 0 20px;
    font-weight: 700;
}

.action-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.goal-story {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.goal-story-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.goal-story-card:hover {
    border-color: rgba(40, 167, 69, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.goal-story-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.goal-story-card p {
    margin: 0;
    font-size: 19px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
    max-width: none;
}

.goal-story-quote {
    position: relative;
    text-align: center;
    padding: 28px 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(32, 201, 151, 0.08));
    border: 2px solid rgba(40, 167, 69, 0.35);
}

.goal-story-quote i {
    display: block;
    font-size: 24px;
    color: var(--accent-text-highlight);
    margin-bottom: 12px;
    opacity: 0.8;
}

.goal-story-quote p {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
    max-width: none;
}

.goal-story-mission {
    display: grid;
    gap: 16px;
    text-align: center;
}

.goal-story-mission p {
    margin: 0;
    font-size: 19px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    max-width: none;
}

.goal-story-mission strong {
    color: var(--accent-text-highlight);
    font-weight: 700;
}

.goal-operations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    align-items: stretch;
}

.goal-operations .collaboration-note,
.goal-operations .intervention-note {
    margin-top: 0;
    height: 100%;
    min-height: 220px;
    align-items: flex-start;
    box-sizing: border-box;
}

.goal-operations .note-content {
    flex: 1;
}

.action-metrics {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
}

.metric-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(40, 167, 69, 0.3);
}

.metric-visual {
    margin-bottom: 24px;
}

.metric-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.metric-card:hover .metric-circle {
    transform: scale(1.1);
}

.metric-number {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.metric-card h4 {
    font-size: 20px;
    color: #fff;
    margin: 0 0 12px;
    font-weight: 700;
}

.metric-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.collaboration-note {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 20px;
    padding: 32px;
    margin-top: 40px;
}

.intervention-note {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(32, 201, 151, 0.1);
    border: 2px solid rgba(32, 201, 151, 0.3);
    border-radius: 20px;
    padding: 32px;
}

.note-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    flex-shrink: 0;
}

.note-content h4 {
    font-size: 22px;
    color: #fff;
    margin: 0 0 12px;
    font-weight: 700;
}

.note-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Rapid-Response section — unified colors on dark gradient surface */
.response-theme {
    color: rgba(255, 255, 255, 0.88);
}

.response-theme.response-goal-section::before {
    background: rgba(0, 0, 0, 0.72);
}

.response-theme.response-goal-section::after {
    background: rgba(0, 0, 0, 0.28);
}

.response-theme.rapid-response-section::before {
    background:
        var(--bg-black-mask-layer),
        radial-gradient(circle at 20% 80%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(32, 201, 151, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.response-theme.rapid-response-section > .container {
    position: relative;
    z-index: 1;
}

.response-theme .hero-title,
.response-theme .strategy-header h3,
.response-theme .monitoring-header h3,
.response-theme .action-hero h3,
.response-theme .response-section-head h2,
.response-theme .header-content h4,
.response-theme .description-header h5,
.response-theme .feature-content h6,
.response-theme .capability-card .card-header h4,
.response-theme .monitoring-showcase .benefit-content h4,
.response-theme .metric-card h4,
.response-theme .note-content h4,
.response-theme .goal-story-quote p,
.response-theme .stat-card .stat-number,
.response-theme .coverage-stats .stat-value,
.response-theme .metric-number {
    color: #fff;
}

.response-theme .hero-subtitle,
.response-theme .strategy-header p,
.response-theme .header-subtitle,
.response-theme .description-text,
.response-theme .feature-content p,
.response-theme .capability-card p,
.response-theme .monitoring-showcase .benefit-content p,
.response-theme .goal-story-card p,
.response-theme .goal-story-mission p,
.response-theme .metric-card p,
.response-theme .note-content p,
.response-theme .groups-needs-list,
.response-theme .groups-needs-list li,
.response-theme .response-section-head p,
.response-theme .response-section-head .lead {
    color: rgba(255, 255, 255, 0.85);
}

.response-theme .coverage-stats .stat-label,
.response-theme .stat-card .stat-label {
    color: rgba(255, 255, 255, 0.75);
}

.response-theme .title-highlight {
    background: linear-gradient(135deg, #6bff9a 0%, #20c997 55%, #28a745 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.response-theme .location-badge,
.response-theme .staff-count,
.response-theme .comm-feature,
.response-theme .ops-feature,
.response-theme .transport-feature,
.response-theme .monitoring-showcase .benefit-tag {
    color: #fff;
    background: rgba(40, 167, 69, 0.35);
    border: 1px solid rgba(40, 167, 69, 0.45);
}

.response-theme .goal-story-mission strong {
    color: var(--accent-text-highlight);
}

.response-theme .stat-card .stat-icon,
.response-theme .feature-icon,
.response-theme .capability-card .card-icon,
.response-theme .monitoring-showcase .benefit-icon,
.response-theme .goal-story-icon,
.response-theme .note-icon,
.response-theme .monitoring-showcase .benefit-card i {
    color: #fff;
}

.response-theme .center-badge,
.response-theme .hero-badge,
.response-theme .action-badge {
    color: #fff;
}

.response-theme .hero-callout p {
    color: #fff;
}

.response-theme .goal-story-quote i {
    color: var(--accent-text-highlight);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .map-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 24px;
    }
    
    .map-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .center-badge {
        align-self: center;
    }
    
    .description-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .coverage-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .action-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .monitoring-showcase .benefits-grid {
        grid-template-columns: 1fr;
    }

    .monitoring-showcase .benefit-card:nth-child(n) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .rapid-response-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .strategy-header h3,
    .monitoring-header h3,
    .action-hero h3 {
        font-size: 32px;
    }
    
    .map-showcase {
        padding: 20px 16px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capability-card {
        padding: 24px;
    }
    
    .collaboration-note {
        flex-direction: column;
        text-align: center;
    }

    .intervention-note {
        flex-direction: column;
        text-align: center;
    }

    .goal-operations {
        grid-template-columns: 1fr;
    }

    .goal-story-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .goal-story-card p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-badge,
    .action-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .hero-callout {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .metric-card {
        padding: 30px 20px;
    }
    
    .metric-circle {
        width: 80px;
        height: 80px;
    }
    
    .metric-number {
        font-size: 22px;
    }
    
}

/* Financial Sections — shared photo + glass styling */
.investment-section,
.financial-breakdown-section,
.investment-timeline-section,
.cost-optimization-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.investment-section {
    background: url('../images/bg/2.jpg') center center / cover no-repeat;
}

.financial-breakdown-section {
    background: url('../images/bg/czbt_47u4_211202.jpg') center center / cover no-repeat;
}

.investment-timeline-section {
    background: url('../images/bg/vjha_je0w_211202.jpg') center center / cover no-repeat;
}

.cost-optimization-section {
    background: url('../images/bg/gfg9_oa26_211202.jpg') center center / cover no-repeat;
}

.investment-section::before,
.financial-breakdown-section::before,
.investment-timeline-section::before,
.cost-optimization-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.investment-section::before {
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(135deg, rgba(11, 61, 32, 0.86) 0%, rgba(27, 94, 32, 0.72) 45%, rgba(201, 162, 39, 0.52) 100%);
}

.financial-breakdown-section::before {
    background: 
        var(--bg-black-mask-layer),
        linear-gradient(135deg, rgba(62, 39, 35, 0.84) 0%, rgba(27, 94, 32, 0.69) 50%, rgba(201, 162, 39, 0.46) 100%);
}

.investment-timeline-section::before {
    background: 
        var(--bg-black-mask-layer),
        var(--jungle-mask);
}

.investment-timeline-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--jungle-vignette);
    pointer-events: none;
}

.cost-optimization-section::before {
    background: 
        var(--bg-black-mask-layer),
        var(--jungle-mask);
}

.cost-optimization-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--jungle-vignette);
    pointer-events: none;
}

.investment-section > .container,
.financial-breakdown-section > .container,
.investment-timeline-section > .container,
.cost-optimization-section > .container {
    position: relative;
    z-index: 1;
}

.investment-section .investment-title {
    color: rgba(245, 245, 220, 0.96);
}

.investment-section .title-highlight {
    background: linear-gradient(135deg, rgba(107, 191, 115, 1), rgba(201, 162, 39, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investment-section .investment-subtitle,
.financial-breakdown-section .breakdown-header p,
.investment-timeline-section .visualization-header p,
.cost-optimization-section .cost-optimization-header p {
    color: rgba(245, 245, 220, 0.82);
}

.financial-breakdown-section .breakdown-header h3,
.investment-timeline-section .visualization-header h3,
.cost-optimization-section .cost-optimization-header h3 {
    color: rgba(245, 245, 220, 0.96);
}

.investment-section .overview-card,
.financial-breakdown-section .breakdown-section,
.financial-breakdown-section .financial-summary-card,
.investment-timeline-section .timeline-content,
.cost-optimization-section .optimization-card {
    background: rgba(11, 61, 32, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(76, 175, 80, 0.24);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.investment-timeline-section .timeline-content {
    border-radius: 16px;
    padding: 20px 16px;
}

.cost-optimization-section .optimization-card-wide {
    background: rgba(11, 61, 32, 0.54);
    border-color: rgba(76, 175, 80, 0.28);
}

.investment-section .card-header h3,
.investment-section .amount,
.investment-section .feature-item,
.financial-breakdown-section .section-header h4,
.financial-breakdown-section .cost-category,
.financial-breakdown-section .total-label,
.financial-breakdown-section .setup-content h5,
.financial-breakdown-section .investment-label,
.financial-breakdown-section .summary-item-label,
.investment-timeline-section .timeline-content h4,
.cost-optimization-section .optimization-card h4,
.financial-breakdown-section .financial-summary-header h4,
.financial-breakdown-section .buffer-estimate-note strong {
    color: rgba(245, 245, 220, 0.9);
}

.investment-section .card-description,
.investment-section .period,
.financial-breakdown-section .cost-description,
.financial-breakdown-section .setup-content p,
.financial-breakdown-section .investment-note,
.investment-timeline-section .timeline-content p,
.investment-timeline-section .metric-label,
.cost-optimization-section .optimization-card p,
.financial-breakdown-section .financial-summary-badge,
.financial-breakdown-section .buffer-estimate-label,
.financial-breakdown-section .buffer-estimate-note p {
    color: rgba(245, 245, 220, 0.78);
}

.investment-section .currency,
.financial-breakdown-section .cost-amount,
.financial-breakdown-section .total-amount,
.financial-breakdown-section .investment-amount,
.financial-breakdown-section .summary-cost,
.investment-timeline-section .metric-value,
.investment-section .feature-item i,
.financial-breakdown-section .cost-category i {
    color: var(--accent-text-bright);
}

.financial-breakdown-section .cost-item,
.financial-breakdown-section .setup-item,
.investment-timeline-section .timeline-metric,
.financial-breakdown-section .financial-summary-row {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.25);
}

.financial-breakdown-section .cost-total,
.financial-breakdown-section .setup-total,
.financial-breakdown-section .buffer-estimate-card {
    background: rgba(11, 61, 32, 0.48);
    border-color: rgba(76, 175, 80, 0.28);
}

.financial-breakdown-section .buffer-estimate-note {
    background: rgba(11, 61, 32, 0.51);
    border-color: rgba(76, 175, 80, 0.22);
}

.financial-breakdown-section .section-header {
    border-bottom-color: rgba(76, 175, 80, 0.25);
}

.financial-breakdown-section .section-badge,
.cost-optimization-section .cost-optimization-badge {
    background: rgba(76, 175, 80, 0.2);
    color: var(--accent-text-bright);
}

.financial-breakdown-section .financial-summary-row.highlight {
    background: rgba(76, 175, 80, 0.28);
}

.cost-optimization-section .optimization-number {
    color: rgba(76, 175, 80, 0.25);
}

.financial-breakdown-section .detailed-breakdown,
.investment-timeline-section .impact-visualization,
.cost-optimization-section .cost-optimization {
    margin-bottom: 0;
}

.investment-section .financial-overview {
    margin-bottom: 0;
}

.investment-hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.investment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.investment-title {
    font-size: clamp(36px, 5vw, 52px);
    margin: 0 0 20px;
    font-weight: 800;
    line-height: 1.2;
}

.title-highlight {
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investment-subtitle {
    font-size: 22px;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.financial-overview {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-card {
    background: var(--panel);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #28a745, #20c997);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.overview-card.initial::before {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.overview-card.monthly::before {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.overview-card.impact::before {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    transition: all 0.3s ease;
}

.overview-card.initial .card-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.overview-card.monthly .card-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.overview-card.impact .card-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.overview-card:hover .card-icon {
    transform: scale(1.1);
}

.card-header h3 {
    font-size: 26px;
    color: var(--text);
    margin: 0;
    font-weight: 700;
}

.card-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.currency {
    font-size: 26px;
    color: var(--brand);
    font-weight: 700;
}

.amount {
    font-size: 52px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.period {
    font-size: 16px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-description {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 24px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
}

.feature-item i {
    color: var(--brand);
    font-size: 18px;
}

.detailed-breakdown {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.breakdown-header {
    text-align: center;
    margin-bottom: 60px;
}

.breakdown-header h3 {
    font-size: 40px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 700;
}

.breakdown-header p {
    font-size: 20px;
    color: var(--muted);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.breakdown-section {
    background: var(--panel);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
}

.breakdown-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(40, 167, 69, 0.1);
}

.section-header h4 {
    font-size: 26px;
    color: var(--text);
    margin: 0;
    font-weight: 700;
}

.section-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--brand);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
}

.cost-item:hover {
    background: rgba(40, 167, 69, 0.1);
    transform: translateX(5px);
}

.cost-category {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text);
}

.cost-category i {
    color: var(--brand);
    font-size: 18px;
}

.cost-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.cost-description {
    font-size: 14px;
    color: var(--muted);
}

.cost-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand);
}

.cost-total {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 16px;
    padding: 24px;
    border: 2px solid rgba(40, 167, 69, 0.2);
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.total-line:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 2px solid rgba(40, 167, 69, 0.2);
    font-weight: 700;
}

.total-label {
    font-size: 18px;
    color: var(--text);
    font-weight: 600;
}

.total-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand);
}

.buffer-estimate-card {
    margin-top: 20px;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.12), rgba(255, 193, 7, 0.08));
    border: 2px solid rgba(40, 167, 69, 0.25);
    position: relative;
    overflow: hidden;
}

.buffer-estimate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #ffc107, #20c997);
}

.buffer-estimate-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.buffer-estimate-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.3);
}

.buffer-estimate-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.buffer-estimate-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
}

.buffer-estimate-amount {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.buffer-estimate-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(40, 167, 69, 0.15);
}

.buffer-estimate-note i {
    color: #ffc107;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.buffer-estimate-note p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
}

.buffer-estimate-note strong {
    color: var(--text);
}

.setup-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.setup-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
}

.setup-item:hover {
    background: rgba(40, 167, 69, 0.1);
    transform: translateX(5px);
}

.setup-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 22px;
    flex-shrink: 0;
}

.setup-content h5 {
    font-size: 18px;
    color: var(--text);
    margin: 0 0 4px;
    font-weight: 700;
}

.setup-content p {
    font-size: 16px;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
}

.setup-total {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 16px;
    padding: 24px;
    border: 2px solid rgba(40, 167, 69, 0.2);
    text-align: center;
}

.total-investment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.investment-label {
    font-size: 18px;
    color: var(--text);
    font-weight: 600;
}

.investment-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--brand);
}

.investment-note {
    font-size: 16px;
    color: var(--muted);
    margin: 0;
    font-style: italic;
}

.financial-summary {
    max-width: 640px;
    margin: 24px auto 0;
}

.financial-summary-card {
    background: var(--panel);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(40, 167, 69, 0.15);
}

.financial-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(40, 167, 69, 0.12);
}

.financial-summary-header h4 {
    font-size: 18px;
    color: var(--text);
    margin: 0;
    font-weight: 700;
}

.financial-summary-badge {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--muted);
}

.financial-summary-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.financial-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(40, 167, 69, 0.04);
}

.financial-summary-row.highlight {
    background: rgba(40, 167, 69, 0.1);
    font-weight: 600;
}

.summary-item-label {
    font-size: 15px;
    color: var(--text);
}

.summary-cost {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand);
    white-space: nowrap;
    text-align: right;
}

.financial-summary-row.highlight .summary-cost {
    font-size: 17px;
}

.impact-visualization {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.visualization-header {
    text-align: center;
    margin-bottom: 60px;
}

.visualization-header h3 {
    font-size: 40px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 700;
}

.visualization-header p {
    font-size: 20px;
    color: var(--muted);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(135deg, #28a745, #20c997);
    z-index: 1;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 26px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.timeline-content h4 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 22px;
    color: var(--text);
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.timeline-content p {
    font-size: 16px;
    color: var(--muted);
    margin: 0 0 20px;
    line-height: 1.5;
}

.timeline-metric {
    background: rgba(40, 167, 69, 0.1);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.metric-value {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost-optimization {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.cost-optimization-header {
    text-align: center;
    margin-bottom: 48px;
}

.cost-optimization-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--brand);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.cost-optimization-header h3 {
    font-size: 40px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 700;
}

.cost-optimization-header p {
    font-size: 20px;
    color: var(--muted);
    margin: 0 auto;
    max-width: 680px;
    line-height: 1.6;
}

.optimization-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.optimization-card {
    position: relative;
    background: var(--panel);
    border-radius: 18px;
    padding: 28px 28px 28px 32px;
    border: 2px solid rgba(40, 167, 69, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.optimization-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #28a745, #20c997);
}

.optimization-card:hover {
    transform: translateY(-4px);
    border-color: rgba(40, 167, 69, 0.3);
    box-shadow: 0 14px 36px rgba(40, 167, 69, 0.12);
}

.optimization-card-wide {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.06), rgba(32, 201, 151, 0.05));
    border-color: rgba(40, 167, 69, 0.2);
}

.optimization-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 36px;
    font-weight: 800;
    color: rgba(40, 167, 69, 0.12);
    line-height: 1;
}

.optimization-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 16px;
}

.optimization-card h4 {
    font-size: 20px;
    color: var(--text);
    margin: 0 0 10px;
    font-weight: 700;
}

.optimization-card p {
    font-size: 16px;
    color: var(--muted);
    margin: 0;
    line-height: 1.65;
}

.optimization-wide-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.optimization-wide-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.optimization-wide-top .optimization-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.optimization-wide-top h4 {
    margin: 0;
}

.call-to-action-financial {
    background: rgba(11, 61, 32, 0.61);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(76, 175, 80, 0.35);
    border-radius: 24px;
    padding: 60px 40px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.call-to-action-financial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(160deg, rgba(11, 61, 32, 0.66) 0%, transparent 50%, rgba(27, 94, 32, 0.51) 100%),
        radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.call-to-action-financial .cta-content h3 {
    font-size: 40px;
    color: rgba(245, 245, 220, 0.96);
    margin: 0 0 20px;
    font-weight: 700;
}

.call-to-action-financial .cta-content p {
    font-size: 20px;
    color: rgba(245, 245, 220, 0.82);
    margin: 0 auto 40px;
    max-width: 600px;
    line-height: 1.6;
}

.cta-content h3 {
    font-size: 40px;
    color: white; margin: 0 0 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(40, 167, 69, 0.5);
}

.call-to-action-financial .btn-primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.35);
    border-color: rgba(76, 175, 80, 0.5);
}

.call-to-action-financial .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    border-color: var(--accent-text-bright);
}

.call-to-action-financial .btn-secondary {
    background: rgba(0, 0, 0, 0.2);
    color: var(--accent-text-bright);
    border: 2px solid rgba(76, 175, 80, 0.45);
}

.call-to-action-financial .btn-secondary:hover {
    background: rgba(40, 167, 69, 0.35);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-color: rgba(76, 175, 80, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: #2c3e50;
    color: var(--brand);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border-color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .breakdown-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .timeline-container::before {
        display: none;
    }

    .optimization-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .optimization-card-wide {
        grid-column: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .investment-section,
    .financial-breakdown-section,
    .investment-timeline-section,
    .cost-optimization-section {
        padding: 60px 0;
    }
    
    .overview-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .overview-card {
        padding: 30px 20px;
    }
    
    .breakdown-section {
        padding: 30px 20px;
    }

    .financial-summary-card {
        padding: 14px 16px;
    }

    .cost-optimization-header h3 {
        font-size: 32px;
    }

    .cost-optimization-header p {
        font-size: 18px;
    }

    .optimization-card {
        padding: 22px 20px 22px 24px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .call-to-action-financial {
        padding: 40px 20px;
        margin-top: 50px;
    }
    
    .call-to-action-financial .cta-content h3,
    .cta-content h3 {
        font-size: 32px;
    }
    
    .call-to-action-financial .cta-content p,
    .cta-content p {
        font-size: 18px;
    }

    .investment-timeline-section .timeline-container {
        align-items: center;
    }

    .investment-timeline-section .timeline-item {
        text-align: center;
        width: 100%;
        max-width: 360px;
    }

    .investment-timeline-section .timeline-content,
    .investment-timeline-section .timeline-metric {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .investment-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .investment-title {
        font-size: 26px;
    }
    
    .investment-subtitle {
        font-size: 18px;
    }
    
    .amount {
        font-size: 40px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* News Page Styles */
.news-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.news-hero.page-hero-bg::before {
    background: 
       
        var(--bg-black-mask-layer),
        var(--jungle-mask);
}

.news-hero.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--jungle-vignette);
    pointer-events: none;
    z-index: 0;
}

.news-hero:not(.page-hero-bg)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(32, 201, 151, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.news-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.news-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.news-hero .hero-title {
    font-size: clamp(36px, 5vw, 52px);
    color: #fff;
    margin: 0 0 20px;
    font-weight: 800;
    line-height: 1.2;
}

.news-hero .hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.news-categories:not(.page-content-bg) {
    padding: 40px 0;
   
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-categories.page-content-bg {
    padding: 40px 0;
    border-bottom: none;
}

.news-categories-inline {
    padding: 0;
    margin: -20px 0 48px;
    background: transparent;
    border-bottom: none;
}

.news-categories-inline .categories-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.news-categories-inline .category-btn {
    text-decoration: none;
}

.categories-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--panel);
    border: 2px solid transparent;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-btn:hover,
.category-btn.active {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.featured-news {
    padding: 80px 0;
    background: var(--panel);
}

.news-grid-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-grid-section .section-header h2 {
    font-size: 40px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 700;
}

.news-grid-section .section-header p {
    font-size: 20px;
    color: var(--muted);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.main-featured {
    grid-row: 1 / 3;
}

.featured-article {
    background: var(--panel);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.article-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.main-featured .article-image {
    height: 400px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article:hover .article-image img {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.8);
    color: #2c3e50;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.article-badge i {
    color: var(--brand);
}

.article-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.article-category {
    background: rgba(40, 167, 69, 0.1);
    color: var(--brand);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.article-date {
    font-size: 16px;
    color: var(--muted);
}

.article-title {
    font-size: 26px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 700;
    line-height: 1.3;
}

.secondary-featured .article-title {
    font-size: 20px;
}

.article-excerpt {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 20px;
}

.article-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.article-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand);
}

.article-stats .stat i {
    font-size: 18px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateX(5px);
}

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

.read-more-btn:hover i {
    transform: translateX(3px);
}

.news-grid-section:not(.page-content-bg) {
    padding: 80px 0;
    background: var(--light);
}

.news-grid-section.page-content-bg {
    padding: 80px 0;
}

.news-grid-section.page-content-bg .section-header h2 {
    color: rgba(245, 245, 220, 0.96);
}

.news-grid-section.page-content-bg .section-header p {
    color: rgba(245, 245, 220, 0.82);
}

.news-grid-section.page-content-bg .news-categories-inline .category-btn {
    background: rgba(11, 61, 32, 0.51);
    border: 2px solid rgba(76, 175, 80, 0.28);
    color: var(--accent-text-bright);
}

.news-grid-section.page-content-bg .news-categories-inline .category-btn i,
.news-grid-section.page-content-bg .news-categories-inline .category-btn span {
    color: var(--accent-text-bright);
}

.news-grid-section.page-content-bg .news-categories-inline .category-btn:hover,
.news-grid-section.page-content-bg .news-categories-inline .category-btn.active {
    background: rgba(40, 167, 69, 0.5);
    border-color: rgba(76, 175, 80, 0.55);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.news-grid-section.page-content-bg .news-categories-inline .category-btn:hover i,
.news-grid-section.page-content-bg .news-categories-inline .category-btn:hover span,
.news-grid-section.page-content-bg .news-categories-inline .category-btn.active i,
.news-grid-section.page-content-bg .news-categories-inline .category-btn.active span {
    color: #ffffff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    background: var(--panel);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .card-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
}

.card-content {
    padding: 24px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-category {
    background: rgba(40, 167, 69, 0.1);
    color: var(--brand);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.card-date {
    font-size: 14px;
    color: var(--muted);
}

.card-title {
    font-size: 20px;
    color: var(--text);
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.4;
}

.card-excerpt {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--muted);
}

.card-author i {
    color: var(--brand);
}

.card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--brand);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--panel);
    border: 2px solid var(--brand);
    color: var(--brand);
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--brand);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand), #20c997);
    position: relative;
    overflow: hidden;
}

.newsletter-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.signup-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.signup-text h3 {
    font-size: 32px;
    color: #2c3e50;
    margin: 0 0 12px;
    font-weight: 700;
}

.signup-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.signup-form {
    flex: 1;
    max-width: 400px;
}

.signup-form .form-group {
    display: flex;
    gap: 12px;
    background: var(--panel);
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.signup-form input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 18px;
    background: transparent;
    outline: none;
    color: var(--text);
}

.signup-form input::placeholder {
    color: var(--muted);
}

.signup-btn {
    background: var(--brand);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .main-featured {
        grid-row: auto;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .signup-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .signup-form {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .news-hero {
        padding: 100px 0 60px;
    }
    
    .featured-news,
    .news-grid-section,
    .newsletter-signup {
        padding: 60px 0;
    }
    
    .categories-nav {
        gap: 12px;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 15px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-title {
        font-size: 22px;
    }
    
    .secondary-featured .article-title {
        font-size: 18px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .signup-form .form-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .signup-form input {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .signup-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .news-hero .hero-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .news-hero .hero-title {
        font-size: 26px;
    }
    
    .news-hero .hero-subtitle {
        font-size: 18px;
    }
    
    .categories-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .article-image {
        height: 200px;
    }
    
    .main-featured .article-image {
        height: 250px;
    }
    
    .article-content {
        padding: 16px;
    }
    
    .article-title {
        font-size: 20px;
    }
    
    .article-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .signup-text h3 {
        font-size: 26px;
    }
    
    .signup-text p {
        font-size: 16px;
    }
}

/* Topic Pages Styles */
.topic-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.topic-hero.page-hero-bg::before {
    background: 
       
        var(--bg-black-mask-layer),
        var(--jungle-mask);
}

.topic-hero.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--jungle-vignette);
    pointer-events: none;
    z-index: 0;
}

.topic-hero:not(.page-hero-bg)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(40, 167, 69, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 53, 69, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.topic-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.topic-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.topic-hero .hero-title {
    font-size: clamp(40px, 6vw, 62px);
    color: #fff;
    margin: 0 0 16px;
    font-weight: 800;
    line-height: 1.2;
}

.topic-hero .hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    font-weight: 500;
    line-height: 1.6;
}

.topic-content {
    padding: 80px 0;
}

/* Topic page — multi-section layout */
.topic-section {
    position: relative;
}

.topic-section-head {
    text-align: center;
    margin-bottom: 36px;
}

.topic-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-text-bright);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.topic-section-head h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 40px);
    font-weight: normal;
    color: rgba(245, 245, 220, 0.96);
}

.topic-section-body {
    background: var(--panel);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.topic-section-body .content-section {
    margin-bottom: 0;
}

.topic-section-body .content-section h2 {
    display: none;
}

.fence-type-card {
    background: rgba(40, 167, 69, 0.06);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.fence-type-card h4 {
    font-size: 20px;
    color: var(--text);
    margin: 0 0 12px;
    font-weight: 700;
}

.fence-type-card p,
.fence-type-card ul {
    margin-bottom: 12px;
}

.fence-type-card ul:last-child {
    margin-bottom: 0;
}

.topic-photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.topic-photo-strip img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    display: block;
}

/* Page heroes & sponsor section — jungle mask overlay */
.sponsor-donation-section.page-content-bg::before,
.support-hero.page-hero-bg::before,
.article-hero.page-hero-bg::before {
    background: 
       
        var(--bg-black-mask-layer),
        var(--jungle-mask);
}

.sponsor-donation-section.page-content-bg::after,
.support-hero.page-hero-bg::after,
.article-hero.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--jungle-vignette);
    pointer-events: none;
    z-index: 0;
}

.content-wrapper {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}

.main-content {
    background: var(--panel);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-section {
    margin-bottom: 50px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 36px;
    color: var(--text);
    margin: 0 0 24px;
    font-weight: 700;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--brand);
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 24px;
}

.content-section p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
}

.stats-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(40, 167, 69, 0.1));
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--brand);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 20px;
    color: var(--text);
    margin: 0 0 8px;
    font-weight: 700;
}

.stat-info p {
    font-size: 16px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.stat-num {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.page-content-bg .topic-section-body .stat-num {
    color: rgba(245, 245, 220, 0.98);
}

.page-content-bg .topic-section-body .fence-type-card h4 .stat-num {
    color: #d4ed9a;
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.cause-card {
    background: var(--panel);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.cause-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--brand);
}

.cause-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 32px;
    margin: 0 auto 20px;
}

.cause-card h3 {
    font-size: 20px;
    color: var(--text);
    margin: 0 0 12px;
    font-weight: 700;
}

.cause-card p {
    font-size: 17px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.impact-item {
    background: rgba(40, 167, 69, 0.05);
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid var(--brand);
}

.impact-item h4 {
    font-size: 22px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 700;
}

.impact-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-item li {
    font-size: 18px;
    color: var(--muted);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.impact-item li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--brand);
    font-size: 16px;
}

.case-study-box {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.05), rgba(40, 167, 69, 0.05));
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(40, 167, 69, 0.2);
    margin-top: 30px;
}

.case-study-header {
    background: var(--brand);
    color: white;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-study-header i {
    font-size: 26px;
}

.case-study-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.case-study-content {
    padding: 30px;
}

.case-study-content p {
    margin-bottom: 16px;
}

.case-study-content h4 {
    font-size: 20px;
    color: var(--text);
    margin: 24px 0 16px;
    font-weight: 700;
}

.case-study-content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.case-study-content li {
    font-size: 18px;
    color: var(--muted);
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.case-study-content li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--brand);
    font-size: 18px;
}

.urgent-note {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.urgent-note i {
    color: #dc3545;
    font-size: 22px;
    margin-top: 2px;
}

.urgent-note strong {
    color: #dc3545;
}

.solutions-list {
    margin-top: 30px;
}

.solution-item {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.solution-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.solution-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand), #20c997);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 26px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.solution-number .stat-num {
    font-size: inherit;
    color: inherit;
}

.solution-content h3 {
    font-size: 22px;
    color: var(--text);
    margin: 0 0 12px;
    font-weight: 700;
}

.solution-content h4 {
    font-size: 19px;
    color: var(--text);
    margin: 20px 0 10px;
    font-weight: 700;
}

.solution-content p {
    font-size: 18px;
    color: var(--muted);
    margin: 0 0 12px;
    line-height: 1.7;
}

.solution-content ul {
    margin: 0 0 12px;
    padding-left: 20px;
    color: var(--muted);
}

.solution-content ul li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--panel);
    border: 2px solid rgba(40, 167, 69, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(5px);
    border-color: var(--brand);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.benefit-card i {
    color: var(--brand);
    font-size: 26px;
}

.benefit-card p {
    margin: 0;
    font-size: 17px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.5;
}

/* Monitoring showcase overrides (scoped above generic benefit-card rules) */
.monitoring-showcase .benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 0;
}

.monitoring-showcase .benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(40, 167, 69, 0.3);
    box-shadow: none;
}

.monitoring-showcase .benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.monitoring-showcase .benefit-card i {
    color: #fff;
}

.cta-section {
    background: linear-gradient(135deg, var(--brand), #20c997);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h3 {
    font-size: 36px;
    color: white;
    margin: 0 0 16px;
    font-weight: 700;
}

.cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* White buttons on green CTA bands (topic pages) — scoped, not global */
.cta-section .btn-primary {
    background: #fff;
    color: var(--brand);
    border-color: white;
}

.cta-section .btn-primary:hover {
    background: #f0fff4;
    color: #1e7e34;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--brand);
    transform: translateY(-3px);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: var(--panel);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
    font-size: 22px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(40, 167, 69, 0.2);
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-link:hover {
    background: var(--brand);
    color: white;
    transform: translateX(5px);
    border-color: var(--brand);
}

.related-link i {
    color: var(--brand);
    font-size: 20px;
    transition: color 0.3s ease;
}

.related-link:hover i {
    color: #2c3e50;
}

.emergency-widget {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    text-align: center;
}

.emergency-widget h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.emergency-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.emergency-icon i {
    font-size: 36px;
    color: white;
}

.emergency-widget p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 16px;
}

.emergency-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.emergency-number:hover {
    text-decoration: underline;
}

.emergency-note {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-widget {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .topic-hero {
        padding: 120px 0 60px;
    }
    
    .topic-content {
        padding: 60px 0;
    }
    
    .main-content,
    .topic-section-body {
        padding: 30px 20px;
    }

    .topic-section-head {
        margin-bottom: 28px;
    }

    .topic-photo-strip {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .topic-photo-strip img {
        height: 200px;
    }
    
    .content-section h2 {
        font-size: 29px;
    }
    
    .lead-text {
        font-size: 20px;
    }
    
    .stats-highlight {
        grid-template-columns: 1fr;
    }
    
    .causes-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .monitoring-showcase .benefits-grid {
        grid-template-columns: 1fr;
    }

    .monitoring-showcase .benefit-card:nth-child(n) {
        grid-column: span 1;
    }
    
    .cta-section {
        padding: 40px 24px;
    }
    
    .cta-section h3 {
        font-size: 29px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .sidebar {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .topic-hero .hero-title {
        font-size: 32px;
    }
    
    .topic-hero .hero-subtitle {
        font-size: 18px;
    }
    
    .main-content,
    .topic-section-body {
        padding: 24px 16px;
    }
    
    .stat-box {
        flex-direction: column;
        text-align: center;
    }
    
    .case-study-header {
        padding: 16px 20px;
    }
    
    .case-study-content {
        padding: 20px;
    }
    
    .solution-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .emergency-number {
        font-size: 26px;
    }
}

.crisis-section .crisis-stats .stat-item {
    background: rgba(11, 61, 32, 0.38);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(76, 175, 80, 0.28);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.crisis-section .crisis-stats .stat-number { color: rgba(255, 140, 140, 0.95); }
.crisis-section .crisis-stats .stat-label { color: rgba(245, 245, 220, 0.8); }

/* Utilities */
.muted { color: var(--muted); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { background: rgba(40, 167, 69, 0.1); padding: 8px 12px; border-radius: 999px; font-size: 15px; color: var(--brand); border: 1px solid rgba(40, 167, 69, 0.2); font-weight: 500; }
