/* Austria Yetim Eli - Premium Design System */

:root {
    /* Exact yetimelifrance.fr Colors */
    --color-primary: #00a651;     /* Green */
    --color-secondary: #d92a3d;   /* Red */
    --color-accent: #6a9bcc;
    --color-dark: #222222;
    --color-light: #f8f9fa;
    --color-gray: #e9ecef;
    --color-white: #ffffff;
    --color-text-body: #555555;
    
    /* Typography - Pure Poppins */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing & Radii */
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2.5rem;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: var(--color-light);
    color: var(--color-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    padding-top: 85px; /* Added for fixed header */
}

@media (max-width: 992px) {
    body {
        padding-top: 65px; /* Mobile fixed header height */
    }
}

h1, h2, h3, h4, .font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
}

    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: 1400px; /* Increased for single-line header */
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 10px 15px -3px rgba(11, 124, 65, 0.2);
}

.btn-primary:hover {
    background-color: #096334;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 10px 15px -3px rgba(217, 119, 87, 0.2);
}

.btn-secondary:hover {
    background-color: #c46a4d;
    transform: translateY(-2px);
}

/* Top Bar Social Icons */
.top-bar-social {
    display: flex;
    gap: 10px;
}

.top-bar-social a {
    width: 32px;
    height: 32px;
    background: #3a4a55;
    border-radius: 4px; /* Square with slight roundness */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: white;
    transition: 0.3s;
}

.top-bar-social a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.top-bar-social a.whatsapp { background: #25d366; }

/* Nav Pill Highlights */
.nav-pill {
    padding: 6px 18px !important;
    border-radius: 50px !important;
    position: relative;
}

.nav-pill-green {
    background: rgba(0, 166, 81, 0.08);
    color: var(--color-primary) !important;
}

.nav-pill-green::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 10px;
}

.nav-pill-red {
    background: var(--color-secondary) !important;
    color: white !important;
}

/* Flag Icons */
.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
    cursor: pointer;
}

/* Navbar Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px; /* Reduced gap to save horizontal space */
}

.nav-links li {
    list-style: none;
    position: relative;
    white-space: nowrap; /* Prevent items from breaking into 2 lines */
}

.nav-links a {
    font-weight: 600;
    font-size: 14px; /* Slightly smaller for better fit */
    color: #334155;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    gap: 5px; /* Gap for the chevron */
    white-space: nowrap;
}

/* Dropdown Sub-menus - STRICT HIDDEN */
.dropdown-menu {
    display: none; /* Changed from opacity for stability */
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    z-index: 1001;
    border: 1px solid #f1f5f9;
}

@media (min-width: 1201px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: var(--color-primary);
}

/* Nav Pill Highlights - EXACT MATCH */
.nav-pill-green {
    background: #f0fdf4 !important;
    color: #166534 !important;
    border-radius: 12px !important;
    padding: 10px 18px !important;
    position: relative;
    display: inline-flex !important;
    align-items: center;
    flex-direction: column;
}

.nav-pill-green::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 3px;
    background: #166534;
    border-radius: 20px;
}

.nav-pill-red {
    background: #e11d48 !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 8px 24px !important;
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.35);
}

/* Flag Switcher Capsule */
.lang-switcher {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 50px;
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: 0.3s;
}

.flag-icon:hover {
    transform: scale(1.15);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}


@media (max-width: 480px) {
    .logo img { height: 45px; } /* Smaller logo on tiny screens */
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20, 20, 19, 0.8), rgba(20, 20, 19, 0.2), transparent);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Project Cards */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--color-gray);
}

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

.card-img {
    height: 240px;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.progress-bar {
    height: 8px;
    background: var(--color-gray);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-primary);
}

/* Section Grids */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

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

/* Universal Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.grid-aside { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start; }
.grid-aside-rev { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }

/* Page Header / Hero Inner Pages */
.page-header {
    background: var(--color-dark);
    padding: 8rem 0 6rem; /* Increased padding for prominence */
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4; /* Slightly darker for better text contrast */
}
.page-header .container { position: relative; z-index: 10; }

.page-header-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
}

