/* Google Fonts: header.php içinde <link> ile yükleniyor (render-blocking @import kaldırıldı) */

/* --- 1. Değişkenler ve Temel Tasarım Sistemi --- */
:root {
    --bg-dark: #f8fafc;          /* Ana aydınlık arka plan */
    --bg-card: #ffffff;          /* Kart ve kutu arka planı */
    --border-color: #e2e8f0;     /* Standart kenarlık rengi */
    --primary-blue: #0b2347;     /* Lacivert (Menü, başlıklar ve ana ton) */
    --primary-orange: #dd5903;   /* Canlı Turuncu (Butonlar, vurgular, CTA) */
    --orange: #ff7827;           /* Turuncu (Referans tasarımdan) */
    --primary-glow: rgba(221, 89, 3, 0.35);
    --text-white: #ffffff;       /* Beyaz metin (koyu zeminler için) */
    --text-dark: #1e293b;        /* Ana koyu gövde metni */
    --text-muted: #64748b;       /* Mute edilmiş ikincil metinler */
    --text-hover: #dd5903;
    --success-green: #00cd85;    /* Yeni badge vb. */
    --font-heading: 'Geist Sans', 'Outfit', 'Inter', sans-serif;
    --font-body: 'Geist Sans', 'Inter', sans-serif;
    --max-width: 1240px;
    --header-height: 140px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Performans için sadece gerekli elementlere transition */
a,
button,
.btn-primary,
.btn-outline,
.top-bar-btn,
.nav-btn,
.form-control,
.form-submit-btn,
.service-card,
.service-card-btn,
.floating-cta,
.mega-menu-link,
.mega-view-all-btn,
.cta-btn-phone,
.cta-btn-whatsapp,
.blog-card,
.district-pill,
.contact-btn,
.social-icon,
.footer-links a,
.nav-links a::after,
.service-card::after {
    transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease,
                box-shadow 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

/* Mega menü görünürlük transition'ı ayrıca */
.mega-menu-wrapper-dropdown {
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Screen reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- 2. Ortak Bileşenler (Butonlar, Kartlar vb.) --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    box-shadow: 0 4px 14px var(--primary-glow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: #c24e02;
    box-shadow: 0 6px 20px rgba(221, 89, 3, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background-color: rgba(221, 89, 3, 0.05);
    box-shadow: 0 0 12px rgba(221, 89, 3, 0.15);
    transform: translateY(-2px);
}

/* --- 3. Top Bar, İletişim Barı ve Menü (Header) --- */
header {
    display: contents;
}

/* Top Bar */
.top-bar {
    background-color: #0b2347;
    padding: 8px 0;
    font-size: 12px;
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.top-info-item:hover {
    color: var(--primary-orange);
}

.top-info-item svg {
    color: var(--primary-orange);
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right .social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-right .social-icon {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.top-bar-right .social-icon:hover {
    color: #ffffff;
    background-color: var(--primary-orange);
    transform: translateY(-1px);
}

/* Navigasyon Menüsü (Satır 2) */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 9998;
    background-color: #ffffff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-color);
    height: 90px;
    display: flex;
    align-items: center;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo redesign matching mockup */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-box-square {
    background-color: #0b2347;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.logo-flame-svg {
    width: 28px;
    height: 28px;
}

.logo-online-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background-color: #00cd85;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.logo-text-col {
    display: flex;
    flex-direction: column;
}

.logo-badge-text {
    font-size: 8px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.logo-main-title {
    font-size: 22px;
    font-weight: 800;
    color: #0b2347;
    line-height: 1.0;
}

.logo-sub-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1.0;
    margin-top: 2px;
}

/* Menu links and CTA buttons wrapper */
.nav-menu-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

/* Redesigned Pill Menu (Desktop) */
.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    font-family: var(--font-heading);
    margin-left: auto;
    margin-right: auto;
    background-color: #f3f6fa;
    border-radius: 30px;
    padding: 6px 8px;
    border: 1px solid rgba(15, 38, 77, 0.05);
}

.nav-links li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 20px;
    color: #0b2347;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-links li.active a {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #0b2347;
}

.nav-links li a:hover {
    color: var(--primary-orange);
}

.nav-links li a::after {
    display: none !important;
}

/* Nav CTA Buttons (Right) */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-btn {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.nav-btn-call {
    background: linear-gradient(135deg, #ff6600 0%, #dd5903 100%) !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(221, 89, 3, 0.25) !important;
    border: none !important;
    transition: all 0.25s ease !important;
}

.nav-btn-call:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(221, 89, 3, 0.35) !important;
    background: linear-gradient(135deg, #ff771a 0%, #e65c00 100%) !important;
}

.cta-phone-icon-box {
    background-color: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-phone-icon-box svg {
    width: 14px !important;
    height: 14px !important;
    color: #ffffff !important;
}

.cta-text-box {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-badge {
    font-size: 8px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    opacity: 0.9 !important;
    color: #ffffff !important;
    display: block !important;
}

.cta-phone-num {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    display: block !important;
}

.cta-arrow {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-left: 2px;
}

@media (min-width: 1201px) {
    .nav-buttons .nav-btn-whatsapp,
    .nav-buttons .nav-btn-appointment {
        display: none !important;
    }
}

.nav-btn-whatsapp {
    background-color: rgba(0, 205, 133, 0.05);
    border: 1px solid rgba(0, 205, 133, 0.3);
    color: var(--success-green);
}

.nav-btn-whatsapp:hover {
    background-color: var(--success-green);
    color: #ffffff !important;
}

.nav-btn-appointment {
    background-color: rgba(11, 35, 71, 0.05);
    border: 1px solid rgba(11, 35, 71, 0.25);
    color: var(--primary-blue);
    cursor: pointer;
}

.nav-btn-appointment:hover {
    background-color: var(--primary-blue);
    color: #ffffff !important;
    box-shadow: 0 3px 8px rgba(11, 35, 71, 0.2);
}

/* --- 4. Hero Alanı --- */
.hero-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background: radial-gradient(circle at 60% 30%, rgba(0, 108, 255, 0.15) 0%, transparent 60%);
    border-bottom: 1px solid var(--border-color);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.45;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    background-color: rgba(221, 89, 3, 0.1);
    border: 1px solid rgba(221, 89, 3, 0.25);
    color: var(--primary-orange);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.hero-title span {
    color: var(--primary-orange);
}

.hero-desc {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-checks {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.hero-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-blue);
}

.hero-check-item svg {
    color: var(--primary-orange);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-btn-teklif {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
}

.hero-btn-teklif:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange) !important;
}

/* Hero Teklif Formu */
.hero-right-form {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05), 0 0 25px rgba(221, 89, 3, 0.05);
    border-top: 3px solid var(--primary-orange);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    background-color: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 20px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(221, 89, 3, 0.12), inset 0 1px 2px rgba(0, 0, 0, 0.02);
    background-color: #ffffff;
}

.form-control::placeholder {
    color: #a0aec0;
    font-size: 13.5px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 45px;
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    background-color: var(--primary-orange);
    border: none;
    color: #fff;
    padding: 15px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(221, 89, 3, 0.25);
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover {
    background-color: #e05800;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 18px rgba(221, 89, 3, 0.35);
}

.form-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(221, 89, 3, 0.25);
}

.form-footer-info {
    color: var(--text-muted);
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    justify-content: center;
}

/* --- 5. Hizmet Kartları Grid --- */
.services-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: rgba(0, 108, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 108, 255, 0.2), 0 0 15px rgba(0, 108, 255, 0.1);
    transform: translateY(-5px);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(0, 108, 255, 0.1);
    border: 1.5px solid rgba(0, 108, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(0, 108, 255, 0.15);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-card-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.service-card-list-item svg {
    color: var(--primary-orange);
}

.service-card-btn {
    width: 100%;
    background-color: transparent;
    border: 1.5px solid rgba(221, 89, 3, 0.4);
    color: var(--primary-orange);
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card:hover .service-card-btn {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #ffffff !important;
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* --- 6. Güven ve Özellikler Barı --- */
.features-bar {
    background-color: #010813;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-bar-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: rgba(0, 108, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.feature-bar-details .title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 2px;
}

.feature-bar-details .desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* --- 7. Kaydırmalı Öncesi-Sonrası Modülü --- */
.before-after-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
    background: radial-gradient(circle at 10% 80%, rgba(0, 108, 255, 0.05) 0%, transparent 50%);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-badge {
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 14px;
}

/* Split Image Slider */
.slider-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.img-before {
    z-index: 1;
}

.img-after {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--primary-blue);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary-glow);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    border: 3px solid #fff;
    color: #fff;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: ew-resize;
}

.label-badge {
    position: absolute;
    bottom: 20px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    background-color: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

/* --- 8. Google Stili Müşteri Yorumları --- */
.reviews-section {
    padding: 100px 0;
    background-color: #010813;
    border-bottom: 1px solid var(--border-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(221, 89, 3, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-orange);
}

.review-name {
    font-weight: 700;
    font-size: 14px;
}

.review-date {
    font-size: 11px;
    color: var(--text-muted);
}

.review-stars {
    color: #ff9f00;
    display: flex;
    gap: 3px;
    font-size: 14px;
}

.review-body {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- 9. SSS Akordeon Modülü --- */
.faq-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 20px;
    color: var(--primary-orange);
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 14px;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 500px;
}

/* --- 10. İlçeler Grid Bölgesi --- */
.districts-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.district-link {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    display: block;
}

.district-link:hover {
    border-color: var(--primary-orange);
    background-color: rgba(221, 89, 3, 0.05);
    color: var(--primary-orange);
}

/* --- 11. Blog Kartları ve İletişim Formu / Footer --- */
.blog-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.blog-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.blog-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background-color: #f1f5f9;
}

.blog-body {
    padding: 25px;
}

.blog-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-summary {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.blog-card-link {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Footer & Alt Alanlar */
footer {
    background: #0b2347;
    padding: 80px 0 30px 0;
    font-size: 13px;
    color: #cbd5e1;
    border-top: 1px solid rgba(221, 89, 3, 0.25);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-widget {
    display: flex;
    flex-direction: column;
}

.footer-widget-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--primary-blue);
    box-shadow: 0 0 8px var(--primary-glow);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #8da2c0;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-blue) !important;
    transform: translateX(4px);
    text-shadow: 0 0 8px var(--primary-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(15, 38, 77, 0.5);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #8da2c0;
}

.footer-bottom a {
    transition: color 0.25s ease;
}

.footer-bottom a:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 8px var(--primary-glow);
}

/* --- 12. Mobil Yapışkan Bar (Sticky Call/WhatsApp) & Responsive Modlar --- */
.mobile-sticky-contact {
    display: none;
}

/* Mobil Hamburger Menü */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #0b2347;
    border-radius: 2px;
}

/* Animasyonlar */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- 13. Responsive Tasarım --- */
@media (max-width: 1200px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu-wrapper {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 90px;
        left: 0;
        background-color: #ffffff;
        border-bottom: 2px solid var(--primary-orange);
        padding: 25px 20px;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        z-index: 999;
    }

    .nav-menu-wrapper.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin: 0 0 10px 0;
        text-align: center;
        background-color: transparent !important;
        border: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block !important;
        color: #0b2347 !important;
        padding: 10px 0 !important;
        font-size: 15px !important;
        font-weight: 700 !important;
    }

    .nav-links li.active a {
        background-color: rgba(221, 89, 3, 0.08) !important;
        color: var(--primary-orange) !important;
        border-radius: 6px !important;
    }

    .nav-buttons {
        width: 100%;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .nav-buttons .nav-btn-whatsapp,
    .nav-buttons .nav-btn-appointment {
        display: flex !important;
    }
}

@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .districts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .hide-mobile {
        display: none !important;
    }
    
    .top-bar-left {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    /* 1. Body & Temel Alanlar */
    body {
        padding-bottom: 84px !important;
    }

    .top-bar {
        display: none !important;
    }

    /* 2. Header, Logo & Menu Drawer */
    .main-nav {
        height: 72px !important;
    }

    .logo-wrapper {
        width: auto !important;
        max-width: 260px !important;
        flex: 0 1 auto !important;
        gap: 8px !important;
    }

    .logo-icon {
        width: 36px !important;
        height: 28px !important;
    }

    .logo-title {
        font-size: 15px !important;
    }

    .logo-subtitle {
        font-size: 7px !important;
    }

    .menu-toggle {
        display: flex !important;
        z-index: 100000 !important;
    }

    .nav-menu-wrapper {
        position: fixed !important;
        top: 72px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 72px) !important;
        background-color: #020b18 !important;
        border-bottom: none !important;
        padding: 30px 20px !important;
        display: none;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 25px !important;
        z-index: 99990 !important;
        overflow-y: auto !important;
        box-shadow: none !important;
    }

    .nav-menu-wrapper.active {
        display: flex !important;
    }

    .nav-links {
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
        margin: 0 0 10px 0 !important;
        text-align: center !important;
    }

    .nav-links li {
        width: 100% !important;
    }

    .nav-links a {
        display: block !important;
        font-size: 16px !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid var(--border-color) !important;
    }

    .nav-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
        margin: 0 !important;
    }

    .nav-buttons .nav-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px !important;
        font-size: 13px !important;
        height: auto !important;
    }

    /* 3. Hero Bölgesi */
    .hero-section {
        background-color: #020b18 !important;
        padding: 30px 0 !important;
    }

    .hero-bg {
        opacity: 0.15 !important;
        background-position: center !important;
    }

    .hero-section .container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 16px !important;
    }

    .hero-left {
        align-items: center !important;
        text-align: center !important;
    }

    .hero-badge {
        margin-bottom: 15px !important;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 15px !important;
    }

    .hero-desc {
        font-size: 14px !important;
        text-align: center !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    .hero-checks {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 8px 15px !important;
        margin-bottom: 25px !important;
    }

    .hero-check-item {
        font-size: 12px !important;
    }

    /* Hero CTA Butonları (Teklif Gizli, 2 Büyük Dikey Buton) */
    .hero-btn-teklif {
        display: none !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .hero-buttons a {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        border-radius: 6px !important;
        box-sizing: border-box !important;
    }

    /* 4. Form Kartı */
    .hero-right {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-right-form {
        padding: 20px 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-top: 10px !important;
    }

    .form-title {
        font-size: 20px !important;
        margin-bottom: 4px !important;
        text-align: center !important;
    }

    .form-subtitle {
        font-size: 12px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }

    .form-control {
        height: 48px !important;
        font-size: 13px !important;
        padding: 10px 14px !important;
    }

    .form-submit-btn {
        width: 100% !important;
        height: 48px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        margin-top: 15px !important;
    }

    /* 5. Hizmet Kartları */
    .services-section {
        padding: 40px 0 !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .service-card {
        padding: 24px 20px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .service-card-icon-wrapper {
        width: 52px !important;
        height: 52px !important;
        margin-bottom: 15px !important;
    }

    .service-card-icon-wrapper svg {
        width: 22px !important;
        height: 22px !important;
    }

    .service-card-title {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }

    .service-card-desc {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }

    .service-card-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 15px !important;
        width: 100% !important;
    }

    .service-card-list-item {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }

    .service-card-btn {
        padding: 10px !important;
        font-size: 12px !important;
        width: 100% !important;
    }

    /* 6. Özellikler Barı */
    .features-bar {
        padding: 30px 0 !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* 7. Neden Biz / Sektörde Güvenilir Alanı */
    .before-after-section {
        padding: 40px 0 !important;
    }

    .before-after-section > .container[style*="display:grid"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 16px !important;
    }

    .before-after-section .container > div[style*="background-color"] {
        padding: 24px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .before-after-section .container > div[style*="background-color"] h3 {
        font-size: 20px !important;
    }

    .before-after-section .container > div[style*="background-color"] p {
        font-size: 13px !important;
        margin-bottom: 20px !important;
    }

    .before-after-section .container > div[style*="background-color"] a {
        font-size: 15px !important;
        padding: 12px 20px !important;
        width: 100% !important;
        display: block !important;
    }

    /* 8. Diğer Gridler & Yapılar */
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .review-card {
        padding: 20px !important;
    }

    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .districts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }

    /* 9. Mobil Sticky Alt İletişim Barı */
    .mobile-sticky-contact {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99999 !important;
        height: 72px !important;
        background: #020b18 !important;
        border-top: 1px solid #0f264d !important;
        box-shadow: 0 -8px 28px rgba(0, 108, 255, 0.25) !important;
        padding: 10px 12px !important;
        gap: 8px !important;
        box-sizing: border-box !important;
    }

    .mobile-sticky-contact a {
        flex: 1 !important;
        height: 52px !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        font-weight: 700 !important;
        font-size: 13px !important;
        text-decoration: none !important;
        color: #fff !important;
        box-sizing: border-box !important;
    }

    .sticky-call {
        background: #006cff !important;
    }

    .sticky-whatsapp {
        background: #19b957 !important;
    }

    .sticky-offer {
        background: #081630 !important;
        border: 1px solid #0f264d !important;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .nav-links {
        gap: 15px;
        font-size: 12px;
        margin-left: 20px;
    }
    .nav-btn {
        padding: 5px 8px;
        font-size: 10px;
        gap: 4px;
    }
    .logo-wrapper {
        width: 250px;
        flex: 0 0 250px;
    }
    .logo-title {
        font-size: 16px;
    }
    .logo-subtitle {
        font-size: 7px;
    }
}

@media (min-width: 1400px) {
    .nav-links {
        gap: 28px;
    }
}

/* Masaüstü Yüzen İletişim Butonları (Desktop Floating CTA) */
.desktop-floating-call,
.desktop-floating-whatsapp {
    position: fixed;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.desktop-floating-call {
    left: 24px;
    background: #006cff;
}

.desktop-floating-whatsapp {
    right: 24px;
    background: #19b957;
}

.desktop-floating-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 28px rgba(0, 108, 255, 0.55);
}

.desktop-floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 28px rgba(25, 185, 87, 0.55);
}

@media (max-width: 768px) {
    .desktop-floating-call,
    .desktop-floating-whatsapp {
        display: none !important;
    }
}

/* --- Mega Menü Tasarımı --- */

/* Desktop Styles (min-width: 1201px) */
@media (min-width: 1201px) {
    .has-mega-menu {
        position: static !important;
    }
    
    .mega-menu-trigger {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .mega-menu-trigger .arrow {
        font-size: 10px;
        transition: transform 0.25s ease;
    }
    
    .has-mega-menu:hover .mega-menu-trigger .arrow {
        transform: rotate(180deg);
    }
    
    .mega-menu-wrapper-dropdown {
        position: absolute;
        top: calc(100% + 15px);
        left: 50%;
        width: calc(100vw - 40px);
        max-width: 1200px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 0 1px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(15px);
        transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99999;
        padding: 32px;
        box-sizing: border-box;
    }
    
    .has-mega-menu:hover .mega-menu-wrapper-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .mega-menu-dropdown-outer {
        display: flex;
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mega-menu-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr) 340px;
        gap: 28px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mega-menu-column {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .mega-column-header {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    
    .mega-column-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(221, 89, 3, 0.08);
        border: 1px solid rgba(221, 89, 3, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-orange);
        flex-shrink: 0;
    }
    
    .mega-column-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .mega-column-header-text {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .mega-column-title-text {
        font-family: var(--font-heading);
        font-size: 16px;
        font-weight: 700;
        margin: 0;
    }
    
    .mega-column-title-text a {
        color: #0b2347;
        text-decoration: none;
        transition: color 0.25s;
    }
    
    .mega-column-title-text a:hover {
        color: var(--primary-orange);
    }
    
    .mega-column-desc {
        font-size: 12px;
        color: #64748b;
        line-height: 1.4;
        margin: 0;
    }
    
    .mega-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .mega-menu-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 8px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        color: #334155;
        transition: all 0.25s ease;
    }
    
    .mega-menu-link .check-icon {
        color: var(--primary-orange);
        font-size: 11px;
        margin-right: 8px;
        flex-shrink: 0;
    }
    
    .mega-menu-link .link-text {
        font-size: 13px;
        flex-grow: 1;
        transition: color 0.25s;
    }
    
    .mega-menu-link .arrow-icon {
        font-size: 14px;
        color: var(--primary-orange);
        opacity: 0;
        transform: translateX(-5px);
        transition: all 0.25s ease;
    }
    
    .mega-menu-link:hover {
        background: rgba(221, 89, 3, 0.05);
        border-color: rgba(221, 89, 3, 0.25);
        color: var(--primary-orange);
        transform: translateX(4px);
    }
    
    .mega-menu-link:hover .arrow-icon {
        opacity: 1;
        transform: translateX(0);
    }
    
    .mega-view-all-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        color: var(--primary-orange);
        font-size: 13px;
        font-weight: 600;
        padding: 8px 12px;
        border-radius: 8px;
        border: 1px dashed rgba(221, 89, 3, 0.3);
        background: rgba(221, 89, 3, 0.02);
        transition: all 0.25s ease;
        margin-top: auto;
    }
    
    .mega-view-all-btn .btn-arrow {
        transition: transform 0.25s ease;
    }
    
    .mega-view-all-btn:hover {
        background: rgba(221, 89, 3, 0.08);
        border-style: solid;
        border-color: var(--primary-orange);
        color: var(--primary-orange);
    }
    
    .mega-view-all-btn:hover .btn-arrow {
        transform: translateX(4px);
    }
    
    /* Sağ Taraf CTA Kartı */
    .mega-cta-panel {
        background: linear-gradient(135deg, #0b2347, #071f45);
        border-radius: 16px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        box-shadow: 0 10px 25px rgba(11, 35, 71, 0.15);
        box-sizing: border-box;
    }
    
    .cta-badge-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .cta-247-badge {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        flex-shrink: 0;
    }
    
    .cta-title {
        font-family: var(--font-heading);
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }
    
    .cta-desc {
        font-size: 13px;
        color: #cbd5e1;
        line-height: 1.4;
        margin: 0;
    }
    
    .cta-features {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-features li {
        font-size: 12px;
        color: #f1f5f9;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .cta-features li .check {
        color: var(--primary-orange);
        font-weight: 700;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: auto;
    }
    
    .cta-btn-phone,
    .cta-btn-whatsapp {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.25s ease;
        box-sizing: border-box;
    }
    
    .cta-btn-phone {
        background: var(--primary-orange);
        color: #fff;
        box-shadow: 0 4px 15px rgba(221, 89, 3, 0.25);
    }
    
    .cta-btn-phone:hover {
        background: #d45108;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(221, 89, 3, 0.45);
    }
    
    .cta-btn-whatsapp {
        background: transparent;
        border: 1px solid #19b957;
        color: #19b957;
    }
    
    .cta-btn-whatsapp:hover {
        background: rgba(25, 185, 87, 0.08);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(25, 185, 87, 0.15);
    }
    
    /* Alt Bölüm Full Width Card */
    .mega-bottom-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        padding: 16px 24px;
        margin-top: 28px;
        transition: all 0.25s ease;
        text-decoration: none;
    }
    
    .mega-bottom-card .card-left {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .mega-bottom-card .card-icon {
        color: var(--primary-orange);
        display: flex;
        align-items: center;
    }
    
    .mega-bottom-card .card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .mega-bottom-card .card-text {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .mega-bottom-card .card-title {
        font-family: var(--font-heading);
        font-size: 15px;
        font-weight: 700;
        color: #0b2347;
        margin: 0;
    }
    
    .mega-bottom-card .card-desc {
        font-size: 12px;
        color: #64748b;
        margin: 0;
    }
    
    .mega-bottom-card .card-cta {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--primary-orange);
        font-weight: 700;
        font-size: 13px;
        text-decoration: none;
        transition: transform 0.25s ease;
    }
    
    .mega-bottom-card:hover {
        background: #f1f5f9;
        border-color: #cbd5e1;
    }
    
    .mega-bottom-card:hover .card-cta {
        transform: translateX(4px);
    }
    
    /* En Alt Rozetler */
    .mega-badges-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 24px;
        border-top: 1px solid #e2e8f0;
        padding-top: 24px;
    }
    
    .mega-badge-card {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 20px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        transition: all 0.25s ease;
    }
    
    .mega-badge-card .badge-icon {
        color: var(--primary-orange);
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    .mega-badge-card .badge-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .mega-badge-card .badge-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .mega-badge-card .badge-title {
        font-size: 13px;
        font-weight: 700;
        color: #0b2347;
    }
    
    .mega-badge-card .badge-desc {
        font-size: 11px;
        color: #64748b;
    }
    
    .mega-badge-card:hover {
        background: rgba(221, 89, 3, 0.04);
        border-color: rgba(221, 89, 3, 0.25);
        box-shadow: 0 4px 12px rgba(221, 89, 3, 0.08);
        transform: translateY(-2px);
    }
}

/* Mobile Accordion Styles */
@media (max-width: 1200px) {
    .mega-menu-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .mega-menu-trigger .arrow {
        font-size: 12px;
        transition: transform 0.25s ease;
    }
    
    .has-mega-menu.open-acc > .mega-menu-trigger .arrow {
        transform: rotate(180deg);
    }
    
    .mega-menu-wrapper-dropdown {
        display: none;
        width: 100%;
        background-color: rgba(1, 8, 19, 0.65);
        border-radius: 12px;
        margin-top: 10px;
        padding: 12px 16px;
        box-sizing: border-box;
        border: 1px solid rgba(10, 132, 255, 0.1);
    }
    
    .has-mega-menu.open-acc > .mega-menu-wrapper-dropdown {
        display: block;
    }
    
    .mega-menu-dropdown-outer {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .mega-menu-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .mega-menu-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .mega-column-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding: 8px 0;
        border-bottom: 1px solid rgba(15, 38, 77, 0.4);
        margin: 0;
    }
    
    .mega-column-icon {
        display: none;
    }
    
    .mega-column-header-text {
        width: 100%;
    }
    
    .mega-column-title-text {
        font-family: var(--font-heading);
        font-size: 14px;
        font-weight: 700;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mega-column-title-text a {
        color: #fff;
        text-decoration: none;
    }
    
    .mega-column-title-text::after {
        display: none;
    }
    
    .mega-column-desc {
        display: none;
    }
    
    .mega-menu-list {
        display: flex;
        list-style: none;
        padding-left: 15px;
        margin: 5px 0 15px 0;
        flex-direction: column;
        gap: 8px;
    }
    
    .mega-menu-link {
        font-size: 13px;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid rgba(15, 38, 77, 0.2);
        text-decoration: none;
    }
    
    .mega-menu-link .check-icon {
        color: #0A84FF;
        font-size: 11px;
        margin-right: 8px;
    }
    
    .mega-menu-link .arrow-icon {
        display: none;
    }
    
    .mega-view-all-btn {
        display: none;
    }
    
    .mega-cta-panel,
    .mega-bottom-card,
    .mega-badges-grid {
        display: none !important;
    }
}

/* --- Dynamic Sticky Header & Responsive Floating CTA Styles --- */
.main-nav.is-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 72px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
    background-color: rgba(2, 11, 24, 0.96) !important;
    border-bottom: 1px solid #172d56 !important;
    animation: slideNavDown 0.3s ease-out;
    z-index: 99999 !important;
}

@keyframes slideNavDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Base Floating CTA Styles (Unified for Mobile & Desktop) */
.floating-cta {
    position: fixed;
    bottom: 24px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-sizing: border-box;
}

.cta-phone {
    left: 24px;
    background: #006cff;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-whatsapp {
    right: 24px;
    background: #19b957;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-cta:hover {
    transform: translateY(-3px) scale(1.05);
}

.cta-phone:hover {
    box-shadow: 0 10px 28px rgba(0, 108, 255, 0.55);
}

.cta-whatsapp:hover {
    box-shadow: 0 10px 28px rgba(25, 185, 87, 0.55);
}

/* Responsive Floating CTAs - Mobile Overwrite */
@media (max-width: 768px) {
    .floating-cta {
        width: 54px;
        height: 54px;
        padding: 0;
        bottom: 20px;
    }
    
    .cta-phone {
        left: 20px;
    }
    
    .cta-whatsapp {
        right: 20px;
    }
    
    .floating-cta .cta-text {
        display: none !important; /* Hide label, leaving only icon */
    }
}



