:root {
    /* Color Palette - Updated to Warm Gold/Amber & Charcoal */
    --gold-primary: #d4a373;
    --gold-glow: #e9c46a;
    --dark-charcoal: #1a1a1a;
    --deep-amber: #b5838d;
    --cream-light: #fffdfa;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --accent-glow: rgba(233, 196, 106, 0.4);
    --whatsapp-color: #25d366;
    --whatsapp-gold: #c29d0b;
    --emerald-footer: #064e3b;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.serif {
    font-family: 'Playfair Display', serif;
}

.italic {
    font-style: italic;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1500px;
}

.top-bar {
    background: var(--emerald-footer);
    color: var(--white);
    padding: 0.6rem 4rem;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute; /* Changed so it scrolls out of view naturally */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(212, 163, 115, 0.3);
}

.top-bar-info {
    display: flex;
    gap: 3rem;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.9;
}

.top-bar-info i {
    color: var(--gold-glow);
    font-size: 1.15rem;
}

.top-bar-social {
    display: flex;
    gap: 1.5rem;
}

.top-bar-social a {
    color: var(--gold-primary);
    opacity: 0.9;
    font-size: 1.15rem;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--gold-glow);
    opacity: 1;
    transform: scale(1.1);
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 41px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0; 
    transition: var(--transition);
    background: rgba(255, 253, 250, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    height: 90px; /* Header sabitlendi */
}

.main-header .nav-links a {
    color: var(--text-main);
}

.main-header .logo-text {
    color: var(--dark-charcoal);
}

/* Scrolled State */
.main-header.scrolled {
    top: 0;
    height: 80px;
}

/* Nav Actions (Hızlı Rezervasyon Butonu) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

/* Inner Header (cars.html) */
.inner-header .nav-container {
    flex-wrap: nowrap;
}

.inner-header .nav-container .logo {
    flex-shrink: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
}

.logo {
    position: relative;
    z-index: 1001;
}

.logo-img {
    height: 120px !important; /* Logoyu devasa yaptık */
    width: auto;
    transition: var(--transition);
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    transform: translateY(10px) scale(1.2); /* Alta doğru taşırıp büyüttük */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo .accent {
    color: var(--gold-glow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 400;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-glow);
    transition: var(--transition);
}

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

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    color: var(--dark-charcoal);
    border: none;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.btn-gold:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 30px var(--accent-glow);
}

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

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.2);
}

/* Fleet Tabs */
.fleet-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.fleet-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 163, 115, 0.2);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: var(--text-main);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
}

.fleet-tab:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 163, 115, 0.05);
    transform: translateY(-2px);
}

.fleet-tab.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    color: var(--dark-charcoal);
    border-color: transparent;
    box-shadow: 0 10px 20px var(--accent-glow);
}

/* Hero Section - Clean White + Colorful Widgets */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--cream-light);
}

/* Subtle Animated Orbs */
.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.orb-gold {
    background: radial-gradient(circle, #ffd700, #b8860b);
}

.orb-green {
    background: radial-gradient(circle, #00ff88, #064e3b);
}

.orb-1 { width: 350px; height: 350px; top: -5%; left: -5%; animation: orbMove1 16s ease-in-out infinite; }
.orb-2 { width: 280px; height: 280px; top: 15%; right: -3%; animation: orbMove2 20s ease-in-out infinite; }
.orb-3 { width: 400px; height: 400px; bottom: -8%; right: 20%; animation: orbMove1 18s ease-in-out infinite reverse; }

@keyframes orbMove1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 80px) scale(1.1); }
}
@keyframes orbMove2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, 40px) scale(1.1); }
}

/* Colorful Hero Dashboard */
.hero-dashboard {
    position: absolute;
    top: 130px;
    left: 4rem;
    background: linear-gradient(135deg, #064e3b 0%, #0d9488 100%);
    border: 2px solid #ffd700;
    border-radius: 24px;
    display: flex;
    padding: 1.2rem 2rem;
    gap: 2rem;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(6, 78, 59, 0.3);
    color: var(--white);
}

.dash-item i {
    font-size: 1.5rem;
    color: #ffd700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.dash-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.dash-text strong {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 800;
}

.dash-divider {
    width: 2px;
    background: rgba(255, 215, 0, 0.3);
}

/* Vibrant Floating Promo Card - REMOVED */
.floating-promo {
    display: none;
}

/* Ankara Map Silhouette Layer */
.hero-map-silhouette {
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%) rotate(-5deg);
    width: 800px;
    height: auto;
    opacity: 0.04;
    z-index: 5;
    pointer-events: none;
    color: var(--gold-primary);
}

