﻿html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    max-width: 100vw;
}

:root {
    --primary-color: #27ae60;
    --primary-dark: #219150;
    --success-green: #2ecc71;
    /* Vivid green for accents */
    --secondary-color: #2980b9;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --background-color: #ffffff;
    --section-bg: #f9f9f9;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   TOP SCROLLING TICKER
   ========================================================================== */
#top-ticker-bar {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    /* Green background */
    color: #ffffff;
    font-size: 0.9rem;
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    margin: 0 !important;
    z-index: 2005;
    /* Above header */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#top-ticker-bar .ticker-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

#top-ticker-bar .ticker-label {
    background: #ffffff;
    /* White label */
    color: #27ae60;
    padding: 4px 12px;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 4px;
    margin-right: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#top-ticker-bar .ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

#top-ticker-bar .ticker-content {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 18s linear infinite;
}

#top-ticker-bar .ticker-content:hover {
    animation-play-state: paused;
}

#top-ticker-bar .ticker-content span {
    display: inline-flex;
    align-items: center;
    padding-right: 50px;
    font-weight: 600;
    white-space: nowrap;
}

#top-ticker-bar .ticker-content span::after {
    content: "|";
    margin-left: 50px;
    opacity: 0.5;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   HIGH-FIDELITY STANDARDIZED HEADER
   ========================================================================== */
.main-header {
    position: relative;
    width: 100%;
    z-index: 2100;
    background: #ffffff;
    transition: box-shadow 0.3s ease, padding 0.3s ease;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header .container {
    max-width: 1600px;
    /* Wider container for header */
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 2001;
}

.logo-icon {
    width: 160px;
    height: 80px;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

.main-header.scrolled .logo-icon {
    width: 120px;
    height: 60px;
}


/* Desktop Navigation */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    /* Slightly punchier gap */
}

/* Middle Layout: Logo - [Gap] - Menu - [Auto] - Buttons */
.nav-menu {
    margin-left: 60px;
    margin-right: auto;
}

.nav-menu a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-header.scrolled .nav-menu a {
    color: #576574;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color) !important;
}

.main-header.scrolled .nav-menu a:hover,
.main-header.scrolled .nav-menu a.active {
    color: var(--primary-color) !important;
}


/* Dropdown Styles */
.nav-menu ul li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    pointer-events: none;
    display: block !important;
    /* Override flex if inherited */
    border: 1px solid #e2e8f0;
}

.nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #0f172a !important;
    /* Force dark color */
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 6px;
    margin: 0 5px;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
    color: var(--primary-color) !important;
    padding-left: 15px;
    /* Slight nudge effect */
}

/* Hide underline for dropdown items */
.dropdown-menu a::after {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f8fafc;
    border-radius: 12px;
    color: #475569;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid #e2e8f0;
}

.cart-icon-btn:hover {
    background: #f1f5f9;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Cart Dropdown Styles */
.cart-wrapper {
    position: relative;
    z-index: 2200;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-wrapper:hover .cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Little Arrow */
.cart-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-dropdown-content {
    padding: 25px;
}

.cart-dropdown-header {
    margin-bottom: 20px;
}

.cart-dropdown-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    font-family: var(--site-font);
}

.cart-dropdown-empty {
    background: #f1f5f9;
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cart-dropdown-empty .empty-icon {
    width: 50px;
    height: 50px;
    background: #cbd5e1;
    color: #64748b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.cart-dropdown-empty p {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 180px;
}

.cart-dropdown-footer {
    padding-top: 5px;
}

.cart-dropdown-footer .btn-success {
    background: var(--primary-color);
    color: white;
    width: 100%;
    padding: 14px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
}

.cart-dropdown-footer .btn-success:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2);
}

/* Dynamic Mini Cart Items */
.cart-items-mini {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.summary-item-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.summary-item-mini:last-child {
    border-bottom: none;
}

.summary-item-mini .item-img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.summary-item-mini .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-item-mini .item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.summary-item-mini .item-info strong {
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 700;
    display: block;
}

.summary-item-mini .item-info span {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.more-items-text {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .cart-wrapper:hover .cart-dropdown {
        display: none;
    }
}


.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .cart-icon-btn {
    background: #ffffff;
    border-color: #f1f5f9;
}

.mobile-menu-header,
.mobile-actions {
    display: none;
}

.main-header .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.main-header .btn-outline {
    border: 2px solid #e2e8f0;
    color: #0f172a;
}

.main-header.scrolled .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.main-header.scrolled .btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Navbar Donation Button */
.btn-nav-donate {
    background: #e74c3c;
    color: white;
    border: none;
    font-weight: 700;
}

.btn-nav-donate:hover {
    background: #c0392b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    z-index: 2002;
    background: none;
    border: none;
    padding: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #0f172a;
    transition: var(--transition);
    border-radius: 5px;
}

.main-header.scrolled .menu-toggle span {
    background: #0f172a;
}

/* Mobile Nav Overlay */
@media (max-width: 992px) {

    /* Premium Mobile Navigation Drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: #ffffff;
        display: flex !important;
        flex-direction: column;
        padding: 0;
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 2500;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        text-align: left;
    }

    .nav-menu.active {
        right: 0;
        transform: translateX(0);
    }

    /* Streamlined Header */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        background: #ffffff;
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 10px;
    }

    /* Add "Menü" title via pseudo-element or just keep standard */
    .mobile-menu-header::before {
        content: 'MENÜ';
        font-weight: 800;
        font-size: 1.1rem;
        color: #1e293b;
        letter-spacing: 1px;
    }

    .mobile-close-btn {
        background: #f1f5f9;
        border: none;
        font-size: 1.2rem;
        color: #64748b;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        transition: all 0.2s ease;
    }

    .mobile-close-btn:active {
        background: #e2e8f0;
        color: #ef4444;
    }

    /* Menu List Layout */
    .nav-menu ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        /* Remove gap for border separation */
        padding: 0;
        margin: 0;
        width: 100%;
        overflow-y: auto;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #f8fafc;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 24px;
        font-size: 1rem;
        font-weight: 600;
        color: #334155 !important;
        text-transform: none;
        /* Changed from uppercase for cleaner look */
        border-radius: 0;
        width: 100%;
        transition: all 0.2s ease;
        text-align: left;
        letter-spacing: 0.2px;
        position: relative;
    }

    /* Premium Active State (Modern Left Border) */
    .nav-menu a.active {
        color: var(--primary-color) !important;
        background: #f0fdf4 !important;
        font-weight: 700;
        border-left: 4px solid var(--primary-color);
        padding-left: 20px;
        /* Compensate for border */
    }

    .nav-menu a.active::after {
        display: none !important;
    }

    /* Dropdown Aesthetics */
    .dropdown>a i {
        margin-left: auto;
        font-size: 0.9rem;
        color: #cbd5e1;
        transition: transform 0.3s ease;
    }

    .dropdown.active>a {
        background: #f8fafc;
        color: #1e293b !important;
    }

    .dropdown.active>a i {
        transform: rotate(180deg);
        color: var(--primary-color);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: none !important;
        background: #fcfcfc;
        box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
        border: none;
        padding: 5px 0;
    }

    .dropdown.active>.dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li {
        border-bottom: none;
    }

    .dropdown-menu li a {
        padding: 14px 24px 14px 40px;
        /* Indented */
        font-size: 0.95rem;
        color: #64748b !important;
        font-weight: 500;
        background: transparent !important;
    }

    .dropdown-menu li a:active {
        color: var(--primary-color) !important;
        background: #f1f5f9 !important;
    }

    /* Mobile CTA Area - Grid Layout */
    .mobile-actions {
        margin-top: auto;
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "cart lang"
            "login login"
            "donate donate";
        gap: 12px;
        width: 100%;
        padding: 24px;
        background: #ffffff;
        border-top: 1px solid #f1f5f9;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.03);
    }

    /* Area Assignments */
    .mobile-actions .cart-wrapper {
        grid-area: cart;
    }

    .mobile-actions .lang-switcher {
        grid-area: lang;
    }

    .mobile-actions .btn-outline {
        grid-area: login;
    }

    .mobile-actions .btn-nav-donate {
        grid-area: donate;
    }

    /* Fallback if elements are missing (e.g. no lang) */
    .mobile-actions:not(:has(.lang-switcher)) {
        grid-template-areas:
            "cart cart"
            "login login"
            "donate donate";
    }

    .mobile-actions .cart-wrapper,
    .mobile-actions .lang-switcher {
        width: 100%;
    }

    .mobile-actions .cart-icon-btn,
    .mobile-actions .lang-btn {
        width: 100%;
        justify-content: center;
        height: 48px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        color: #64748b;
        font-weight: 600;
    }

    .mobile-actions .lang-btn {
        display: flex;
    }

    .mobile-actions .btn {
        width: 100% !important;
        height: 50px;
        justify-content: center;
        padding: 0 !important;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        border-radius: 10px !important;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
    }

    .mobile-actions .btn-outline {
        background: #ffffff !important;
        border: 2px solid #e2e8f0 !important;
        color: #334155 !important;
    }

    .mobile-actions .btn-nav-donate {
        background: #ef4444 !important;
        color: white !important;
        border: none !important;
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 2200;
    }

    .logo-icon {
        width: 120px;
    }
}

/* Page spacing for fixed header */
body {
    padding-top: 0;
}


/* Global Image Reset & Future Proofing */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
}

/* 
   NOT: Slayt resimleri iÃ§in ideal boyut: 1920x1080 (16:9)
   Kutu resimleri iÃ§in ideal boyut: 800x600 (4:3)
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

body {
    font-family: var(--site-font);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 max(20px, 4vw);
    /* Fluid horizontal padding */
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.btn-success {
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-outline {
    border: 2px solid var(--success-green);
    color: var(--success-green);
    background: transparent;
    padding: 8px 15px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Slider Section - Contained Version */
.hero-slider-section {
    padding: 30px 0;
    background: var(--section-bg);
}

.hero-slider-section .container {
    max-width: 1550px;
    /* Expansive view */
}

.hero-slider {
    position: relative;
    height: clamp(300px, 36vw, 550px);
    /* Responsive height: scales with viewport width */
    overflow: hidden;
    border-radius: 25px;
    /* Unified rounding for harmony */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(40px, 10vh, 100px);
    /* Responsive padding */
    color: var(--white);
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-bg picture,
.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.slide .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.slide-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
}

.slide-content-wrapper.single-centered {
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero-actions-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.slide-left {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.hero-actions-group .btn-detail {
    margin-bottom: 0;
}

.hero-actions-group .hero-actions {
    margin-top: 0;
}

.btn-detail,
.btn-red-donation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    height: 60px;
    /* Fixed height for perfect alignment */
}

.btn-detail {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-detail:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-red-donation {
    background: #e74c3c;
    color: var(--white);
    border: 1.5px solid transparent;
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.25);
}

.btn-red-donation:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.4);
}

.slide-right {
    flex: 1;
    text-align: right;
}

.slide-promo-text {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--white);
}

