@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #00f2fe;
    --primary-hover: #4facfe;
    --primary-glow: rgba(0, 242, 254, 0.20);
    --secondary: #f59e0b;
    --secondary-hover: #fbbf24;
    --secondary-glow: rgba(245, 158, 11, 0.25);
    --success: #10b981;
    --success-hover: #059669;
    --success-glow: rgba(16, 185, 129, 0.25);
    --whatsapp: #25D366;
    --whatsapp-hover: #22c55e;
    --whatsapp-glow: rgba(37, 211, 102, 0.25);
    --bg-dark: #030712;
    --card-bg: rgba(15, 23, 42, 0.45);
    --card-bg-hover: rgba(30, 41, 59, 0.6);
    --card-border: rgba(255, 255, 255, 0.05);
    --card-border-hover: rgba(255, 255, 255, 0.1);
    --text-muted: #94a3b8;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
    scroll-behavior: smooth; 
}

body { 
    background: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 0%, #0d1727 0%, #030712 70%);
    background-attachment: fixed;
    color: #ffffff; 
    line-height: 1.6; 
    padding-bottom: 110px; 
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #090d16;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}

/* NAVBAR VE SOL ÜST LOGO */
nav { 
    background: rgba(7, 10, 17, 0.8) !important; 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky; 
    top: 0; 
    z-index: 10000; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.navbar {
    min-height: 80px;
    padding: 10px 0;
}

.navbar-brand img {
    max-height: 55px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.03);
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #cbd5e1 !important;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 8px 16px !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

.dropdown-menu {
    border: 1px solid var(--card-border) !important;
    background: rgba(13, 18, 30, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-radius: 10px !important;
    padding: 8px 0 !important;
}

.dropdown-item {
    font-weight: 600;
    color: #cbd5e1 !important;
    padding: 10px 20px !important;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--primary) !important;
}

.dropdown-submenu {
    position: relative;
}

@media (min-width: 992px) {
    .dropdown-submenu > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
        margin-left: 0px;
    }
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

@media (max-width: 991px) {
    .dropdown-submenu > .dropdown-menu {
        position: static;
        margin-left: 15px;
        border: 0 !important;
        box-shadow: none;
        background: transparent !important;
    }
    .dropdown-submenu > .dropdown-menu.show {
        display: block;
    }
    .navbar-collapse {
        background: rgba(7, 10, 17, 0.98);
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        border: 1px solid var(--card-border);
    }
}

.logo { 
    display: flex; 
    align-items: center; 
    height: 100%; 
    padding: 5px 0; 
    text-decoration: none; 
}

.max-wrapper { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* HERO ALANI */
.hero-section { 
    padding: 80px 20px 40px 20px; 
    text-align: center; 
    max-width: 900px; 
    margin: 0 auto; 
}

.hero-section h1 { 
    font-size: 3rem; 
    font-weight: 800; 
    line-height: 1.25;
    margin-bottom: 20px; 
    background: linear-gradient(135deg, #ffffff 40%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-section p { 
    color: var(--text-muted); 
    font-size: 1.2rem; 
    margin-bottom: 35px; 
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    margin-bottom: 45px; 
    flex-wrap: wrap; 
}

.hero-btn { 
    text-decoration: none; 
    padding: 16px 32px; 
    font-weight: 700; 
    border-radius: 50px; 
    font-size: 1.05rem; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    cursor: pointer; 
    border: none; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.hero-btn:hover { 
    transform: translateY(-2px); 
}

.btn-rep { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #030712 !important; 
}
.btn-rep:hover {
    background: var(--primary-hover);
    box-shadow: 0 10px 25px var(--primary-glow);
}

.btn-wizard { 
    background: var(--secondary); 
    color: #000; 
}
.btn-wizard:hover {
    background: var(--secondary-hover);
    box-shadow: 0 8px 25px var(--secondary-glow);
}

/* STATS */
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    margin-bottom: 50px; 
}

.stat-card { 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    padding: 25px 20px; 
    border-radius: 16px; 
    text-align: center; 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--card-border-hover);
    background: var(--card-bg-hover);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.stat-num { 
    font-size: 2.5rem; 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 5px; 
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label { 
    font-size: 0.8rem; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    font-weight: 700; 
    letter-spacing: 1px;
}

/* LIVE RADAR BAR */
.live-status-bar { 
    background: rgba(16, 185, 129, 0.05); 
    border: 1px solid rgba(16, 185, 129, 0.15); 
    border-radius: 16px; 
    padding: 14px 24px; 
    margin-bottom: 25px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 10px; 
    backdrop-filter: blur(8px);
}

.live-radar-box { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-weight: 700; 
    font-size: 0.95rem; 
    color: var(--success); 
    letter-spacing: 0.5px;
}

.radar-pulse { 
    width: 10px; 
    height: 10px; 
    background: var(--success); 
    border-radius: 50%; 
    position: relative; 
}

.radar-pulse::after { 
    content: ''; 
    width: 100%; 
    height: 100%; 
    background: var(--success); 
    border-radius: 50%; 
    position: absolute; 
    top: 0; 
    left: 0; 
    animation: pulse 1.8s infinite ease-in-out; 
}

@keyframes pulse { 
    0% { transform: scale(1); opacity: 1; } 
    100% { transform: scale(3.5); opacity: 0; } 
}

.live-teams-info { 
    font-size: 0.85rem; 
    color: #cbd5e1; 
    font-weight: 600; 
    display: flex; 
    gap: 20px; 
}

@media screen and (max-width: 600px) { 
    .live-status-bar { flex-direction: column; text-align: center; padding: 15px; } 
    .live-teams-info { flex-direction: column; gap: 8px; } 
}

/* JET AKÜ SİHİRBAZI */
.wizard-section { 
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(31, 41, 55, 0.8) 100%); 
    border: 1px solid rgba(59, 130, 246, 0.3); 
    border-radius: 24px; 
    padding: 40px; 
    margin-bottom: 50px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(59, 130, 246, 0.05); 
    backdrop-filter: blur(16px);
}

.wizard-title { 
    font-size: 1.6rem; 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 10px; 
    letter-spacing: -0.5px;
}

.wizard-subtitle { 
    font-size: 0.95rem; 
    color: var(--text-muted); 
    margin-bottom: 30px; 
}

.wizard-progress { 
    height: 6px; 
    background: rgba(255,255,255,0.08); 
    border-radius: 10px; 
    margin-bottom: 35px; 
    overflow: hidden; 
}

.wizard-progress-bar { 
    height: 100%; 
    width: 25%; 
    background: linear-gradient(to right, #3b82f6, #60a5fa); 
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}

.wizard-step { 
    display: none; 
}

.wizard-step.active { 
    display: block; 
    animation: fadeIn 0.4s ease-out; 
}

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

.options-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
    margin-bottom: 25px; 
}

@media screen and (min-width: 600px) { 
    .options-grid.grid-3 { grid-template-columns: repeat(3, 1fr); } 
    .options-grid.grid-4 { grid-template-columns: repeat(4, 1fr); } 
}

.option-card { 
    background: rgba(7, 10, 17, 0.5); 
    border: 1px solid var(--card-border); 
    padding: 22px 18px; 
    border-radius: 16px; 
    text-align: center; 
    cursor: pointer; 
    font-weight: 700; 
    font-size: 1rem; 
    color: #cbd5e1; 
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
}

.option-card:hover { 
    border-color: #3b82f6; 
    background: rgba(59, 130, 246, 0.08); 
    color: #ffffff;
    transform: translateY(-2px);
}

.option-card.selected { 
    border-color: #3b82f6; 
    background: linear-gradient(135deg, #3b82f6, #1d4ed8); 
    color: #fff; 
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.35); 
    transform: translateY(-2px);
}

.wizard-inputs { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-bottom: 25px; 
}

.wizard-inputs input { 
    width: 100%; 
    background: rgba(7, 10, 17, 0.5); 
    border: 1px solid var(--card-border); 
    padding: 16px 20px; 
    border-radius: 12px; 
    color: #fff; 
    font-size: 1rem; 
    outline: none; 
    transition: all 0.3s;
}

.wizard-inputs input:focus {
    border-color: #3b82f6;
    background: rgba(7, 10, 17, 0.8);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.15);
}

.wizard-nav-btns { 
    display: flex; 
    justify-content: space-between; 
    gap: 15px; 
    margin-top: 20px; 
}

.wiz-btn { 
    border: none; 
    padding: 14px 28px; 
    font-weight: 700; 
    border-radius: 10px; 
    cursor: pointer; 
    font-size: 0.95rem;
    transition: all 0.25s;
}

.wiz-btn-prev { 
    background: #1f2937; 
    color: #cbd5e1; 
}
.wiz-btn-prev:hover {
    background: #374151;
    color: #fff;
}

.wiz-btn-next { 
    background: #3b82f6; 
    color: white; 
    margin-left: auto; 
}
.wiz-btn-next:hover {
    background: #2563eb;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.wiz-btn-submit { 
    background: var(--whatsapp); 
    color: white; 
    width: 100%; 
    text-align: center; 
    font-size: 1.1rem; 
    padding: 16px; 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    border-radius: 12px; 
    font-weight: 800; 
    transition: all 0.3s;
    box-shadow: 0 5px 15px var(--whatsapp-glow);
}

.wiz-btn-submit:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--whatsapp-glow);
}

/* FİLTRE VE İLÇELER */
.filter-container { 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    padding: 24px; 
    border-radius: 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 20px; 
    margin-bottom: 45px; 
    flex-wrap: wrap; 
    backdrop-filter: blur(12px);
}

.tab-buttons { 
    display: flex; 
    gap: 10px; 
}

.tab-btn { 
    background: rgba(255, 255, 255, 0.05); 
    color: #cbd5e1; 
    border: 1px solid transparent; 
    padding: 12px 24px; 
    font-weight: 700; 
    border-radius: 10px; 
    cursor: pointer; 
    font-size: 0.9rem; 
    transition: all 0.25s;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.tab-btn.active { 
    background: var(--primary); 
    color: #fff; 
    box-shadow: 0 5px 15px var(--primary-glow);
}

.search-box { 
    position: relative; 
    flex: 1; 
    max-width: 400px; 
    width: 100%; 
}

.search-box input { 
    width: 100%; 
    background: rgba(7, 10, 17, 0.5); 
    border: 1px solid var(--card-border); 
    padding: 14px 45px 14px 20px; 
    border-radius: 10px; 
    color: #fff; 
    font-size: 0.95rem; 
    outline: none; 
    transition: all 0.3s;
}

.search-box input:focus {
    border-color: var(--primary);
    background: rgba(7, 10, 17, 0.8);
    box-shadow: 0 0 10px var(--primary-glow);
}

.grid-title { 
    text-align: center;
    font-size: 2.2rem; 
    font-weight: 800; 
    margin-bottom: 12px; 
    color: #fff; 
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid-subtitle { 
    text-align: center;
    font-size: 1.05rem; 
    color: var(--text-muted); 
    margin-bottom: 35px; 
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.grid-container { 
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px; 
    margin-bottom: 60px; 
}

.district-card { 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    border-radius: 16px; 
    padding: 24px; 
    text-align: left; 
    position: relative; 
    cursor: pointer; 
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.district-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--primary); 
    box-shadow: 0 12px 30px rgba(0,0,0,0.35), 0 0 20px var(--primary-glow);
    background: var(--card-bg-hover);
}

.card-title { 
    font-size: 1.15rem; 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 20px; 
}

.card-badge { 
    position: absolute; 
    top: 24px; 
    right: 24px; 
    font-size: 0.7rem; 
    font-weight: 800; 
    padding: 4px 10px; 
    border-radius: 6px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

.badge-avrupa { 
    background: rgba(255, 71, 87, 0.1); 
    color: var(--primary); 
}

.badge-anadolu { 
    background: rgba(16, 185, 129, 0.1); 
    color: var(--success); 
}

.card-status { 
    font-size: 0.8rem; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-weight: 700; 
}

.status-active { 
    color: var(--success); 
}

.status-active::before { 
    content: ''; 
    width: 8px; 
    height: 8px; 
    background: var(--success); 
    border-radius: 50%; 
    display: inline-block; 
}

.status-request {
    color: var(--secondary);
}

.status-request::before { 
    content: ''; 
    width: 8px; 
    height: 8px; 
    background: var(--secondary); 
    border-radius: 50%; 
    display: inline-block; 
}

.seo-text-section { 
    margin-bottom: 60px; 
    text-align: left; 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    border-radius: 20px; 
    padding: 40px; 
    backdrop-filter: blur(12px);
}

.seo-text-section h3 { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 20px; 
    letter-spacing: -0.5px;
}

.why-us-box { 
    background: rgba(7, 10, 17, 0.4); 
    border: 1px solid var(--card-border); 
    border-radius: 16px; 
    padding: 30px; 
    margin-top: 30px; 
}

.why-us-box h5 { 
    color: #fff; 
    font-size: 1.25rem; 
    font-weight: 800; 
    margin-bottom: 20px; 
    border-bottom: 1px solid var(--card-border); 
    padding-bottom: 12px; 
}

.why-us-item { 
    margin-bottom: 15px; 
    font-size: 1rem; 
    color: #cbd5e1; 
}

.why-us-item strong { 
    color: var(--primary); 
}

/* ARAÇ MARKALARI BÖLÜMÜ */
.brands-section { 
    margin-bottom: 60px; 
    text-align: left; 
}

.brands-grid { 
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px; 
    margin-top: 25px; 
}

.brand-card { 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    border-radius: 18px; 
    padding: 30px 20px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.brand-card:hover { 
    transform: translateY(-6px); 
    border-color: var(--primary); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.35), 0 0 20px var(--primary-glow);
    background: var(--card-bg-hover);
}

.brand-img-box { 
    width: 70px; 
    height: 70px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    background: #ffffff; 
    overflow: hidden; 
    margin-bottom: 18px; 
    padding: 10px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-img-box {
    transform: scale(1.08);
}

.brand-img-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
}

.brand-name { 
    font-size: 0.9rem; 
    font-weight: 800; 
    color: #ffffff; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

/* PREMIUM GÖRSEL HARİTA ALANI */
.map-section { 
    margin-bottom: 60px; 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    border-radius: 24px; 
    overflow: hidden; 
    backdrop-filter: blur(12px);
}

.map-container { 
    width: 100%; 
    height: 380px; 
    background: #090d16; 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.map-overlay-badge { 
    background: rgba(13, 18, 30, 0.9); 
    border: 1px solid var(--primary); 
    padding: 25px 40px; 
    border-radius: 16px; 
    text-align: center; 
    color: white; 
    max-width: 80%; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.6); 
    backdrop-filter: blur(8px);
}

.map-overlay-badge h4 { 
    font-size: 1.4rem; 
    font-weight: 800; 
    margin-bottom: 10px; 
    color: var(--primary); 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.map-overlay-badge p { 
    font-size: 1rem; 
    color: #cbd5e1; 
    font-weight: 600; 
}

.promises-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    padding: 40px 20px; 
    gap: 30px; 
    background: rgba(13, 18, 30, 0.4); 
    text-align: center; 
    border-top: 1px solid var(--card-border); 
}

.promise-card { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.promise-icon { 
    font-size: 2.2rem; 
    margin-bottom: 12px; 
    color: var(--primary); 
    text-shadow: 0 0 10px var(--primary-glow);
}

.promise-title { 
    font-size: 1.05rem; 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 6px; 
}

.promise-desc { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
}

/* ALT SABİT ÇUBUK / CTA */
.cta-container { 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    background: rgba(7, 10, 17, 0.85); 
    border-top: 1px solid rgba(255, 255, 255, 0.08); 
    padding: 16px 20px; 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    z-index: 1000; 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
}

.cta-btn { 
    text-decoration: none; 
    font-size: 1.1rem; 
    font-weight: 800; 
    padding: 16px 0; 
    border-radius: 50px; 
    flex: 1; 
    max-width: 320px; 
    text-align: center; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35); 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

.btn-call { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #030712 !important; 
}
.btn-call:hover {
    background: var(--primary-hover);
    box-shadow: 0 12px 30px var(--primary-glow);
}

.btn-whatsapp { 
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-hover) 100%);
    color: white !important; 
}
.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    box-shadow: 0 12px 30px var(--whatsapp-glow);
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) { 
    .grid-container { grid-template-columns: repeat(3, 1fr); } 
    .brands-grid { grid-template-columns: repeat(3, 1fr); } 
    .promises-grid { grid-template-columns: repeat(2, 1fr); } 
}

@media screen and (max-width: 768px) { 
    .hero-section h1 { font-size: 2.2rem; }
    .grid-container { grid-template-columns: repeat(2, 1fr); gap: 15px; } 
    .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } 
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 30px; } 
    .filter-container { flex-direction: column; align-items: stretch; padding: 20px; } 
    .tab-buttons { width: 100%; display: flex; flex-direction: column; } 
    .tab-btn { text-align: center; width: 100%; } 
    .seo-text-section { padding: 25px; } 
    .wizard-section { padding: 25px 20px; }
}