/* Ankara Skyline Silhouette Layer (Right Side) */
.hero-skyline-silhouette {
    position: absolute;
    bottom: 0%;
    right: -5%;
    width: 900px;
    height: auto;
    opacity: 0.1;
    z-index: 4;
    pointer-events: none;
    color: var(--gold-primary);
}

/* Hero Content - Centered (Ultimate Impact) */
.hero-center {
    max-width: 1400px;
    margin: 0 auto;
    padding: 160px 20px 60px !important;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 18px !important;
    letter-spacing: 8px !important;
    color: var(--emerald-footer);
    font-weight: 800;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 100px !important; 
    line-height: 1.0 !important;
    margin-bottom: 30px !important;
    font-family: 'Playfair Display', serif !important;
    color: var(--dark-charcoal);
    font-weight: 900 !important;
    letter-spacing: -3px;
}

.hero h1 .italic {
    color: var(--emerald-footer);
    display: block;
    margin-top: 15px;
    font-style: italic !important;
}

.hero p {
    font-size: 24px !important;
    max-width: 950px;
    margin: 0 auto 50px !important;
    color: var(--text-muted);
    line-height: 1.5 !important;
    font-weight: 500;
}

/* Trust Mini Badges */
.hero-trust-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 78, 59, 0.08);
    border: 1px solid rgba(6, 78, 59, 0.15);
    padding: 15px 30px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-charcoal);
    transition: all 0.3s ease;
}

.hero-trust-item:hover {
    background: var(--emerald-footer);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(6, 78, 59, 0.25);
}

/* Reservation Bar Wrapper */
.hero-res-wrapper {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1;
    animation: scrollBounce 2s infinite;
    pointer-events: none;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Content Section Grid (Neden Biz + Kampanya) */
.content-section-grid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .content-section-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .campaign-rail--hide-mobile {
        display: none;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}



.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-glow);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    letter-spacing: 1px;
    color: var(--white);
}

/* Mobile Responsive: Why Us + Stats */
@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-image {
        order: -1;
    }

    .stats-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        justify-items: center;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Reservation Bar */
.reservation-bar {
    background: var(--white);
    border: 2px solid var(--gold-primary);
    padding: 1.5rem 2rem;
    border-radius: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 0 25px rgba(212, 163, 115, 0.2);
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.reservation-bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 35px rgba(212, 163, 115, 0.35);
}

.res-item {
    padding: 0.5rem 1.5rem;
    text-align: left;
    border-right: 2px solid rgba(6, 78, 59, 0.08); /* Thicker separator */
}

.res-item:last-of-type {
    border-right: none;
}

.res-item label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--emerald-footer);
    margin-bottom: 0.5rem;
    font-weight: 800; /* Extra bold */
}

.res-item select, 
.res-item input {
    background: transparent;
    border: none;
    color: var(--dark-charcoal);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: inherit;
    outline: none;
    cursor: pointer;
}

/* Make Date Inputs (Araç Ara bölümü) extremely prominent */
.res-item input[type="date"] {
    font-weight: 800;
    font-size: 1.3rem; /* Larger font */
    color: var(--emerald-footer);
    padding: 0.4rem 0;
    border-bottom: 2px solid var(--gold-primary);
    transition: all 0.3s ease;
}

.res-item input[type="date"]:hover,
.res-item input[type="date"]:focus {
    border-bottom-color: var(--emerald-footer);
    color: var(--dark-charcoal);
}

.res-item select option {
    background: var(--white);
    font-weight: 500;
}

.res-btn {
    background: linear-gradient(135deg, var(--emerald-footer), #0d7a5f);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(6, 78, 59, 0.3);
}

.res-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 30px rgba(6, 78, 59, 0.45);
}

