/* ================================
   GLOBAL BASE
================================ */

html, body {
    max-width: 100%;
    overflow-x: hidden;

    font-family:
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      Roboto,
      "Helvetica Neue",
      Arial,
      "Noto Sans",
      sans-serif;

    font-size: 16px;
    color: #111;

    margin: 0;
    padding: 0;
}

/* Header fixed olduğu için body offset */
body {
    padding-top: var(--header-height);
}

/* ================================
   ROOT VARIABLES (TEK KONTROL)
================================ */

:root {
    --header-height: 66px;
    --brand-gold: #f5b400;
}

@media (max-width: 900px) {
    :root {
        --header-height: 60px;
    }
}

/* ================================
   PREMIUM HEADER
================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    height: var(--header-height);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: visible;
}

.site-header::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: min(96%, 1280px);
    height: 12px;
    background: linear-gradient(90deg, rgba(15,23,42,.10), rgba(15,23,42,.03), rgba(15,23,42,.10));
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
    border-radius: 0 0 12px 12px;
    pointer-events: none;
}

.header-inner {
    max-width: 1280px;
    margin: auto;
    height: 100%;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo a {
    text-decoration: none;
    display: flex;
    gap: 6px;
    font-size: 22px;
    letter-spacing: 1px;
}

.logo-main {
    font-weight: 700;
    color: #000;
}

.logo-sub {
    font-weight: 300;
    color: #555;
}

/* NAV */
.main-nav {
    display: flex;
    gap: 40px;
}

.main-nav a {
    position: relative;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 15px;
    padding-bottom: 4px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--brand-gold);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-premium {
    padding: 10px 22px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* Header icin sabit boyut standardi */
.site-header .main-nav a {
    height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 2px;
    line-height: 1;
}

.site-header .btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.mobile-menu-footer .btn-premium.full-width {
    width: 100%;
    min-height: 42px;
    height: 42px;
    padding: 0 14px;
}

/* ================================
   HERO (ADMIN PANEL DOSTU)
================================ */

.hero {
    position: relative;
    min-height: 80vh;
    padding-top: 0;
    color: #fff;

    overflow: visible; /* ✅ OVERLAP SERBEST */
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-text h2 {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* BUTTONS */
.btn {
    padding: 14px 26px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}

.btn-primary {
    background: var(--brand-gold);
    color: #000;
}

.btn-outline {
    border: 2px solid var(--brand-gold);
    color: var(--brand-gold);
}

/* Hero CTA buttons - scoped premium tuning */
.hero .hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    text-shadow: none !important;
    -webkit-text-stroke: 0 transparent !important;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

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

.hero .hero-buttons .btn-primary {
    background: linear-gradient(180deg, #ffd54f 0%, #f5b400 100%);
    color: #111827;
    border: 1px solid rgba(245, 180, 0, 0.92);
    box-shadow: 0 8px 18px rgba(245, 180, 0, 0.30);
}

.hero .hero-buttons .btn-outline {
    background: rgba(15, 23, 42, 0.70);
    color: #ffd76b;
    border: 1px solid rgba(245, 180, 0, 0.94);
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.34), inset 0 0 0 1px rgba(255, 223, 133, 0.08);
}

/* ================================
   HERO PREMIUM OVERLAY
================================ */

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.55) 0%,
            rgba(0,0,0,0.45) 40%,
            rgba(0,0,0,0.35) 100%
        );
    z-index: -1;
}

/* ===============================
   INFO BAR – KUTULU YAPI
================================ */

.info-bar {
    padding: 32px 16px;
    position: relative;
    z-index: 5;

    margin-top: -60px; /* 🔥 HERO ÜZERİNE BİNME */
}

.info-bar-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.info-box {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 14px;

    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    text-align: center;

    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.15);
}

@keyframes infoFlash {
    0%, 52%, 100% {
        left: -160%;
        opacity: 0;
    }
    58% {
        opacity: 1;
    }
    74% {
        opacity: 0.85;
    }
    92% {
        left: 165%;
        opacity: 0;
    }
}

/* INFO BAR MOBILE TUNE */
@media (max-width: 768px) {
    .info-bar {
        margin-top: -65px;
    }
}





/* ================================
   MOBILE MENU (FINAL & SAFE)
================================ */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3100;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: #000;
}

/* OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    z-index: 3000;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* 🔑 MENÜ AÇIKKEN HAMBURGER GİZLE */
body.menu-open .menu-toggle {
    display: none;
}

/* 🔑 KAPATMA BUTONU HER ZAMAN ÜSTTE */
.mobile-menu-panel .menu-close {
    position: relative;
    z-index: 5;
}




/* PANEL */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    background: #fff;
    padding: 22px 20px 30px;
    border-radius: 0 0 22px 22px;

    transform: translateY(-110%);
    transition: transform 0.35s ease;
    box-shadow: 0 25px 45px rgba(0,0,0,0.18);
}

.mobile-menu-overlay.active .mobile-menu-panel {
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.menu-close {
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-footer {
    margin-top: 12px;
    padding-top: 12px;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    margin-top: 22px;
    margin-bottom: 28px; /* 👈 KRİTİK SATIR – KORUNDU */
}

.mobile-menu-nav a {
    padding: 16px 10px;
    font-size: 17px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

@media (max-height: 650px) {
    .mobile-menu-nav a {
        padding: 12px 10px;
        font-size: 16px;
    }

    .mobile-menu-footer {
        margin-top: 8px;
    }
}

/* =====================================
   MOBILE MENU – FINAL FIX
===================================== */

/* Menü açıkken header etkileşimini kapat */
body.menu-open .site-header {
    pointer-events: none;
}

/* Ama panel içi butonlar tıklanabilir olsun */
body.menu-open .mobile-menu-panel {
    pointer-events: auto;
}

/* Mobile menu overlay her şeyin üstünde */
.mobile-menu-overlay {
    z-index: 9998;
}

/* Panel header’dan daha üstte */
.mobile-menu-panel {
    z-index: 9999;
}

/* Kapatma butonu mutlak konumda */
.mobile-menu-header {
    position: relative;
}

.menu-close {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10000;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

    .hero {
        min-height: clamp(420px, 68vh, 560px);
    }

    .hero-container {
        flex-direction: column;
        text-align: left;
        min-height: inherit;
        align-items: stretch;
        justify-content: flex-end;
        padding-bottom: 120px;
    }

    .hero-text {
        width: min(92%, 460px);
        margin: 0 auto 0 0;
    }

    .hero-text h1 {
        font-size: clamp(24px, 6.8vw, 30px);
        line-height: 1.16;
        letter-spacing: -0.22px;
        margin-bottom: 10px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.42);
    }

    .hero-text h2 {
        font-size: clamp(14px, 4.2vw, 17px);
        margin-bottom: 16px;
        color: rgba(255,255,255,0.96);
        text-shadow: 0 1px 8px rgba(0,0,0,0.35);
    }

    .hero-buttons {
        justify-content: flex-start;
        gap: 10px;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        min-height: 36px;
        padding: 9px 14px;
        border-radius: 9px;
        font-size: 12.5px;
        font-weight: 700;
    }

    /* Mobilde header CTA gizle */
    .header-actions {
        display: none;
    }

    .info-bar {
        margin-top: -84px;
        padding: 0 18px 24px;
    }

    .info-bar-container {
        max-width: 520px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .info-box {
        position: relative;
        overflow: hidden;
        background: linear-gradient(132deg, rgba(255,255,255,0.92) 0%, rgba(236,244,255,0.86) 52%, rgba(224,236,248,0.80) 100%);
        border: 1px solid rgba(216,228,244,0.78);
        box-shadow: 0 12px 28px rgba(9,16,30,0.24), inset 0 1px 0 rgba(255,255,255,0.66);
        color: #0f172a;
        font-weight: 700;
        letter-spacing: 0.15px;
        border-radius: 12px;
        padding: 14px 16px;
        font-size: 14px;
    }

    .info-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: -130%;
        width: 88%;
        height: 100%;
        background: linear-gradient(102deg, rgba(255,255,255,0) 4%, rgba(160,199,255,0.20) 34%, rgba(255,255,255,0.92) 52%, rgba(132,167,232,0.24) 68%, rgba(255,255,255,0) 96%);
        transform: skewX(-14deg);
        animation: infoFlash 4.8s cubic-bezier(.18,.6,.22,1) infinite;
        filter: blur(0.2px);
        pointer-events: none;
    }

    .info-box::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(120% 95% at 8% 0%, rgba(176,206,255,0.20) 0%, rgba(176,206,255,0) 56%);
        pointer-events: none;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        box-sizing: border-box;
    }
}

@media (max-width: 500px) {

    .info-bar {
        margin-top: -72px;
        padding: 0 16px 20px;
    }

    .hero {
        min-height: 390px;
    }

    .hero-container {
        padding-bottom: 108px;
    }

    .hero-text {
        width: min(94%, 420px);
    }

    .hero-text h1 {
        font-size: 24px;
        margin-bottom: 8px;
        text-shadow:
            -1px -1px 0 rgba(7, 19, 38, 0.74),
             1px -1px 0 rgba(7, 19, 38, 0.74),
            -1px  1px 0 rgba(7, 19, 38, 0.74),
             1px  1px 0 rgba(7, 19, 38, 0.74),
             0 3px 12px rgba(0,0,0,0.3);
    }

    .hero-text h2 {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .info-box {
        padding: 13px 14px;
        font-size: 13.5px;
        border-radius: 11px;
    }

    .hero-buttons .btn {
        min-height: 34px;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 12px;
    }

    .cars-grid {
        grid-template-columns: 1fr;
    }
}



/* ================================
   CARS SECTION
================================ */

.cars-section {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 20px;

    overflow-x: hidden;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
}

/* GRID */
.cars-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* CARD */
.car-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;

    width: 100%;
    box-sizing: border-box;
}

.car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.car-image {
    position: relative;
    height: 200px;
    background: #f5f5f5;
}

.car-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* BADGE */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
}