.bolge-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #111827;
    border-radius: 12px;
}

.bolge-detail-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
}

/* FAQ / SSS AKORDEON EK DEKORASYONLARI */
.faq-container { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-bottom: 50px;
}

.faq-item { 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    border-radius: 16px; 
    overflow: hidden; 
    transition: all 0.3s ease; 
    backdrop-filter: blur(12px);
}

.faq-item:hover { 
    border-color: var(--primary); 
    background: var(--card-bg-hover);
}

.faq-question { 
    padding: 22px 25px; 
    font-weight: 700; 
    font-size: 1.05rem; 
    color: #fff; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    user-select: none; 
}

.faq-answer { 
    padding: 0 25px; 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease; 
    color: #cbd5e1; 
    font-size: 0.98rem; 
    border-top: 1px solid transparent; 
    background: rgba(7, 10, 17, 0.3); 
}

.faq-item.active .faq-answer { 
    max-height: 250px; 
    padding: 22px 25px; 
    border-color: var(--card-border); 
}

.faq-icon { 
    font-size: 1.4rem; 
    color: var(--primary); 
    transition: transform 0.3s ease; 
}

.faq-item.active .faq-icon { 
    transform: rotate(45deg); 
    color: var(--secondary);
}


/* Pulsing Emergency Call Button */
.emergency-pulse-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #030712 !important;
    font-size: 1.45rem;
    font-weight: 800;
    padding: 22px 50px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.4);
    animation: pulseGlow 2.2s infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
}
.emergency-pulse-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.4);
}
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.8);
    }
    70% {
        box-shadow: 0 0 0 24px rgba(0, 242, 254, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0);
    }
}

