/* --- MODERN UI/UX DEĞİŞKENLERİ --- */
:root {
    --color-orange: #ff6b00;
    --color-orange-hover: #e65c00;
    --color-navy: #071833;
    --color-navy-light: #122854;
    --bg-light: #f8f9fa;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(7, 24, 51, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
body { background-color: var(--bg-light); color: var(--text-dark); scroll-behavior: smooth; overflow-x: hidden; }

/* --- GLASSMORPHISM HEADER (Cam Efektli Menü) --- */
header { 
    background-color: rgba(7, 24, 51, 0.85); 
    backdrop-filter: blur(12px); /* Arka planı puslu yapar */
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: fixed; /* Ekranda asılı kalır */
    width: 100%;
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

header .logo a { display: flex; align-items: center; text-decoration: none; }
header .logo img { 
    max-height: 70px; /* 45px'ten 70px'e çıkarıp büyüttük */
    width: auto; 
    display: block; 
    transition: 0.3s; 
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3)); /* Logoya hafif bir gölge ekleyerek daha net okunmasını sağlarız */
}header .logo img:hover { opacity: 0.8; }

header nav { display: flex; align-items: center; gap: 35px; }
header nav a { color: #fff; text-decoration: none; font-size: 15px; font-weight: 500; transition: 0.3s; position: relative; }
header nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--color-orange); transition: width 0.3s ease; }
header nav a:hover::after { width: 100%; }
header nav a:hover { color: var(--color-orange); }

/* --- HERO VİDEO ALANI --- */
.hero { 
    position: relative; 
    height: 100vh; /* Tam ekran */
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    color: white; 
    text-align: center; 
    padding: 0 20px; 
    overflow: hidden; 
}

.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; transform: translateX(-50%) translateY(-50%); z-index: -2; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(7,24,51,0.8), rgba(0,0,0,0.6)); z-index: -1; }

.hero-content { z-index: 1; max-width: 800px; animation: fadeInUp 1s ease; }
.hero-content .badge { display: inline-block; padding: 8px 20px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; backdrop-filter: blur(5px); }
.hero-content h1 { font-size: 54px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; letter-spacing: -1px; }
.hero-content p { font-size: 18px; color: #e0e0e0; margin-bottom: 40px; font-weight: 300; line-height: 1.6; }

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

/* Lüks Tanıtım Butonu */
.watch-btn { background: var(--color-orange); color: white; border: none; padding: 18px 40px; border-radius: 50px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3); display: inline-flex; align-items: center; gap: 12px; }
.watch-btn:hover { background: var(--color-orange-hover); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4); }

/* --- BÖLÜM BAŞLIKLARI --- */
.container { padding: 100px 5%; max-width: 1300px; margin: auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { color: var(--color-navy); font-size: 36px; font-weight: 800; margin-bottom: 15px; letter-spacing: -0.5px; }
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* --- MODERN PORTFÖY KARTLARI --- */
.card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: all 0.4s ease; border: 1px solid #f1f1f1; position: relative; display: flex; flex-direction: column; height: 100%; }
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.card-img-box { position: relative; width: 100%; height: 280px; overflow: hidden; }
.card-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img-box img { transform: scale(1.05); }

/* Kartın İçindeki Uçan Fiyat Etiketi */
.price-floating { position: absolute; bottom: 20px; right: 20px; background: rgba(255, 255, 255, 0.95); color: var(--color-navy); padding: 10px 18px; border-radius: var(--radius-md); font-weight: 800; font-size: 18px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); backdrop-filter: blur(5px); }