.badge.available {
    background: #e6f7ed;
    color: #1e7f4f;
}

.badge.service {
    background: #fdecea;
    color: #a61d24;
}

.badge.reserved {
    background: #e74c3c;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.35);
}

/* BODY */
.car-body {
    padding: 16px;
}

.car-body h3 {
    margin-bottom: 6px;
    font-size: 18px;
}

.car-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 14px;
}

/* FOOTER */
.car-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-weight: 700;
}

/* BUTTONS */
.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
}

.cars-section .car-footer .btn-primary {
    background: #111827;
    color: #fff;
    border: 1px solid #111827;
}

.cars-section .car-footer .btn-primary:hover {
    background: #020617;
    border-color: #020617;
}

.btn-disabled {
    background: #ddd;
    color: #777;
    border-radius: 6px;
}

/* =========================
   ANA SAYFA - TÜM ARAÇLAR BUTONU
========================= */

.view-all-cars {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 34px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;

    color: #1f2937;
    background: #ffffff;

    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 999px;

    text-decoration: none;

    transition:
        all 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.view-all-btn:hover {
    background: #1f2937;
    color: #ffffff;
    border-color: #1f2937;

    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.view-all-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .cars-grid {
        grid-template-columns: 1fr;
    }
}




/* =================================================
   CARS FILTERS – FULL & STABLE
================================================= */

/* FILTRE KAPSAYICI */
.cars-filters {
    margin: 24px 0 32px;
    padding: 28px 32px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

/* GRID YAPI */
.filters-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
}

/* KOLON */
.filter-column {
    padding: 0 18px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.filter-column:last-child {
    border-right: none;
}

/* GRUP BAŞLIĞI */
.filter-title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    position: relative;
}

.filter-title::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: #f2b705; /* sarı kurumsal çizgi */
    margin-top: 6px;
    border-radius: 2px;
}