/* Secondary WhatsApp Sub-Button */
.sub-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-hover) 100%) !important;
    color: white !important;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    border: none;
}
.sub-whatsapp-btn:hover {
    background: var(--whatsapp-hover) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

/* Live Status Badge in Navbar */
.navbar-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #10b981;
    margin-left: 20px;
    letter-spacing: 0.5px;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.4; box-shadow: 0 0 15px #10b981; }
    100% { transform: scale(0.95); opacity: 1; }
}

/* App-style Service Selection Grid */
.app-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px auto 60px auto;
    max-width: 900px;
}
@media screen and (max-width: 768px) {
    .app-service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
}
.app-service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: 45px 35px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.app-service-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.45), 0 0 25px var(--primary-glow);
    background: var(--card-bg-hover);
}
.app-service-icon {
    font-size: 3.5rem;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}
.app-service-card:hover .app-service-icon {
    transform: scale(1.1) rotate(5deg);
}
.app-service-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}
.app-service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Wizard Section Polish */
.wizard-section {
    max-width: 900px;
    margin: 0 auto 60px auto;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 28px;
    padding: 45px 35px;
}
.wizard-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 8px;
}
.wizard-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Redesign Overhaul Upgrades */

/* Decorative background glowing blobs */
.glow-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.06) 0%, rgba(255, 71, 87, 0) 70%);
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}
.blob-1 { top: 5%; left: 5%; }
.blob-2 { top: 35%; right: 2%; background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0) 70%); }
.blob-3 { bottom: 15%; left: 8%; }