.page-header .section-title {
    font-size: 4rem; /* Larger as per reference */
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}
.page-header .section-subtitle {
    font-weight: 600;
    opacity: 0.9;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer h4 {
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .section { padding: 3rem 0; }
    .hero h1 { font-size: 2.2rem !important; }
    h1 { font-size: 2.2rem !important; line-height: 1.2 !important; }
    h2 { font-size: 1.8rem !important; line-height: 1.3 !important; }
    h3 { font-size: 1.5rem !important; line-height: 1.4 !important; }
    h4 { font-size: 1.25rem !important; }
    
    p, h1, h2, h3, h4, span, div, a {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .container {
        padding: 0 1.5rem !important;
        width: 100% !important;
    }

    /* Footer fix: force stack and align icons */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center;
    }
    .footer .logo, .footer .footer-links li {
        justify-content: center;
        text-align: center;
    }
    .footer-links li {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .footer-links li span {
        max-width: 100%;
        line-height: 1.5;
    }

    /* Horizontal Filter Track */
    .filter-scroll-wrapper {
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px 0 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        display: flex;
        gap: 12px;
        justify-content: flex-start;
    }
    .filter-scroll-wrapper::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    .filter-scroll-wrapper .btn {
        flex: 0 0 auto;
        padding: 0.75rem 1.75rem !important;
    }

    /* Stack Grids */
    .about-grid, .grid-2, .grid-3, .grid-4, .grid-aside, .grid-aside-rev {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }
    
    .stats-grid h4 { font-size: 1.1rem !important; }
    .stats-grid p { font-size: 0.75rem !important; }
    .stats-grid i { font-size: 2rem !important; }

    .page-header { padding: 4rem 0 !important; }
    .section-title { font-size: 2.2rem !important; }
}

/* Google Translate Hidden UI */
#google_translate_element,
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget {
    display: none !important;
}
body {
    top: 0px !important;
}
body.menu-open {
    overflow: hidden !important;
}
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* ------------------------------------- */
/* HEADER REDESIGN (DONATM STYLE)        */
/* ------------------------------------- */
.site-header-redesign {
    display: flex;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
}
@media (min-width: 1481px) {
    .site-header-redesign::before {
        content: '';
        position: absolute;
        top: 0;
        right: 100%;
        width: 100vw;
        height: 100%;
        background: #ffffff;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    .site-header-redesign::after {
        content: '';
        position: absolute;
        top: 38px;
        left: 100%;
        width: 100vw;
        height: calc(100% - 38px);
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
}
.header-logo-img {
    height: 65px;
    position: relative;
    z-index: 10;
    filter: none;
    transition: 0.3s;
}
@media (max-width: 1200px) {
    .header-logo-img {
        height: 52px;
        filter: none !important;
    }
}
.header-logo-column {
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 90px 0 30px;
    min-width: 250px;
}
.header-logo-column::before {
    content: '';
    position: absolute;
    top: 0;
    right: -25px;
    width: 60px;
    height: 100%;
    background: var(--color-primary);
    transform: skewX(-20deg);
    z-index: 1;
}
.header-logo-column::after {
    content: '';
    position: absolute;
    top: 0;
    right: -35px;
    width: 15px;
    height: 100%;
    background: #f97316;
    transform: skewX(-20deg);
    z-index: 0;
}

.header-nav-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.topbar-redesign {
    background: #111d16;
    color: white;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    height: 38px;
}
.topbar-redesign .topbar-text {
    display: flex;
    align-items: center;
    padding-left: 60px;
}
.topbar-redesign .welcome-text {
    color: #f97316;
    font-weight: 600;
    margin-right: 5px;
}
.topbar-redesign .topbar-social {
    background: #f97316;
    display: flex;
    align-items: center;
    padding: 0 30px 0 40px;
    position: relative;
}
.topbar-redesign .topbar-social::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    height: 100%;
    width: 30px;
    background: #f97316;
    transform: skewX(-20deg);
    z-index: 0;
}
@media (min-width: 1481px) {
    .topbar-redesign .topbar-social::after {
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        width: 100vw;
        height: 100%;
        background: #f97316;
        z-index: 0;
    }
}
.topbar-redesign .topbar-social a, .topbar-redesign .topbar-social span {
    position: relative;
    z-index: 1;
    color: white;
}
.topbar-redesign .topbar-social a {
    margin: 0 8px;
    font-size: 0.9rem;
    transition: 0.3s;
}
.topbar-redesign .topbar-social a:hover { opacity: 0.8; }

.navbar-redesign {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 0 20px 0 50px;
}

/* Mobil dil pill'leri sadece mobil menüde görünür */
.mobile-lang-pills { display: none; }

/* Mobile & Tablet Breakpoints for Redesign */
@media (max-width: 1200px) {
    .site-header-redesign { flex-direction: column; position: sticky; top: 0; z-index: 2000; }
    .mobile-whatsapp-btn { display: flex !important; }
    
    /* 1. Header Bar (White instead of Green) */
    .header-logo-column {
        padding: 15px 20px;
        justify-content: space-between;
        background: white !important; /* Changed from primary */
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        z-index: 1000; /* Ensure it stays above dropdown */
    }
    .header-logo-column::before, .header-logo-column::after { display: none; }
    
    /* 2. Hamburger Button */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border: 2px solid #bbf7d0; /* Light green border */
        border-radius: 12px;
        background: transparent;
        cursor: pointer;
    }
    .menu-toggle i {
        color: #475569 !important; /* Dark grey lines */
        font-size: 1.5rem;
    }
    
    .header-nav-column { width: 100%; }
    .topbar-redesign { display: none; }
    
    .navbar-redesign {
        display: block;
        padding: 0;
    }
    
    /* 3. Mobile Menu Wrapper */
    #mobile-menu-wrapper {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* içerik yukarıdan başlasın, alt satır dibe itilmesin */
        background: #fdfdfd;
        position: fixed;
        top: 81px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 81px);
        height: auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 20px 16px 26px 16px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        z-index: 999;
    }
    #mobile-menu-wrapper.active {
        display: flex !important;
    }
    
    /* 4. Menu Links - sola dayalı, çizgili satırlar */
    .navbar-redesign > .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
        padding: 0;
        margin-bottom: 10px;
    }
    .navbar-redesign > .nav-links > li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #eef1f4;
    }
    .navbar-redesign > .nav-links > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 1.05rem;
        font-weight: 600;
        color: #334155;
        padding: 13px 4px;
        width: 100%;
    }
    .navbar-redesign > .nav-links > li > a i.fa-chevron-down {
        color: #94a3b8;
        font-size: 0.8rem !important;
    }

    /* Aktif "Anasayfa" - pill yerine yeşil metin */
    .navbar-redesign > .nav-links > li > a.nav-pill-green {
        background: transparent !important;
        color: #0b7c41 !important;
        padding: 13px 4px !important;
        border-radius: 0 !important;
        flex-direction: row !important;
    }
    .navbar-redesign > .nav-links > li > a.nav-pill-green::after { display: none !important; }

    /* Açık dropdown - çerçeveli kutu (nav-pill-green'i ezmek için !important) */
    .navbar-redesign > .nav-links > li.dropdown.active > a {
        border: 2px solid #1e293b !important;
        border-radius: 12px !important;
        margin: 4px 0;
        padding: 14px 14px !important;
    }
    .navbar-redesign > .nav-links > li.dropdown.active > a i.fa-chevron-down {
        color: #1e293b;
    }
    
    /* Kurban Red Pill */
    .navbar-redesign .nav-links li a.nav-pill-red {
        background: #e11d48 !important;
        color: white !important;
        padding: 12px 35px;
        border-radius: 25px;
        box-shadow: 0 10px 25px -5px rgba(225, 29, 72, 0.5) !important;
    }
    
    /* 5. Bottom Actions - dikey blok */
    .navbar-redesign .actions {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-top: 18px;
        padding-top: 22px;
        border-top: 1px solid #e2e8f0;
        gap: 14px;
    }
    .navbar-redesign .actions .action-divider { display: none; }

    /* Masaüstü globe dil seçici mobilde gizli */
    .lang-switcher { display: none !important; }

    /* Mobil dil pill'leri: TR / DE / EN */
    .mobile-lang-pills {
        display: flex;
        gap: 10px;
    }
    .mobile-lang-pills button {
        min-width: 48px;
        padding: 10px 0;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        background: #fff;
        font-family: inherit;
        font-weight: 700;
        font-size: 0.9rem;
        color: #64748b;
        cursor: pointer;
        transition: 0.25s;
    }
    .mobile-lang-pills button.active {
        color: #0b7c41;
        border-color: #0b7c41;
        background: #f0fdf4;
    }

    /* Sepet - tam genişlik çerçeveli pill */
    .btn-login {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100% !important;
        height: auto !important;
        padding: 16px !important;
        background: #fff !important;
        border: 1.5px solid #0b7c41 !important;
        color: #0b7c41 !important;
        border-radius: 50px !important;
        font-weight: 700;
    }
    .btn-login .login-text { display: inline !important; }
    #cart-badge {
        background: #e2703a !important;
    }

    /* Bağış Yap - tam genişlik yeşil pill */
    .btn-donate-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-left: 0 !important;
        background: #0b7c41 !important;
        color: #fff !important;
        border-radius: 50px !important;
        height: auto;
        padding: 17px !important;
        font-size: 1rem !important;
        box-shadow: 0 10px 24px rgba(11, 124, 65, 0.25) !important;
    }
    .btn-donate-mobile::after { display: none !important; }

    
    /* Mobile Dropdown Click Logic */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 4px 0 10px 12px !important;
        margin: 0 !important;
        min-width: 100%;
        background: transparent;
        border-radius: 0;
        display: none;
    }
    .dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .dropdown.active .dropdown-menu li {
        width: 100%;
        display: block;
        padding: 0;
        margin: 0;
    }
    .dropdown.active .dropdown-menu a {
        display: flex !important;
        align-items: center;
        gap: 12px;
        padding: 14px 10px;
        color: #334155 !important;
        font-weight: 600;
        text-align: left !important;
        width: 100%;
        box-sizing: border-box;
    }
    .dropdown.active .dropdown-menu a i {
        width: 20px;
        text-align: center;
        color: var(--color-primary);
    }
    .dropdown > a i {
        transition: transform 0.3s ease;
    }
    .dropdown.active > a i {
        transform: rotate(180deg);
    }
}
@media (min-width: 1201px) {
    .btn-login {
        padding: 10px 20px !important;
        width: auto !important;
        font-size: 0.85rem !important;
    }
    .login-text {
        display: inline-block;
    }
}