.slide-promo-text span {
    display: block;
    background: #e74c3c;
    padding: 5px 15px;
    display: inline-block;
    margin-top: 10px;
}

.slide-bg picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    transform: translateY(30px);
    transition: all 0.8s ease;
    opacity: 0;
}

.slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-content h1 {
    font-family: var(--site-font);
    font-size: clamp(2.2rem, 8vw, 5rem);
    /* Fluid font size */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-actions .btn {
    font-size: 1.25rem;
    padding: 15px 35px;
    font-weight: 700;
}

.btn-text {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-shadow: 0 2px 5px #000, 0 0 10px #000;
}

.btn-text:hover {
    gap: 12px;
    opacity: 0.9;
}

.hero-content p {
    font-family: var(--site-font);
    font-size: clamp(1rem, 3vw, 1.5rem);
    /* Fluid font size */
    margin-bottom: clamp(20px, 5vh, 40px);
    opacity: 0.95;
    max-width: 700px;
    color: #f0f0f0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Mobile Adjustments for Hero Slider */
@media (max-width: 992px) {
    .hero-slider {
        height: clamp(350px, 50vw, 500px);
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-actions {
        flex-direction: row;
        /* Keep side-by-side but smaller */
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }

    .hero-actions .btn {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .btn-red-donation {
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: clamp(400px, 100vw, 600px);
        /* Responsive for portrait devices */
        border-radius: 15px;
    }

    .slide {
        padding-bottom: 45px;
        /* Lower position, but safe above dots */
        align-items: flex-end;
    }

    .hero-actions-group {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        justify-content: center;
        padding: 0 10px;
    }

    .btn-detail,
    .btn-red-donation {
        flex: 0 1 auto;
        min-width: 120px;
        font-size: 0.7rem !important;
        padding: 5px 10px !important;
        white-space: nowrap;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        border-radius: 8px;
    }

    .btn-detail i,
    .btn-red-donation i {
        font-size: 1rem;
    }
}

.slider-btn:hover {
    background: var(--white);
    color: var(--text-color);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
    .hero-slider {
        height: clamp(350px, 50vw, 500px);
    }

    .slide-promo-text {
        font-size: 2.5rem;
    }

    .slide-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .slide-left,
    .slide-right {
        max-width: 100%;
        text-align: center;
    }

    .slide-right {
        display: none;
        /* Hide promo text on small mobile if it crowds */
    }
}

/* Section Sliders */
.slider-section .container {
    position: relative;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding: 0 40px;
    /* Space for buttons */
}

.slider-track-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex !important;
    /* Override grid */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
}

.section-nav {
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    font-size: 1.2rem;
    color: var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.section-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.section-nav.prev {
    left: -10px;
}

.section-nav.next {
    right: -10px;
}

/* Desktop: 2 items visible */
.slider-track>* {
    flex: 0 0 calc(50% - 15px);
    /* 50% minus half gap */
    width: calc(50% - 15px);
}

/* Importance of Aid */
.importance-of-aid {
    padding: 80px 0;
    background-color: #ffffff;
}

.importance-of-aid .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.importance-content {
    flex: 1;
}

.importance-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.importance-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.importance-image {
    flex: 1;
}

.importance-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.importance-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .faq-layout {
        flex-direction: column;
    }

    .faq-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 30px;
        top: auto;
    }

    /* Navigation Container */
    .faq-nav-container {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .faq-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 5px;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        border-right: none;
        border-bottom: none;
        padding: 5px 0 10px 0;
        /* Reduced vertical padding */
        gap: 8px;
        /* Tighter gap */
        flex: 1;
        /* Take remaining space */
        scroll-behavior: smooth;

        /* Hide Scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    /* Navigation Arrows */
    .nav-arrow {
        background: #fff;
        border: 1px solid #e2e8f0;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        color: var(--primary-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        z-index: 2;
        flex-shrink: 0;
    }

    .nav-prev {
        margin-right: 5px;
    }

    .nav-next {
        margin-left: 5px;
    }

    /* Hide Scrollbar Chrome/Safari/Webkit */
    .faq-nav::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .faq-nav a {
        padding: 8px 16px;
        /* Smaller mobile buttons */
        border-radius: 8px;
        /* More modern radius */
        border: 1px solid #e2e8f0;
        /* Subtle border */
        background: #fff;
        margin-right: 0;
        /* Use gap */
        flex: 0 0 auto;
        font-size: 0.8rem;
        /* Smaller text */
        font-weight: 600;
        color: #64748b;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    }

    /* First and last item padding fix */
    .faq-nav::after {
        content: '';
        padding-right: 20px;
    }

    .faq-nav a.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
        box-shadow: 0 8px 16px rgba(39, 174, 96, 0.25);
        padding-left: 16px;
        /* Reset extra padding */
    }

    .faq-nav a:hover {
        background: #f8fafc;
        transform: translateY(-2px);
    }

    /* Reduce general mobile sizing */
    .white-title h2 {
        font-size: 1.8rem;
    }

    .group-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .accordion-header {
        padding: 15px;
        font-size: 0.95rem;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .faq-search input {
        border-radius: 16px;
        padding: 16px 20px;
        font-size: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        border: 1px solid #e2e8f0;
    }

    .faq-search {
        margin-bottom: 20px;
    }

    .faq-main {
        min-height: auto;
        /* Reset min-height for mobile if needed, or keep for stability */
        padding-left: 0;
    }

    .cta-flex-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .importance-of-aid .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .importance-content h2 {
        font-size: 2rem;
    }
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--section-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.projects.slider-section .project-grid {
    display: flex;
    /* Handled by slider-track */
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.project-img img {
    width: 100%;
    height: 220px;
    /* More compact */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-info h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.15rem;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
}

.card-footer input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #f1f5f9;
    border-radius: 100px;
    outline: none;
    font-size: 1.05rem;
    transition: var(--transition);
    background: #f8fafc;
}

.card-footer input:focus {
    border-color: var(--primary-color);
    background: #fff;
}

.card-footer .btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Impact Statistics & Map */
.impact-stats {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-item {
    background: var(--section-bg);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-info p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Map Styling */
.map-container {
    position: relative;
    width: 70%;
    max-width: 700px;
    margin: 40px auto 0;
    border-radius: 30px;
    overflow: hidden;
    background: #f0f2f5;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.02);
}

.world-map {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    opacity: 0.8;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hotspot */
.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transform: translate(-50%, -50%);
}

.hotspot .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    animation: hotspot-pulse 2s infinite;
    opacity: 0.6;
}

@keyframes hotspot-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.map-tooltip {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
    min-width: 180px;
}

.map-tooltip.active {
    opacity: 1;
}

.map-tooltip h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.map-tooltip p {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-color);
}

/* News Section */
.news {
    padding: 100px 0;
    background: #ffffff;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.news-item {
    display: flex;
    background: var(--section-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.news-img {
    flex: 1;
    position: relative;
    min-width: 200px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-content {
    flex: 1.5;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.read-more:hover {
    padding-left: 10px;
}

/* Donation Progress Bar */
.donation-progress {
    margin-bottom: 20px;
}

.progress-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.progress-info span {
    display: block;
}

.progress-bar {
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-percent {
    display: block;
    text-align: right;
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-top: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--success-green);
    width: 0;
    transition: width 1.5s ease;
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background: var(--section-bg);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.impact.slider-section .impact-grid {
    display: flex;
    /* Handled by slider-track */
    gap: 40px;
}

.impact.slider-section .slider-track>* {
    flex: 0 0 calc(50% - 20px);
    /* Adjust for 40px gap */
    width: calc(50% - 20px);
}

.impact-card {
    display: flex;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.impact-img {
    flex: 1;
}

.impact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-content {
    flex: 1.2;
    padding: 40px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: -10px;
    opacity: 0.2;
    font-family: serif;
}

.impact-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.impact-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.impact-content span {
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 992px) {

    .news-item,
    .impact-card {
        flex-direction: column;
    }

    .news-img {
        height: 250px;
    }
}

footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 20px 0 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-about .logo span {
    color: var(--white);
}

.footer-about p {
    margin-top: 10px;
    opacity: 0.7;
    font-size: 0.8rem;
    line-height: 1.4;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
    font-size: 0.8rem;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 3px;
    opacity: 0.7;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.4;
}

/* Mobile Navigation & Fine-Tuning */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Responsive Adjustments & Image Optimization */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .news-list,
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .news-item,
    .impact-card {
        flex-direction: column;
    }

    /* More distinct image sizes for medium screens */
    .news-img {
        height: 220px;
        /* Slightly smaller for news */
    }

    .impact-img {
        height: 450px;
        /* Even larger for impact stories highlight */
    }

    .impact-content {
        padding: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-container {
        border-radius: 15px;
        margin-top: 20px;
        overflow-x: auto;
        /* Allow horizontal scroll if needed */
        -webkit-overflow-scrolling: touch;
    }

    .world-map {
        min-width: 600px;
        /* Ensure map is large enough on mobile to interact with dots */
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }

    .main-header {
        padding: 10px 0;
        position: sticky;
        top: 0;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .logo img {
        height: 30px;
    }

    .logo span {
        font-size: 1rem;
        letter-spacing: 0;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
        /* Increased gap */
    }

    .header-actions .btn {
        padding: 6px 12px;
        /* Slightly more compact */
        font-size: 0.75rem;
    }



    .hero-slider {
        padding-top: 0;
        /* Background covers all */
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .slide {
        position: relative;
        height: auto;
        aspect-ratio: 9/16;
        opacity: 0;
        display: none;
        transition: opacity 0.5s ease;
        padding-top: 0;
        padding-bottom: 50px;
        align-items: flex-end;
        justify-content: center;
    }

    .slide.active {
        display: flex;
        opacity: 1;
        z-index: 1;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
        text-align: center;
        transform: none !important;
        opacity: 1 !important;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        /* Slightly smaller for better fit */
        margin-bottom: 20px;
        line-height: 1.1;
        font-weight: 900;
        -webkit-text-stroke: 1px #fff;
        color: #fff;
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .hero p {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 20px;
        max-width: 95%;
        line-height: 1.4;
        opacity: 1;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        color: #fff;
    }

    .hero-actions .btn {
        font-size: 0.75rem !important;
        padding: 6px 12px !important;
    }

    .btn-text {
        font-size: 0.75rem !important;
    }

    .slider-btn {
        display: none;
    }

    .slider-controls {
        display: none;
    }

    .donation-card-wrapper {
        width: 100%;
        max-width: 340px;
        /* Constrain width on mobile */
    }

    .donation-card {
        width: 100%;
        padding: 20px;
        /* More compact padding */
        margin-bottom: 20px;
        background: rgba(26, 26, 26, 0.9) !important;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .donation-card h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .amount-btn {
        padding: 8px;
        font-size: 0.8rem;
    }

    .donate-now {
        padding: 12px;
        font-size: 0.9rem;
    }

    .slider-pagination {
        position: static;
        transform: none;
        margin: 15px auto;
        /* Slightly more compact */
        justify-content: center;
        padding-bottom: 15px;
    }

    .dot {
        background: rgba(0, 0, 0, 0.1);
        /* Darker inactive state for better visibility on white */
        border: 1px solid rgba(0, 0, 0, 0.05);
        width: 10px;
        height: 10px;
    }

    .dot.active {
        background: var(--primary-color);
        width: 25px;
        /* Slightly smaller pill for mobile */
    }

    .menu-toggle {
        display: flex;
    }

    /* Section Slider Mobile Fixes */
    .slider-track>* {
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    .slider-track {
        gap: 0 !important;
    }

    .slider-wrapper {
        padding: 0 0 60px 0;
        /* Space for buttons at the bottom */
        flex-direction: column;
    }

    .section-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        top: auto;
        bottom: 0;
        transform: none;
    }

    .section-nav:hover {
        transform: scale(1.1);
    }

    .section-nav.prev {
        left: calc(50% - 45px);
    }

    .section-nav.next {
        right: calc(50% - 45px);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);

        transition: all 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        z-index: 1000;
        display: flex;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding-left: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        width: auto;
        justify-content: center;
    }

    .nav-menu a i {
        width: 24px;
        text-align: center;
        margin-right: 15px;
        color: var(--text-light);
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-img img {
        height: 230px;
        aspect-ratio: 16/9;
    }

    .news-img {
        height: 200px;
        aspect-ratio: 16/9;
    }

    .impact-img {
        height: 350px;
        aspect-ratio: 4/3;
    }

    .map-container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        /* Reduced gap */
        text-align: center;
    }

    footer {
        padding: 20px 0 5px;
        /* Tighter padding */
    }

    .footer-about p {
        font-size: 0.75rem;
        margin-top: 5px;
    }

    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 5px;
        font-size: 0.85rem;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-bottom {
        padding-top: 5px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .amount-selector {
        grid-template-columns: 1fr 1fr;
    }

    .amount-btn:last-child {
        grid-column: span 2;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .project-img img {
        height: 180px;
    }

    .news-img {
        height: 160px;
    }

    .impact-img {
        height: 280px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

/* Minimal Footer */
.minimal-footer {
    background-color: #1a1a1a;
    padding: 40px 0;
    font-size: 0.9rem;
    color: #fff;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-text {
    font-weight: 800;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.slogan {
    font-size: 0.75rem;
    color: #888;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* Donation Section */
.donation-section {
    padding: clamp(60px, 8vh, 120px) 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.donation-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.bg-slide.active {
    opacity: 1;
}

.donation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 33, 71, 0.7);
    /* Deep blue-dark overlay as requested */
    z-index: -1;
}

.donation-content-wrapper {
    position: relative;
    z-index: 2;
}

.donation-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.donation-text {
    flex: 1;
    max-width: 500px;
    position: relative;
    min-height: 250px;
    /* Ensure space for overlapping text slides */
}

.donation-text-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.8s ease-in-out;
    pointer-events: none;
}

.text-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
    /* Let active slide define the height */
}

.text-slide h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text-slide p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.donation-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 450px;
}

.amount-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.amount-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: var(--text-color);
    padding: 12px;
    border-radius: 100px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.custom-amount {
    position: relative;
    margin-bottom: 20px;
}

.custom-amount input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.custom-amount input:focus {
    border-color: var(--primary-color);
}

.custom-amount span {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--text-light);
}

.btn-block {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Grid Layout for Projects and Impact */
.slider-track {
    display: flex;
    gap: 30px;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.project-card,
.impact-card {
    flex: 0 0 calc(33.333% - 20px);
    width: calc(33.333% - 20px);
}

.slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.slider-track-container {
    overflow: hidden;
    width: 100%;
}

@media (max-width: 900px) {

    .project-card,
    .impact-card {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
    }
}

@media (max-width: 700px) {

    .project-card,
    .impact-card {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 10px;
        /* Add internal spacing */
    }

    .slider-wrapper {
        padding: 0;
    }

    .slider-track {
        gap: 0;
        /* Remove gap for precise mobile alignment */
    }
}

@media (max-width: 768px) {
    .main-header .container {
        position: relative;
    }

    .menu-toggle {
        display: flex;
        /* Show hamburger on mobile */
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
        z-index: 999;
        visibility: hidden;
        /* Added to prevent off-screen interaction/scroll */
    }

    .nav-menu.active {
        right: 0;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    /* Hide donation button in header actions on very small screens if needed, 
       or keep it. The design request usually keeps it visible or moves it into menu.
       I'll keep it visible next to hamburger for easy access. */

    .logo span {
        font-size: 1.1rem;
    }

    .logo img {
        height: 32px;
    }

    /* Hero adjustments */
    .hero-slider {
        min-height: 100vh;
        /* Ensure full screen */
        height: auto;
    }

    .slide {
        padding-top: 70px;
        /* Reduced top padding */
    }

    .hero-content {
        margin-top: 0;
        /* Reset negative margin */
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* ==================
   New Sections CSS
   ================== */
.section-padding {
    padding: 80px 0;
}

/* Activities Section */
.activities-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .activities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.activity-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.activity-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.activity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.activity-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* News Section */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-img {
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-content .date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.news-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(39, 174, 96, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-item p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Instagram Section Refined */
.instagram-section {
    background: #fdfdfd;
    overflow: hidden;
}

@media (max-width: 992px) {
    .insta-phone-mockup {
        width: 280px;
        margin: 0 auto 50px;
    }

    .insta-grid-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .insta-feed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .insta-feed {
        grid-template-columns: 1fr;
    }

    .phone-container {
        width: 250px;
        height: 510px;
    }

    .phone-frame {
        border-radius: 42px;
        padding: 8px;
    }

    .phone-screen {
        border-radius: 36px;
    }

    .dynamic-island {
        width: 70px;
        height: 22px;
        top: 8px;
    }
}

.insta-content-centered {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.insta-content-centered .section-title {
    margin-bottom: 50px;
}

.insta-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.insta-post-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.liked {
    color: #ed4956;
}

/* Grid Side */
.insta-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.insta-post-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.insta-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-post-card:hover .post-overlay {
    opacity: 1;
}

.insta-post-card:hover img {
    transform: scale(1.1);
}

.insta-cta {
    margin-top: 40px;
}

.btn-insta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-insta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 39, 67, 0.3);
}

@media (max-width: 768px) {
    .insta-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .insta-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Advanced Donation Widget Section */
.donation-section {
    padding: 100px 0;
    background: transparent;
}

.donation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Modern Donation Widget Overhaul */
/* Donation Section Responsive */
@media (max-width: 992px) {
    .donation-wrapper {
        display: flex;
        /* Force vertical stack */
        flex-direction: column;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .donation-text {
        width: 100%;
        text-align: center;
    }

    .donation-text h2 {
        font-size: clamp(1.4rem, 6vw, 2rem);
        word-break: break-word;
    }

    .donation-widget-container {
        padding: 0;
        width: 100%;
    }

    .donation-card-new {
        padding: 15px;
        /* Minimum padding for mobile safety */
        border-radius: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .cause-selector {
        display: grid !important;
        /* Force override of flex */
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        width: 100%;
        overflow: visible;
    }

    .chip-content {
        width: 100% !important;
        height: clamp(65px, 20vw, 85px) !important;
        gap: 6px !important;
    }

    .chip-content i {
        font-size: clamp(1.1rem, 4vw, 1.4rem) !important;
    }

    .chip-content span {
        font-size: clamp(0.65rem, 2.5vw, 0.75rem) !important;
    }
}

@media (max-width: 600px) {
    .cause-selector {
        grid-template-columns: 1fr;
    }

    .preset-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.donation-card-new {
    background: var(--white);
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.donation-step-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Cause Selector chips */
.cause-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.cause-selector::-webkit-scrollbar {
    display: none;
}

.cause-chip {
    flex: 0 0 auto;
    cursor: pointer;
}

.cause-chip input {
    display: none;
}

.chip-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    /* Fixed size for desktop uniformity */
    height: 90px;
    background: #f8faf9;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
    gap: 8px;
}

.chip-content i {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    color: var(--text-color);
    transition: var(--transition);
}

.chip-content span {
    font-size: clamp(0.65rem, 2.5vw, 0.75rem);
    font-weight: 700;
    color: var(--text-color);
}

.cause-chip:hover .chip-content {
    background: #eef7f1;
    border-color: rgba(39, 174, 96, 0.1);
}

.cause-chip input:checked+.chip-content {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2);
}

.cause-chip input:checked+.chip-content i,
.cause-chip input:checked+.chip-content span {
    color: var(--white);
}

/* Frequency Tabs */
.frequency-tabs {
    display: flex;
    background: #f0f4f2;
    padding: 6px;
    border-radius: 100px;
    margin-bottom: 30px;
}

.freq-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.freq-tab.active {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Amount Section */
.amount-section {
    margin-bottom: 30px;
}

.preset-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

@media (min-width: 480px) {
    .preset-amounts {
        grid-template-columns: repeat(4, 1fr);
    }
}

.amount-btn {
    padding: 15px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.amount-btn.active {
    background: #eef7f1;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.custom-amount-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 800;
    color: var(--text-light);
    font-size: 1.2rem;
    z-index: 1;
}

#custom-donation-input {
    width: 100%;
    padding: 18px 20px 18px 45px;
    border-radius: 15px;
    border: 2px solid #eee;
    font-size: 1.1rem;
    font-weight: 700;
    outline: none;
    transition: var(--transition);
}


#custom-donation-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
}

/* Submit Button */
.btn-donation-submit-new {
    width: 100%;
    padding: 20px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: 1.5px solid transparent;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-bottom: 0px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.btn-donation-submit-new:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.4);
}

/* Footer Info */
.donation-footer-info {
    text-align: center;
}

.donation-footer-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bank-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.frequency-toggle {
    display: flex;
    background: #f9fbf9;
    padding: 5px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.freq-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.freq-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.btn-donation-submit {
    width: 100%;
    padding: 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    margin-bottom: 20px;
}

.btn-donation-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.bank-info-link {
    display: block;
    text-align: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .donation-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .donation-features {
        align-items: center;
    }

    .donation-text h2 {
        font-size: 2.2rem;
    }
}

/* Hero Shortcut Bar Styles */
.hero-shortcuts-container {
    background: var(--section-bg);
    /* Very light background for the section */
    position: relative;
    z-index: 10;
    padding: 20px 0 40px;
}

.hero-shortcuts-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.shortcut-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: var(--white);
    color: var(--primary-color);
    display: none;
    /* Only mobile */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.shortcut-nav.prev {
    left: -10px;
}

.shortcut-nav.next {
    right: -10px;
}

.shortcut-nav:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-shortcuts {
    background: transparent;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-shortcuts::-webkit-scrollbar {
    display: none;
}

.shortcut-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    min-width: 80px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.shortcut-icon {
    width: 54px;
    height: 54px;
    background: #f3f4f6;
    /* Modern light gray background */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    /* Darker slate icons */
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.shortcut-item span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #374151;
    text-align: center;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shortcut-item:hover {
    transform: translateY(-4px);
}

.shortcut-item.active {
    transform: translateY(-4px);
}

.shortcut-item.active .shortcut-icon,
.shortcut-item:hover .shortcut-icon {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.15);
}

.shortcut-item.active span,
.shortcut-item:hover span {
    color: var(--primary-color);
}

/* Thick Underline for Active State */
.shortcut-item.active {
    position: relative;
    padding-bottom: 5px;
}

.shortcut-item.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 5%;
    width: 90%;
    height: 5px;
    background: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

.shortcut-item:hover span {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .hero-shortcuts {
        justify-content: flex-start;
        padding: 20px 10px;
    }

    .shortcut-nav {
        display: flex;
    }

    .shortcut-item {
        min-width: 90px;
    }

    .shortcut-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Faaliyetler (Activities) Slider & Tabs */
.activities-new .activities-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 30px;
}

.activity-tabs {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.activity-tab {
    padding: 10px 25px;
    border: 2px solid #eee;
    background: transparent;
    border-radius: 50px;
    font-weight: 700;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.activity-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.activity-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2);
}



.activities-track {
    display: none !important;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.activities-track.active {
    display: flex !important;
    opacity: 1;
}

.activity-card-new {
    flex: 0 0 calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
}

.activity-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.activity-img {
    height: 220px;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card-new:hover .activity-img img {
    transform: scale(1.1);
}

.activity-info {
    padding: 25px;
}

.activity-info h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.activity-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.activity-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.activity-footer .tag {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.activity-footer .date {
    color: #999;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .activities-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .activity-card-new {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .activity-card-new {
        flex: 0 0 100%;
        width: 100%;
    }

    .activity-tabs {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        /* Prevents cut-off by wrapping to next line if needed */
        justify-content: center;
        /* Perfectly centers tabs */
        padding: 5px 5px 20px;
        gap: 8px;
    }

    .activity-tab {
        padding: 7px 12px;
        font-size: 0.72rem;
        white-space: nowrap;
    }
}

/* Premium Charity Footer Styling */
.main-footer-premium {
    background: #0f172a;
    /* Slate 900 */
    color: #94a3b8;
    /* Slate 400 */
    padding: 80px 0 0;
    font-family: var(--site-font);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-col h3 {
    color: #f8fafc;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* Brand Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.main-footer-premium .logo-icon {
    width: 150px;
    height: auto;
    max-height: 150px;
    display: block;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.mission-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #94a3b8;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: #1e293b;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.95rem;
}

.social-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Links Columns */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Column */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 3px;
}

.contact-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Newsletter Box */
.newsletter-box p {
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-newsletter-form {
    position: relative;
    max-width: 300px;
}

.footer-newsletter-form input {
    width: 100%;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 12px 50px 12px 15px;
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.footer-newsletter-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.footer-newsletter-form button {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter-form button:hover {
    background: var(--primary-dark);
}

/* Bottom Bar */
.footer-bottom-bar {
    background: #020617;
    padding: 25px 0;
    border-top: 1px solid #1e293b;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-bar p {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    text-decoration: none;
    color: #64748b;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}


/* App Download Section */
.app-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    overflow: hidden;
}

.app-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.app-text h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
}

.app-text h2 span {
    color: var(--primary-color);
}

.app-text p {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.btn-store {
    transition: transform 0.3s ease;
}

.btn-store img {
    height: 48px;
    width: auto;
}

.btn-store:hover {
    transform: translateY(-5px);
}

/* 3-Phone Showcase Styling */
.app-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-phones-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-phone {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.phone-frame-mini {
    background: #111;
    border-radius: 35px;
    padding: 8px;
    border: 1px solid #222;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.phone-screen-mini {
    border-radius: 28px;
    overflow: hidden;
    height: 440px;
    width: 220px;
    background: #fff;
    position: relative;
}

.phone-screen-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Composition */
.phone-back-left {
    left: 0;
    top: 50px;
    transform: rotate(-10deg) scale(0.9);
    z-index: 1;
    opacity: 0.8;
}

.phone-back-right {
    right: 0;
    top: 50px;
    transform: rotate(10deg) scale(0.9);
    z-index: 1;
    opacity: 0.8;
}

.phone-front {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.2));
}

.phone-front .phone-screen-mini {
    height: 480px;
    width: 240px;
}

.app-floating-card {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 80%;
    animation: floatCard 3s ease-in-out infinite;
}

.app-floating-card i {
    color: var(--primary-color);
}

.app-floating-card span {
    font-weight: 700;
    font-size: 0.85rem;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

@media (max-width: 992px) {
    .app-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .app-buttons {
        justify-content: center;
    }

    .app-visual {
        margin-top: 50px;
        height: 500px;
    }

    .phone-back-left {
        left: 10%;
    }

    .phone-back-right {
        right: 10%;
    }
}

@media (max-width: 600px) {

    .phone-back-left,
    .phone-back-right {
        display: none;
    }

    .app-text h2 {
        font-size: 2rem;
    }
}

/* Refined App UI Mockups */
.phone-screen-mini {
    display: flex;
    flex-direction: column;
    background: #fff;
    font-family: 'Inter', sans-serif;
    color: #111;
}

/* 1. Store Screen Style */
.app-store-screen {
    padding: 15px;
    background: #fff;
}

.store-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.store-app-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.store-app-logo img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    border: 1px solid #eee;
}

.store-app-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-app-text strong {
    font-size: 1rem;
    margin-bottom: 2px;
}

.store-app-text span {
    font-size: 0.75rem;
    color: #00875f;
    font-weight: 600;
}

.store-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.s-box {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.s-box strong {
    font-size: 0.85rem;
}

.s-box span {
    font-size: 0.65rem;
    color: #888;
    margin-top: 2px;
}

.btn-store-install {
    width: 100%;
    background: #00875f;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 0.9rem;
    cursor: pointer;
}

.store-previews {
    display: flex;
    gap: 10px;
    overflow: hidden;
}

.preview-img {
    flex: 0 0 100px;
    height: 180px;
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* 2. Action Screen Style (Center Phone) */
.app-action-screen {
    background: #fff;
}

.action-top-bar {
    height: 35px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.status-icons {
    display: flex;
    gap: 5px;
}

.action-content {
    padding: 0 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.action-content h3 {
    font-size: 1.2rem;
    margin: 15px 0 25px;
    font-weight: 800;
}

.action-img-card {
    position: relative;
    background: #fff9ed;
    border-radius: 35px;
    padding: 30px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-img-card img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 25px;
    filter: drop-shadow(0 10px 20px rgba(183, 114, 0, 0.2));
}

.price-pill {
    position: absolute;
    top: -15px;
    background: #f5a623;
    color: #fff;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.9rem;
}

.action-meta {
    margin-bottom: 30px;
}

.action-meta strong {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.action-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.action-dots .dot {
    width: 5px;
    height: 5px;
    background: #ddd;
    border-radius: 50%;
}

.action-dots .dot.active {
    background: #f5a623;
    width: 12px;
    border-radius: 10px;
}

.btn-action-primary {
    background: #ff9f1c;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 159, 28, 0.2);
    margin-top: auto;
}

/* 3. Info Screen Style */
.app-info-screen {
    padding: 20px;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.info-logo-group {
    display: flex;
    gap: 10px;
}

.mini-logo img {
    width: 35px;
    height: 35px;
    border-radius: 8px;
}

.info-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-title strong {
    font-size: 0.85rem;
}

.info-title span {
    font-size: 0.6rem;
    color: #888;
}

.btn-info-download {
    background: #007aff;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 18px;
    font-weight: 800;
    font-size: 0.75rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.info-box {
    text-align: center;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 12px;
}

.info-box strong {
    display: block;
    font-size: 0.9rem;
}

.info-box span {
    font-size: 0.6rem;
    color: #888;
    text-transform: uppercase;
}

.info-desc strong {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
}

.info-desc p {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .phone-screen-mini {
        height: 440px;
        width: 220px;
    }
}

/* FAQ Section Styling */
.faq-section {
    padding: 120px 0;
    position: relative;
    background-image: url('images/hero_food_card.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.faq-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 30, 20, 0.95), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.relative-content {
    position: relative;
    z-index: 2;
}

.white-title {
    text-align: center;
    margin-bottom: 60px;
}

.white-title .subtitle {
    color: var(--primary-color);
}

.white-title h2 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
}

.faq-carousel-container {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.faq-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-card {
    flex: 0 0 calc((100% - 60px) / 3);
    min-height: 280px;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.faq-green {
    background: #1a4731;
}

.faq-teal {
    background: #166063;
}

.faq-navy {
    background: #1a2a47;
}

.faq-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-faq-more {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-faq-more:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

.faq-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

/* ==========================================================================
   FAQ CTA MODERN (Horizontal Layout)
   ========================================================================== */
.faq-cta-modern {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    padding: 100px 0;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.02);
}

.cta-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.faq-main {
    flex: 1;
    min-width: 0;
    /* Prevent flex overflow */
    min-height: 500px;
    /* Prevent scroll jump on content switch */
    scroll-margin-top: 180px;
    /* Scroll offset for sticky header */
}

/* Base styles for arrows (hidden by default) */
.nav-arrow {
    display: none;
}

.cta-text h2 {
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}

.cta-text p {
    font-size: 1.3rem;
    color: #64748b;
    font-weight: 500;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

.btn-cta-text {
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 12px;
    font-size: 1.25rem;
    transition: var(--transition);
    padding: 10px 20px;
    border-radius: 12px;
}

.btn-cta-text:hover {
    background: rgba(39, 174, 96, 0.05);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-cta-text i {
    font-size: 1.5rem;
}

.btn-whatsapp-modern {
    background: #10b981;
    background: linear-gradient(135deg, #25d366, #10b981);
    color: white;
    padding: 22px 48px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.25rem;
    transition: var(--transition);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
    filter: brightness(1.05);
}

.btn-whatsapp-modern i {
    font-size: 1.6rem;
}

@media (max-width: 992px) {
    .faq-cta-modern {
        padding: 60px 0;
    }

    .cta-flex-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-text h2 {
        font-size: 2.2rem;
    }

    .cta-text p {
        font-size: 1.1rem;
    }

    .cta-text {
        max-width: 100%;
    }

    .cta-actions {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .btn-whatsapp-modern {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
    }

    .btn-cta-text {
        width: 100%;
        justify-content: center;
    }
}

.faq-prev,
.faq-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-prev:hover,
.faq-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.faq-dots {
    display: flex;
    gap: 10px;
}

.faq-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.faq-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .faq-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .faq-card {
        flex: 0 0 100%;
        padding: 30px;
    }

    .faq-track {
        gap: 20px;
    }
}

/* Projects Gallery Section */
/* Projects Premium Section */
.projects-premium {
    padding: 120px 0;
    background: #fcfdfe;
    /* Softest off-white */
    position: relative;
    overflow: hidden;
}

.premium-header {
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #0f172a;
    margin-bottom: 12px;
    /* Reduced from 25px */
    font-family: var(--site-font);
}

.premium-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.6;
}

/* removed premium-underline definition */

.premium-slider-container {
    position: relative;
    padding: 0 60px;
    /* More side space for navigation arrows */
}

.premium-viewport {
    overflow: hidden;
    padding: 30px 0 60px;
    /* Vertical space only for shadows/scale */
}

.premium-track {
    display: flex;
    gap: 10px;
    /* Minimal card spacing */
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.premium-card {
    flex: 0 0 calc((100% - 20px) / 3);
    /* Exactly 3 items with 10px gaps */
    background: #ffffff;
    border-radius: 28px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border-color: rgba(39, 174, 96, 0.1);
    z-index: 3;
}

/* Featured Card (Middle) */
.premium-card.featured {
    transform: scale(1.04);
    z-index: 2;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.04);
    border-color: rgba(39, 174, 96, 0.08);
}

.premium-card.featured::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px 10px 0 0;
    opacity: 0.6;
}

.premium-card.featured .details-top h3 {
    color: var(--primary-dark);
    font-weight: 800;
}

.premium-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.card-image-box {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.premium-card:hover .card-image-box img {
    transform: scale(1.03);
    /* More subtle zoom */
}

.card-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.details-top h3 {
    font-size: 1.35rem;
    font-weight: 800;
    /* Extra bold for clarity */
    color: #0f172a;
    margin-bottom: 12px;
    /* Extra space between title and slogan */
    transition: color 0.3s ease;
}

.details-top p {
    font-size: 0.95rem;
    font-weight: 400;
    /* Thinner weight for slogan */
    color: #64748b;
    /* Lighter color */
    line-height: 1.6;
    margin-bottom: 25px;
}

.premium-card:hover .details-top h3 {
    color: var(--primary-color);
}

.details-bottom {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
}

.project-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #27ae60;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: #eafaf1;
    padding: 6px 16px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.premium-card:hover .project-tag {
    background: #d4f5e2;
}

.premium-controls-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    position: static;
    /* Let buttons be absolute relative to the slider container */
}

.premium-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;
    top: 45%;
    /* Center relative to the cards area */
    transform: translateY(-50%);
    z-index: 10;
}

.premium-nav.prev {
    left: 10px;
}

.premium-nav.next {
    right: 10px;
}

.premium-nav:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1);
}

/* Dots are handled by the separate dots container if needed, 
   but here they are inside the footer */
.premium-dots {
    display: flex;
    gap: 12px;
}

/* Dots */
.premium-dots-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.premium-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .premium-card {
        flex: 0 0 calc((100% - 30px) / 2);
        /* Exactly 2 items per view */
    }
}

@media (max-width: 768px) {
    .projects-premium {
        padding: 80px 0;
    }

    .premium-card {
        flex: 0 0 100%;
    }

    .premium-slider-container {
        padding: 0 10px;
        /* Minimal padding for edge-to-edge feel */
    }

    .premium-viewport {
        padding: 20px 0 20px;
    }

    .premium-controls-footer {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
        position: relative;
    }

    .premium-nav {
        position: static;
        transform: none;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        color: var(--primary-color);
        background: #ffffff;
        box-shadow: none;
    }

    .premium-nav:hover {
        transform: scale(1.1);
    }

    .premium-dots {
        display: none !important;
        /* Hide dots as per reference image */
    }
}

/* Mobile Bottom Navigation Bar Styles */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--primary-color);
    /* Site green tone */
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    z-index: 12000;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.65rem;
    font-weight: 700;
    transition: all 0.3s ease;
    flex: 1;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.3rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.mobile-bottom-nav .nav-item:active i {
    transform: scale(0.85);
}

.mobile-bottom-nav .nav-item.donate-special i {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.mobile-bottom-nav .nav-item span {
    text-transform: uppercase;
    font-size: 0.6rem;
    letter-spacing: 0.8px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px !important;
    }
}

/* Removed redundant nested block */


/* WhatsApp Floating Support Button */
.whatsapp-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-content {
    background: linear-gradient(135deg, #25D366, #128C7E);
    height: 60px;
    min-width: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.whatsapp-content i {
    font-size: 28px;
}

.support-text {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    margin-right: 0;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.4s ease;
}

/* Desktop Hover Interaction */
@media (hover: hover) {
    .whatsapp-support:hover {
        transform: scale(1.05);
    }

    .whatsapp-support:hover .whatsapp-content {
        padding: 0 25px;
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    }

    .whatsapp-support:hover .support-text {
        max-width: 250px;
        opacity: 1;
        margin-right: 12px;
    }
}

/* Floating Animation */
@keyframes whatsappFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.whatsapp-support {
    animation: whatsappFloat 4s ease-in-out infinite;
}

/* Mobile Sticky Adjustments */
@media (max-width: 768px) {
    .whatsapp-support {
        display: none !important;
        bottom: 90px;
        right: 20px;
    }

    .support-text {
        display: none !important;
    }
}

/* Upcoming Events Section */
.events-section {
    background-color: var(--section-bg);
}

.events-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 10px 0;
}

.event-card {
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
    max-width: calc(50% - 15px);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.event-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.05);
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-date-badge .day {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.event-date-badge .month {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
}

.event-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.4;
}

.event-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.event-meta span {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta i {
    color: var(--primary-color);
}

.btn-event {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    background: #f0f7f4;
    color: var(--primary-color);
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-event:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Volunteer CTA Section */
.volunteer-cta-section {
    background-color: var(--section-bg);
    padding-bottom: 80px;
}

.volunteer-cta-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #004d40;
    /* Deep teal/green for trust and commitment */
    min-height: 380px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 77, 64, 0.2);
}

.volunteer-cta-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.volunteer-cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #004d40 20%, rgba(0, 77, 64, 0));
}

.volunteer-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.volunteer-cta-content {
    position: relative;
    z-index: 2;
    padding: 50px 70px;
    max-width: 600px;
    color: var(--white);
}

.volunteer-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.volunteer-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-volunteer-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #ffd54f;
    /* Warm yellow for contrast and friendliness */
    color: #004d40;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(255, 213, 79, 0.3);
    transition: all 0.3s ease;
}

.btn-volunteer-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 213, 79, 0.4);
    background: #ffca28;
}

/* Mobile Adjustments for new sections */
@media (max-width: 900px) {
    .volunteer-cta-content {
        padding: 40px;
    }

    .volunteer-cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .events-grid {
        gap: 0;
        flex-wrap: nowrap;
    }

    .event-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: unset;
    }

    .volunteer-cta-card {
        min-height: 450px;
        flex-direction: column;
        text-align: center;
    }

    .volunteer-cta-bg {
        width: 100%;
        height: 45%;
        position: relative;
    }

    .volunteer-cta-bg::after {
        background: linear-gradient(to bottom, transparent, #004d40);
        left: 0;
        top: 0;
    }

    .volunteer-cta-content {
        padding: 30px 20px 50px;
        max-width: 100%;
    }

    .volunteer-cta-content h2 {
        font-size: 1.8rem;
    }

    .volunteer-cta-content p {
        font-size: 1rem;
    }
}

/* Professional Corporate Campaign Popup */
.campaign-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    /* Deeper corporate slate */
    backdrop-filter: blur(12px) saturate(180%);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.campaign-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.campaign-popup-card {
    background: var(--white);
    width: 95%;
    max-width: 480px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.campaign-popup-overlay.active .campaign-popup-card {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    color: #0f172a;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #ef4444;
    color: white;
    transform: rotate(90deg);
}

.popup-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    margin: 10px;
    border-radius: 24px;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

.popup-content {
    padding: 30px 40px 45px;
    text-align: center;
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #fff1f2;
    color: #be123c;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.popup-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.popup-content p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-popup-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background: #10b981;
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
}

.btn-popup-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.3);
}

.btn-popup-secondary {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-popup-secondary:hover {
    color: #1e293b;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .popup-content {
        padding: 20px 30px 35px;
    }

    .popup-content h2 {
        font-size: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-hero-mini {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
}

.hero-mini-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-mini-content p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Info Column */
.info-card-modern {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.icon-box-modern {
    width: 50px;
    height: 50px;
    background: rgba(39, 174, 96, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.info-text p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-container-modern {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.contact-social-prompt {
    text-align: center;
}

.contact-social-prompt p {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.social-icons-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons-contact a {
    width: 45px;
    height: 45px;
    background: white !important;
    color: #1e293b !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-decoration: none;
}

.social-icons-contact a:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-3px);
}

/* Form Column */
.contact-form-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

.contact-form-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1e293b;
}

.contact-form-card>p {
    color: #64748b;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100% !important;
    padding: 14px 18px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
    transition: var(--transition);
    outline: none !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color) !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.08) !important;
}

.btn-contact-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-contact-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2);
}

.form-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 30px;
    }
}

@media (max-width: 912px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-mini h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .info-card-modern {
        padding: 25px;
    }
}

/* News Section Extensions */
.news-actions {
    text-align: center;
    margin-top: 50px;
}

.btn-news-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.05);
}

.btn-news-more i {
    transition: transform 0.3s ease;
}

.btn-news-more:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2);
}

.btn-news-more:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   PROJECTS PAGE STYLES
   ========================================================================== */
.projects-page {
    background: #f8fafc;
}

.projects-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.projects-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(39, 174, 96, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.projects-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.projects-hero .subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.projects-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.projects-hero p {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* Filter Toolbar */
.projects-filter-section {
    margin-top: -40px;
    position: relative;
    z-index: 100;
}

.filter-toolbar {
    background: white;
    padding: 25px 35px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.filter-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-label {
    font-weight: 700;
    color: #475569;
    font-size: 0.9rem;
}

.filter-options {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 15px rgba(39, 174, 96, 0.2);
}

.filter-select {
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    background: white;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
}

/* Projects Main Grid */
.projects-grid-section {
    padding: 80px 0;
}

.projects-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

.project-page-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.project-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.card-thumb {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-page-card:hover .card-thumb img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: var(--primary-color);
    color: white;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.badge-water {
    background: #3498db;
}

.badge-emergency {
    background: #e74c3c;
}

.badge-health {
    background: #9b59b6;
}

.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* New FAQ Footer Controls */
.faq-controls-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    position: relative;
    width: 100%;
}

.btn-faq-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.btn-faq-all:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Adjust old faq-controls to fit in flex container */
.faq-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0;
    /* Override previous margin */
}

.faq-card .faq-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
    /* Standard property */
}

.card-body p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Donation Progress */
.card-progress-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

.progress-details .raised {
    color: var(--primary-color);
}

.progress-details .goal {
    color: #94a3b8;
}

.progress-bar-container {
    height: 10px;
    background: #e2e8f0;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.1, 0.5, 0.5, 1);
}

.card-progress-box .percent {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    font-weight: 800;
    color: #475569;
}

.status-done {
    color: #10b981 !important;
    letter-spacing: 0.05em;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: auto;
}

.btn-card-primary {
    padding: 14px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.15);
}

.btn-card-primary:hover {
    background: #219150;
    transform: translateY(-2px);
}

.btn-done {
    background: #10b981;
    pointer-events: none;
}

.btn-card-secondary {
    padding: 14px;
    background: #f1f5f9;
    color: #475569;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-card-secondary:hover {
    background: #e2e8f0;
}

/* Pagination */
.projects-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.page-num,
.page-nav {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-num.active {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
}

.page-num:hover:not(.active),
.page-nav:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 900px) {
    .projects-main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .filter-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: none;
    }
}

@media (max-width: 700px) {
    .projects-main-grid {
        grid-template-columns: 1fr;
    }

    .filter-options {
        flex-wrap: wrap;
    }

    .card-actions {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ZAKAT CALCULATOR STYLES
   ========================================================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2a6c 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Calculator Layout */
.zakat-calculator-section {
    padding-bottom: 100px;
}

.zakat-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Forms Container */
.zakat-form-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.zakat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.zakat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.zakat-card.debt-card {
    border-left: 4px solid #e74c3c;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(39, 174, 96, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.debt-card .card-header i {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.card-header h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 700;
}

/* Form Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 20px;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.2rem;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 55px;
    border: 2px solid #e1e1e1;
    border-radius: 14px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
}

.debt-input:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.input-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Summary Sidebar */
.zakat-sidebar-container {
    padding-top: 0;
}

.zakat-sidebar {
    background: var(--white);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
    /* Considers fixed header */
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.zakat-sidebar h3 {
    margin-bottom: 25px;
    color: var(--text-color);
    font-weight: 800;
    font-size: 1.4rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-light);
}

.summary-row .amount {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.summary-row.debt {
    color: #e74c3c;
}

.summary-row.debt .amount {
    color: #e74c3c;
}

.divider {
    height: 2px;
    background: #f1f1f1;
    margin: 20px 0;
    border-radius: 2px;
}

.summary-row.net-amount span:first-child {
    font-weight: 600;
    color: var(--text-color);
}

.summary-row.net-amount .amount {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.result-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 25px;
    border-radius: 16px;
    color: var(--white);
    text-align: center;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
}

.result-box .label {
    display: block;
    margin-bottom: 10px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.result-box .main-result {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.result-box .rate-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 15px;
    display: flex;
    gap: 8px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .zakat-grid {
        grid-template-columns: 1fr;
    }

    .zakat-sidebar-container {
        order: 1;
        /* Sidebar comes after form on mobile */
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .zakat-card {
        padding: 20px;
    }
}

/* ==========================================================================
   ABOUT US PAGE STYLES (HAKKIMIZDA)
   ========================================================================== */

/* Hero Specifics */
.about-hero {
    position: relative;
    background-attachment: fixed;
    /* Parallax effect */
}

/* Mission, Vision, Values */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: rgba(39, 174, 96, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.mvv-card:hover .mvv-icon {
    background: var(--primary-color);
    color: var(--white);
}

.mvv-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.5rem;
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--secondary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-item .content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    border-left: 5px solid var(--primary-color);
}

.timeline-item .content h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Metrics */
.impact-metrics-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.metric-item .metric-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.metric-item .metric-label {
    font-size: 1.1rem;
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Reports */
.reports-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reports-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-dark:hover {
    background: var(--text-color);
    color: var(--white);
}

/* About CTA */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(39, 174, 96, 0.9), rgba(39, 174, 96, 0.9)), url('images/activity_orphan_workshop_1768553272000_1768553291692.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.about-cta-section .btn {
    border-width: 2px;
}

.about-cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.about-cta-section .btn-primary:hover {
    background-color: #f2f2f2;
    color: var(--primary-color);
    border-color: #f2f2f2;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-cta-section .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.about-cta-section .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Timeline Responsive */
@media screen and (max-width: 768px) {
    .about-hero {
        background-attachment: scroll;
        /* Fix for mobile browsers */
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        /* Full width on mobile */
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 17px;
        /* Centered on the line line at 31px (31 - 14 = 17) */
    }

    .timeline-item.right {
        left: 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline-dark {
        width: 100%;
        justify-content: center;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .metric-item .metric-number {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* =====================================================
   BANK ACCOUNTS PAGE STYLES - SIMPLIFIED
   ===================================================== */

/* Bank Hero Section */
.bank-hero-section {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    padding: 60px 0 40px;
    text-align: center;
    color: var(--white);
}

.bank-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.bank-hero-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Bank Accounts Section */
.bank-accounts-section {
    background: #f8fafc;
    padding: 40px 0 60px;
}

/* Simple Notice */
.bank-notice-simple {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #92400e;
}

.bank-notice-simple i {
    color: #d97706;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Bank List */
.bank-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Bank Item */
.bank-item {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

.bank-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.bank-name i {
    color: #0d9488;
    font-size: 1.3rem;
}

/* Account Rows */
.bank-accounts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.currency-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.currency-badge.tl {
    background: #dcfce7;
    color: #166534;
}

.currency-badge.usd {
    background: #dbeafe;
    color: #1e40af;
}

.currency-badge.eur {
    background: #fef3c7;
    color: #92400e;
}

.account-row .iban {
    flex: 1;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    letter-spacing: 0.3px;
    word-break: break-all;
}

/* Mini Copy Button */
.copy-btn-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn-mini:hover {
    background: #0d9488;
    color: var(--white);
}

/* Footer Text */
.bank-footer-text {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Copy Toast */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #10b981;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    z-index: 9999;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Mobile */
@media (max-width: 600px) {
    .bank-hero-section {
        padding: 50px 0 30px;
    }

    .bank-item {
        padding: 15px;
    }

    .account-row {
        flex-wrap: wrap;
    }

    .account-row .iban {
        font-size: 0.8rem;
        flex-basis: 100%;
        order: 2;
        margin-top: 5px;
    }

    .copy-btn-mini {
        order: 1;
        margin-left: auto;
    }

    .bank-notice-simple {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Full FAQ Page Layout */
.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.faq-search {
    position: relative;
    margin-bottom: 30px;
}

.faq-search input {
    width: 100%;
    padding: 15px 45px 15px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.faq-search input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
}

.faq-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.faq-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-nav a {
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.faq-nav a:hover,
.faq-nav a.active {
    background: #eef7f1;
    color: var(--primary-color);
}

.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
}

.group-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* Accordion Styles */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.accordion-item.active .accordion-header {
    background: #eef7f1;
    color: var(--primary-color);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 25px 25px;
}

.accordion-content p {
    color: #475569;
    line-height: 1.7;
}

/* See All Button Style */
.faq-footer {
    margin-top: 50px;
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.2);
}

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .faq-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .faq-nav a {
        white-space: nowrap;
    }
}

/* AGGRESSIVE MOBILE OPTIMIZATION (Must be at the end) */
@media (max-width: 992px) {
    .nav-arrow {
        display: flex !important;
        /* Force show */
    }
}

@media (max-width: 576px) {

    /* Layout Compactness */
    .faq-section {
        padding: 40px 0 !important;
    }

    .faq-layout {
        gap: 20px;
    }

    .faq-sidebar {
        margin-bottom: 20px;
    }

    /* Typography Reduction */
    .white-title h2 {
        font-size: 1.6rem !important;
    }

    .white-title {
        margin-bottom: 20px !important;
    }

    .group-title {
        font-size: 1.25rem !important;
        margin-bottom: 12px;
    }

    .accordion-header {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }

    .accordion-item.active .accordion-content {
        padding: 0 15px 15px !important;
    }

    .cta-text h2 {
        font-size: 1.4rem !important;
    }

    .cta-text p {
        font-size: 1rem !important;
    }

    /* Navigation Compactness */
    .faq-nav-container {
        margin-bottom: 10px;
    }

    .nav-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 50%;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .faq-nav {
        gap: 8px;
    }

    .faq-nav a {
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
        border-radius: 8px !important;
    }

    .faq-nav a.active {
        padding-left: 14px !important;
    }

    /* Search Bar */
    .faq-search input {
        padding: 12px 15px 12px 15px !important;
        font-size: 0.9rem !important;
    }

    .faq-search {
        margin-bottom: 15px;
    }

    /* CTA Actions */
    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn-cta-text,
    .btn-whatsapp-modern {
        width: 100%;
        justify-content: center;
        padding: 14px !important;
        font-size: 1rem !important;
        padding: 10px 0 !important;
        /* Minimized whitespace */
    }
}

/* NUCLEAR MOBILE OVERFLOW FIX */
@media (max-width: 500px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }

    .container,
    .row,
    .col {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .faq-layout {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
    }

    .faq-main,
    .faq-sidebar {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Force text wrapping everywhere */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a,
    span,
    li,
    .accordion-header,
    .accordion-content {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        max-width: 100% !important;
    }

    /* Exception for the scrollable nav */
    .faq-nav {
        display: flex !important;
        white-space: nowrap !important;
        overflow-x: auto !important;
        width: 100% !important;
        padding-right: 0 !important;
    }

    .faq-nav a {
        white-space: nowrap !important;
        max-width: none !important;
        /* Allow buttons to expand */
        flex: 0 0 auto !important;
    }

    /* Fix header height */
    .white-title h2 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    /* Ensure inputs don't overflow */
    input,
    select,
    textarea {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* -------------------------------------------------------------------------- */
/*                        ABOUT US PAGE REDESIGN (MODERN)                     */
/* -------------------------------------------------------------------------- */

/* SAFEGUARD: Force Font Awesome to render correctly within scoped ID */
#about-page .fa-solid,
#about-page .fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

#about-page .fa-regular,
#about-page .far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

#about-page .fa-brands,
#about-page .fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* Scoped Modern Hero */
#about-page .about-hero-modern {
    position: relative;
    height: 65vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

#about-page .hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    animation: slowZoom 20s infinite alternate;
    z-index: 0;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

#about-page .hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.75) 100%);
    z-index: 1;
}

#about-page .about-hero-modern .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

#about-page .hero-content-modern .hero-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #e2e8f0;
}

#about-page .hero-content-modern h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#about-page .hero-content-modern p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto;
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.6;
}

/* Scoped Intro Section */
#about-page .intro-section-modern {
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

#about-page .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

#about-page .section-badge {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

#about-page .intro-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

#about-page .lead-text {
    font-size: 1.2rem;
    color: #334155;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.8;
}

#about-page .intro-text p {
    color: #64748b;
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.8;
}

#about-page .president-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#about-page .signature-text strong {
    display: block;
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 700;
}

#about-page .signature-text span {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 5px;
}

#about-page .intro-collage {
    display: flex;
    gap: 25px;
    position: relative;
}

#about-page .intro-collage::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-color-light);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

#about-page .collage-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 50%;
    z-index: 1;
}

#about-page .collage-col.offset {
    margin-top: 60px;
}

#about-page .collage-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

#about-page .collage-img:hover {
    transform: scale(1.02);
}

#about-page .img-1 {
    height: 280px;
}

#about-page .img-2 {
    height: 220px;
}

#about-page .img-3 {
    height: 450px;
}

/* Scoped Institutional Grid */
#about-page .institutional-section {
    background: #f8fafc;
    padding: 100px 0;
}

#about-page .institutional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

#about-page .inst-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

#about-page .inst-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

#about-page .inst-icon {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

#about-page .inst-card:hover .inst-icon {
    transform: scale(1.1) rotate(5deg);
    background: #10b981;
    color: white;
}

#about-page .inst-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e293b;
}

#about-page .inst-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.8;
}

#about-page .values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#about-page .values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #475569;
    font-size: 1rem;
    font-weight: 600;
}

#about-page .values-list li i {
    color: #10b981;
    font-size: 1.1rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px;
    border-radius: 50%;
}

/* Scoped Modern Stats */
#about-page .stats-banner-modern {
    background: #0f172a;
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

#about-page .stats-modern-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

#about-page .stat-item-modern {
    text-align: center;
}

#about-page .stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(180deg, #ffffff 20%, #94a3b8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

#about-page .stat-label {
    font-size: 1rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

#about-page .stat-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Scoped Modern Team */
#about-page .team-section {
    padding: 100px 0;
}

#about-page .section-header-modern.center {
    text-align: center;
    margin-bottom: 60px;
}

#about-page .section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

#about-page .section-header-modern p {
    font-size: 1.1rem;
    color: #64748b;
}

#about-page .team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

#about-page .team-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
}

#about-page .team-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

#about-page .team-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

#about-page .team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: grayscale(100%);
}

#about-page .team-card-modern:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

#about-page .team-social-overlay {
    position: absolute;
    text-decoration: none;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

#about-page .team-card-modern:hover .team-social-overlay {
    opacity: 1;
    transform: translateY(0);
}

#about-page .team-social-overlay a {
    color: white;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    text-decoration: none;
}

#about-page .team-social-overlay a:hover {
    background: var(--primary-color);
}

#about-page .team-info-modern {
    padding: 25px;
    text-align: center;
    background: white;
    border-top: 1px solid #f1f5f9;
}

#about-page .team-info-modern h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1e293b;
    font-weight: 700;
}

#about-page .team-info-modern .team-role {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scoped Modern Timeline */
#about-page .timeline-modern {
    position: relative;
    max-width: 900px;
    margin: 80px auto 0;
}

#about-page .timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #e2e8f0;
    border-radius: 4px;
}

#about-page .timeline-entry {
    position: relative;
    margin-bottom: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
}

#about-page .timeline-point {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: white;
    border: 5px solid var(--primary-color);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.2);
}

#about-page .timeline-date {
    position: absolute;
    left: 50%;
    top: 35px;
    transform: translateX(-50%);
    font-weight: 800;
    font-size: 1.4rem;
    color: #94a3b8;
    background: #f8fafc;
    padding: 5px 15px;
    border-radius: 20px;
}

#about-page .timeline-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    width: 42%;
    position: relative;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

#about-page .timeline-content:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
}

#about-page .timeline-entry:nth-child(even) .timeline-content {
    margin-left: auto;
}