/* TAG LİSTESİ */
.filter-tags {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* TEK TAG */
.feature-tag {
    appearance: none;
    border: none;
    background: transparent;
    font-size: 12.5px;
    line-height: 1.2;
    color: #444;
    padding: 4px 6px 4px 12px;
    cursor: pointer;
    text-align: left;
    position: relative;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

/* SOL İŞARET */
.feature-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 60%;
    background: transparent;
    transform: translateY(-50%);
    border-radius: 2px;
}

/* AKTİF */
.feature-tag.active {
    background: #f6f7f8;
    color: #000;
    font-weight: 500;
}
.feature-tag.active::before {
    background: #f2b705;
}

/* =================================================
   CARS GRID – GÖRÜNÜRLÜK KONTROLÜ
================================================= */

/* 🔥 FİLTRE GERÇEKTEN GİZLESİN */
.car-card[hidden] {
    display: none !important;
}

/* =================================================
   MOBİL FİLTRE
================================================= */


.mobile-filter-toggle {
    position: relative;
    z-index: 9999;
    pointer-events: auto;
}

/* İçeride ne olursa olsun tıklama div’e gitsin */
.mobile-filter-toggle * {
    pointer-events: none;
}

/* TABLET */
@media (max-width: 1200px) {
    .filters-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .filter-column {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 18px 0;
    }
}

/* MOBİL */
@media (max-width: 768px) {

    .mobile-filter-toggle {
        display: block;
        margin: 0 0 20px;
        padding: 14px 18px;
        background: #f5f5f5;
        border-radius: 12px;
        font-weight: 700;
        cursor: pointer;
        text-align: center;
    }

    .cars-filters {
        display: none;
        padding: 18px 16px;
    }

    .cars-filters.active {
        display: block;
    }

    .filters-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .filter-column {
        padding: 0;
        border: none;
    }
}




/* ===============================
   MOBILE FILTER – PREMIUM UI
=============================== */

.mobile-filter-toggle-btn {
    display: none;
}

@media (max-width: 768px) {

    .mobile-filter-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 90%;
        margin: 0 0 18px;
        padding: 14px 16px;

        background: #ffffff;
        border-radius: 14px;
        border: 1px solid rgba(0,0,0,0.08);

        font-size: 14px;
        font-weight: 700;
        color: #111;

        cursor: pointer;
        user-select: none;

        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        transition: all 0.25s ease;
    }

    .mobile-filter-toggle-btn span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-filter-toggle-btn svg {
        width: 18px;
        height: 18px;
        fill: #f2b705; /* kurumsal sarı */
        transition: transform 0.25s ease;
    }

    /* Hover / Active hissi */
    .mobile-filter-toggle-btn:active {
        transform: scale(0.98);
    }

    /* Açık durum */
    #mobileFilterToggle:checked + .mobile-filter-toggle-btn {
        background: #f2b705;
        border-color: #f9fafb;
        box-shadow: 0 8px 22px rgba(242,183,5,0.25);
    }

    #mobileFilterToggle:checked + .mobile-filter-toggle-btn svg {
        transform: rotate(180deg);
    }

    /* Filtre paneli */
    .cars-filters {
        display: none;
        padding: 16px;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 14px 30px rgba(0,0,0,0.08);
        margin-bottom: 24px;
    }

    #mobileFilterToggle:checked + .mobile-filter-toggle-btn + .cars-filters {
        display: block;
        animation: filterSlide 0.25s ease;
    }

    @keyframes filterSlide {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}



/* =========================
   STRUCTURED MINIMAL FEATURES
========================= */

.car-features {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 14px;
    row-gap: 6px;
    margin: 10px 0 12px;
}

.car-feature-tag {
    position: relative;
    padding-left: 10px;

    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.25px;
    color: #555;

    line-height: 1.3;
    white-space: nowrap;
}

.car-feature-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cfcfcf;

    transform: translateY(-50%);
}

.car-feature-tag.active {
    color: #111;
    font-weight: 500;
}

.car-feature-tag.active::before {
    background: #111;
}

/* =========================
   ULTRA PREMIUM CAR TITLE
========================= */

.car-title {
    display: inline-block;

    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #111;

    padding: 6px 14px;
    margin: 10px 0 8px;

    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.04),
        rgba(0, 0, 0, 0.015)
    );

    border-left: 3px solid #111;
    line-height: 1.25;
}

/* =========================
   EXECUTIVE PRICE BLOCK
========================= */

.car-footer .price {
    display: flex;
    flex-direction: column;
    gap: 4px;

    padding: 10px 14px;
    margin-bottom: 14px;

    background: #fafafa;
    border-left: 2px solid rgba(184, 148, 31, 0.6);

    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.35px;
    color: #111;
}

.car-footer .price::before {
    content: "Günlük Kiralama Bedeli";
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #777;
}





/* =====================================
   INTRO STRIP – MODERN LIGHT BLOCK
===================================== */

.intro-strip {
    padding: 50px 10px;
    border-radius: 50px 50px 0 0;
    background: linear-gradient(
        180deg,
        #f1f5f9 0%,
        #e5e7eb 100%
    );
}

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

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

/* SOL ALAN */
.intro-left h2 {
    font-size: 34px;
    line-height: 1.25;
    color: #020617;
    margin-bottom: 18px;
}

.intro-left p {
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
    max-width: 540px;
    margin-bottom: 32px;
}

