:root {
    --bg-deep: #0a0a0c;       /* Ultra derin saf siyah */
    --bg-surface: #121214;    /* Kartlar ve bloklar için lüks füme */
    --accent-gold: #c5a880;   /* Galerideki ahşap/ışık rengiyle birebir uyuşan mat gold */
    --accent-gold-rgb: 197, 168, 128;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.04);
}

/* Sıfırlama ve Akıcılık */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Küresel Elemanlar */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.subtitle {
    color: var(--accent-gold);
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.gold-line {
    width: 50px;
    height: 1px;
    background-color: var(--accent-gold);
    margin: 20px auto;
}

.gold-line.left {
    margin: 20px 0;
}

/* Cam Efektli Header */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: var(--accent-gold);
    font-weight: 300;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 32px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #fff;
}

.nav-cta {
    border: 1px solid rgba(197, 168, 128, 0.4);
    padding: 10px 22px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--accent-gold);
    color: var(--bg-deep) !important;
    border-color: var(--accent-gold);
}

/* Hero Sahnesi */
#hero {
    position: relative;
    height: 100vh;
    /* Resmi klasörden çağır, esnemeden tüm ekranı kaplamasını sağla */
    background: url('giris.jpg') no-repeat center center / cover;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.6) 60%, rgba(10,10,12,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-left: 8%;
}

#hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
}

#hero p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Premium Butonlar */
.btn {
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-deep);
}

.btn-primary:hover {
    background-color: #dfbe93;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-whatsapp {
    background-color: #128c7e;
    color: #fff;
    display: inline-block;
    text-align: center;
}
.btn-whatsapp:hover {
    background-color: #0b665c;
}

/* Vizyon Alanı */
#vizyon {
    padding: 140px 0;
    border-bottom: 1px solid var(--border-color);
}

.vizyon-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.vizyon-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 300;
    line-height: 1.2;
}

.vizyon-text p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.stats-grid {
    display: flex;
    gap: 48px;
}

.stat-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--accent-gold);
    font-weight: 400;
}

.stat-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

.vizyon-img {
    position: relative;
}

.vizyon-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.img-border-box {
    position: absolute;
    top: -20px; right: -20px;
    width: 100%; height: 100%;
    border: 1px solid rgba(197, 168, 128, 0.3);
    z-index: 1;
}

/* Araç Portföyü Vitrini */
#sattiklarimiz {
    padding: 140px 0;
    background-color: rgba(18, 18, 20, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Akıllı Kart Tasarımı */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

.car-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.car-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 168, 128, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.img-container img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.car-card:hover .img-container img {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 10px;
    font-weight: 600;
    padding: 6px 14px;
    letter-spacing: 1px;
}

.card-info {
    padding: 28px;
}

.card-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 8px;
}