/* Hero-Fleet Transition Area */
.hero-transition {
    background: linear-gradient(180deg, var(--cream-light) 0%, var(--white) 100%);
    position: relative;
    z-index: 10;
    margin-top: -20px;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(212, 163, 115, 0.1);
}

/* Marquee SEO Ticker */
.marquee-strip {
    background: var(--emerald-footer);
    padding: 1.2rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: inline-block;
    animation: marqueeMove 40s linear infinite;
}

.marquee-track span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 2rem;
}

@keyframes marqueeMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Quick Category Cards */
.quick-categories {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.qcat-card {
    background: var(--white);
    border: 1px solid rgba(212, 163, 115, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.qcat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-glow));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qcat-card:hover {
    background: var(--white);
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 163, 115, 0.15);
}

.qcat-card:hover::before {
    opacity: 1;
}

.qcat-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.1), rgba(233, 196, 106, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-primary);
    transition: all 0.4s ease;
}

.qcat-card:hover .qcat-icon {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    color: var(--dark-charcoal);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3);
}

.qcat-info {
    display: flex;
    flex-direction: column;
}

.qcat-info strong {
    color: var(--dark-charcoal);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.qcat-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.qcat-arrow {
    margin-left: auto;
    color: #cbd5e1;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.qcat-card:hover .qcat-arrow {
    color: var(--gold-primary);
    transform: translateX(5px);
}

/* Fleet Section */
.fleet-section {
    padding: 6rem 0 10rem;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.car-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid rgba(6, 78, 59, 0.1); /* Subtle Emerald Border */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.car-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 2px solid var(--emerald-footer); /* Full Emerald Border */
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 2;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.15); /* Emerald Glow */
}

.car-card:hover::before {
    opacity: 1;
}

.car-image {
    height: 300px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    transition: var(--transition);
}

.car-card:hover .car-image img {
    transform: scale(1.1);
}

.car-info {
    padding: 2.5rem;
}

.category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-weight: 600;
}

.car-info h3 {
    font-size: 1.8rem;
    margin: 0.5rem 0 1rem;
    font-family: 'Playfair Display', serif;
}

.specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.price {
    font-weight: 700;
    font-size: 1.5rem;
}

.price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.btn-outline {
    padding: 0.7rem 1.8rem;
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    text-decoration: none;
    color: var(--gold-primary);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--white);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

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

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

/* Features Section */
.features-section {
    padding: 10rem 0;
    background: var(--dark-charcoal);
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-primary);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-charcoal);
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-item p {
    opacity: 0.7;
    font-size: 1rem;
}

/* Middle Banner Section */
.middle-banner {
    position: relative;
    padding: 15rem 0;
    background: url('assets/hero_v2.png') center/cover fixed no-repeat;
    color: var(--white);
}

.middle-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-accordion .faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-question i {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--gold-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* Footer Redesign */
.main-footer {
    background: var(--emerald-footer);
    color: var(--white);
    padding: 8rem 0 3rem;
    position: relative;
    border-top: 4px solid var(--gold-primary);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: var(--gold-glow);
    box-shadow: 0 0 20px var(--gold-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.footer-brand .logo-text {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 2rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.8;
    max-width: 320px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-glow);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-links a::before {
    content: '→';
    color: var(--gold-primary);
    opacity: 0;
    transition: var(--transition);
    transform: translateX(-10px);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold-glow);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 1px;
}
/* Campaign Rails - Premium Cinematic Enhancements */
.campaign-rail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    height: 400px;
    perspective: 1000px; /* Enable 3D effects */
    animation: floatRail 8s ease-in-out infinite;
}

#campaignRight {
    animation-delay: -4s;
}

@keyframes floatRail {
    0%, 100% { transform: translateY(0) rotate(0.5deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

.campaign-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.5rem 1.5rem;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* Luxury Hide State */
    opacity: 0;
    visibility: hidden;
    transform: rotateY(15deg) scale(0.8) translateZ(-50px);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    
    box-shadow: 0 10px 30px rgba(0,0,0,0.1), inset 0 0 0 1px rgba(255,255,255,0.1);
    z-index: 1;
    overflow: hidden;
}

/* Glassmorphism inner glow */
.campaign-slide::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
    transition: 1.2s;
}

.campaign-slide.active {
    opacity: 1;
    visibility: visible;
    transform: rotateY(0) scale(1) translateZ(0);
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2), inset 0 0 40px rgba(255,255,255,0.05);
}

