:root {
    /* Premium Color Palette */
    --primary: #0f2d1f;
    --primary-light: #1b4332;
    --secondary: #2d8a5a;
    --accent: #c8853a;
    --accent-light: #e9c46a;
    --bg-cream: #faf8f3;
    --bg-white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --text-main: #1a1a1a;
    --text-muted: #555555;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-bengali: 'Hind Siliguri', sans-serif;

    /* UI Tokens */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 15px 45px rgba(15, 45, 31, 0.08);
    --shadow-lg: 0 30px 70px rgba(15, 45, 31, 0.15);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
    --container-width: 1400px;
}

/* Global Foundations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Common Layouts */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
}

.section-dark {
    background: var(--primary);
    color: white;
}

.section-title {
    margin-bottom: 80px;
    text-align: center;
}

.section-title.left {
    text-align: left;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-dark .section-title h2 {
    color: white;
}

/* Grid Systems */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Typography Helpers */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.serif-italic {
    font-style: italic;
    font-weight: 400;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin-bottom: 1rem;
}

.section-dark .eyebrow {
    color: var(--accent-light);
}

/* Language Management */
.bn-content {
    display: none;
}

body.lang-bn .en-content {
    display: none;
}

body.lang-bn .bn-content {
    display: block;
}

body.lang-bn h1,
body.lang-bn h2,
body.lang-bn h3,
body.lang-bn .impact-num {
    font-family: var(--font-bengali);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    z-index: 1100;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 75px;
    background: var(--glass);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(15, 45, 31, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 45px;
    border-radius: 6px;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo-title,
.mobile-menu-btn.active~.logo .logo-title,
.navbar:has(.nav-links.active) .logo-title {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    position: relative;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-links a {
    color: var(--primary);
}

.nav-links a.active,
.nav-links a:hover {
    opacity: 1;
    color: var(--accent-light);
}

.navbar.scrolled .nav-links a.active,
.navbar.scrolled .nav-links a:hover {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-light);
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-links a::after {
    background: var(--secondary);
}

.nav-links a.active::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.navbar:not(.scrolled) .nav-cta .btn-primary {
    background: white;
    color: var(--primary);
}

.navbar:not(.scrolled) .nav-cta .btn-primary:hover {
    background: var(--accent-light);
    color: var(--primary);
}

.btn-gold {
    background: var(--accent);
    color: white;
}

.btn-gold:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.navbar.scrolled .lang-switcher {
    background: rgba(15, 45, 31, 0.05);
}

.lang-btn {
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 800;
    color: white;
    transition: var(--transition-fast);
}

.navbar.scrolled .lang-btn {
    color: var(--primary);
}

.lang-btn.active {
    background: white;
    color: var(--primary);
}

.navbar.scrolled .lang-btn.active {
    background: var(--primary);
    color: white;
}

/* Hero Component */
.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 0 8% 0 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 0.95;
    margin-bottom: 25px;
    color: white;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: 10s linear;
}

.hero:hover .hero-image img {
    transform: scale(1.1);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 15%);
}

/* Global Reveal System */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-white);
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    margin-top: -80px;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.impact-card {
    padding: 50px 30px;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.impact-card:last-child {
    border-right: none;
}

.impact-card:hover {
    background: var(--bg-cream);
}

.impact-num {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-heading);
    display: block;
}

.impact-card p {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Content Cards */
.card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.card-img-wrap {
    height: 280px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card:hover .card-img-wrap img {
    transform: scale(1.1);
}

.card-body {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Transparency / Charts */
.stat-bar-group {
    margin-bottom: 25px;
}

.stat-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--primary);
}

.stat-track {
    height: 10px;
    background: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: var(--secondary);
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.chart-box {
    background: white;
    padding: 50px;
    border-radius: 40px;
    box-shadow: var(--shadow-md);
}

/* Map Component */
.map-placeholder {
    width: 100%;
    background: var(--light);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
    display: block;
}

.map-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Team Grid (About Page) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.volunteer-card {
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.volunteer-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.volunteer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Milestone Timeline (About Page) */
.milestone-row {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.milestone-year {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.2;
    min-width: 100px;
    font-family: var(--font-heading);
}

.milestone-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Gallery (Gallery Page) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 350px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 45, 31, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition-fast);
    padding: 30px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Blog Filters (Blog Page) */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    background: white;
    border: 1px solid #ddd;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Forms (Volunteer / Contact) */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(45, 138, 90, 0.1);
}

/* FAQ Accordion (Volunteer Page) */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-question {
    padding: 25px 35px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: #fcfcfc;
}

.faq-icon {
    transition: transform 0.4s;
    color: var(--secondary);
}

.faq-answer {
    padding: 0 35px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-answer {
    padding-bottom: 30px;
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Donation Impact (Donate Page) */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.amount-btn {
    padding: 18px;
    border: 2px solid #eee;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 800;
    text-align: center;
    transition: 0.3s;
}

.amount-btn.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.impact-display-box {
    background: var(--bg-white);
    border: 2px dashed var(--secondary);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
}

/* Footer Section */
.footer {
    background: var(--primary);
    color: white;
    padding: 100px 0 50px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.footer h4 {
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-bottom: 30px;
}

.footer-links li {
    margin-bottom: 15px;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 25px;
}

/* WhatsApp Float */
.wa-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.wa-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* --- RESPONSIVE DESIGN SYSTEM --- */

/* Mobile Menu Button (Hamburger) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1200;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 10px;
    transition: var(--transition-smooth);
    transform-origin: center;
}

.navbar.scrolled .mobile-menu-btn span,
.mobile-menu-btn.active span {
    background-color: var(--primary);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Large Screens */
@media (min-width: 1441px) {
    .container {
        max-width: 1600px;
    }
}

/* Desktop Defaults */
@media (max-width: 1440px) {
    :root {
        --container-width: 1200px;
    }
}

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }

    .container {
        padding: 0 30px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px;
        transition: var(--transition-smooth);
        z-index: 1100;
        gap: 30px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 2rem;
        color: var(--primary) !important;
    }

    .nav-cta {
        margin-left: auto;
        margin-right: 15px;
        gap: 10px !important;
    }

    .nav-cta .btn-primary {
        display: none !important;
    }

    .hero {
        height: auto;
        min-height: 60vh;
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 140px 30px 60px;
        text-align: center;
        align-items: center;
    }

    .hero-image {
        height: 400px;
    }

    .hero-image::after {
        background: linear-gradient(180deg, var(--primary) 0%, transparent 30%);
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -50px;
    }

    .impact-card {
        padding: 40px 20px;
    }

    .impact-card:nth-child(2) {
        border-right: none;
    }

    .impact-card:nth-child(n+3) {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .section-title h2 {
        font-size: 2.5rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-newsletter form {
        flex-direction: column;
    }

    .parallax-header {
        height: 45vh;
    }

    .vision-mission-cards {
        grid-template-columns: 1fr;
    }

    .timeline-item-premium {
        padding-left: 40px;
    }

    .timeline-dot {
        left: 11px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .logo-title {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .wa-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
    }
}
/* Theme Toggle & Dark Mode */
.theme-toggle {
    background: rgba(255,255,255,0.1);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.navbar.scrolled .theme-toggle {
    background: rgba(15, 45, 31, 0.05);
    color: var(--primary);
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}

.navbar.scrolled .theme-toggle:hover {
    background: rgba(15, 45, 31, 0.1);
}

[data-theme="dark"] {
    --bg-cream: #121212;
    --bg-white: #1e1e1e;
    --glass: rgba(18, 18, 18, 0.85);
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --primary: #4ade80; 
    --primary-light: #22c55e;
    --shadow-md: 0 15px 45px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .section-dark {
    background: #0f2d1f; 
    color: #f0f0f0;
}

[data-theme="dark"] .section-dark .eyebrow {
    color: var(--accent-light);
}

[data-theme="dark"] .card, 
[data-theme="dark"] .chart-box, 
[data-theme="dark"] .faq-item,
[data-theme="dark"] .vision-mission-item {
    background: var(--bg-white);
    border-color: rgba(255,255,255,0.05);
}

[data-theme="dark"] .impact-grid {
    background: var(--bg-white);
}

[data-theme="dark"] .impact-card {
    border-color: rgba(255,255,255,0.05);
}

[data-theme="dark"] .btn-primary {
    background: var(--primary);
    color: #121212;
}

[data-theme="dark"] .btn-primary:hover {
    background: var(--primary-light);
    color: #121212;
}

[data-theme="dark"] .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

[data-theme="dark"] .btn-outline:hover {
    background: var(--primary);
    color: #121212;
}

[data-theme="dark"] .navbar.scrolled .logo-title,
[data-theme="dark"] .navbar.scrolled .nav-links a {
    color: var(--primary);
}

[data-theme="dark"] .navbar:not(.scrolled) .nav-cta .btn-primary, 
[data-theme="dark"] .section-dark .btn-primary {
    background: var(--primary);
    color: #121212;
}

[data-theme="dark"] .navbar:not(.scrolled) .nav-cta .btn-primary:hover {
    background: var(--primary-light);
}

[data-theme="dark"] .footer {
    background: #141414;
}

[data-theme="dark"] .team-avatar,
[data-theme="dark"] .map-placeholder {
    background: #2a2a2a;
    border-color: #2a2a2a;
}