#about-page .timeline-entry:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
}

#about-page .timeline-content::after {
    content: '';
    position: absolute;
    top: 10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

#about-page .timeline-entry:nth-child(even) .timeline-content::after {
    left: -20px;
    border-right-color: white;
}

#about-page .timeline-entry:nth-child(odd) .timeline-content::after {
    right: -20px;
    border-left-color: white;
}

#about-page .timeline-content h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
}

#about-page .timeline-content p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Scoped Documents Grid */
#about-page .docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

#about-page .doc-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

#about-page .doc-item:hover {
    border-color: var(--primary-color);
    background: #f0fdf4;
    /* Light green tint */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

#about-page .doc-icon {
    font-size: 2rem;
    color: #ef4444;
    background: #fee2e2;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#about-page .doc-info {
    flex: 1;
}

#about-page .doc-info h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 5px;
    font-weight: 600;
}

#about-page .doc-info span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

#about-page .download-icon {
    font-size: 1.1rem;
    color: #cbd5e1;
    transition: color 0.3s;
}

#about-page .doc-item:hover .download-icon {
    color: var(--primary-color);
}

/* Scoped Responsive Adjustments */
@media (max-width: 992px) {
    #about-page .intro-grid {
        grid-template-columns: 1fr;
    }

    #about-page .collage-col {
        flex-direction: row;
        width: 100%;
    }

    #about-page .collage-col.offset {
        margin-top: 30px;
    }

    #about-page .hero-content-modern h1 {
        font-size: 3rem;
    }

    #about-page .timeline-modern {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    #about-page .stats-modern-grid {
        flex-direction: column;
        gap: 40px;
    }

    #about-page .stat-divider {
        width: 80px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    }

    #about-page .timeline-line {
        left: 30px;
    }

    #about-page .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        text-align: left !important;
        margin-right: 0 !important;
    }

    #about-page .timeline-content::after {
        left: -20px !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }

    #about-page .timeline-point {
        left: 30px;
    }

    #about-page .timeline-date {
        left: 80px;
        top: 0;
        transform: none;
        background: none;
        padding: 0;
        text-align: left;
    }
}