/* Impact Section (Mission Cards) */
.impact-section {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
    padding: 3rem 0; /* More compact padding */
}

.impact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/logo.png");
    background-size: 400px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    mix-blend-mode: overlay;
    filter: brightness(0) invert(1);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.impact-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-card .icon-box {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.impact-card h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: none;
}

.impact-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
}

.impact-card .icon-box {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.impact-card:hover .icon-box {
    transform: scale(1.05);
}

.impact-card .icon-box i {
    font-size: 2.8rem;
    color: var(--color-primary);
}

.impact-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1200px) {
    .impact-card { padding: 40px 25px; }
    .impact-card h3 { font-size: 1.3rem; }
}

@media (max-width: 992px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-section {
        padding: 5rem 0;
    }
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }
    .impact-card {
        padding: 10px;
    }
    .impact-card .icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    .impact-card h3 {
        font-size: 1rem;
    }
    .impact-card p {
        font-size: 0.75rem;
    }
}


/* ------------------------------------- */
/* HERO REDESIGN V2                      */
/* ------------------------------------- */
.hero-v2 {
    background-color: #fcf9f6;
    padding: 10rem 0 18rem 0;
    position: relative;
    overflow: hidden;
}

.hero-v2 .africa-map {
    position: absolute;
    top: 50px;
    left: 20%;
    width: 350px;
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

.hero-v2-content {
    position: relative;
    z-index: 10;
}

.hero-v2-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.hero-v2-subtitle i {
    color: var(--color-secondary);
    font-size: 1.4rem;
}

.hero-v2-title {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2.5rem;
}

.hero-v2-title span {
    color: var(--color-secondary);
    display: block;
}

.hero-v2-desc {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    max-width: 550px;
}

.hero-v2-image {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
}

.hero-v2-image .image-mask {
    position: relative;
    width: 580px;
    height: 580px;
    padding: 15px;
    background: white;
    border-radius: 50% 50% 0 50%;
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.15);
}