/* Infinite Brand Logo Slider (Carousel) */
.logo-slider {
    overflow: hidden;
    padding: 25px 0;
    background: rgba(18, 24, 38, 0.35);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    position: relative;
    width: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin: 40px 0 60px 0;
    border-radius: 20px;
}
.logo-slider::before, .logo-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.logo-slider::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, #070a11 0%, rgba(7, 10, 17, 0) 100%);
}
.logo-slider::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, #070a11 0%, rgba(7, 10, 17, 0) 100%);
}
.logo-slide-track {
    display: flex;
    width: calc(200px * 30); /* 15 logos * 2 */
    animation: scrollLogos 35s linear infinite;
}
.logo-slide-track:hover {
    animation-play-state: paused;
}
.logo-slide {
    width: 200px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-slide img {
    max-height: 42px;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(1) brightness(2) contrast(0.5);
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo-slide:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.08);
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 15)); }
}

/* Nasıl Çalışır? (Timeline) Component */
.timeline-section {
    margin-bottom: 60px;
    text-align: center;
}
.timeline-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 40px;
}
@media screen and (max-width: 991px) {
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .timeline-item::after {
        display: none !important;
    }
}
.timeline-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 35px 25px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.timeline-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35), 0 0 20px var(--primary-glow);
    background: var(--card-bg-hover);
}
.timeline-item::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.15);
    font-weight: bold;
    pointer-events: none;
    transition: color 0.3s;
}
.timeline-item:hover::after {
    color: var(--primary);
}
.timeline-item:last-child::after {
    display: none;
}
.timeline-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 71, 87, 0.2) 100%);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: var(--primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 15px var(--primary-glow);
    transition: all 0.3s;
}
.timeline-item:hover .timeline-icon-box {
    transform: scale(1.08);
    background: var(--primary);
    color: white;
}
.timeline-step-num {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.timeline-item h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.timeline-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Müşteri Yorumları (Reviews / Testimonials) Section */
.reviews-section {
    margin-bottom: 60px;
    text-align: left;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}
@media screen and (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
.review-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35), 0 0 20px var(--primary-glow);
    background: var(--card-bg-hover);
}
.review-stars {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 18px;
    display: flex;
    gap: 4px;
}
.review-text {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 22px;
    font-style: italic;
    line-height: 1.6;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary);
}
.author-info h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}
.author-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* --- CRO, UX ve Altyapı İyileştirmeleri CSS Eklemleri --- */

