:root {
    --primary-color: #2E7D32; /* Koyu Yeşil */
    --secondary-color: #81C784; /* Açık Yeşil */
    --accent-color: #FFC107; /* Sarı (Vurgu) */
    --bg-color: #F5F5F5;
    --text-color: #333;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    color: white;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.splash-logo-container {
    position: relative;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-logo {
    animation: pulse 2s infinite;
    border-radius: 50%;
    z-index: 2;
}

/* Dairesel Işık Efekti (Rotating Circle) */
.splash-logo-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 80%, rgba(255, 255, 255, 0.8) 90%, transparent 100%);
    animation: rotateShine 2s linear infinite;
    z-index: 1;
}

@keyframes rotateShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Eski efekti kaldırıyoruz */
.splash-logo-container::after {
    display: none;
}

.splash-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out;
}

.splash-loading {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.splash-loading span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    animation: splashDot 1.2s infinite ease-in-out;
}

.splash-loading span:nth-child(2) {
    animation-delay: 0.15s;
}

.splash-loading span:nth-child(3) {
    animation-delay: 0.3s;
}

.splash-loading-text {
    margin-top: 10px;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
    animation: fadeInUp 1.1s ease-out;
}

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

@keyframes splashDot {
    0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

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

/* Hide content initially */
body.loading {
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    overflow-x: hidden; /* Yatay taşmayı engelle */
    position: relative; /* Gerekli */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding-bottom: 70px; /* Alt menü için boşluk */
}

.desktop-site {
    display: none;
}

.mobile-shell {
    display: block;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-icons {
    display: flex;
    align-items: center;
}

.header-icons i {
    font-size: 1.2rem;
    margin-left: 15px;
    cursor: pointer;
}

.user-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 15px;
    font-size: 0.85rem;
    text-align: right;
    line-height: 1.2;
}

.user-name {
    font-weight: 600;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

.user-display-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.slide-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-desc {
    font-size: 0.85rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: var(--accent-color);
    transform: scale(1.3);
}

/* Hero Section */
.hero-section {
    padding: 20px;
}

.card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.hero-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-accent {
    background-color: var(--accent-color);
    color: #333;
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
}

.btn:active {
    transform: scale(0.95);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    cursor: pointer;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.action-label {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.2;
}

/* Projects Slider */
.section-header {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.see-all {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
}

.projects-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 0 20px 20px 20px;
    scrollbar-width: none; /* Firefox */
    align-items: flex-start;
}

.projects-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.project-card {
    min-width: 260px;
    flex: 0 0 260px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    align-self: flex-start;
}

.project-img {
    width: 100%;
    height: 140px;
    background-color: #ddd;
    object-fit: cover;
}

.project-content {
    padding: 15px;
}

.project-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.project-desc {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.progress-bar {
    height: 6px;
    background-color: #eee;
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

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

.raised-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #888;
}

/* News Feed */
.news-list {
    padding: 0 20px;
}

.news-item {
    background: var(--white);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    box-shadow: var(--shadow);
    align-items: center;
    cursor: pointer;
}

.news-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background-color: #ddd;
    object-fit: cover;
    flex-shrink: 0;
}

.news-content h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.news-detail-body {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}

.news-detail-body p {
    margin-bottom: 12px;
}

.news-date {
    font-size: 0.75rem;
    color: #999;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #999;
    text-decoration: none;
    font-size: 0.75rem;
    gap: 4px;
    transition: color 0.3s;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item i {
    font-size: 1.3rem;
}

/* Donate Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: flex-end;
    z-index: 2000;
}

.modal-content {
    background: var(--white);
    width: 100%;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding: 30px 20px;
    animation: slideUp 0.3s ease-out;
    max-height: 88vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.ad-popup-modal {
    padding: 20px;
    background: rgba(8, 18, 10, 0.62);
    backdrop-filter: blur(4px);
}

.ad-popup-content {
    width: min(420px, 100%);
    border-radius: 22px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.amount-btn {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    background: transparent;
    cursor: pointer;
    min-width: 0;
}

.amount-btn.selected {
    border-color: var(--primary-color);
    background-color: #E8F5E9;
    color: var(--primary-color);
    font-weight: 600;
}

/* Push Notification Toast */
.push-notification {
    position: fixed;
    top: -100px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.push-notification.show {
    top: 20px;
}

.push-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.push-content h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.push-content p {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

/* Forms */
.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
}

.auth-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-top: 20px;
    text-align: center;
}

.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.auth-tab {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    color: #999;
    font-weight: 500;
}

.auth-tab.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Notifications */
.notification-list {
    padding: 0 20px;
}

.notification-item {
    background: white;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.notif-icon {
    width: 40px;
    height: 40px;
    background: #E8F5E9;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-content h5 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.notif-content p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.notif-time {
    font-size: 0.7rem;
    color: #999;
}

/* Menu List */
.menu-list {
    list-style: none;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.menu-item {
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.2s;
    justify-content: space-between;
}

.menu-link:active {
    background-color: #f9f9f9;
}

.menu-icon {
    width: 30px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.menu-text {
    flex: 1;
    font-weight: 500;
}

/* Pages */
.page {
    display: none;
    animation: fadeIn 0.3s;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
        background: linear-gradient(180deg, #f4f7f8 0%, #ffffff 100%);
    }

    #splash-screen,
    .mobile-shell,
    .push-notification {
        display: none !important;
    }

    .desktop-site {
        display: block;
        width: 100%;
        min-height: 100vh;
        padding: 0 0 56px;
    }

    .desktop-floating-bubble {
        position: fixed;
        bottom: 34px;
        z-index: 1001;
        width: 112px;
        height: 112px;
        border-radius: 50%;
        background: var(--bubble-color, #27b7c2);
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 16px;
        box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
        animation: bubbleFloat 2.8s ease-in-out infinite;
    }

    .desktop-floating-bubble::before {
        content: "";
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 2px solid var(--bubble-color, #27b7c2);
        animation: bubblePulse 2.2s ease-out infinite;
    }

    .desktop-floating-bubble-left {
        left: 28px;
    }

    .desktop-floating-bubble-right {
        right: 28px;
    }

    .desktop-floating-bubble span {
        position: relative;
        z-index: 2;
        font-size: 1.05rem;
        font-weight: 800;
        line-height: 1.05;
        text-transform: uppercase;
        max-width: 76px;
    }

    .desktop-floating-bubble i {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;
        font-size: 1.2rem;
    }

    .desktop-contact-dock {
        position: fixed;
        bottom: 28px;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .desktop-contact-dock-left {
        left: 28px;
    }

    .desktop-contact-dock-right {
        right: 28px;
    }

    .desktop-contact-pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 190px;
        padding: 14px 18px;
        border-radius: 999px;
        color: white;
        text-decoration: none;
        font-weight: 700;
        box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
        animation: contactDockFloat 2.8s ease-in-out infinite;
    }

    .desktop-contact-pill.whatsapp {
        background: linear-gradient(135deg, #1fa855, #25d366);
    }

    .desktop-contact-pill.call {
        background: linear-gradient(135deg, #1f6a28, #2e7d32);
        animation-delay: 0.2s;
    }

    .desktop-contact-pill i {
        font-size: 1.1rem;
    }

    @keyframes contactDockFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-6px); }
    }

    

    @keyframes bubbleFloat {
        0%, 100% { transform: translateY(0) translateX(0); }
        50% { transform: translateY(-10px) translateX(2px); }
    }

    @keyframes bubblePulse {
        0% { transform: scale(0.92); opacity: 0.9; }
        70% { transform: scale(1.12); opacity: 0; }
        100% { transform: scale(1.12); opacity: 0; }
    }

    .desktop-navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 18px;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(46, 125, 50, 0.08);
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
        position: fixed;
        top: 24px;
        left: 40px;
        right: 40px;
        z-index: 1000;
    }

    .desktop-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 210px;
        flex-shrink: 0;
    }

    .desktop-brand img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 18px;
        box-shadow: 0 12px 24px rgba(46, 125, 50, 0.22);
    }

    .desktop-brand strong {
        display: block;
        font-size: 0.94rem;
        color: #16311c;
    }

    .desktop-brand span,
    .desktop-kicker {
        color: #5b6b61;
        font-size: 0.78rem;
    }

    .desktop-nav-links,
    .desktop-nav-actions,
    .desktop-hero-actions,
    .desktop-contact-list,
    .desktop-bank-list {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .desktop-nav-links {
        flex: 1;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 6px;
        min-width: 0;
    }

    .desktop-nav-links a,
    .desktop-secondary-btn,
    .desktop-primary-btn,
    .desktop-link-btn {
        text-decoration: none;
        border: none;
        cursor: pointer;
        font: inherit;
        transition: 0.25s ease;
    }

    .desktop-nav-links a {
        color: #314439;
        font-weight: 500;
        padding: 8px 10px;
        border-radius: 999px;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .desktop-nav-links a:hover {
        background: rgba(46, 125, 50, 0.08);
        color: var(--primary-color);
    }

    .desktop-nav-dropdown {
        position: relative;
    }

    .desktop-nav-dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 18px;
    }

    .desktop-nav-dropdown-toggle {
        border: none;
        background: transparent;
        color: #314439;
        font: inherit;
        font-weight: 500;
        padding: 8px 10px;
        border-radius: 999px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: 0.25s ease;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .desktop-nav-dropdown-toggle:hover,
    .desktop-nav-dropdown:hover .desktop-nav-dropdown-toggle,
    .desktop-nav-dropdown:focus-within .desktop-nav-dropdown-toggle {
        background: rgba(46, 125, 50, 0.08);
        color: var(--primary-color);
    }

    .desktop-nav-dropdown-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        min-width: 220px;
        padding: 12px;
        border-radius: 18px;
        background: white;
        box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
        border: 1px solid rgba(46, 125, 50, 0.08);
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
    }

    .desktop-nav-dropdown:hover .desktop-nav-dropdown-menu,
    .desktop-nav-dropdown:focus-within .desktop-nav-dropdown-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .desktop-nav-dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        color: #2f4136;
        padding: 12px 14px;
        border-radius: 12px;
        text-decoration: none;
        justify-content: space-between;
    }

    .desktop-nav-dropdown-menu a:hover {
        background: rgba(46, 125, 50, 0.08);
        color: var(--primary-color);
    }

    .desktop-nav-project-menu {
        min-width: 360px;
        max-height: 70vh;
        overflow-y: auto;
        padding: 14px;
    }

    .desktop-nav-group-title-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        text-decoration: none;
        border-radius: 12px;
        margin-bottom: 6px;
        padding-right: 10px;
        background: rgba(46, 125, 50, 0.05);
    }

    .desktop-nav-group-title-link:hover {
        background: rgba(46, 125, 50, 0.08);
    }

    .desktop-nav-group-title {
        padding: 10px 14px 6px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        color: #7a8a81;
        text-transform: uppercase;
    }

    .desktop-nav-group-count {
        min-width: 26px;
        height: 26px;
        padding: 0 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: rgba(46, 125, 50, 0.1);
        color: var(--primary-color);
        font-size: 0.75rem;
        font-weight: 700;
    }

    .desktop-nav-item-label {
        flex: 1;
        min-width: 0;
        text-align: left;
        line-height: 1.45;
    }

    .desktop-nav-price-badge {
        flex-shrink: 0;
        padding: 4px 8px;
        border-radius: 999px;
        background: rgba(46, 125, 50, 0.1);
        color: var(--primary-color);
        font-size: 0.76rem;
        font-weight: 700;
    }

    .desktop-nav-divider {
        height: 1px;
        background: rgba(46, 125, 50, 0.12);
        margin: 10px 4px;
    }

    .desktop-nav-book {
        width: 38px;
        height: 38px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(46, 125, 50, 0.08);
        color: var(--primary-color);
    }

    .desktop-nav-book i {
        font-size: 0.95rem;
    }

    .desktop-primary-btn,
    .desktop-secondary-btn,
    .desktop-link-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 18px;
        border-radius: 999px;
        font-weight: 600;
    }

    .desktop-nav-actions {
        gap: 10px;
        flex-wrap: nowrap;
        flex-shrink: 0;
    }

    .desktop-nav-actions .desktop-secondary-btn,
    .desktop-nav-actions .desktop-primary-btn {
        padding: 10px 14px;
        font-size: 0.92rem;
        white-space: nowrap;
    }

    .desktop-primary-btn {
        background: linear-gradient(135deg, #2e7d32, #4caf50);
        color: white;
        box-shadow: 0 15px 35px rgba(46, 125, 50, 0.24);
    }

    .desktop-primary-btn:hover,
    .desktop-secondary-btn:hover,
    .desktop-link-btn:hover {
        transform: translateY(-2px);
    }

    .desktop-secondary-btn {
        background: white;
        color: #1f3f27;
        border: 1px solid rgba(46, 125, 50, 0.18);
    }

    .desktop-link-btn {
        background: rgba(46, 125, 50, 0.08);
        color: var(--primary-color);
        padding: 10px 14px;
    }

    .desktop-hero-section,
    .desktop-contact-section {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
        gap: 28px;
    }

    .desktop-hero-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: flex-end;
        padding: 140px 56px 56px;
        overflow: hidden;
        border-radius: 0 0 36px 36px;
        margin-bottom: 20px;
    }

    .desktop-hero-copy h1,
    .desktop-section-heading h2,
    .desktop-contact-card h2 {
        color: #17311c;
    }

    .desktop-hero-copy h1 {
        font-size: clamp(2.4rem, 4vw, 4.2rem);
        line-height: 1.08;
        margin: 12px 0 18px;
        max-width: 11ch;
    }

    .desktop-hero-copy p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #53645a;
        max-width: 60ch;
        margin-bottom: 26px;
    }

    .desktop-hero-copy {
        position: relative;
        z-index: 2;
        max-width: 760px;
        color: white;
    }

    .desktop-hero-copy .desktop-kicker,
    .desktop-hero-copy p,
    .desktop-hero-copy h1,
    .desktop-stat-card span,
    .desktop-stat-card strong {
        color: white;
    }

    .desktop-stats-grid,
    .desktop-actions-grid,
    .desktop-project-grid,
    .desktop-news-grid,
    .desktop-notification-grid {
        display: grid;
        gap: 20px;
    }

    .desktop-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 28px;
    }

    .desktop-stat-card,
    .desktop-action-card,
    .desktop-project-card,
    .desktop-news-card,
    .desktop-notification-card,
    .desktop-contact-card,
    .desktop-bank-card,
    .desktop-empty-state {
        background: white;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 24px 48px rgba(15, 23, 42, 0.06);
    }

    .desktop-stat-card {
        padding: 22px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: none;
    }

    .desktop-stat-card strong {
        display: block;
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .desktop-stat-card span {
        font-size: 0.92rem;
    }

    .desktop-hero-visual {
        position: absolute;
        inset: 0;
        min-height: 100%;
        border-radius: 0;
        overflow: hidden;
        box-shadow: none;
    }

    .desktop-hero-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.8s ease;
    }

    .desktop-hero-slide.active {
        opacity: 1;
    }

    .desktop-hero-visual img,
    .desktop-project-card img,
    .desktop-news-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .desktop-hero-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg, rgba(10, 24, 14, 0.82) 0%, rgba(10, 24, 14, 0.55) 36%, rgba(10, 24, 14, 0.18) 100%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.3) 100%);
    }

    .desktop-hero-badge {
        position: absolute;
        right: 40px;
        bottom: 40px;
        padding: 14px 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.92);
        color: #17311c;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .desktop-hero-dots {
        position: absolute;
        left: 56px;
        bottom: 34px;
        z-index: 3;
        display: flex;
        gap: 10px;
    }

    .desktop-hero-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 0;
        background: rgba(255, 255, 255, 0.35);
        cursor: pointer;
        transition: 0.25s ease;
    }

    .desktop-hero-dot.active {
        width: 34px;
        border-radius: 999px;
        background: white;
    }

    .desktop-section {
        padding: 34px 40px 0;
    }

    .desktop-logo-band-section {
        position: relative;
        padding: 32px 40px 0;
        min-height: 132px;
        overflow: hidden;
    }

    .desktop-logo-band-line {
        position: absolute;
        left: 15%;
        right: 15%;
        top: 58px;
        height: 18px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(46, 125, 50, 0) 0%, rgba(46, 125, 50, 0.2) 14%, rgba(46, 125, 50, 0.86) 50%, rgba(46, 125, 50, 0.2) 86%, rgba(46, 125, 50, 0) 100%);
        filter: blur(2px);
        animation: logoBandWave 4s ease-in-out infinite;
    }

    .desktop-logo-band-line.secondary {
        top: 36px;
        left: 22%;
        right: 22%;
        height: 22px;
        background: linear-gradient(90deg, rgba(218, 231, 187, 0) 0%, rgba(218, 231, 187, 0.65) 50%, rgba(218, 231, 187, 0) 100%);
        filter: blur(6px);
        animation-duration: 5.4s;
    }

    .desktop-logo-band-center {
        position: relative;
        z-index: 2;
        width: 150px;
        height: 150px;
        margin: 0 auto;
        border-radius: 50%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 22px 50px rgba(46, 125, 50, 0.18);
        animation: logoBandFloat 3.6s ease-in-out infinite;
    }

    .desktop-logo-band-center::before {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        border: 2px solid rgba(46, 125, 50, 0.18);
        animation: bubblePulse 2.8s ease-out infinite;
    }

    .desktop-logo-band-center img {
        width: 126px;
        height: 126px;
        object-fit: contain;
        border-radius: 50%;
    }

    @keyframes logoBandFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    @keyframes logoBandWave {
        0%, 100% { transform: scaleX(0.96); opacity: 0.85; }
        50% { transform: scaleX(1.03); opacity: 1; }
    }

    .desktop-section-heading {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 22px;
    }

    .desktop-section-heading h2,
    .desktop-contact-card h2 {
        font-size: 2rem;
        margin-top: 8px;
    }

    .desktop-support-strip {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        background: #f4f4f4;
        border: 1px solid #e7e7e7;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    }

    .desktop-support-item {
        border: 0;
        background: transparent;
        padding: 18px 12px 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        cursor: pointer;
        color: #a0a4a7;
        min-height: 92px;
        transition: 0.25s ease;
    }

    .desktop-support-item + .desktop-support-item {
        border-left: 1px solid #ececec;
    }

    .desktop-support-item i {
        font-size: 1.7rem;
    }

    .desktop-support-item span {
        font-size: 0.74rem;
        font-weight: 700;
        line-height: 1.25;
        text-align: center;
    }

    .desktop-support-item:hover,
    .desktop-support-item.active {
        background: linear-gradient(135deg, #2e7d32, #41a35b);
        color: white;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 14px 28px rgba(46, 125, 50, 0.18);
    }

    .desktop-support-item.active i,
    .desktop-support-item.active span {
        color: white;
    }

    .desktop-subcategories-panel {
        margin-top: 18px;
        background: #fff;
        border-radius: 20px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
        overflow: hidden;
    }

    .desktop-subcategories-header {
        padding: 18px 22px;
        border-bottom: 1px solid #eef2f7;
        background: #f8fbf8;
    }

    .desktop-subcategories-header-main {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .desktop-subcategories-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: white;
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #2e7d32;
        flex-shrink: 0;
        overflow: hidden;
    }

    .desktop-subcategories-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .desktop-subcategories-header h3 {
        margin: 0;
        font-size: 1.05rem;
        color: #1f2937;
    }

    .desktop-subcategories-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        padding: 18px;
    }

    .desktop-subcategory-card {
        background: #fff;
        border: 1px solid #edf2ed;
        border-radius: 18px;
        padding: 16px;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    }

    .desktop-subcategory-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .desktop-subcategory-info {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        min-width: 0;
    }

    .desktop-subcategory-thumb {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(46, 125, 50, 0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #2e7d32;
        flex-shrink: 0;
        overflow: hidden;
    }

    .desktop-subcategory-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .desktop-subcategory-thumb i {
        color: #2e7d32;
    }

    .desktop-subcategory-copy {
        min-width: 0;
    }

    .desktop-subcategory-copy strong {
        display: block;
        color: #1f2937;
        font-size: 0.98rem;
        line-height: 1.4;
    }

    .desktop-subcategory-copy span {
        display: block;
        color: #64748b;
        font-size: 0.84rem;
        margin-top: 3px;
    }

    .desktop-subcategory-actions {
        margin-top: 14px;
        display: flex;
        gap: 10px;
    }

    .desktop-subcategory-actions .btn,
    .desktop-subcategory-actions .desktop-secondary-btn,
    .desktop-subcategory-actions .desktop-primary-btn {
        flex: 1;
        justify-content: center;
        text-decoration: none;
    }

    .desktop-subcategory-price {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(46, 125, 50, 0.1);
        color: #2e7d32;
        font-size: 0.84rem;
        font-weight: 700;
    }

    .desktop-subsubcategory-list {
        margin-top: 14px;
        display: grid;
        gap: 10px;
    }

    .desktop-subsubcategory-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 14px;
        background: #f8fbf8;
        border: 1px solid #edf2ed;
        text-decoration: none;
        color: inherit;
    }

    .desktop-subsubcategory-item:hover {
        background: #f2f8f2;
    }

    .desktop-subsubcategory-copy {
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .desktop-subsubcategory-copy i {
        color: #2e7d32;
        flex-shrink: 0;
    }

    .desktop-subsubcategory-copy strong {
        display: block;
        color: #1f2937;
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .desktop-subsubcategory-price {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(46, 125, 50, 0.1);
        color: #2e7d32;
        font-size: 0.78rem;
        font-weight: 700;
    }

    @media (max-width: 1200px) {
        .desktop-subcategories-list {
            grid-template-columns: 1fr;
        }
    }

    .desktop-project-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .desktop-project-card,
    .desktop-news-card {
        overflow: hidden;
    }

    .desktop-project-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 18px;
    }

    .desktop-project-card {
        border-radius: 18px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .desktop-project-card img {
        height: 160px;
    }

    .desktop-project-body,
    .desktop-news-body,
    .desktop-contact-card {
        padding: 18px;
    }

    .desktop-project-body p,
    .desktop-notification-card p {
        color: #63756a;
        line-height: 1.7;
    }

    .desktop-project-body p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.88rem;
        margin-bottom: 10px;
    }

    .desktop-project-body h3 {
        font-size: 1.05rem;
        margin: 0 0 6px;
    }

    .desktop-donate-row {
        display: flex;
        gap: 12px;
        margin-top: 12px;
    }

    .desktop-donate-row .form-control {
        min-width: 0;
    }

    .desktop-donate-row .desktop-primary-btn {
        white-space: nowrap;
    }

    .desktop-news-grid,
    .desktop-notification-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .desktop-news-card img {
        height: 220px;
    }

    .desktop-news-body span,
    .desktop-notification-card span,
    .desktop-bank-card small {
        color: #7a8a81;
        font-size: 0.85rem;
    }

    .desktop-news-body h3,
    .desktop-notification-card h3 {
        margin-top: 10px;
        font-size: 1.1rem;
    }

    .desktop-notification-card {
        padding: 22px;
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .desktop-empty-state {
        padding: 28px;
        text-align: center;
        color: #6e7d74;
    }

    .desktop-contact-list {
        flex-direction: column;
        align-items: stretch;
        margin-top: 18px;
    }

    .desktop-contact-list a,
    .desktop-contact-list div {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 0;
        color: #2d4235;
        text-decoration: none;
        border-bottom: 1px solid #edf2ee;
    }

    .desktop-contact-list a:last-child,
    .desktop-contact-list div:last-child {
        border-bottom: none;
    }

    .desktop-contact-list i {
        width: 18px;
        color: var(--primary-color);
    }

    .desktop-bank-list {
        margin-top: 18px;
        flex-direction: column;
        align-items: stretch;
    }

    .desktop-bank-card {
        padding: 18px;
    }

    .desktop-bank-card strong,
    .desktop-bank-card span,
    .desktop-bank-card small {
        display: block;
    }

    .desktop-bank-card span {
        margin: 8px 0 4px;
        color: #53645a;
    }

    .desktop-footer {
        margin: 42px 40px 0;
        padding: 42px 36px;
        border-radius: 28px;
        background: linear-gradient(135deg, #1f6a28 0%, #2e7d32 55%, #3f9b46 100%);
        color: white;
    }

    .desktop-footer-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
        gap: 34px;
        align-items: start;
    }

    .desktop-footer-brand {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .desktop-footer-logo {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.14);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .desktop-footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .desktop-footer-brand h3,
    .desktop-footer-column h4 {
        color: white;
    }

    .desktop-footer-brand h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .desktop-footer-brand p,
    .desktop-footer-column li,
    .desktop-footer-column a {
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.9;
        text-decoration: none;
    }

    .desktop-footer-column h4 {
        position: relative;
        margin-bottom: 18px;
        padding-left: 38px;
        font-size: 1.7rem;
    }

    .desktop-footer-column h4::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 30px;
        height: 4px;
        border-radius: 999px;
        background: #d9f3d0;
        transform: translateY(-50%);
    }

    .desktop-footer-column ul {
        list-style: none;
    }

    .desktop-footer-column li {
        margin-bottom: 8px;
    }

    .desktop-footer-column a:hover,
    .desktop-footer-socials a:hover {
        color: white;
    }

    .desktop-footer-socials {
        display: flex;
        gap: 14px;
    }

    .desktop-footer-socials a {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        text-decoration: none;
        transition: 0.25s ease;
    }

    .desktop-footer-socials a:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.18);
    }

    .desktop-footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .desktop-footer-donate {
        margin-top: 18px;
        width: 100%;
        border: none;
        border-radius: 12px;
        background: rgba(15, 56, 20, 0.42);
        color: white;
        font: inherit;
        font-weight: 700;
        padding: 18px 22px;
        cursor: pointer;
        transition: 0.25s ease;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    }

    .desktop-footer-donate:hover {
        transform: translateY(-2px);
        background: rgba(15, 56, 20, 0.62);
    }

    .modal-overlay {
        align-items: center;
        padding: 24px;
    }

    .modal-content {
        width: min(560px, 100%);
        border-radius: 28px;
        padding: 32px;
        animation: none;
    }
}

@media (max-width: 1200px) and (min-width: 992px) {
    .desktop-navbar {
        left: 24px;
        right: 24px;
    }

    .desktop-floating-bubble {
        width: 96px;
        height: 96px;
    }

    .desktop-floating-bubble-left {
        left: 18px;
    }

    .desktop-floating-bubble-right {
        right: 18px;
    }

    .desktop-floating-bubble span {
        font-size: 0.92rem;
        max-width: 66px;
    }

    .desktop-contact-dock-left {
        left: 18px;
    }

    .desktop-contact-dock-right {
        right: 18px;
    }

    .desktop-contact-pill {
        min-width: 170px;
        padding: 12px 16px;
    }

    .desktop-hero-section {
        padding: 130px 32px 40px;
    }

    .desktop-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .desktop-logo-band-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .desktop-logo-band-center {
        width: 132px;
        height: 132px;
    }

    .desktop-logo-band-center img {
        width: 110px;
        height: 110px;
    }

    .desktop-footer {
        margin-left: 24px;
        margin-right: 24px;
        padding: 34px 28px;
    }

    .desktop-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .desktop-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