.hero-v2-image .image-mask::before {
    content: "";
    position: absolute;
    inset: -10px;
    border: 2px solid var(--color-primary);
    border-radius: 50% 50% 0 50%;
    opacity: 0.3;
    z-index: -1;
}

.hero-v2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 50% 0 50%;
}

.quick-cards-overlap {
    margin-top: -12rem;
    position: relative;
    z-index: 20;
    padding-bottom: 5rem;
}

.quick-card-v2 {
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}

.quick-card-v2:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.2);
}

.quick-card-v2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: white;
    opacity: 0.05;
    border-radius: 50%;
}

.quick-card-v2 .icon-circle {
    width: 76px;
    height: 76px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.quick-card-v2 .icon-circle i {
    font-size: 2rem;
}

.quick-card-v2.water { background: #065f46; }
.quick-card-v2.water i { color: #065f46; }

.quick-card-v2.kurban { background: #15803d; }
.quick-card-v2.kurban i { color: #15803d; }

.quick-card-v2.ramadan { background: #f97316; }
.quick-card-v2.ramadan i { color: #f97316; }

.quick-card-v2 h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.quick-card-v2 p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quick-card-v2 .card-link {
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
}

.stats-bar-v2 {
    background: #fcf9f6;
    padding: 4rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item-v2 {
    display: flex;
    align-items: center;
    gap: 18px;
}

.stat-item-v2 .icon-wrap {
    width: 54px;
    height: 54px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.stat-item-v2 i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.stat-item-v2 .text h5 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2px;
}

.stat-item-v2 .text span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .hero-v2-title { font-size: 3.8rem; }
    .hero-v2-image .image-mask { width: 450px; height: 450px; }
}

@media (max-width: 992px) {
    .hero-v2 { padding: 6rem 0 12rem 0; }
    .hero-v2 .container { grid-template-columns: 1fr; text-align: center; }
    .hero-v2-content { order: 2; }
    .hero-v2-image { order: 1; justify-content: center; }
    .hero-v2-desc { margin: 0 auto 3rem auto; }
    .hero-v2 .btn-group { justify-content: center; }
    .stats-bar-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .hero-v2-title { font-size: 2.8rem; }
    .hero-v2-image .image-mask { width: 340px; height: 340px; }
    .quick-cards-overlap { margin-top: -8rem; }
    .stats-bar-grid { grid-template-columns: 1fr; gap: 2rem; }
}


/* Hero Slider v3 (IHH Style) */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0 1rem 0;
    background: #f8fafc;
}

.hero-swiper {
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-swiper .slide-img-wrap {
    width: 100%;
    height: 650px; /* Default desktop height */
    position: relative;
}

@media (max-width: 768px) {
    .hero-swiper .slide-img-wrap { height: 500px; }
}

.hero-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-swiper .desktop-img { display: block; }
.hero-swiper .mobile-img { display: none; }

@media (max-width: 768px) {
    .hero-swiper .desktop-img { display: none; }
    .hero-swiper .mobile-img { display: block; }
}

.hero-swiper .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 8%;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-swiper .slide-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 70%);
        padding: 0 20px 80px 20px;
        align-items: flex-end;
    }
}

.slide-content-inner {
    max-width: 600px;
    color: white;
}

.slide-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.slide-category img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.slide-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.slide-btns {
    display: flex;
    gap: 15px;
}

.slide-btns .btn-primary {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.slide-btns .btn.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white !important;
}

.slide-btns .btn.glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .slide-title { font-size: 2.2rem; }
    .slide-desc { font-size: 1rem; }
    .slide-btns { flex-direction: column; width: 100%; }
    .slide-btns .btn { width: 100%; }
}

/* Quick Links Bar */
.hero-quick-links {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 100;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
    .hero-quick-links { display: none; }
}

.quick-links-grid {
    display: flex;
    width: 100%;
}

.quick-link-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 10px;
    gap: 8px;
    border-right: 1px solid #f1f5f9;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.quick-link-item:last-child { border-right: none; }

.quick-link-item .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    transition: 0.3s;
}


.quick-link-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--active-color, var(--color-primary));
}