/* 1. Çağrı Butonu Sarsıntı Animasyonu */
.emergency-pulse-btn.shake-active {
    animation: buttonShake 0.6s ease-in-out;
}
@keyframes buttonShake {
    0%, 100% { transform: scale(1.02); }
    15%, 45%, 75% { transform: scale(1.02) translateX(-4px); }
    30%, 60% { transform: scale(1.02) translateX(4px); }
}

/* 2. Yüzen WhatsApp Balonu */
.floating-whatsapp {
    position: fixed;
    bottom: 95px; /* Alt barın üzerinde duracak şekilde */
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatPulse 2s infinite;
}
.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}
@keyframes floatPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media screen and (max-width: 768px) {
    .floating-whatsapp {
        bottom: 100px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

/* 3. Erişilebilirlik Butonları (Yazı Boyutu) */
.accessibility-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.accessibility-btn:hover {
    background: var(--primary);
    color: #030712;
    border-color: var(--primary);
}

/* 4. Rozet Izgarası */
.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px auto 10px auto;
    max-width: 900px;
}
@media screen and (max-width: 991px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
.badge-item {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
}
.badge-item:hover {
    border-color: rgba(0, 242, 254, 0.2);
    background: rgba(15, 23, 42, 0.6);
    transform: translateY(-2px);
}
.badge-icon {
    font-size: 1.5rem;
}
.badge-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1.3;
}

/* 5. SMS Buton Stili */
.sub-sms-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #3b82f6 !important;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 5px;
}
.sub-sms-btn:hover {
    background: #3b82f6;
    color: #030712 !important;
    transform: translateY(-1px);
}