.campaign-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.3));
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.campaign-slide.active .campaign-icon {
    transform: scale(1.1) translateY(-5px);
}

.campaign-title {
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.9);
}

.campaign-desc {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.campaign-detail {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.5;
    max-width: 90%;
}


/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: 3px solid #fff;
}

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

.whatsapp-fab i {
    color: #fff;
    font-size: 32px;
}

/* Phone FAB */
.phone-fab {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: 3px solid #fff;
}

.phone-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px var(--accent-glow);
}

.phone-fab i {
    color: var(--dark-charcoal);
    font-size: 28px;
}


@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .whatsapp-fab {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-fab i {
        font-size: 24px;
    }
    .phone-fab {
        width: 55px;
        height: 55px;
        bottom: 90px;
        right: 20px;
    }
    .phone-fab i {
        font-size: 22px;
    }
}

/* Modal for Car Details */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 2rem;
}

.modal-content {
    background: var(--cream-light);
    margin: 2% auto;
    padding: 4rem;
    border-radius: 40px;
    max-width: 1100px;
    width: 95%;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    animation: slideUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.close-modal {
    position: absolute;
    right: 2.5rem;
    top: 2rem;
    font-size: 2.5rem;
    color: var(--dark-charcoal);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.5;
}

.close-modal:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.modal-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.modal-info h2 {
    font-size: 3rem;
    margin: 1rem 0 2rem;
}

.modal-specs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    text-align: center;
}

.spec-item i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.modal-features {
    margin-bottom: 3rem;
}

.modal-features h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.modal-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.modal-features li {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.modal-features i {
    color: #2ecc71;
    margin-right: 0.8rem;
}

.modal-footer-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.modal-price {
    font-size: 2.2rem;
    font-weight: 700;
}

.modal-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    .modal-content {
        padding: 2rem;
        margin: 5% auto;
    }
}

/* Tablet / Intermediate Responsiveness */
@media (max-width: 1100px) {
    .reservation-bar {
        border-radius: 20px;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.95);
        color: var(--dark-charcoal);
        flex-wrap: wrap;
    }
    
    .res-item {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding: 1rem;
        text-align: center;
    }

    .res-item label {
        color: var(--gold-primary);
    }

    .res-item select, .res-item input {
        color: var(--dark-charcoal);
        text-align: center;
        width: 100%;
    }

    .res-btn {
        margin-top: 1rem;
        width: 100%;
    }
}

