/* ══════════════════════════════════════════════════════
   OTOGALERI — style.css  (v3)
══════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #FFD700;
    --gold-deep: #FFA500;
    --header-h: 70px;
    --radius: 14px;
    --shadow-gold: 0 20px 50px rgba(255,215,0,0.15);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #111;
    color: #fff;
    overflow-x: hidden;
    padding-top: var(--header-h); /* fixed header boşluğu */
}

/* ── Header ───────────────────────────────────────── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(12,12,12,0.97);
    backdrop-filter: blur(14px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,215,0,0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 3px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    list-style: none;
}

.nav-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
}

.nav-links a:hover { color: var(--gold); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────── */
/* body padding-top zaten header'ı açtığı için hero margin yok */
.hero {
    height: calc(100vh - var(--header-h));
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1535448580089-c7f9490c78b1?q=80&w=1921&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 2rem;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 0.9s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.4);
    color: var(--gold);
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.4rem;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    line-height: 1.18;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-highlight {
    background: linear-gradient(90deg, var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    color: #ccc;
    margin-bottom: 2rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-button {
    padding: 0.85rem 2.2rem;
    background: linear-gradient(45deg, var(--gold), var(--gold-deep));
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255,215,0,0.4);
}

.cta-outline {
    background: transparent;
    border: 2px solid rgba(255,215,0,0.55);
    color: var(--gold);
}

.cta-outline:hover {
    background: rgba(255,215,0,0.08);
    box-shadow: 0 8px 20px rgba(255,215,0,0.2);
}

/* Hero istatistikler — YATAY satır, wrap yok */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;        /* gap sıfır, içeriden padding ile boşluk */
    flex-wrap: nowrap;
}

.hero-stat {
    text-align: center;
    padding: 0 2rem;
}

.hero-stat-num {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-lbl {
    display: block;
    font-size: 0.72rem;
    color: #888;
    margin-top: 4px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hero-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,215,0,0.25);
    flex-shrink: 0;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll-hint span {
    display: block;
    width: 20px; height: 32px;
    border: 2px solid rgba(255,215,0,0.4);
    border-radius: 10px;
    position: relative;
    margin: 0 auto;
}

.hero-scroll-hint span::after {
    content: '';
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 7px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 1.6s ease-in-out infinite;
}

/* ── Section Titles ───────────────────────────────── */
.section-title {
    text-align: center !important;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
    width: 100%;
    display: block;
}

.section-subtitle {
    text-align: center !important;
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
    display: block;
}

/* ── Cars Section ─────────────────────────────────── */
.cars-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 5%;
}

/* ── Filter Bar ───────────────────────────────────── */
.filter-bar {
    display: grid;
    grid-template-columns: 1fr 2.2fr 1.4fr 0.9fr;
    gap: 1rem;
    background: rgba(20,20,20,0.95);
    border: 1px solid rgba(255,215,0,0.18);
    border-radius: var(--radius);
    padding: 1.4rem 1.8rem;
    margin-bottom: 1.4rem;
    backdrop-filter: blur(12px);
    align-items: end;
}

/* Arama kutusuna sahte label boşluğu — diğer kolonlarla hizalanır */
.filter-search-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.filter-search-wrap::before {
    content: 'Ara';
    font-size: 0.72rem;
    color: transparent;  /* görünmez ama yer tutar */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.filter-search-icon {
    position: absolute;
    left: 11px;
    bottom: 10px;
    font-size: 13px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
}

.filter-search {
    width: 100%;
    padding: 0.6rem 0.9rem 0.6rem 2rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,215,0,0.18);
    border-radius: 8px;
    color: #fff;
    font-size: 0.88rem;
    outline: none;
    transition: border 0.2s;
}

.filter-search::placeholder { color: #555; }
.filter-search:focus { border-color: var(--gold); }

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.filter-label {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.filter-pills {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(255,215,0,0.22);
    background: transparent;
    color: #aaa;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-pill:hover { border-color: var(--gold); color: var(--gold); }

.filter-pill.active {
    background: linear-gradient(45deg, var(--gold), var(--gold-deep));
    color: #1a1a1a;
    border-color: transparent;
    font-weight: 700;
}

.filter-range-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.filter-range {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    min-width: 80px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,215,0,0.2);
    outline: none;
    cursor: pointer;
}

.filter-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px; height: 15px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 2px solid #111;
}

.filter-range-val {
    font-size: 0.78rem;
    color: var(--gold);
    white-space: nowrap;
    min-width: 50px;
    text-align: right;
}

.filter-select {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,215,0,0.18);
    border-radius: 8px;
    color: #fff;
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    transition: border 0.2s;
}