.card-info p {
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Ofis & İletişim Alanı */
#iletisim {
    padding: 140px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.contact-info {
    padding: 60px;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 24px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item strong {
    font-size: 11px;
    color: var(--accent-gold);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.contact-map {
    position: relative;
    min-height: 450px;
    border-left: 1px solid var(--border-color);
}

/* Profesyonel Lightbox Modalı */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(5, 5, 6, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    animation: zoomEffect 0.4s ease;
}

@keyframes zoomEffect {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px; right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 200;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

#lightbox-caption {
    margin-top: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #fff;
}

/* Parıldayan Yükleniyor Kartları (Shimmer Skeleton) */
.skeleton-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 0 0 28px 0;
    border-radius: 4px;
}

.skeleton-img {
    height: 240px;
    background: linear-gradient(90deg, #121214 25%, #1c1c21 50%, #121214 75%);
    background-size: 200% 100%;
    animation: shimmer 1.6s infinite;
}

.skeleton-text-1, .skeleton-text-2 {
    margin: 20px 28px 0 28px;
    height: 20px;
    background: linear-gradient(90deg, #121214 25%, #1c1c21 50%, #121214 75%);
    background-size: 200% 100%;
    animation: shimmer 1.6s infinite;
}

.skeleton-text-2 {
    width: 50%;
    height: 14px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    background-color: #050506;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
}

.designer {
    color: var(--accent-gold);
    opacity: 0.7;
    letter-spacing: 1px;
}

/* Mobil Entegrasyon */
@media (max-width: 992px) {
    .vizyon-wrapper, .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    #hero h1 { font-size: 44px; }
    nav { display: none; } /* Mobil temizliği için */
    .contact-info { padding: 40px 24px; }
}
/* Harita ve Telefon Linkleri Düzeltmesi */
.map-link, .phone-link {
    color: var(--accent-gold) !important; /* Mavi rengi ezer, mat altın sarısı yapar */
    text-decoration: none !important;     /* Altındaki o çirkin çizgiyi kaldırır */
    transition: all 0.3s ease;
}

.map-link:hover, .phone-link:hover {
    color: #fff !important; /* Üzerine fareyle gelince beyaza döner */
}

/* Akıllı Telefon Izgarası (Grid) */
.phone-numbers {
    display: grid;
    grid-template-columns: max-content auto; /* İlk sütunu isme göre tam oturtur, kalanı numaraya verir */
    gap: 8px 12px; /* Satırlar arası 8px, isim ile numara arası tam 12px boşluk */
    margin-top: 8px;
    align-items: center;
}

.phone-numbers span {
    color: var(--text-secondary);
    font-size: 14px;
    white-space: nowrap;
}
/* Numaraların fontunu 1 tık küçültme */
.phone-link {
    font-size: 14.5px !important; 
}
/* --- APPLE TARZI SCROLL SCRUBBING --- */
/* Animasyon Başlangıç Durumları ve Yumuşatıcı (Smooth) Ayarı */
.scroll-sol, .scroll-sag, .scroll-alt {
    opacity: 0;
    will-change: transform, opacity;
    /* Farenin tekerlek tıkırtılarını yağ gibi akıtan sihirli satır: */
    transition: transform 0.15s ease-out, opacity 0.15s ease-out; 
}
/* =========================================
   MOBİL UYUM (TELEFON EKRANLARI İÇİN)
========================================= */
@media (max-width: 768px) {
    
    /* Giriş yazısını küçült ve sığdır */
    #hero h1 { font-size: 36px; margin-top: 50px; }
    .hero-content { padding-left: 20px; padding-right: 20px; text-align: center; }
    
    /* Butonları alt alta diz */
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; text-align: center; }

    /* Vizyon (Galeri İçi) Bölümü */
    .vizyon-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .vizyon-img img { height: 300px; }
    .stats-grid { flex-direction: column; gap: 20px; text-align: center; }
    
    /* Başlıkları telefona göre ayarla */
    .section-header h2, .vizyon-text h2, .contact-info h3 { font-size: 32px; text-align: center; }
    .gold-line { margin: 20px auto; }
    .gold-line.left { margin: 20px auto; }

    /* İletişim ve Harita Bölümü */
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info { padding: 40px 20px; text-align: center; }
    .info-item { display: flex; flex-direction: column; align-items: center; }
    .phone-numbers { justify-content: center; }
    .contact-map { min-height: 300px; border-left: none; border-top: 1px solid var(--border-color); }
    
    /* Üst Menüyü Mobilde Gizle (Sade Dursun) */
    .nav-container nav { display: none; }
}
/* --- ÖZEL HERO BAŞLIK VE HAFİF SOL EFEKTLERİ --- */

/* Site açıldığında yoktan var olan başlık */
.hero-fade {
    opacity: 0;
    /* 1.5 saniyede hafif büyüyerek ve belirginleşerek gelir */
    animation: heroBelir 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    will-change: opacity, transform;
}

@keyframes heroBelir {
    0% { opacity: 0; transform: scale(0.9) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Sadece 40-50 piksel geriden gelen kibar sol animasyon hazırlığı */
.scroll-hafif-sol {
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}
/* --- AÇILIŞTA EKRANIN SOLUNDAN SÜZÜLEN PARAGRAF --- */
.hero-slide-sol {
    opacity: 0;
    /* 1.2 saniyede, çok lüks bir ivmeyle (yavaşlayarak) yerine oturur */
    animation: tamSoldanGel 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    /* Başlık belirdikten 0.2 saniye sonra başlasın ki sıra sıra gelsinler */
    animation-delay: 0.2s; 
}

@keyframes tamSoldanGel {
    /* Başlangıç (0%): Ekranın tam sol dışından (-50vw) ve görünmez başlar */
    0% { opacity: 0; transform: translateX(-50vw); }
    /* Bitiş (100%): Orjinal yerine oturur ve tamamen görünür olur */
    100% { opacity: 1; transform: translateX(0); }
}
/* ==========================================
   ELASTİK SCROLL SCRUBBING CSS AYARLARI
========================================== */
.scroll-sol, .scroll-sag, .scroll-alt {
    opacity: 0;
    will-change: transform, opacity;
    /* Tekerlek tıkırtılarını yağ gibi akıtan milimetrik yumuşatıcı: */
    transition: transform 0.2s ease-out, opacity 0.2s ease-out; 
}
/* MOBİL AKICILIK VE DÜZEN OPTİMİZASYONU */
html, body {
    overflow-x: hidden !important; /* Sitenin sağa sola sallanmasını kesin olarak bitirir */
    width: 100%;
}

@media (max-width: 768px) {
    /* Mobilde yazılar sıkışmasın diye alt alta dizeriz */
    .mobil-baslik-duzen {
        flex-direction: column;
        gap: 5px !important;
    }
    /* Alt alta inince aradaki ( / ) çizgisi saçma durur, onu mobilde gizliyoruz */
    .ayirici-cizgi {
        display: none !important;
    }
}
/* EKRAN KARTIYLA ANİMASYON (TİTREMEYİ KESER) */
.scroll-sol, .scroll-sag, .scroll-alt, .hero-fade {
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
/* MOBİL İLK EKRAN (HERO) OTURAKLILIĞI */
@media (max-width: 768px) {
    .hero-section, .ilk-ekran { /* Arka plan arabanın olduğu ana div */
        height: 100svh !important; /* Telefon ekranının %100'ünü kapla */
        display: flex !important;
        flex-direction: column;
        justify-content: flex-end !important; /* Tüm yazıları ve butonları EN ALTA it */
        padding-bottom: 12vh !important; /* En dipten biraz nefes payı bırak */
    }
    
    .hero-content, .hero-fade {
        width: 90% !important;
        margin: 0 auto !important;
    }

    .hero-buttons { /* Butonların olduğu kısım */
        display: flex;
        flex-direction: column; /* Mobilde butonları alt alta koy */
        gap: 15px; /* Aralarını aç */
        width: 100%;
        margin-top: 20px;
    }
    
    .hero-buttons a, .hero-buttons button {
        width: 100% !important; /* Butonlar sağdan soldan tam otursun */
        padding: 18px !important;
        font-size: 15px !important;
    }
}
/* ==========================================
   BİLGİSAYAR (PC) GÖRÜNÜMÜ KORUMA KALKANI
========================================== */
/* PC'de menü butonu asla görünmez */
.mobil-menu-btn {
    display: none; 
}
/* EKRAN KARTIYLA ANİMASYON (TİTREMEYİ KESER) */
.scroll-sol, .scroll-sag, .scroll-alt, .hero-fade {
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* MOBİL KESİN ÇÖZÜM */
@media (max-width: 768px) {
    /* HERO ALANINI EN ALTA İTME VE ARKA PLAN TİTREMESİNİ KESME */
    #hero { 
        height: 100svh !important;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-end !important; 
        padding-bottom: 12vh !important;
        background-attachment: scroll !important; 
    }

    /* ÜST TARAFTAKİ LOGO VE MENÜ */
    .nav-container {
        display: flex !important;
        justify-content: flex-start !important; 
        align-items: center;
        width: 100%;
        padding: 15px 20px;
    }
    .mobil-menu-btn {
        display: flex !important;
        align-items: center;
        gap: 8px;
        color: #D4AF37;
        font-size: 14px;
        z-index: 10001;
        cursor: pointer;
    }
    .logo {
        padding-left: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important; 
        position: relative !important;
        display: flex !important;
        align-items: center;
        transform: translateX(-30px); 
    }
    .logo img {
        position: relative !important;
        transform: none !important;
        top: 0 !important;
        height: 40px !important; 
    }
    
    /* AÇILIR YAN PANEL */
    nav { 
        position: fixed !important;
        top: 0;
        left: -100%; 
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding-left: 30px;
        transition: 0.4s ease-in-out;
        z-index: 10000;
    }
    nav.panel-acik {
        left: 0 !important; 
    }
    nav a {
        margin: 15px 0 !important;
        font-size: 18px !important;
        text-decoration: none;
    }
}
html, body {
    overscroll-behavior-y: none !important; /* Ekranın alt/üst sınırında sekmeyi ve titremeyi durdurur */
}

/* ==========================================
   MOBİL LÜKS GÖRÜNÜM MASTER KODU V2 (BUNU EN ALTA YAPIŞTIR)
========================================== */
@media (max-width: 768px) {
    /* TELEFONDA YAZI-RESİM-BUTON ARASINI CUK OTURTAN RESPONSIVE SİGORTA */
    #sattiklarimiz .section-header {
        margin-bottom: 10px !important; /* Telefon için kırmızı çizgileri birleştirir */
    }
    .vitrin-resim-kutusu {
        margin-top: 0px !important;    /* Telefon için arabanın üst boşluğunu sıfırlar */
    }
    .vitrin-buton-kutusu {
        margin-top: 15px !important;   /* Telefon için yeşil çizgileri birleştirir */
    }
    /* Mobilde 2. ve 3. sabit arabayı tamamen yok eder */
    .mobil-gizle {
        display: none !important;
    }

    /* ==========================================
       MOBİLDE BOZULAN "SATTIKLARIMIZ" KISMINI TAMİR
    ========================================== */
    #sattiklarimiz {
        height: auto !important; /* Mobilde 100vh sıkıştırmasını iptal eder, nefes almasını sağlar */
        max-height: none !important;
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    
    #sattiklarimiz p, #sattiklarimiz h2 {
        transform: translate(0, 0) !important; /* JS'nin kafası karışıp yazıları sağa sola fırlatmasını KESİN engeller! */
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }

    /* ==========================================
       APPLE / iOS İÇİN ANİMASYON HIZLANDIRICI
    ========================================== */
    .scroll-sol, .scroll-sag, .scroll-alt {
        /* Bu 3 kod iPhone ekran kartını (GPU) zorla devreye sokar, animasyonun gizlenmesini engeller */
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        will-change: transform, opacity;
    }

    /* Şeridin boyunun 0'a çökmesini engellemeye devam ediyoruz */
    .film-seridi-wrapper {
        min-height: 280px !important;
        display: block !important;
    }

    /* ==========================================
       APPLE / iOS TİTREME (JITTER) KESİN ÇÖZÜM KİLİDİ
    ========================================== */
    @supports (-webkit-touch-callout: none) {
        /* Sadece Apple cihazlarında (iPhone/iPad) devreye girer */
        #hero {
            /* Ekran boyutunu Safari'nin adres çubuğuna göre esnemez şekilde kilitler */
            height: -webkit-fill-available !important; 
            min-height: -webkit-fill-available !important;
            background-attachment: scroll !important;
        }
        body, html {
            /* Apple'ın kendi kendine yaptığı lastik gibi sekmeyi durdurur */
            height: -webkit-fill-available;
            overscroll-behavior-y: none;
        }
    }
    
    /* ==========================================
       İLETİŞİM ÜSTÜNDEKİ KARA DELİĞİ SİLME
    ========================================== */
    #iletisim {
        margin-top: 0 !important;
        padding-top: 20px !important; /* Sadece hafif bir nefes payı bırakıyoruz */
    }
    #iletisim .section-container, .contact-wrapper {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* 1. DIŞ ÇERÇEVE */
    #hero {
        height: 100vh !important;
        padding-top: 14vh !important; /* Yazının tepeden boşluğu */
        padding-bottom: 85px !important; /* Butonların zeminden boşluğu (AYAR YERİN BURASI) */
        display: flex !important;
        flex-direction: column !important;
        background-attachment: scroll !important;
    }

    /* 2. İŞTE EKSİK OLAN ANAHTAR KOD: İçerideki gizli poşeti zorla aşağı kadar sündürür! */
    #hero .hero-content {
        display: flex !important;
        flex-direction: column !important;
        flex-grow: 1 !important; /* Kalan tüm boşluğu yutmasını sağlar */
    }

    /* 3. İTİCİ MOTOR: Sündürülmüş poşetin içinde butonları en alta basar */
    #hero p {
        margin-bottom: auto !important; 
    }

    /* 4. TAKOZ KIRICI: Butonların altındaki görünmez engelleri yok eder */
    #hero .hero-content > div, #hero a {
        margin-bottom: 0 !important;
    }

    /* GÖKYÜZÜNDE YAZILARIN OKUNMASI İÇİN SİNEMATİK GÖLGE */
    #hero h1, #hero h2, #hero p { 
        /* Artık sadece bu 3 yazıya gölge atacak, butonlara DOKUNMAYACAK */
        text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.9), 0px 1px 4px rgba(0, 0, 0, 0.9) !important;
    }

    /* 2. TEPE MENÜ VE LOGO DÜZENİ */
    /* Dikey padding'i biraz azaltıp tepeyi sıkıştırdım */
    .nav-container {
        display: flex !important;
        justify-content: space-between !important; /* Menüyü en sola, logoyu en sağa yaslar! */
        align-items: center;
        width: 100%;
        padding: 10px 15px !important; /* Yatay 15px de iyi, köşeye dolgun yerleşir */
        background: transparent !important;
    }

    /* Sadece büyük 3 çizgi (Yazı iptal, Rengi Gold) */
    .mobil-menu-btn {
        order: -1; /* Kesinlikle en solda dursun */
        padding: 5px;
        gap: 0 !important;
    }
    .hamburger-ikon {
        font-size: 35px !important; /* Çizgiler devasa oldu */
        color: #c5a880 !important; /* Gold lüks hissi veriyor */
        margin: 0 !important;
    }
    .menu-yazi {
        display: none !important; /* "MENU" yazısı uçuruldu */
    }

    /* Logo Alt Alta, Sağ Köşede, PC'deki Gümüş Renk ve Daha Büyük/Dolgun */
    .logo {
        display: flex !important;
        flex-direction: column !important; /* Kelimeleri alt alta dizer */
        align-items: flex-end !important; /* Tamamen sağ köşeye dayar */
        margin: 0 !important;
        padding: 0 !important;
        text-align: right !important;
        color: #EBEBEB !important; /* Gümüş/PC rengi. Bura Gold'du, Gümüş yaptım! */
        font-size: 22px !important; /* ÖZAYCAN yazısının boyutu. 16px'ti, 22px yaptım! */
        font-weight: 800 !important; /* Daha dolgun/kalın. bold'du, 800 yaptım! */
        line-height: 1.1 !important; /* İki kelimenin arasındaki boşluk */
        transform: none !important; /* Eski ayarları siler */
        position: relative !important;
    }
    /* MOTORS span'ı */
    .logo span {
        font-size: 14px !important; /* MOTORS yazısı daha büyük. 10px'ti, 14px yaptım! */
        font-weight: 400 !important; /* Biraz daha kalın. 300'dü, 400 yaptım! */
        letter-spacing: 2.5px !important; /* Daha büyük olduğu için araları sıkıştıralım. 3px'ti, 2.5px yaptım! */
        margin: 0 !important;
        color: #c5a880 !important; /* Gümüş/PC rengi. */
    }
    .logo img {
        display: none !important; /* Eski kaba resmi tamamen gizledik */
    }
    
    /* 3. AÇILIR YAN PANEL DÜZENİ */
    nav { 
        position: fixed !important;
        top: 0;
        left: -100%; 
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding-left: 30px;
        transition: 0.4s ease-in-out;
        z-index: 10000;
    }
    nav.panel-acik {
        left: 0 !important; 
    }
    nav a {
        margin: 15px 0 !important;
        font-size: 18px !important;
        text-decoration: none;
        color: #fff !important;
    }

    /* 4. SEÇKİN ARAÇLAR DAĞILMA VE KARIŞMA ÇÖZÜMÜ */
    /* Araçların mobilde nefes almasını ve ekranı kaplamasını sağlar */
    .seckin-araclar-section { /* Varsa senin kodundaki class ismiyle değiştir */
        padding: 40px 15px !important;
    }
    .grid-konteyner { /* Kartları tutan yapı */
        display: flex !important;
        flex-direction: column !important; /* Mobilde alt alta dizer */
        gap: 30px !important; /* Arabaların arasını iyice açar */
    }
    
    /* ... senin diğer mobil kodların (seçkin araçlar, yan menü vs.) ... */
        
    /* İŞTE BURAYA YAPIŞTIRIYORSUN: BÖLÜMLER ARASI DEVASA BOŞLUKLARI TIRAŞLAMA */
    section:not(#hero) {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .section-container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
   /* ==========================================
       PORTFÖY VE FİLM ŞERİDİ ARABALARINI JİLET GİBİ KESME
    ========================================== */
    .vehicle-card {
        width: 300px !important; /* Mobildeki ideal ve şık genişlik */
        flex-shrink: 0 !important; /* Kaydırma yaparken arabaların ezilmesini KESİN engeller */
        margin: 0 auto !important; /* Tam merkeze hizalar */
        border-bottom: 1px solid #333; /* Altındaki o şık lüks çizgiyi koruduk */
        padding-bottom: 15px !important;
    }

    /* Bütün arabaları ve yükleme iskeletlerini aynı VIP kalıba sokar */
    .vehicle-card img, .skeleton-img, section img:not(.logo img) {
        width: 100% !important; /* Kartın dışına taşmasını kesinlikle yasaklar */
        height: 220px !important; /* Range Rover dahil hepsini standart lüks yüksekliğe kilitler */
        object-fit: cover !important; /* Resmi ezmeden, bükmeden mükemmel açıyla keser */
        border-radius: 8px !important; /* Köşelere VIP yuvarlaklık */
        box-shadow: 0 8px 20px rgba(0,0,0,0.5) !important; /* Arabanın arkasına 3 boyutlu sinematik gölge atar */
        display: block !important;
    }
} /* <-- BU, @MEDIA KODUNU KAPATAN VE DOSYANIN EN ALTINDAKİ SON PARANTEZ */