.intro-cta {
    display: inline-block;
    padding: 13px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;

    background: #020617;
    color: #ffffff;
    text-decoration: none;
}

/* SAĞ ALAN – BLOCK LIST */
.intro-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* TEK AVANTAJ */
.intro-feature-card {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 18px 20px;
    background: #ffffff;
    border-radius: 14px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* İKON */
.intro-feature-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    background: #e5e7eb;
    color: #020617;
}

/* METİN */
.intro-feature-card .text {
    font-size: 15px;
    font-weight: 600;
    color: #020617;
}

/* İKON HARİTASI */
.icon-speed .icon::before { content: "⚡"; }
.icon-shield .icon::before { content: "🛡️"; }
.icon-clock .icon::before { content: "🕘"; }
.icon-map .icon::before { content: "📍"; }

/* LOGO (INTRO İÇİN) */
.intro-logo {
    margin-bottom: 14px;
}

.intro-logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

/* ================================
   INTRO RESPONSIVE
================================ */

@media (max-width: 900px) {
    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .intro-right {
        align-items: center;
    }

    .intro-feature-card {
        width: 100%;
        max-width: 420px;
    }
}






/* ===============================
   MOBILE HEADER VISIBILITY
=============================== */

@media (max-width: 900px) {

    /* Desktop menü gizle */
    .main-nav {
        display: none;
    }

    /* CTA mobilde gizli (menü içinde) */
    .header-actions {
        display: none;
    }

    /* Hamburger göster */
    .menu-toggle {
        display: flex;
    }

    .site-header .btn-premium {
        min-height: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* ===============================
   PAGE CONTENT SPACING
=============================== */

/* Hero olmayan sayfalarda kontrollü boşluk */
.page-content {
    padding-top: 40px;
}

/* ===============================
   INTRO RESPONSIVE (TEKRAR)
=============================== */

@media (max-width: 900px) {

    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .intro-left h2 {
        font-size: 28px;
    }
}

/* ===============================
   HEADER LOGO FINAL SIZE CONTROL
=============================== */

.site-header .logo img {
    max-height: 42px;   /* ← ideal desktop yüksekliği */
    width: auto;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .site-header .logo img {
        max-height: 36px;
    }
}



/* =====================================================
   FOOTER – CLEAN CORPORATE
   ICON LIST + ELITE HOVER
===================================================== */

.site-footer {
    background: #facc15;
    padding: 5px 0 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
}

/* ===============================
   FOOTER TOP
=============================== */

.footer-top {
    background: #ffffff;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 80px 80px 0 0;
    border: 0px solid #e5e7eb;
}

/* ===============================
   CONTAINER
=============================== */

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
}

/* ===============================
   KOLONLAR
=============================== */

.footer-col {
    padding: 40px 45px;
}

.footer-col:not(:last-child) {
    border-right: 1px solid #e5e7eb;
}

/* ===============================
   BAŞLIKLAR (İKONLU)
=============================== */

.footer-col h4 {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 22px;
}

/* Başlık ikonu */
.footer-col h4::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;
    border-radius: 6px;

    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

/* Başlık ikonları */
.footer-col:nth-child(1) h4::before { content: "≡"; }
.footer-col:nth-child(2) h4::before { content: "ℹ"; }
.footer-col:nth-child(3) h4::before { content: "★"; }

/* ===============================
   ALT ÖĞELER – İŞARETLİ LİSTE
=============================== */

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

.footer-col ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
}

/* Kibar işaret */
.footer-col ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2563eb;
    font-size: 18px;
    line-height: 1;
    transition: transform .25s ease, color .25s ease;
}

/* ===============================
   LINKLER
=============================== */

.footer-col ul li a {
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    display: inline-block;
    transition: color .25s ease, transform .25s ease;
}

/* ===============================
   ELİT HOVER EFEKTLERİ
=============================== */

.footer-col ul li:hover::before {
    color: #1d4ed8;
    transform: scale(1.3);
}

.footer-col ul li a:hover {
    color: #2563eb;
    transform: translateX(4px);
}

/* ===============================
   MARKA ALANI
=============================== */

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-brand img {
    max-width: 160px;
}

.footer-brand strong {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
}

/* ===============================
   FOOTER BOTTOM
=============================== */