/* Swiper Nav/Pagination Customization */
.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-primary);
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: white;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 900;
}


/* Quick Link Fixes */
.quick-link-item img,
.quick-link-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #475569;
    transition: 0.3s;
}

.quick-link-item span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
}

.quick-link-item:hover .icon-circle,
.quick-link-item.active .icon-circle {
    background: var(--active-color, var(--color-primary));
    transform: translateY(-5px);
}

.quick-link-item:hover img,
.quick-link-item.active img,
.quick-link-item:hover i,
.quick-link-item.active i {
    filter: brightness(0) invert(1);
    color: white !important;
}


/* Hero Quick Links Bar (standalone) */
.hero-quick-links-bar {
    background: white;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 1200px;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    margin: 0 auto 1.5rem auto;
    width: 100%;
}

.mobile-nav-bar { display: none !important; }
.desktop-nav-bar { display: block !important; }

@media (max-width: 992px) {
    .mobile-nav-bar { display: block !important; }
    .desktop-nav-bar { display: none !important; }

    .hero-quick-links-bar.mobile-nav-bar { 
        display: block !important; 
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
        width: 100%;
        z-index: 10;
        background: white !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
        margin: 0 !important;
        border-radius: 0;
        padding: 8px 0;
        scrollbar-width: none;
        border-bottom: 1px solid #f1f5f9;
    }
    .hero-quick-links-bar::-webkit-scrollbar { display: none; }

    .quick-links-grid {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 12px;
        padding: 10px 20px;
    }
    .quick-link-item {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
        background: white;
        border: 1px solid #f1f5f9;
        border-radius: 50px !important;
        padding: 7px 14px !important;
        flex-direction: row !important;
        gap: 8px !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.06);
        border-right: none !important;
        transform: none !important; /* Remove jump */
    }
    .quick-link-item .icon-circle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 24px !important;
        height: 24px !important;
        min-width: 24px;
        font-size: 0.75rem !important;
        background: #f8fafc;
        margin-bottom: 0 !important;
        transform: none !important; /* Remove icon jump */
    }
    .quick-link-item span {
        font-size: 0.72rem !important;
        font-weight: 700;
        white-space: nowrap;
        color: var(--color-dark);
        line-height: 1 !important; /* Help centering */
    }
    .quick-link-item.active {
        background: var(--active-color) !important;
        border-color: var(--active-color) !important;
        transform: none !important;
    }
    .quick-link-item.active span, 
    .quick-link-item.active i {
        color: white !important;
    }
    .quick-link-item.active .icon-circle {
        background: rgba(255,255,255,0.2) !important;
        transform: none !important;
    }
    }
    
    /* Hide swiper dots on mobile as requested */
    .hero-swiper .swiper-pagination {
        display: none !important;
    }
}

/* Remove old absolute positioning for hero-quick-links if it still exists */
.hero-quick-links {
    position: static !important;
    background: white;
}


/* -----------------------------------------------
   MOBILE HERO SLIDER - Card Layout (Reference)
----------------------------------------------- */

/* Desktop: show overlay, hide mobile card */
.slide-desktop-only { display: flex; }
.slide-mobile-only  { display: none; }
.slide-mobile-img-title { display: none; }