.filter-select:focus { border-color: var(--gold); }
.filter-select option { background: #222; }

.filter-result-info {
    color: #666;
    font-size: 0.82rem;
    margin-bottom: 1.2rem;
    min-height: 1.1em;
}

/* ── Araç Kartları ────────────────────────────────── */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
}

.car-card {
    background: rgba(28,28,28,0.95);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,215,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(255,215,0,0.4);
}

.car-image {
    width: 100%; height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.car-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
    transition: opacity 0.3s;
}

.car-card:hover .car-image-overlay { opacity: 0.8; }

.car-badges {
    position: absolute;
    top: 10px; left: 10px;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.car-badge {
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
}

.car-badge-fuel {
    background: rgba(255,215,0,0.18);
    color: var(--gold);
    border-color: rgba(255,215,0,0.3);
}

.car-badge-year {
    background: rgba(0,0,0,0.5);
    color: #ddd;
}

.car-hover-cta {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(255,215,0,0.92);
    color: #1a1a1a;
    padding: 0.28rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s;
    z-index: 2;
}

.car-card:hover .car-hover-cta { opacity: 1; transform: translateY(0); }

.car-info { padding: 1.2rem; }

.car-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.car-specs-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.8rem;
}

.car-specs-mini span {
    font-size: 0.72rem;
    color: #aaa;
    background: rgba(255,255,255,0.05);
    padding: 0.18rem 0.55rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.07);
}

.car-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.9rem;
}

.manager-info {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255,215,0,0.05);
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.manager-avatar-sm {
    width: 30px; height: 30px;
    background: linear-gradient(45deg, var(--gold), var(--gold-deep));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #1a1a1a;
    flex-shrink: 0;
}

.manager-info p { font-size: 0.8rem; margin-bottom: 0.12rem; }
.manager-name  { font-weight: 600; color: var(--gold) !important; }
.manager-phone { color: #888 !important; }
.cars-empty    { text-align: center; padding: 5rem 2rem; color: #666; }

/* ── Modal ─────────────────────────────────────────── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 2rem 1rem;
    animation: fadeIn 0.25s ease;
}

.modal-content {
    background: linear-gradient(150deg, #2a2a2a, #1a1a1a);
    margin: 0 auto;
    border: 1px solid rgba(255,215,0,0.22);
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    position: relative;
    animation: slideInDown 0.3s ease;
}

.close {
    position: absolute;
    top: 1rem; right: 1.2rem;
    color: var(--gold);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
    line-height: 1;
    transition: transform 0.2s;
}

.close:hover { transform: rotate(90deg); color: #fff; }

.modal-loading { text-align: center; padding: 5rem; color: var(--gold); }

.modal-spinner {
    width: 38px; height: 38px;
    border: 3px solid rgba(255,215,0,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

.modal-body { padding: 2rem; }

.modal-gallery { margin-bottom: 1.6rem; }

.modal-gallery-main {
    width: 100%; height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    transition: background-image 0.3s;
}

.modal-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.modal-gallery-thumb {
    width: 74px; height: 50px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    opacity: 0.55;
    transition: border-color 0.2s, opacity 0.2s;
}

.modal-gallery-thumb.active,
.modal-gallery-thumb:hover { border-color: var(--gold); opacity: 1; }

.modal-car-title { font-size: 1.8rem; color: var(--gold); font-weight: 700; margin-bottom: 0.4rem; }

.modal-car-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
}

.modal-car-price span { font-size: 0.9rem; color: #aaa; margin-left: 8px; }

.modal-car-specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 0.75rem;
    margin: 1.4rem 0;
}

.spec-item {
    background: rgba(35,35,35,0.9);
    padding: 0.85rem 1rem;
    border-radius: 9px;
    border-left: 3px solid var(--gold);
}

.spec-label {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.spec-value { color: #ccc; font-size: 0.95rem; }

.modal-description { color: #bbb; line-height: 1.8; font-size: 0.97rem; margin: 1.4rem 0; }

.modal-features { margin: 1.4rem 0; }
.modal-features h3 { color: var(--gold); font-size: 1.15rem; margin-bottom: 0.7rem; }

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
}

.features-list li {
    padding: 0.55rem 0.85rem;
    background: rgba(35,35,35,0.8);
    border-radius: 6px;
    color: #bbb;
    font-size: 0.84rem;
}

.features-list li::before { content: '✓ '; color: var(--gold); font-weight: 700; }

.modal-manager-info {
    background: rgba(255,215,0,0.07);
    border: 1px solid rgba(255,215,0,0.18);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 1.1rem 1.4rem;
    margin: 1.4rem 0;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
}

.modal-manager-info .manager-avatar {
    width: 48px; height: 48px;
    background: linear-gradient(45deg, var(--gold), var(--gold-deep));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.modal-manager-info .manager-details h4 { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.2rem; }
.modal-manager-info .manager-details p  { color: #bbb; font-size: 0.85rem; }
.modal-manager-info .manager-details a  { color: var(--gold); text-decoration: none; font-weight: 600; }
.modal-manager-info .manager-details a:hover { text-decoration: underline; }

.modal-cta-group {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.6rem;
    flex-wrap: wrap;
}

.modal-cta-btn {
    flex: 1;
    min-width: 140px;
    padding: 0.85rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.modal-cta-btn-primary  { background: linear-gradient(45deg, var(--gold), var(--gold-deep)); color: #1a1a1a; }
.modal-cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,215,0,0.35); }
.modal-cta-btn-whatsapp { background: #25D366; color: #fff; }
.modal-cta-btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }
.modal-cta-btn-outline  { background: transparent; border: 2px solid rgba(255,215,0,0.4); color: var(--gold); }
.modal-cta-btn-outline:hover { background: rgba(255,215,0,0.07); }

/* ── Gallery ─────────────────────────────────────── */
.gallery-section {
    padding: 5rem 5%;
    background: rgba(10,10,10,0.6);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 1.8rem auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255,215,0,0.2);
}

.gallery-slides {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}

.gallery-slide {
    min-width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.gallery-slide::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.gallery-slide-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    white-space: nowrap;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,215,0,0.45);
    color: var(--gold);
    font-size: 1.8rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    backdrop-filter: blur(5px);
}