/* ==========================================
   SONSUZ KAYAN FİLM ŞERİDİ MOTORU
========================================== */
/* Dıştaki Ana Kutu (Scroll barı gizleyip el ile kaydırmayı açar) */
    .film-seridi-wrapper {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
}
    .film-seridi-wrapper::-webkit-scrollbar {
        display: none; 
    }
    .film-seridi-wrapper:active {
        cursor: grabbing; 
    }
    
.film-seridi-track {
        display: flex !important;
        gap: 30px;
        width: max-content;
        margin-bottom: 0 !important; /* Alt kısımdaki gereksiz boşluğu kilitler */
    }

/* Kartların ezilmemesi için sabit boyut veriyoruz */
.vehicle-card {
    width: 380px !important; /* PC'deki ideal lüks kart genişliği */
    flex-shrink: 0 !important; /* Tarayıcıya "ekran darsa bile bu kartları asla küçültme!" emri verir */
    /* Senin eski kenarlık, gölge vs. lüks tasarımların aynı şekilde kalsın */
}

/* Mobilde kartları biraz daha daraltıp ekrana tam sığdıralım */
@media (max-width: 768px) {
    .vehicle-card {
        width: 300px !important;
    }
}
/* ==========================================
       SATILAN ARAÇLAR BÖLÜMÜNÜ EKRANA KİLİTLEME (DİYET KODU)
    ========================================== */
    
    /* 1. Dış Çerçeveyi tam 1 ekran boyuna kilitler, uzamasını yasaklar */
    #sattiklarimiz {
        height: 100vh !important;
        max-height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; /* İçindeki yazıyı ve arabaları ekranın dikeyde tam ortasına dengeler */
        overflow: hidden !important; /* Eğer içindeki resimler taşmaya çalışırsa, onları acımasızca kesip gizler */
        padding-top: 5vh !important;
        padding-bottom: 5vh !important;
    }

    /* 2. Arabaların kaydığı şeridin boyunu kısaltıp ekrana sığdırır */
    .film-seridi-wrapper {
        height: 50vh !important; /* Arabalar artık ekranın en fazla %50'sini kaplayabilir */
        max-height: 50vh !important;
        min-height: auto !important; /* Eski Safari çökmese diye verdiğimiz devasa yükseklikleri sıfırlar */
        margin-top: 3vh !important; /* Yazı ile arabalar arasına ideal lüks boşluğu atar */
    }

    /* 3. Şeridin içindeki fotoğrafların ezilmeden/sünmeden o 50vh'nin içine sığmasını sağlar */
    .film-seridi-wrapper img, .referans-kart {
        max-height: 100% !important;
        object-fit: cover !important;
    }
    /* ==========================================
   YENİ GARAJ SAYFASI (REFERANSLAR) STİLLERİ
========================================== */
.geri-don-link {
    position: absolute;
    top: 40px;
    left: 40px;
    color: #c5a880; /* Özaycan Gold rengi */
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
    transition: transform 0.3s ease, color 0.3s ease;
}
.geri-don-link:hover {
    transform: translateX(-5px);
    color: #fff;
}
.garaj-alani {
    padding: 40px 20px 80px 20px;
    min-height: 100vh;
}
.garaj-alt-yazi {
    color: #777;
    font-size: 15px;
    max-width: 600px;
    margin: 15px auto 50px auto;
}
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* Ekran boyutuna göre 2'li veya 3'lü otomatik dizilir */
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobil için geri okunu biraz daha yukarı sıkıştıralım */
@media (max-width: 768px) {
    .geri-don-link {
        top: 25px;
        left: 20px;
    }
    .garaj-alani {
        padding-top: 80px;
    }
}
/* ==========================================
       GARAJ KARTLARI (YIL - KM) ALTIN RENGİ AYARI
    ========================================== */
    .car-card .card-info p {
        color: #d4af37 !important; /* Özaycan Gold Rengi */
        font-size: 14px !important; /* Gözü yormayan şık bir boyut */
        font-weight: 500 !important; /* Yazıyı bir tık toklaştırır */
        margin-top: 6px !important; /* Üstteki araba ismiyle arasına milimetrik nefes payı */
    }
    