@media (max-width: 768px) {

    /* -- Swiper & Slide reset -- */
    .hero-slider-section {
        background: white;
    }

    .hero-swiper .swiper-slide {
        display: flex;
        flex-direction: column;
        height: auto !important;
    }

    /* -- Image area: fixed height, no overlay text -- */
    .hero-swiper .slide-img-wrap {
        height: 220px;
        border-radius: 16px 16px 0 0;
        overflow: hidden;
        position: relative;
    }

    .hero-swiper .slide-img-wrap .desktop-img { display: block; }
    .hero-swiper .slide-img-wrap .mobile-img  { display: none; }

    /* Hide desktop overlay on mobile */
    .slide-desktop-only { display: none !important; }

    /* Mobile category label on image (top-left) */
    .slide-mobile-img-title {
        display: none !important; /* User requested to hide this to prevent duplicate names */
    }

    .slide-mobile-category-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: white;
        padding: 8px 16px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    /* -- White content card below image -- */
    .slide-mobile-only { display: block; }

    .slide-mobile-card {
        background: white;
        border-radius: 0 0 16px 16px;
        padding: 20px 20px 24px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        margin: 0 8px 16px;
        text-align: center; /* Center all text */
    }

    .slide-mobile-cat {
        display: flex;
        align-items: center;
        justify-content: center; /* Center the category text and icon */
        gap: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .slide-mobile-title {
        font-size: 1.6rem !important;
        font-weight: 800 !important;
        color: #1e293b !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
    }

    .slide-mobile-desc {
        font-size: 0.92rem;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .slide-mobile-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: white;
        font-weight: 700;
        font-size: 0.95rem;
        padding: 12px 24px;
        border-radius: 50px;
        text-decoration: none;
        transition: 0.3s;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .slide-mobile-btn:hover {
        filter: brightness(1.1);
        transform: translateY(-2px);
    }

    /* -- Navigation arrows on mobile -- */
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        top: 110px; /* center on image area only */
        width: 36px;
        height: 36px;
        background: rgba(0,0,0,0.35);
    }

    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 0.9rem;
    }

    /* -- Pagination dots below card -- */
    .hero-swiper .swiper-pagination {
        bottom: 0;
        position: relative;
        margin-top: 4px;
        padding-bottom: 8px;
    }

    .hero-swiper .swiper-pagination-bullet {
        background: #cbd5e1;
        opacity: 1;
        width: 8px;
        height: 8px;
    }

    .hero-swiper .swiper-pagination-bullet-active {
        background: var(--color-primary);
        width: 24px;
        border-radius: 4px;
    }
}


/* Newsletter Section */
.newsletter-section {
    background: #fdfdfd;
    padding: 3rem 0;
    border-top: 1px solid #f1f5f9;
}

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

.newsletter-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.newsletter-content .section-desc {
    color: #64748b;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(11, 124, 65, 0.1);
}

.newsletter-form .btn {
    padding: 0 3.5rem;
    border-radius: 12px;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 4rem 0;
    }
    .newsletter-content .section-title {
        font-size: 2rem;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
        padding: 1.2rem 1.5rem;
    }
}


/* News Slider Section */
.news-slider-section {
    position: relative;
    overflow: hidden;
}

/* ===== Ana sayfa haberler: her ekranda alt alta kartlar ===== */
.news-section {
    background: #f3eee4;
    padding: 4rem 0 4.5rem;
}

.news-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.news-label {
    display: block;
    color: #e2703a;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.news-section .news-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 14px;
}

.news-subtitle {
    color: #5b6b60;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto;
}

/* Kart yığını - geniş ekranda okunabilir tek sütun */
.news-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 780px;
    margin: 0 auto;
}

.news-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Yığındaki kart: tüm kart tıklanabilir bağlantı */
.news-stack .news-card {
    display: block;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #ece5d8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.news-stack .news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.09);
}

.news-stack .news-img {
    height: 300px;
}

.news-stack .news-body {
    padding: 26px 28px 28px;
}

.news-card-date {
    display: block;
    color: #e2703a;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.news-stack .news-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 12px;
}

.news-stack .news-body p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.news-stack .news-link {
    display: inline-flex;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.92rem;
    gap: 8px;
}

@media (max-width: 768px) {
    .news-section { padding: 3rem 0 3.5rem; }
    .news-section .news-title { font-size: 1.75rem; }
    .news-subtitle { font-size: 0.95rem; }
    .news-stack { gap: 20px; }
    .news-stack .news-img { height: 220px; }
    .news-stack .news-body { padding: 20px 20px 22px; }
    .news-stack .news-body h3 { font-size: 1.15rem; }
}

/* "Haberler" butonu - dolu yeşil pill
   (.btn donatm-components.css'te 8px veriyor, bu yüzden .btn.news-all-btn ile özgüllük artırıldı) */