/* ==========================================================================
   GALLERY CARDS - ROUNDED IMAGES & CENTERED FOOTER
   ========================================================================== */
.gallery-card {
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-card .card-image {
    border-radius: 16px;
    overflow: hidden;
    margin: 15px 0;
}

.gallery-card .card-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover .card-image img {
    transform: scale(1.03);
}

.gallery-card .card-footer {
    width: 100%;
    text-align: center !important;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-card .card-footer span {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center !important;
    width: 100%;
}

.gallery-card .card-top-text {
    text-align: center;
}

.gallery-card .card-top-text h3 {
    margin-bottom: 2px;
}

.gallery-card .card-top-text p {
    margin-top: 0;
}

/* ==========================================================================
   BANK ACCOUNTS PAGE - PREMIUM REDESIGN
   ========================================================================== */
#bank-page {
    background: #f8fafc;
}

/* Hero Section */
.bank-hero-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #27ae60 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bank-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content-centered {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(39, 174, 96, 0.2);
    color: #4ade80;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.bank-hero-premium h1 {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.bank-hero-premium p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Notice Section */
.bank-notice-section {
    padding: 30px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.notice-card {
    background: white;
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #f59e0b;
}

.notice-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notice-icon i {
    font-size: 1.4rem;
    color: #f59e0b;
}

.notice-text {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
}

.notice-text strong {
    color: #0f172a;
}

/* Bank Accounts Grid */
.bank-accounts-premium {
    padding: 40px 0 80px;
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Bank Card */
.bank-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.bank-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
}

.bank-logo-placeholder {
    width: 45px;
    height: 45px;
    background: rgba(39, 174, 96, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-logo-placeholder i {
    font-size: 1.3rem;
    color: #4ade80;
}

.bank-card-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.bank-card-body {
    padding: 20px 25px;
}

.iban-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.iban-row:last-child {
    border-bottom: none;
}

.currency {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    min-width: 45px;
    text-align: center;
}

.currency.tl {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
}

.currency.usd {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.currency.eur {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #b45309;
}

.iban-number {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #374151;
    letter-spacing: 0.5px;
}

.copy-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: #f1f5f9;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #64748b;
}

.copy-btn:hover {
    background: #27ae60;
    color: white;
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

/* Account Holder Info */
.account-holder-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #dcfce7, #d1fae5);
    padding: 20px 30px;
    border-radius: 16px;
    border: 2px solid #86efac;
}

.account-holder-info i {
    font-size: 1.5rem;
    color: #22c55e;
}

.account-holder-info span {
    font-size: 1rem;
    color: #166534;
}

.account-holder-info strong {
    color: #15803d;
    font-weight: 700;
}

/* Copy Toast */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #0f172a;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    z-index: 9999;
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
}

.copy-toast i {
    color: #4ade80;
}

/* Responsive */
@media (max-width: 768px) {
    .bank-hero-premium h1 {
        font-size: 2rem;
    }

    .bank-grid {
        grid-template-columns: 1fr;
    }

    .notice-card {
        flex-direction: column;
        text-align: center;
    }

    .iban-number {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   DONATION CHANNELS PAGE
   ========================================================================== */
#donation-channels-page {
    background: #f8fafc;
}

.donation-channels-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #27ae60 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donation-channels-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.donation-channels-hero h1 {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.donation-channels-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.donation-channels-section {
    padding: 60px 0 80px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.channel-card {
    background: white;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.channel-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.channel-icon i {
    font-size: 1.8rem;
    color: white;
}

.channel-icon.online {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.channel-icon.bank {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
}

.channel-icon.sms {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.channel-icon.recurring {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.channel-icon.ptt {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.channel-icon.inkind {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.channel-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.channel-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.channel-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.channel-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #475569;
    font-size: 0.9rem;
}

.channel-features li i {
    width: 20px;
    height: 20px;
    background: #dcfce7;
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.btn-channel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-channel:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.sms-code {
    background: linear-gradient(135deg, #f3e8ff, #ede9fe);
    border: 2px solid #c4b5fd;
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #5b21b6;
}

.sms-keyword {
    font-weight: 700;
    background: #8b5cf6;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
}

.sms-number {
    font-weight: 700;
    color: #7c3aed;
}

.ptt-info {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #b91c1c;
}

/* Trust Section */
.trust-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 20px;
    border: 2px solid #86efac;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-badge i {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #22c55e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #166534;
}

@media (max-width: 768px) {
    .donation-channels-hero h1 {
        font-size: 2rem;
    }

    .channels-grid {
        grid-template-columns: 1fr;
    }

    .trust-section {
        gap: 25px;
        padding: 25px;
    }
}

/* ==========================================================================
   UNIVERSAL MOBILE REFINEMENTS (All Pages)
   ========================================================================== */

@media (max-width: 992px) {

    /* Header & Navigation */
    .header-actions {
        display: none;
        /* Hide top buttons, move logic to mobile menu */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        display: block !important;
        padding: 80px 20px 40px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 2001;
        overflow-y: auto;
        text-align: center;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0 10px;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        color: #0f172a !important;
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
        transition: all 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--primary-color) !important;
        background: #f0fdf4;
    }

    /* Dropdown on Mobile */
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none !important;
        box-shadow: none;
        border: none;
        padding: 10px 0;
        transform: none;
        background: #f8fafc;
        border-radius: 0;
        margin-top: 0;
    }

    .dropdown.active>.dropdown-menu {
        display: block !important;
    }

    .dropdown>a i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .dropdown.active>a i {
        transform: rotate(180deg);
    }

    .dropdown-menu li {
        border-bottom: 1px solid #edf2f7;
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu a {
        font-size: 0.95rem;
        padding: 12px 0;
        border-bottom: none;
        font-weight: 500;
        color: #475569 !important;
    }

    .mobile-actions {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 25px;
        padding: 0 20px 40px;
        background: white;
    }

    .mobile-actions .btn {
        width: 100% !important;
        justify-content: center;
        padding: 14px !important;
        font-size: 0.95rem !important;
        border-radius: 8px !important;
        margin: 0 !important;
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 2200;
    }

    .header-content {
        justify-content: space-between;
    }

    .logo-icon {
        width: 120px;
    }

    /* Hero Sections */
    .hero-content h1,
    .projects-hero h1,
    .contact-hero-mini h1,
    .bank-hero-premium h1,
    .page-header h1,
    .donation-channels-hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    .hero-content p,
    .projects-hero p,
    .page-header p {
        font-size: 0.95rem !important;
    }

    /* Grid Systems */
    .footer-grid,
    .bank-grid,
    .zakat-grid,
    .contact-grid,
    .team-grid-modern,
    .docs-grid,
    .channels-grid,
    .faq-accordion,
    .projects-main-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .stats-modern-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    /* Ticker */
    #top-ticker-bar {
        font-size: 0.8rem !important;
        height: 40px !important;
        letter-spacing: 0 !important;
    }

    #top-ticker-bar .ticker-content {
        display: flex !important;
        flex-wrap: nowrap !important;
    }

    #top-ticker-bar .ticker-content span {
        padding-right: 120px !important;
        /* Force space for sequential feel */
        font-weight: 700 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    #top-ticker-bar .ticker-content span::after {
        display: inline-flex !important;
        content: "|" !important;
        margin-left: 60px !important;
        opacity: 0.4;
    }

    /* Campaign Popup on Mobile */
    .campaign-modal {
        width: 95%;
        padding: 20px;
    }
}

@media (max-width: 768px) {

    /* Container Padding */
    .container {
        padding: 0 15px !important;
    }

    /* Section Spacing */
    section {
        padding: 60px 0 !important;
    }

    /* Zakat Calculator */
    .zakat-sidebar-container {
        position: static !important;
        margin-top: 30px;
    }

    .sticky-sidebar {
        position: static !important;
    }

    /* Bank Accounts */
    .iban-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px !important;
    }

    .iban-number {
        font-size: 0.85rem !important;
        word-break: break-all;
    }

    /* Projects Filter */
    .filter-toolbar {
        flex-direction: column;
        gap: 20px;
    }

    .filter-groups {
        flex-direction: column;
        width: 100%;
    }

    .filter-options {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        width: 100%;
        display: flex;
    }

    .search-box {
        width: 100% !important;
    }

    /* Footer Bottom */
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* WhatsApp Button */
    .whatsapp-support {
        bottom: 20px;
        right: 20px;
    }

    .support-text {
        display: none;
        /* Hide text on small mobile to save space */
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 100px;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .card-actions {
        flex-direction: column;
    }
}

/* Cart Buttons */
.btn-add-cart {
    background: #f8fafc;
    color: #475569;
    border: 1.5px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
}

.btn-add-cart:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.premium-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    padding: 0 20px 20px;
}

.premium-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.premium-card .card-details {
    flex: 1;
}

.donation-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.btn-secondary-cart {
    background: #f8fafc;
    color: #475569;
    border: 1.5px solid #e2e8f0;
    padding: 20px 30px;
    border-radius: 100px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-secondary-cart:hover {
    background: #f1f5f9;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ==========================================================================
   PAYMENT PAGE STYLES
   ========================================================================== */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

@media (max-width: 992px) {
    .payment-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.checkout-header {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-header h2 {
    font-size: 1.5rem;
    color: #0f172a;
    font-weight: 800;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step.active {
    background: var(--primary-color);
    color: white;
}

.step-line {
    width: 30px;
    height: 2px;
    background: #f1f5f9;
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.checkout-form .form-group {
    margin-bottom: 20px;
}

.checkout-form label {
    display: block;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.checkout-form input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-family: inherit;
    transition: var(--transition);
}

.checkout-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.input-with-icon input {
    padding-left: 55px;
}


/* Checkbox styling */
.form-check-group {
    margin-top: 25px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 0;
    margin-top: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.custom-checkbox .checkmark {
    display: none;
    /* Hide if not used for custom styling */
}

.check-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    user-select: none;
}

.check-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.check-text a:hover {
    text-decoration: underline;
}

.summary-card {
    background: white;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #f8fafc;
}

.summary-card h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 30px;
    font-weight: 800;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
    color: #64748b;
    font-size: 1.15rem;
    font-weight: 400;
}

.summary-line.total {
    margin-top: 30px;
    color: #0f172a;
    font-size: 1.5rem;
}

.summary-line.total span {
    font-weight: 800;
}

.summary-line.total strong {
    font-weight: 900;
    font-size: 2rem;
}

.btn-complete-payment {
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 22px;
    border-radius: 100px;
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /* Standardize gap */
    flex-direction: row;
    /* Ensure icon-text order */
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.2);
}

.btn-complete-payment i {
    font-size: 1.6rem;
}


.btn-complete-payment:hover {
    background: #219150;
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(39, 174, 96, 0.3);
}

.summary-card .divider {
    height: 1px;
    background: #f1f5f9;
    margin: 10px 0;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    color: #94a3b8;
    font-size: 0.85rem;
}

.security-note i {
    font-size: 1rem;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
}

.modal-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.modal-card p {
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 15px;
}

.modal-actions .btn {
    flex: 1;
}

.summary-item-mini {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 10px;
}

.summary-item-mini .item-info {
    display: flex;
    flex-direction: column;
}

.summary-item-mini span {
    font-size: 0.8rem;
    color: #94a3b8;
}

.summary-item-mini strong {
    font-weight: 700;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #e2e8f0;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.lang-btn img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.lang-btn:hover {
    background: #f1f5f9;
}

.lang-btn.active {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

@media (max-width: 991px) {
    .lang-switcher {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
        margin-bottom: 15px;
        order: -1;
    }
}

/* Single Language Toggle Styles */
.lang-switcher .lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: auto;
    height: 36px;
}

.lang-switcher .lang-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.lang-switcher .lang-text {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.lang-switcher .lang-btn img {
    width: 20px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Flag-only Language Switcher Style */
.lang-switcher .lang-btn.flag-only {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-switcher .lang-btn.flag-only img {
    margin: 0;
    width: 20px;
}

/* Premium FAQ Horizontal Slider - Proper Design */
.faq-simple-section {
    padding: 100px 0;
    background: #f8fafc;
    /* Light background to separate from News */
}

.faq-slider-container {
    position: relative;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.faq-slider-container {
    position: relative;
    padding: 0 70px;
    /* Masaüstü için yanlarda ok payı */
    overflow: visible !important;
}

.faq-viewport {
    overflow: hidden;
    padding: 20px 0 40px;
    /* İç boşlukları düzelttim */
    position: relative;
}

.faq-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-card-proper {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    padding: 40px;
    border-radius: 28px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.faq-card-proper:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.faq-card-proper .q-num {
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--primary-color);
    background: rgba(39, 174, 96, 0.1);
    padding: 5px 15px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 22px;
}

.faq-card-proper h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 15px;
}

.faq-card-proper p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.faq-nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    /* Kesinlikle en üstte */
    opacity: 1 !important;
}

.faq-nav-arrow.faq-prev {
    left: 10px;
    /* Padding içinde güvenli konum */
}

.faq-nav-arrow.faq-next {
    right: 10px;
}

.faq-nav-arrow:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.faq-nav-arrow.disabled {
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .faq-nav-arrow.faq-prev {
        left: 0;
    }

    .faq-nav-arrow.faq-next {
        right: 0;
    }
}

@media (max-width: 992px) {
    .faq-slider-container {
        padding: 0 10px;
        /* Mobilde sıkışmayı önlemek için padding sıfırlandı */
    }

    .faq-card-proper {
        flex: 0 0 100%;
        /* Mobilde kartlar tam genişlik */
        padding: 30px 20px;
    }

    .faq-nav-arrow {
        position: static;
        transform: none;
        width: 45px;
        height: 45px;
    }

    .faq-nav-arrow:hover {
        transform: scale(1.1);
    }

    .faq-nav-footer {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 15px;
    }
}

.faq-footer-v6 {
    margin-top: 50px;
    text-align: center;
}

.btn-premium-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.2);
}

.btn-premium-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-premium-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.3);
}

.btn-premium-link:hover i {
    transform: translateX(5px);
}