.card-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.card-body h3 { color: var(--color-navy); font-size: 18px; font-weight: 700; margin-bottom: 15px; line-height: 1.4; }
.card-features { display: flex; gap: 15px; color: var(--text-muted); font-size: 14px; font-weight: 500; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.card-features span { display: flex; align-items: center; gap: 6px; }

.card-footer-info { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.card-footer-info .danisman-isim { font-size: 13px; color: var(--text-muted); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.card-footer-info .danisman-isim i { color: var(--color-orange); }

/* --- DANIŞMAN KARTLARI --- */
.danisman-card { background: white; padding: 40px 20px; border-radius: var(--radius-lg); text-align: center; text-decoration: none; display: block; transition: all 0.4s ease; box-shadow: var(--shadow-soft); border: 1px solid #f1f1f1; }
.danisman-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: #e2e8f0; }

.danisman-foto-wrapper { width: 140px; height: 140px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 4px solid white; box-shadow: 0 10px 25px rgba(7, 24, 51, 0.15); position: relative; }
.danisman-foto-wrapper img, .danisman-foto-wrapper video { width: 100%; height: 100%; object-fit: cover; }
.danisman-card h3 { color: var(--color-navy); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.danisman-card p { color: var(--color-orange); font-size: 14px; font-weight: 600; }

/* Swiper Noktaları */
.swiper-pagination-bullet { background: #cbd5e1; opacity: 1; }
.swiper-pagination-bullet-active { background: var(--color-orange); width: 24px; border-radius: 12px; transition: 0.3s; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 20px !important; font-weight: bold; }
.swiper-button-next, .swiper-button-prev { background: white; width: 45px; height: 45px; border-radius: 50%; box-shadow: 0 5px 15px rgba(0,0,0,0.1); color: var(--color-navy) !important; transition: 0.3s; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--color-orange); color: white !important; }

/* Sinema Modu (Değişmedi, sadece optimize edildi) */
.sinema-modal { display: none; position: fixed; z-index: 99999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(7, 24, 51, 0.9); backdrop-filter: blur(10px); align-items: center; justify-content: center; opacity: 0; animation: fadeIn 0.3s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.sinema-icerik { position: relative; width: 90%; max-width: 1000px; background: #000; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.5); transform: scale(0.9); animation: popUp 0.3s forwards; }
@keyframes popUp { to { transform: scale(1); } }
.sinema-icerik video { width: 100%; max-height: 85vh; display: block; }
.sinema-kapat { position: absolute; top: 25px; right: 40px; color: #fff; font-size: 40px; cursor: pointer; transition: 0.3s; z-index: 100000; line-height: 1; }
.sinema-kapat:hover { color: var(--color-orange); transform: scale(1.1); }

/* --- HAKKIMIZDA & VİZYON (KURUMSAL ALAN) TASARIMI --- */
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 60px; 
    align-items: start; 
}

/* Sol Taraftaki Fotoğraf ve Yüzen Kutu */
.about-image { 
    position: relative; 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    box-shadow: var(--shadow-soft); 
    height: 580px; 
}
.about-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.about-experience { 
    position: absolute; 
    bottom: 30px; 
    left: 30px; 
    background: var(--color-navy); 
    color: white; 
    padding: 18px 25px; 
    border-radius: var(--radius-md); 
    box-shadow: 0 10px 30px rgba(7, 24, 51, 0.2); 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    border-left: 4px solid var(--color-orange);
    z-index: 2;
}
.about-experience i { font-size: 20px; color: var(--color-orange); }
.about-experience .metin { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* Sağ Taraftaki Metinler */
.about-lead-text { 
    background: rgba(255, 107, 0, 0.04); 
    border-left: 4px solid var(--color-orange); 
    padding: 25px 30px; 
    border-radius: var(--radius-sm); 
    margin-bottom: 35px; 
}
.about-lead-text p { color: var(--color-navy); font-size: 16px; font-weight: 600; line-height: 1.6; margin-bottom: 0; }

.info-cards-wrapper { display: flex; flex-direction: column; gap: 20px; }

/* Hakkımızda ve Vizyon Kartları */
.info-card-modern { 
    background: white; 
    padding: 30px; 
    border-radius: var(--radius-md); 
    box-shadow: var(--shadow-soft); 
    display: flex; 
    gap: 20px; 
    align-items: flex-start; 
    border: 1px solid #f1f1f1; 
    transition: all 0.3s ease; 
}
.info-card-modern:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: rgba(255, 107, 0, 0.2); }
.info-card-modern .card-icon { background: rgba(7, 24, 51, 0.05); color: var(--color-navy); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; transition: 0.3s; }
.info-card-modern:hover .card-icon { background: var(--color-orange); color: white; }
.info-card-modern h4 { color: var(--color-navy); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.info-card-modern p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 0; }

/* Mobil Uyumluluk (Telefon Ekranı İçin) */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { height: 400px; }
}

/* --- BAŞARI METRİKLERİ (SAYAÇLAR) YENİ MODÜL --- */
.stats-section {
    position: relative;
    /* Lüks bir mimari/şehir arka planı ve parallax efekti */
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-attachment: fixed; /* Parallax Efekti */
    background-size: cover;
    padding: 100px 0;
    margin: 80px 0;
    color: white;
    text-align: center;
}
.stats-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(7, 24, 51, 0.85); /* Markanın lacivert rengi ile koyulaştırma */
}
.stats-container {
    position: relative;
    z-index: 2;
    display: flex; /* Grid yerine flex kullanarak daha kolay ortaladık */
    justify-content: center; /* Merkeze yaslar */
    gap: 80px; /* Öğeler arası mesafe */
    flex-wrap: wrap; /* Mobilde alt alta geçmesi için */
}

.stat-box { 
    padding: 20px; 
    flex: 0 1 200px; /* Genişliği sabitledik */
}
.stat-box i { font-size: 40px; color: var(--color-orange); margin-bottom: 20px; }
.stat-box div { display: flex; align-items: center; justify-content: center; }
.stat-box h3 { font-size: 50px; font-weight: 800; margin: 0; color: white; }
.stat-box span { font-size: 30px; font-weight: 700; color: var(--color-orange); margin-left: 5px; }
.stat-box p { font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; color: #cbd5e1; }

@media (max-width: 992px) { .stats-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .stats-container { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .stats-container { gap: 40px; }
    .stat-box { flex: 0 1 100%; } /* Mobilde tam genişlik */
}


/* --- MÜŞTERİ YORUMLARI (TESTIMONIALS) YENİ MODÜL --- */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid #f1f5f9;
    position: relative;
    margin: 20px 10px; /* Gölgelerin sliderda kesilmemesi için margin */
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover { 
    transform: translateY(-5px); 
    box-shadow: var(--shadow-hover); 
    border-color: rgba(255, 107, 0, 0.2); 
}
.quote-icon { 
    position: absolute; 
    top: 30px; 
    right: 30px; 
    font-size: 40px; 
    color: rgba(255, 107, 0, 0.1); 
}
.t-text { 
    font-size: 15px; 
    font-style: italic; 
    color: var(--text-muted); 
    line-height: 1.8; 
    margin-bottom: 30px; 
    position: relative; 
    z-index: 2; 
    flex-grow: 1; /* Alt kısmın dibe yaslanması için */
}
.t-user { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}
.t-avatar { 
    width: 50px; 
    height: 50px; 
    background: var(--color-navy); 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 20px; 
    font-weight: 700; 
}
.t-user h4 { color: var(--color-navy); font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.stars { color: #f1c40f; font-size: 13px; }

/* --- WHATSAPP BUTONU VE BALON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Balon (Tooltip) Stili */
.whatsapp-bubble {
    position: absolute;
    right: 75px; /* Butonun solunda durması için */
    background: #ffffff;
    color: #25d366;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap; /* Metin alt satıra geçmesin */
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0; /* Normalde görünmez */
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none; /* Tıklanabilirliği kapat */
}

/* Balonun ucundaki küçük üçgen */
.whatsapp-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid #ffffff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Hover olduğunda balonu göster */
.whatsapp-float:hover .whatsapp-bubble {
    opacity: 1;
    visibility: visible;
    right: 80px; /* Hover olduğunda hafif bir hareket efekti */
}

/* Mobilde balonu gizle (yer kaplamasın) */
@media (max-width: 768px) {
    .whatsapp-bubble { display: none; }
}

/* ==========================================================================
   🌟 PREMIUM FOOTER (SİTE ALT BİLGİSİ) TASARIMI
   ========================================================================== */
.site-footer {
    background-color: var(--color-navy, #071833);
    color: #cbd5e1;
    font-family: 'Montserrat', sans-serif;
    padding-top: 70px;
    margin-top: auto; /* Sayfa içeriği az olsa bile en alta yapışmasını sağlar */
}

.footer-top {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.brand-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 25px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.05);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 18px;
}

.social-links a:hover {
    background: var(--color-orange, #ff6b00);
    border-color: var(--color-orange, #ff6b00);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,107,0,0.3);
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--color-orange, #ff6b00);
    border-radius: 2px;
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 15px;
}

.links-col ul a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
}

.links-col ul a::before {
    content: '\f105'; /* Ok işareti */
    font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--color-orange, #ff6b00);
    font-size: 14px;
    transition: 0.2s;
}

.links-col ul a:hover {
    color: var(--color-orange, #ff6b00);
    transform: translateX(6px);
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.contact-list li i {
    color: var(--color-orange, #ff6b00);
    font-size: 18px;
    margin-top: 3px;
}

.contact-list li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.2s;
}

.contact-list li a:hover { color: white; }

.footer-bottom {
    background: #041024; /* Zemin renginden bir ton daha koyu */
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.2s;
}
.footer-bottom a:hover { color: var(--color-orange, #ff6b00); }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .brand-col p { max-width: 100%; }
}

/* Broşür PDF Yazdırılırken Bu Alanı Gizle */
@media print {
    .site-footer { display: none !important; }
}

/* ==========================================================================
   🖨️ PREMIUM A4 VITRIN BROŞÜRÜ YAZDIRMA (PRINT) STİLLERİ
   ========================================================================== */
@media print {
    /* Sayfa Yapısı Ayarları ve Kenar Boşluklarını Sıfırlama */
    @page {
        size: A4 portrait;
        margin: 10mm 15mm 10mm 15mm;
    }
    
    /* Arka plan renklerini ve resim netliklerini koru */
    html, body {
        background: #fff !important;
        color: #000 !important;
        font-family: 'Montserrat', sans-serif !important;
        padding-top: 0 !important;
        margin: 0 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    /* HARİÇ TUTULACAKLAR (Broşürde görünmesini istemediğimiz web ögeleri) */
    header, footer, nav, 
    .swiper-button-next, .swiper-button-prev, 
    .video-play-trigger, .share-module, 
    .btn-print-brochure, .video-modal-overlay, 
    #map, .clean-card:has(#map), 
    .clean-card:has(.similar-grid), .btn-wa {
        display: none !important;
    }

    /* Sayfa Düzenini A4 Formuna Zorlama */
    .layout-grid {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .property-main, .clean-card {
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
        background: transparent !important;
    }

    /* Başlık ve Fiyat Alanı Düzenlemesi */
    .prop-head {
        margin: 0 0 20px 0 !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border-bottom: 3px solid #071833 !important;
        padding-bottom: 15px !important;
    }
    .prop-title h1 {
        font-size: 26px !important;
        color: #071833 !important;
        margin: 0 !important;
    }
    .prop-price .price {
        font-size: 28px !important;
        color: #ff6b00 !important;
    }

    /* Büyük Kapak Fotoğrafını Sabitleme */
    .gallery-container {
        padding: 0 !important;
        margin-bottom: 25px !important;
    }
    .hero-showcase {
        height: 320px !important;
        min-height: 320px !important;
        border-radius: 12px !important;
    }
    .swiper-slide img {
        object-fit: cover !important;
        border-radius: 12px !important;
    }

    /* Teknik Özellikler Gridini Yazıcıya Uyarlama */
    .specs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .spec-line {
        font-size: 13px !important;
        border-bottom: 1px dashed #cbd5e1 !important;
    }

    /* Sağdaki Danışman Alanını Alt Kısma Blok Olarak Çekme ve QR Kodla Birleştirme */
    .agent-sidebar {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        border-top: 2px solid #071833 !important;
        padding-top: 20px !important;
        margin-top: 30px !important;
        text-align: left !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        page-break-inside: avoid !important;
    }
    .agent-avatar {
        width: 80px !important;
        height: 80px !important;
        margin: 0 20px 0 0 !important;
    }
    .qr-block {
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: none !important;
        text-align: right !important;
    }
    .qr-block img {
        width: 90px !important;
        height: 90px !important;
    }
    .qr-block p {
        display: none !important; /* "Daha sonra incelemek için okutun" yazısını gizle */
    }
}

/* ==========================================================================
   📱 MOBİL HEADER & HAMBURGER MENÜ (3 ÇİZGİ)
   ========================================================================== */
.menu-toggle {
    display: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1001; /* Çarpı işaretinin üstte kalması için */
}

.menu-toggle:hover {
    color: var(--color-orange);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block; /* Mobilde 3 çizgiyi göster */
    }
    
    header nav {
        position: absolute;
        top: 100%; /* Header'ın tam altından başlar */
        left: 0;
        width: 100%;
        background: rgba(7, 24, 51, 0.98); /* Lacivert arka plan */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 0;
        max-height: 0; /* Başlangıçta kapalı */
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    /* JavaScript ile .active class'ı eklendiğinde açılır */
    header nav.active {
        max-height: 400px;
        padding: 15px 0 25px 0;
    }

    header nav a {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    header nav a::after {
        display: none; /* Mobilde alt çizgi efektini kapat */
    }
    
    /* "Giriş" butonunun mobildeki özel hizalaması */
    header nav a:last-child {
        border-bottom: none;
        width: max-content;
        margin: 15px auto 0;
    }
}