/* Global Mobile Responsiveness */
@media (max-width: 1100px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Top Bar & Header Mobile */
    .top-bar {
        display: none !important;
    }
    .main-header {
        top: 0 !important;
        padding: 0;
    }
    .nav-container {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1rem 1.5rem;
        justify-content: space-between;
        align-items: center;
        background: var(--white);
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    .logo-text {
        font-size: 1.6rem;
    }
    .mobile-menu-btn {
        display: block !important;
        padding: 0.5rem;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0;
        padding: 1rem 0;
        border-top: 1px solid #eee;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid #f5f5f5;
    }
    .header-cta {
        display: none;
        width: 100%;
        text-align: center;
        padding: 1.5rem 0 1rem;
    }
    
    /* Active State for Mobile Menu */
    .nav-container.menu-open .nav-links,
    .nav-container.menu-open .header-cta {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    /* Hero & General Mobile Adjustments */
    .hero-content h1, .hero-content h2.serif {
        font-size: 2.5rem !important;
    }
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Reservation Bar Mobile */
    .reservation-bar {
        flex-direction: column;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
    }
    .res-item {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding: 1rem;
        text-align: center;
    }
    .res-item select, .res-item input {
        color: var(--dark-charcoal);
        text-align: center;
        width: 100%;
    }
    .res-btn {
        justify-content: center;
        margin-top: 0.5rem;
    }

    /* Section Paddings */
    .fleet-section, .features-section, .content-section, .vip-homepage-section, .vip-detail-section {
        padding: 5rem 0 !important;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }

    /* Grids Mobile */
    .fleet-grid, .features-grid, .footer-grid, .vip-layout, .content-grid, .middle-banner > .container > div {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center;
    }
    
    .middle-banner .banner-text-content .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    .middle-banner ul li {
        text-align: left;
    }
    
    .benefit-list li {
        justify-content: center;
        text-align: left;
        font-size: 1rem !important;
    }
    
    .car-image {
        height: 200px;
    }
    .specs {
        flex-wrap: wrap;
        justify-content: center;
    }
    .price-box {
        flex-direction: column;
        gap: 1rem;
    }

    /* VIP Mobile Overrides */
    .vip-features-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .vip-homepage-section h2 {
        font-size: 2.3rem !important;
    }
    .vip-badge {
        position: static !important;
        margin-top: 1rem;
    }

    /* Footer Mobile */
    .footer-brand p {
        margin: 0 auto;
    }
    .footer-links h4::after, .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links a {
        justify-content: center;
    }
    .footer-contact p {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
}

/* ======================
   CAMPAIGN RAILS (Side Ads)
   ====================== */
.campaign-rail {
    position: sticky;
    top: 120px;
}

.campaign-slide {
    display: none;
    border-radius: 20px;
    padding: 4.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: campaignFade 0.6s ease;
    min-height: 560px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.campaign-slide.active {
    display: flex;
}

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

.campaign-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.campaign-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.campaign-desc {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.campaign-detail {
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Hide campaign rails on smaller screens */
@media (max-width: 1200px) {
    .campaign-rail {
        display: none !important;
    }
}

/* ======================
   AI CHATBOT WIDGET
   ====================== */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9998;
}

.chatbot-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--emerald-footer), #0d7a5f);
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chatbot-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(6, 78, 59, 0.6);
}

.chatbot-window {
    display: none;
    position: absolute;
    bottom: 75px;
    left: 0;
    width: 380px;
    max-height: 520px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
    flex-direction: column;
    animation: chatSlideUp 0.35s ease;
}

.chatbot-window.open {
    display: flex;
}

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

.chatbot-header {
    background: linear-gradient(135deg, var(--emerald-footer), #0d7a5f);
    color: var(--white);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chatbot-avatar {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.chatbot-header strong {
    display: block;
    font-size: 0.95rem;
}

.chatbot-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-height: 350px;
    background: #f9fafb;
}

.chat-msg {
    max-width: 85%;
    padding: 0.7rem 1rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: msgFade 0.3s ease;
}

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

.chat-msg.bot {
    background: var(--white);
    color: var(--dark-charcoal);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.chat-msg.user {
    background: linear-gradient(135deg, var(--emerald-footer), #0d7a5f);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chatbot-quick-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.5rem 0;
}

.chatbot-quick-btns button {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--dark-charcoal);
    font-family: inherit;
}

.chatbot-quick-btns button:hover {
    background: var(--emerald-footer);
    color: var(--white);
    border-color: var(--emerald-footer);
}

.chatbot-input-area {
    display: flex;
    padding: 0.8rem;
    border-top: 1px solid #e5e7eb;
    gap: 0.5rem;
    background: var(--white);
}

.chatbot-input-area input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.chatbot-input-area input:focus {
    border-color: var(--emerald-footer);
}

.chatbot-input-area button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--emerald-footer), #0d7a5f);
    color: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.chatbot-input-area button:hover {
    transform: scale(1.1);
}

/* Chatbot typing indicator */
.typing-dots span {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #9ca3af;
    border-radius: 50%;
    margin: 0 2px;
    animation: dotBounce 1.4s infinite ease-in-out both;
}
.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* Reservation Bar Button */
.reservation-bar button {
    background: var(--emerald-footer);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reservation-bar button:hover {
    background: #0d7a5f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(6, 78, 59, 0.3);
}

/* Cookie Consent Modal Styles (FİLO312 Style) */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker backdrop */
    display: none; /* CHANGED: Hidden by default to prevent flash */
    align-items: center;
    justify-content: center;
    z-index: 100000;
    backdrop-filter: blur(5px);
    transition: opacity 0.4s ease;
}

.cookie-overlay.show {
    display: flex;
    animation: fadeInModal 0.4s ease forwards;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-modal {
    background: var(--white);
    width: 95%;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(6, 78, 59, 0.1);
    font-family: 'Inter', sans-serif;
}

.cookie-header {
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid #f0f0f0;
    background: var(--cream-light);
}

.cookie-header .logo-box .logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--dark-charcoal);
}

.cookie-header .logo-box .gold {
    color: var(--gold-primary);
}

.cookie-tabs {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn.active {
    color: var(--emerald-footer);
    background: var(--white);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--emerald-footer);
}

.cookie-body {
    padding: 3rem;
    min-height: 250px;
}

.cookie-tab-content {
    display: none;
}

.cookie-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.cookie-tab-content h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
    font-family: 'Playfair Display', serif;
}

.cookie-tab-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.cookie-tab-content a {
    color: var(--emerald-footer);
    font-weight: 700;
    text-decoration: underline;
}

.cookie-footer {
    padding: 2.5rem 3rem;
    background: var(--cream-light);
    border-top: 1px solid #f0f0f0;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 1.5rem;
}

.cookie-btn {
    padding: 1.1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: 1px solid transparent;
}

.btn-decline {
    background: var(--white);
    color: var(--emerald-footer);
    border-color: var(--emerald-footer);
}

.btn-customize {
    background: rgba(6, 78, 59, 0.05);
    color: var(--emerald-footer);
    border-color: rgba(6, 78, 59, 0.1);
}

.btn-accept-all {
    background: var(--emerald-footer);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(6, 78, 59, 0.2);
}

.cookie-btn:hover {
    transform: translateY(-3px);
}

.btn-accept-all:hover {
    background: #0d7a5f;
    box-shadow: 0 15px 30px rgba(6, 78, 59, 0.3);
}

.btn-decline:hover {
    background: var(--emerald-footer);
    color: var(--white);
}

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

@media (max-width: 1440px) {
    .container-wide { max-width: 1200px; }
    .hero h1 { font-size: 75px !important; }
    .hero p { font-size: 20px !important; }
    .hero-badge { font-size: 14px !important; letter-spacing: 5px !important; }
    
    .cookie-modal { max-width: 750px; }
    .cookie-body { padding: 2rem; min-height: auto; }
    .cookie-tab-content h3 { font-size: 1.25rem; }
    .cookie-tab-content p { font-size: 0.95rem; }
    .cookie-footer { padding: 1.5rem 2rem; }
    .cookie-btn { padding: 0.9rem 1.2rem; font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1rem; width: 100%; }
    .nav-container { padding: 0 1rem; width: 100%; }
    
    .hero-map-silhouette, .hero-skyline-silhouette { display: none !important; } /* Taşmaya neden olan büyük siluetleri gizle */

    .logo-img { height: 32px !important; }

    .hero-center { padding: 100px 10px 30px !important; width: 100%; }
    .hero-badge { font-size: 10px !important; letter-spacing: 2px !important; gap: 5px; margin-bottom: 15px; }
    .hero-badge span:not(.hero-badge-line) { text-align: center; }
    .hero-badge-line { width: 20px; }

    .hero h1 { font-size: 28px !important; line-height: 1.1 !important; margin-bottom: 20px !important; }
    .hero p { font-size: 15px !important; line-height: 1.5 !important; }

    .reservation-bar {
        width: 100%;
        border-radius: 15px;
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    .res-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 0.5rem 0; width: 100%; }
    .res-item label { font-size: 0.7rem; margin-bottom: 2px; }
    .res-item select, .res-item input { font-size: 1rem; width: 100%; }
    .res-btn { width: 100%; padding: 0.8rem; font-size: 1rem; }

    .marquee-strip { width: 100%; overflow: hidden; }
    .quick-categories { grid-template-columns: 1fr; margin: 2rem auto; padding: 0 1rem; }
    
    .fleet-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
    .section-header h2 { font-size: 2.2rem !important; }

    .vip-features-grid { grid-template-columns: 1fr !important; }
    .vip-homepage-section h2 { font-size: 2.5rem !important; }

    .footer-grid { grid-template-columns: 1fr !important; text-align: center; gap: 3rem; }
}

@media (max-width: 380px) {
    .hero h1 { font-size: 24px !important; }
}
