    /* Modern Minimalist Footer */
    :root {
        --footer-bg: #ffffff;
        --footer-text: #374151;
        --footer-text-light: #6b7280;
        --footer-border: #e5e7eb;
        --footer-accent: #00adac;
        --footer-hover: #00adac;
    }

    [data-theme="dark"],
    .dark-mode,
    body.dark-mode {
        --footer-bg: #1a1a1a;
        --footer-text: #f9fafb;
        --footer-text-light: #9ca3af;
        --footer-border: #333333;
        --footer-accent: #00adac;
        --footer-hover: #00adac;
    }

    /* Force light theme styles */
    [data-theme="light"] {
        --footer-bg: #ffffff !important;
        --footer-text: #374151 !important;
        --footer-text-light: #6b7280 !important;
        --footer-border: #e5e7eb !important;
        --footer-accent: #00adac !important;
        --footer-hover: #00adac !important;
    }

    @media (prefers-color-scheme: dark) {
        :root:not(.light-mode) {
            --footer-bg: #1a1a1a;
            --footer-text: #f9fafb;
            --footer-text-light: #9ca3af;
            --footer-border: #333333;
            --footer-accent: #00adac;
            --footer-hover: #00adac;
        }
    }

    .minimal-footer {
        background: var(--footer-bg);
        color: var(--footer-text);
        border-top: 1px solid var(--footer-border);
        transition: all 0.3s ease;
    }

    /* Force light theme footer styles */
    [data-theme="light"] .minimal-footer {
        background: #ffffff !important;
        color: #374151 !important;
        border-top: 1px solid #e5e7eb !important;
    }

    /* Force light theme stats banner styles */
    [data-theme="light"] .stats-banner {
        background: #ffffff !important;
        border-top: 1px solid #e5e7eb !important;
    }


    .footer-content {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 2rem;
    }

    .footer-brand {
        max-width: 300px;
    }

    .footer-logo {
        display: block;
        margin-bottom: 1rem;
    }

    .footer-logo img {
        max-width: 120px;
        height: auto;
        transition: opacity 0.3s ease;
    }

    .footer-description {
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--footer-text-light);
        margin-bottom: 1.5rem;
    }

    .footer-social {
        display: flex;
        gap: 0.75rem;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: transparent;
        color: var(--footer-text-light);
        border: 1px solid var(--footer-border);
        text-decoration: none;
        font-size: 1rem;
        transition: all 0.2s ease;
    }

    .social-link:hover {
        background: var(--footer-accent);
        color: white;
        border-color: var(--footer-accent);
        transform: translateY(-1px);
    }

    .footer-section h6 {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--footer-text);
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-section h6 i {
        font-size: 1rem;
        color: var(--footer-accent);
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        color: var(--footer-text-light);
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.2s ease;
    }

    .footer-links a:hover {
        color: var(--footer-accent);
    }

    /* WhatsApp link hover'ı kaldır */
    .footer-links a[href*="wa.me"]:hover {
        color: #00adac !important;
    }

    .footer-bottom {
        border-top: 1px solid var(--footer-border);
        padding: 1.5rem 0;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .copyright {
        font-size: 0.8rem;
        color: var(--footer-text-light);
        margin: 0;
    }

    .payment-methods {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .payment-methods img {
        height: 24px;
        width: auto;
        opacity: 0.7;
        transition: opacity 0.2s ease;
    }

    .payment-methods img:hover {
        opacity: 1;
    }

    /* Logo Display */
    .dark-logo {
        display: block;
    }

    .light-logo {
        display: none;
    }

    [data-theme="dark"] .dark-logo,
    .dark-mode .dark-logo,
    body.dark-mode .dark-logo {
        display: none;
    }

    [data-theme="dark"] .light-logo,
    .dark-mode .light-logo,
    body.dark-mode .light-logo {
        display: block;
    }

    @media (prefers-color-scheme: dark) {
        :root:not(.light-mode) .dark-logo {
            display: none;
        }

        :root:not(.light-mode) .light-logo {
            display: block;
        }
    }

    /* Statistics Banner */
    .stats-banner {
        background: var(--footer-bg);
        border-top: 1px solid var(--footer-border);
        padding: 2rem 0;
        margin-top: 0;
    }

    /* Force light theme for all footer elements */
    [data-theme="light"] .footer-section h6 {
        color: #374151 !important;
    }

    [data-theme="light"] .stat-number,
    [data-theme="light"] .stat-icon {
        color: #00adac !important;
    }

    [data-theme="light"] .footer-links a,
    [data-theme="light"] .footer-description,
    [data-theme="light"] .stat-label,
    [data-theme="light"] .copyright {
        color: #6b7280 !important;
    }

    [data-theme="light"] .footer-links a:hover {
        color: #00adac !important;
    }

    [data-theme="light"] .social-link {
        color: #6b7280 !important;
        border-color: #e5e7eb !important;
    }

    [data-theme="light"] .social-link:hover {
        background: #00adac !important;
        color: white !important;
        border-color: #00adac !important;
    }

    .stats-content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stats-grid {
        display: flex;
        gap: 4rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 120px;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #00adac !important;
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: #00adac !important;
        margin-bottom: 0.25rem;
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Force turkuaz color for stats in all themes */
    .stat-icon,
    .stat-number {
        color: #00adac !important;
    }

    .stat-increase-arrow {
        display: inline-flex;
        align-items: center;
        color: #00adac;
        font-size: 1rem;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        animation: fadeInUp 0.5s ease forwards;
    }

    .stat-increase-arrow.show {
        opacity: 1;
        transform: translateY(0);
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeOut {
        from {
            opacity: 1;
        }

        to {
            opacity: 0;
        }
    }

    .stat-label {
        font-size: 0.75rem;
        color: var(--footer-text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
    }


    /* Responsive */
    @media (max-width: 768px) {
        .stats-content {
            flex-direction: column;
            text-align: center;
        }

        .stats-grid {
            justify-content: center;
            gap: 2rem;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-content {
            padding: 2rem 0 1.5rem;
        }

        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
        }
    }

    @media (max-width: 576px) {
        .stats-banner {
            padding: 1.5rem 0;
        }

        .stats-grid {
            gap: 1.5rem;
        }

        .stat-item {
            min-width: 100px;
        }

        .stat-number {
            font-size: 1.25rem;
        }


        .footer-social {
            justify-content: center;
        }

        .payment-methods {
            justify-content: center;
        }
    }