.btn.news-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2.5rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(11, 124, 65, 0.25);
    transition: 0.3s;
}

.btn.news-all-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(11, 124, 65, 0.35);
}

.news-swiper {
    padding: 20px 0 60px 0 !important;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s;
    border: 1px solid #f1f5f9;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.news-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--color-primary);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.news-body {
    padding: 25px;
}

.news-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1e293b;
    line-height: 1.4;
}

.news-body p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.news-link:hover {
    gap: 12px;
}

/* Swiper Navigation Customization for News */
.news-next, .news-prev {
    width: 45px !important;
    height: 45px !important;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    color: var(--color-primary) !important;
    top: 140px !important; /* Positioned over the image area */
    z-index: 10;
}

.news-prev {
    left: -22px !important; /* Slightly outside on desktop for better look */
}

.news-next {
    right: -22px !important;
}

@media (max-width: 1240px) {
    .news-prev { left: 5px !important; }
    .news-next { right: 5px !important; }
}

.news-next::after, .news-prev::after {
    font-size: 1rem !important;
    font-weight: 900 !important;
}

.news-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary) !important;
}



/* Google Translate Toolbar Hide - Aggressive */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.goog-te-banner,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
[id=":1.container"],
#\:1\.container {
    display: none !important;
    visibility: hidden !important;
}


body {
    top: 0px !important;
    position: static !important;
}

html {
    padding-top: 0px !important;
}

.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}



@media (max-width: 768px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .section {
        padding: 30px 0 !important;
    }
    .footer-social {
        justify-content: center;
    }
}

/* Newsletter Section Refinement */
.newsletter-section {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
}

.newsletter-section .section-title {
    font-size: 2.2rem !important;
    margin-bottom: 10px !important;
    font-weight: 800;
}

.newsletter-section .section-desc {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    white-space: nowrap; /* Force single line */
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    background: white;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none !important;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.newsletter-form .btn {
    padding: 0 40px;
    border-radius: 12px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .newsletter-section .section-title {
        font-size: 1.8rem !important;
    }
    .newsletter-section .section-desc {
        font-size: 0.85rem;
        white-space: normal; 
    }
    .newsletter-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        gap: 10px;
        padding: 0;
    }
    .newsletter-form input {
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .newsletter-form .btn {
        padding: 15px;
    }
}


/* "Tüm Projeler" butonu - koyu yeşil, kompakt pill
   (.btn donatm-components.css'te 8px veriyor, .btn.btn-all-projects ile özgüllük artırıldı) */
.btn.btn-all-projects {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #0d3b26;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0;
    box-shadow: 0 8px 20px rgba(13, 59, 38, 0.22);
    transition: 0.3s;
}

.btn.btn-all-projects i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn.btn-all-projects:hover {
    background: #0b7c41;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(11, 124, 65, 0.28);
}

.btn.btn-all-projects:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .btn.btn-all-projects {
        padding: 12px 26px;
        font-size: 0.9rem;
    }
}

/* not: masaüstünde 14px 32px, mobilde 12px 26px */

/* ===== Gönüllü Yorumları (Umuda Uzanan Eller) ===== */
.vol-section {
    background: #12293f;
    padding: 4rem 0 4.5rem;
}

.vol-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.vol-label {
    display: block;
    color: #e2703a;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.vol-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.vol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.vol-card {
    background: #1b3a58;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: 0.3s;
}

.vol-card:hover {
    transform: translateY(-4px);
    border-color: rgba(226, 112, 58, 0.35);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
}

.vol-quote {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.vol-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vol-avatar {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.vol-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.vol-meta strong {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.vol-meta small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .vol-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .vol-section { padding: 3rem 0 3.5rem; }
    .vol-title { font-size: 1.75rem; }
    .vol-card { padding: 22px; gap: 18px; }
    .vol-quote { font-size: 0.92rem; }
}

/* ===== E-Bülten: koyu yeşil kart ===== */
.nl-section {
    background: #f3eee4 !important;
    padding: 0 0 4rem !important;
    text-align: left !important;
}

.nl-card {
    background: #12432c;
    border-radius: 20px;
    padding: 46px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.nl-title {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
}

.nl-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 26px;
    max-width: 520px;
}

.nl-form {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nl-input {
    flex: 1;
    padding: 17px 26px;
    border: none;
    border-radius: 50px;
    background: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1e293b;
    outline: none;
}

.nl-input::placeholder {
    color: #a8b3c1;
}

.nl-input:focus {
    box-shadow: 0 0 0 3px rgba(226, 112, 58, 0.35);
}

.nl-btn {
    flex: 0 0 auto;
    padding: 17px 38px;
    border: none;
    border-radius: 50px;
    background: #e2703a;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.nl-btn:hover {
    background: #cf5f2b;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nl-section { padding: 0 0 3rem !important; }
    .nl-card { padding: 32px 24px; border-radius: 16px; }
    .nl-title { font-size: 1.3rem; }
    .nl-desc { font-size: 0.9rem; margin-bottom: 20px; }
    .nl-form { flex-direction: column; align-items: stretch; gap: 10px; }
    .nl-btn { padding: 15px 30px; }
}

/* ===== Footer yeniden düzen ===== */
.footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    align-items: start;
}

.ft-logo {
    height: 60px;
    filter: brightness(0) invert(1);
    margin-bottom: 18px;
}

.ft-about {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 34ch;
}

.ft-social {
    display: flex;
    gap: 12px;
}

.ft-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    transition: 0.3s;
}

.ft-social a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer h4.ft-heading {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ft-links li {
    margin-bottom: 12px;
}

.ft-links a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    transition: 0.3s;
}

.ft-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.ft-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.6;
}