/* --- AYDINLIK TEMA (LIGHT MODE) STILLERİ --- */
body.light-theme {
    --bg-dark: #f8fafc;
    background-image: radial-gradient(circle at 50% 0%, #e2e8f0 0%, #f1f5f9 70%);
    color: #0f172a;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-bg-hover: rgba(255, 255, 255, 0.95);
    --card-border: rgba(15, 23, 42, 0.08);
    --card-border-hover: rgba(15, 23, 42, 0.15);
    --text-muted: #64748b;
}

body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme .text-white,
body.light-theme .card-title,
body.light-theme .page-title {
    color: #0f172a !important;
}

body.light-theme .text-secondary,
body.light-theme .text-light,
body.light-theme p,
body.light-theme .timeline-desc,
body.light-theme .promise-desc,
body.light-theme .grid-subtitle {
    color: #334155 !important;
}

body.light-theme nav {
    background: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .navbar-nav .nav-link {
    color: #334155 !important;
}

body.light-theme .navbar-nav .nav-link.active,
body.light-theme .navbar-nav .nav-link:hover {
    color: var(--primary-hover) !important;
}

body.light-theme .dropdown-menu {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .dropdown-item {
    color: #334155 !important;
}

body.light-theme .dropdown-item:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
}

body.light-theme .navbar-status span {
    color: #334155 !important;
}

body.light-theme .accessibility-btn {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.1);
    color: #334155;
}

body.light-theme .accessibility-btn:hover {
    background: var(--primary);
    color: #030712;
}

/* Kartların Açık Tema Düzenlemeleri */
body.light-theme .wizard-card {
    background: #ffffff !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05) !important;
}

body.light-theme .option-card {
    background: #f8fafc !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    color: #334155 !important;
}

body.light-theme .option-card:hover {
    border-color: var(--primary) !important;
    background: #f1f5f9 !important;
}

body.light-theme .option-card.selected {
    background: rgba(0, 242, 254, 0.08) !important;
    border-color: var(--primary) !important;
    color: #0f172a !important;
}

body.light-theme .stat-card {
    background: #ffffff !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05) !important;
}

body.light-theme .stat-num {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

body.light-theme .review-card {
    background: #ffffff !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .review-text {
    color: #334155 !important;
}

body.light-theme .author-info h5 {
    color: #0f172a !important;
}

body.light-theme .timeline-icon-box {
    background: #f1f5f9 !important;
    color: #0f172a !important;
}

body.light-theme .timeline-step-num {
    color: var(--primary-hover) !important;
}

body.light-theme .badge-item {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .badge-item:hover {
    border-color: var(--primary) !important;
    background: #ffffff !important;
}

body.light-theme .badge-label {
    color: #334155 !important;
}

body.light-theme .district-card {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    color: #0f172a !important;
}

body.light-theme .district-card:hover {
    background: #ffffff !important;
    border-color: var(--primary) !important;
}

body.light-theme .live-search-wrapper input {
    background: #ffffff !important;
    border-color: rgba(15, 23, 42, 0.15) !important;
    color: #0f172a !important;
}

body.light-theme .live-search-wrapper input::placeholder {
    color: #94a3b8 !important;
}

body.light-theme article {
    background: #ffffff !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .tab-btn {
    background: rgba(15, 23, 42, 0.05) !important;
    color: #475569 !important;
}

body.light-theme .tab-btn.active {
    background: var(--primary) !important;
    color: #030712 !important;
}

body.light-theme .map-overlay-badge {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: var(--primary) !important;
}

/* --- MOBİL MENÜ SİYAH KALMA HATASI DÜZELTMESİ (GLOBAL OVERRIDE) --- */
#mainNavbar {
    background: rgba(7, 10, 17, 0.95) !important;
}
body.light-theme #mainNavbar {
    background: rgba(241, 245, 249, 0.98) !important;
    border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}
body.light-theme nav.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

/* --- HAKKIMIZDA, S.S.S VE İLETİŞİM SAYFALARI DİNAMİK STİLLERİ --- */
.max-wrapper { 
    max-width: 850px; 
    margin: 0 auto; 
    padding: 0 20px; 
}
.about-hero { 
    text-align: center; 
    padding: 60px 0 40px 0; 
    border-bottom: 1px solid var(--card-border); 
}
.main-logo-box { 
    width: 140px; 
    height: 140px; 
    margin: 0 auto 20px auto; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.main-logo-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
}
.about-hero h1 { 
    font-size: 2.4rem; 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 10px; 
}
.subtitle { 
    font-size: 1.1rem; 
    color: var(--secondary); 
    font-weight: 700; 
    text-transform: uppercase; 
}

.about-section { 
    padding: 40px 0; 
}
.about-section h2 { 
    font-size: 1.6rem; 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 15px; 
}
.about-section p { 
    color: var(--text-muted); 
    font-size: 1.05rem; 
    margin-bottom: 20px; 
    text-align: justify; 
}

.stats-row { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; 
    margin: 30px 0; 
}
.stat-item { 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    padding: 20px 10px; 
    border-radius: 12px; 
    text-align: center; 
    transition: all 0.3s;
}
.stat-item:hover {
    border-color: var(--primary-glow);
    transform: translateY(-2px);
}
.stat-val { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: var(--primary); 
    margin-bottom: 5px; 
}
.stat-tit { 
    font-size: 0.8rem; 
    color: var(--text-muted); 
    font-weight: 700; 
    text-transform: uppercase; 
}

.values-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
}
.value-card { 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    padding: 20px; 
    border-radius: 12px; 
    transition: all 0.3s;
}
.value-card:hover {
    border-color: var(--primary-glow);
    transform: translateY(-2px);
}
.value-card h4 { 
    font-size: 1.1rem; 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 8px; 
}
.value-card p { 
    font-size: 0.95rem; 
    color: var(--text-muted); 
    margin-bottom: 0;
}