.gallery-btn:hover { background: rgba(255,215,0,0.2); }
.gallery-btn.prev { left: 12px; }
.gallery-btn.next { right: 12px; }

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.gallery-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,215,0,0.2);
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}

.gallery-dot.active { background: var(--gold); transform: scale(1.35); }

.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 90px; height: 58px;
    border-radius: 7px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: opacity 0.25s, border-color 0.25s;
}

.gallery-thumb:hover { opacity: 0.85; }
.gallery-thumb.active { border-color: var(--gold); opacity: 1; }

/* ── About ───────────────────────────────────────── */
.about-section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 0.9rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1.4rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bbb;
    font-size: 0.88rem;
}

.about-feature span { color: var(--gold); font-weight: 700; }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.stat-card {
    background: rgba(28,28,28,0.9);
    padding: 1.8rem;
    border-radius: 13px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.15);
    transition: transform 0.25s, border-color 0.25s;
}

.stat-card:hover { transform: scale(1.04); border-color: rgba(255,215,0,0.45); }
.stat-number { font-size: 2.2rem; font-weight: 700; color: var(--gold); margin-bottom: 0.3rem; }
.stat-label  { color: #888; font-size: 0.85rem; }

/* ── Contact ─────────────────────────────────────── */
.contact-section {
    padding: 5rem 5%;
    background: rgba(10,10,10,0.5);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.contact-info-icon {
    width: 38px; height: 38px;
    background: rgba(255,215,0,0.08);
    border: 1px solid rgba(255,215,0,0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-info-item a { color: #bbb; text-decoration: none; transition: color 0.2s; }
.contact-info-item a:hover { color: var(--gold); }

.contact-right {
    background: rgba(22,22,22,0.9);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: var(--radius);
    padding: 2rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.contact-form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.contact-form-group label {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 8px;
    color: #fff;
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.2s;
    font-family: inherit;
    width: 100%;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus { border-color: var(--gold); }

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder { color: #444; }

.contact-form-group select option { background: #222; }
.contact-form-group textarea { resize: vertical; min-height: 100px; }

.contact-submit-btn {
    width: 100%;
    padding: 0.95rem;
    background: linear-gradient(45deg, var(--gold), var(--gold-deep));
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-size: 0.97rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.contact-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,215,0,0.35); }
.contact-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.contact-form-msg {
    margin-top: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.88rem;
    text-align: center;
}

.contact-form-msg.success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.35); color: #4ade80; }
.contact-form-msg.error   { background: rgba(220,53,69,0.12);  border: 1px solid rgba(220,53,69,0.35);  color: #f87185; }

/* ── Location ────────────────────────────────────── */
.location-section { padding: 5rem 5%; }

.location-container { max-width: 1200px; margin: 0 auto; }

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    margin-top: 2rem;
    height: 420px;
}

.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ══════════════════════════════════════════════════
   FOOTER — sıfırdan
══════════════════════════════════════════════════ */

footer {
    background: #0c0c0c;
    border-top: 1px solid rgba(255,215,0,0.15);
    padding: 4rem 5% 0;
    margin-top: 0;
}

/* 4 kolonlu grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,215,0,0.08);
}

/* Her kolon flex column */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* — Kolon 1: Logo + Açıklama + Sosyal — */
.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.footer-desc {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,215,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255,215,0,0.08);
}

/* — Kolon başlıkları — */
.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255,215,0,0.12);
}

/* — Kolon 2: Hızlı Bağlantılar — */
.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
}

.footer-nav li a {
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}

.footer-nav li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-admin-link {
    color: #444 !important;
    font-size: 0.75rem !important;
    margin-top: 0.4rem;
}

/* — Kolon 3: İletişim — */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.footer-contact-item span:first-child {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-item a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

/* — Kolon 4: Çalışma Saatleri — */
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.4rem;
}

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
    color: #999;
}

.hours-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.hours-badge.open {
    background: rgba(34,197,94,0.1);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.3);
}

.hours-badge.closed {
    background: rgba(220,53,69,0.1);
    color: #f87185;
    border: 1px solid rgba(220,53,69,0.3);
}

.footer-badge-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-badge {
    font-size: 0.78rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* — Alt bar — */
.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    color: #555;
    font-size: 0.82rem;
    margin: 0;
}

.footer-bottom-sub {
    color: #444;
    font-size: 0.78rem;
}

/* — Footer Responsive — */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Scroll to Top & Floating CTA ────────────────── */
.scroll-top-btn {
    position: fixed;
    bottom: 5.5rem;
    right: 1.4rem;
    width: 42px; height: 42px;
    background: rgba(22,22,22,0.95);
    border: 1px solid rgba(255,215,0,0.35);
    color: var(--gold);
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s, transform 0.3s;
    backdrop-filter: blur(8px);
}

.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover   { background: rgba(255,215,0,0.12); }

.floating-cta {
    position: fixed;
    bottom: 1.4rem;
    right: 1.4rem;
    background: linear-gradient(45deg, var(--gold), var(--gold-deep));
    color: #1a1a1a;
    border-radius: 50px;
    padding: 0.65rem 1.3rem;
    display: none;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    z-index: 900;
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
    animation: floatPulse 2.5s ease-in-out infinite;
}

.floating-cta-icon { font-size: 1rem; }

/* ── Animations ─────────────────────────────────── */
@keyframes fadeInUp    { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn      { from { opacity:0; }                              to { opacity:1; } }
@keyframes slideInDown { from { opacity:0; transform:translateY(-30px); } to { opacity:1; transform:translateY(0); } }
@keyframes spin        { to   { transform:rotate(360deg); } }
@keyframes scrollBounce {
    0%,100% { transform:translateX(-50%) translateY(0); opacity:1; }
    60%     { transform:translateX(-50%) translateY(10px); opacity:0; }
}
@keyframes floatPulse {
    0%,100% { box-shadow: 0 6px 20px rgba(255,215,0,0.4); }
    50%     { box-shadow: 0 8px 28px rgba(255,215,0,0.6); }
}

.fade-in { opacity:0; transform:translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
    .filter-bar { grid-template-columns: 1fr 1.8fr; }
}

@media (max-width: 900px) {
    .about-content     { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .filter-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: rgba(10,10,10,0.99);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        border-top: 1px solid rgba(255,215,0,0.12);
        z-index: 999;
        box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    }

    .nav-links.open { display: flex; }
    .nav-links li   { width: 100%; text-align: center; }
    .nav-links a    { display: block; padding: 0.85rem 2rem; font-size: 1rem; }

    .hero-stats    { gap: 0; }
    .hero-stat     { padding: 0 1rem; }
    .hero-stat-num { font-size: 1.3rem; }

    .filter-bar { grid-template-columns: 1fr; }
    .filter-search-wrap::before { display: none; }

    .gallery-slide { height: 260px; }
    .gallery-thumbs { display: none; }

    .modal-gallery-main { height: 200px; }
    .modal-car-specs { grid-template-columns: 1fr 1fr; }
    .modal-cta-group { flex-direction: column; }
    .modal-cta-btn { min-width: auto; }

    .contact-form-grid { grid-template-columns: 1fr; }
    .floating-cta { display: inline-flex; }
}

@media (max-width: 480px) {
    .hero h1      { font-size: 1.8rem; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-stats   { flex-direction: column; gap: 0.8rem; }
    .hero-stat-div { display: none; }
    .section-title { font-size: 1.6rem; }
    .about-stats  { grid-template-columns: 1fr 1fr; }
    .modal-car-specs { grid-template-columns: 1fr; }
}