.ft-contact i {
    color: var(--color-primary);
    margin-top: 4px;
    flex: 0 0 16px;
}

.ft-contact a {
    color: rgba(255, 255, 255, 0.68);
    transition: 0.3s;
}

.ft-contact a:hover {
    color: #fff;
}

.ft-phone-label {
    color: rgba(255, 255, 255, 0.45);
    flex: 0 0 auto;
}

/* Footer banka blokları */
.ft-banks {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ft-bank {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ft-bank strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.ft-bank-label {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

.ft-bank code {
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    letter-spacing: 0.4px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: left !important;
    }
    /* eski mobil kural .footer-links li'yi align-items:center ile ortalıyordu */
    .footer .logo,
    .footer .ft-links li,
    .footer .ft-contact li {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }
    .footer .ft-links li {
        flex-direction: row;
    }
    .ft-about { max-width: none; }
    .ft-social { justify-content: flex-start; }
}

/* ===== Ana sayfa: Banka Hesaplarımız ===== */
.bank-section {
    background: #f3eee4;
    padding: 4rem 0 4.5rem;
}

.bank-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bank-label {
    display: block;
    color: #e2703a;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bank-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.bank-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 780px;
    margin: 0 auto;
}

.bank-card {
    background: #fff;
    border: 1px solid #ece5d8;
    border-radius: 18px;
    padding: 28px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.bank-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.bank-row + .bank-row {
    margin-top: 16px;
}

.bank-row-label {
    display: block;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.bank-row code {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #1e293b;
    letter-spacing: 0.5px;
    word-break: break-all;
}

@media (max-width: 768px) {
    .bank-section { padding: 3rem 0 3.5rem; }
    .bank-title { font-size: 1.75rem; }
    .bank-card { padding: 22px 20px; }
}

/* ===== Mobil Alt Aksiyon Çubuğu + Üst Sepet ===== */
.mobile-bottom-bar { display: none; }
.mobile-cart-btn { display: none; }

@media (max-width: 992px) {
    /* Alt sabit aksiyon çubuğu (kompakt) */
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 9998;
        gap: 7px;
        background: #ffffff;
        box-shadow: 0 -3px 14px rgba(0,0,0,0.12);
        padding: 5px 7px;
        padding-bottom: calc(5px + env(safe-area-inset-bottom, 0px));
    }
    .mobile-bottom-bar a {
        display: flex; align-items: center; justify-content: center; gap: 7px;
        height: 42px; border-radius: 11px;
        font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.9rem;
        text-decoration: none; transition: transform 0.15s ease;
    }
    .mobile-bottom-bar a:active { transform: scale(0.97); }
    .mobile-bottom-bar a i { font-size: 1.05rem; }
    .mbb-whatsapp { flex: 1; background: #25d366; color: #fff; }
    .mbb-donate  { flex: 1.6; background: #dc2626; color: #fff; box-shadow: 0 4px 12px rgba(220,38,38,0.3); }

    /* Alt çubuk içeriği kapatmasın */
    body { padding-bottom: 60px !important; }

    /* Masaüstü yüzen buton mobilde gizli (alt çubuk devrede) */
    .global-floating-donate-btn { display: none !important; }

    /* Üstteki whatsapp ikonu alt çubuğa taşındı */
    .mobile-whatsapp-btn { display: none !important; }

    /* Üst header sepet ikonu */
    .mobile-cart-btn {
        display: inline-flex; align-items: center; justify-content: center;
        position: relative;
        width: 44px; height: 44px; border-radius: 12px;
        border: 2px solid #166534; color: #166534; font-size: 1.15rem;
        text-decoration: none; background: #fff;
    }
    .mobile-cart-btn .cart-badge {
        position: absolute; top: -7px; right: -7px;
        min-width: 20px; height: 20px; padding: 0 5px;
        background: #ef4444; color: #fff; border-radius: 999px;
        font-size: 0.7rem; font-weight: 800; line-height: 1;
        align-items: center; justify-content: center;
    }
}