/* S.S.S (FAQ) Sayfası Stilleri */
.faq-container { 
    max-width: 800px; 
    margin: 0 auto 50px auto; 
}
.faq-item { 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    border-radius: 16px; 
    margin-bottom: 15px; 
    overflow: hidden; 
    transition: all 0.3s; 
}
.faq-item:hover { 
    border-color: var(--primary); 
}
.faq-question { 
    padding: 20px 25px; 
    font-size: 1.1rem; 
    font-weight: 700; 
    color: #fff; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    padding: 0 25px; 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    line-height: 1.6; 
    border-top: 1px solid transparent; 
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); 
}
.faq-item.active .faq-answer { 
    max-height: 250px; 
    padding: 20px 25px; 
    border-color: var(--card-border); 
}
.faq-icon { 
    font-size: 1.25rem; 
    color: var(--secondary); 
    transition: transform 0.3s; 
}
.faq-item.active .faq-icon { 
    transform: rotate(45deg); 
}

/* İletişim Sayfası Stilleri */
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
    margin-bottom: 50px; 
}
.info-card { 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    padding: 30px; 
    border-radius: 16px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}
.info-item { 
    margin-bottom: 25px; 
}
.info-item:last-child {
    margin-bottom: 0;
}
.info-label { 
    font-size: 0.85rem; 
    color: var(--secondary); 
    font-weight: 800; 
    text-transform: uppercase; 
    margin-bottom: 5px; 
}
.info-value { 
    font-size: 1.2rem; 
    font-weight: 600; 
    color: #fff; 
}

/* --- AYDINLIK TEMA ÖZEL METİN VE BAŞLIK AYARLARI --- */
body.light-theme .about-hero h1,
body.light-theme .about-section h2,
body.light-theme .value-card h4,
body.light-theme .faq-question,
body.light-theme .info-value {
    color: #0f172a !important;
}

body.light-theme .stat-val {
    color: var(--primary-hover) !important;
}

body.light-theme .map-overlay-badge h4 {
    color: var(--primary-hover) !important;
}

body.light-theme .logo-slide img {
    filter: grayscale(1) brightness(0.2) !important;
    opacity: 0.75 !important;
}
/* Erişilebilirlik: İçeriğe Geç Linki */
.skip-link {
    position: absolute;
    top: -60px;
    left: 10px;
    background: var(--primary);
    color: #030712 !important;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    z-index: 100000;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 10px;
}