.footer-bottom {
    background: #eef2ff;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0px;
    padding: 10px 10px;
    text-align: center;
    font-size: 13px;
    color: #020617;
}

/* ===============================
   TABLET
=============================== */

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .footer-brand {
        grid-column: span 2;
        align-items: center;
        text-align: center;
    }
}

/* ===============================
   MOBİL
=============================== */

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-col {
        padding: 28px 24px;
    }

    .footer-col:not(:last-child) {
        border-bottom: 1px solid #e5e7eb;
    }

    .footer-col h4 {
        font-size: 13px;
    }

    .footer-col h4::before {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .footer-brand img {
        max-width: 140px;
    }
}

.car-card.is-hidden {
    display: none !important;
}

/* Responsive hardening */
*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden;
}

.home-brands,
.cars-section,
.contact-modern,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}

.container,
.page-content,
.cars-section,
.about-container,
.contact-page {
    width: min(100%, 1280px);
    margin-left: auto;
    margin-right: auto;
}

.page-content {
    padding: 24px 16px 40px;
}

.page-body {
    overflow-wrap: anywhere;
}

@media (max-width: 900px) {
    .cars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    .car-footer {
        flex-wrap: wrap;
        gap: 8px;
    }

    .btn,
    .btn-sm,
    .btn-primary,
    .btn-disabled {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .cars-grid {
        grid-template-columns: 1fr !important;
    }

    .car-card,
    .car-image-wrapper,
    .car-image {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Mobile filter toggle - final elite override */
.mobile-filter-toggle-btn {
    display: none;
}

@media (max-width: 992px) {
    .mobile-filter-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 44px;
        margin: 0 0 14px;
        padding: 10px 14px;
        border-radius: 12px;
        border: 1px solid rgba(148, 163, 184, 0.35);
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        color: #0f172a;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
        cursor: pointer;
        user-select: none;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.2px;
    }

    .mobile-filter-toggle-btn .mft-left {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-filter-toggle-btn .mft-left::before {
        content: "☰";
        font-size: 14px;
        color: #334155;
    }

    .mobile-filter-toggle-btn .mft-right {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #475569;
        font-size: 12px;
        font-weight: 700;
    }

    .mobile-filter-toggle-btn .mft-right::after {
        content: "⌄";
        font-size: 13px;
        line-height: 1;
        transition: transform .2s ease;
    }

    #mobileFilterToggle:checked + .mobile-filter-toggle-btn {
        border-color: rgba(180,140,45,.58);
        box-shadow: 0 10px 22px rgba(180,140,45,.18);
        background: linear-gradient(180deg, #fffdf8 0%, #fff8e8 100%);
    }

    #mobileFilterToggle:checked + .mobile-filter-toggle-btn .mft-right {
        color: #7c5b16;
    }

    #mobileFilterToggle:checked + .mobile-filter-toggle-btn .mft-right::before {
        content: "Kapat";
    }

    #mobileFilterToggle:not(:checked) + .mobile-filter-toggle-btn .mft-right::before {
        content: "Aç";
    }

    #mobileFilterToggle:checked + .mobile-filter-toggle-btn .mft-right::after {
        transform: rotate(180deg);
    }

    .cars-filters {
        display: none;
    }

    #mobileFilterToggle:checked + .mobile-filter-toggle-btn + .cars-filters {
        display: block !important;
        animation: filterSlide .22s ease;
    }
}

/* Hero mobile fine-tune (hard override) */
@media (max-width: 900px) {
    .hero .hero-text h1 {
        font-size: clamp(30px, 8vw, 36px) !important;
        line-height: 1.12 !important;
    }

    .hero .hero-buttons .btn,
    .hero .hero-buttons .btn-primary,
    .hero .hero-buttons .btn-outline {
        min-height: 32px !important;
        height: 32px !important;
        padding: 0 12px !important;
        border-radius: 8px !important;
        font-size: 11.8px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        letter-spacing: 0 !important;
        text-shadow: none !important;
    }
}

@media (max-width: 500px) {
    .hero .hero-text h1 {
        font-size: 28px !important;
    }

    .hero .hero-buttons .btn,
    .hero .hero-buttons .btn-primary,
    .hero .hero-buttons .btn-outline {
        min-height: 30px !important;
        height: 30px !important;
        padding: 0 11px !important;
        font-size: 11.3px !important;
        border-radius: 7px !important;
        text-shadow: none !important;
    }
}



