/* ========================================
   IMPERIAL VIP - Corporate Premium Design
   Clean, Professional, Trustworthy
======================================== */

/* ===== CSS Variables ===== */
:root {
    /* Corporate Colors */
    --color-primary: #0a1628;
    --color-primary-rgb: 10, 22, 40;
    --color-secondary: #1e3a5f;
    --color-accent: #b8860b;
    --color-accent-light: #d4a84b;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    
    /* Status Colors */
    --color-success: #059669;
    --color-warning: #d97706;
    --color-danger: #dc2626;
    --color-whatsapp: #25d366;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-py: 100px;
    --header-height: 80px;
    
    /* Transitions */
    --transition: 0.3s ease;
    
    /* Shadows - Subtle & Professional */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.16);
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-700);
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; }

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-accent:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 15px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 22, 40, 0.95);
    z-index: 1000;
    border-bottom: 1px solid var(--color-gray-100);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.logo-text {
    color: var(--color-white);
}

.logo-vip {
    color: var(--color-accent);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    margin-right: 24px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 6px 2px;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav .container {
    padding-left: 20px;
    padding-right: 20px;
}

/* Dil Seçici - 4 Dil (TR, DE, RU, EN) */
.lang-selector {
    position: relative;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.lang-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--color-accent);
}
.header.scrolled .lang-btn {
    background: var(--color-gray-100);
    color: var(--color-primary);
    border-color: var(--color-gray-200);
}
.header.scrolled .lang-btn:hover {
    background: var(--color-gray-200);
    border-color: var(--color-accent);
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 1000;
}
.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-option {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    color: var(--color-gray-700);
    font-size: 14px;
    border-radius: 6px;
    transition: var(--transition);
}
.lang-option:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
}

/* Para birimi seçici (navbar) */
.currency-selector {
    position: relative;
}
.currency-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.currency-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--color-accent);
}
.header.scrolled .currency-btn {
    background: var(--color-gray-100);
    color: var(--color-primary);
    border-color: var(--color-gray-200);
}
.currency-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 120px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 1002;
}
.currency-selector.open .currency-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.currency-option {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: none;
    color: var(--color-gray-700);
    font-size: 14px;
    text-align: left;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}
.currency-option:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
}
.lang-option.active {
    background: var(--color-accent);
    color: var(--color-white);
}
.lang-option.active:hover {
    background: var(--color-accent-light);
    color: var(--color-white);
}
.lang-flag,
.lang-flag-img {
    margin-right: 6px;
    line-height: 1;
    vertical-align: middle;
    border-radius: 2px;
    object-fit: cover;
}
.lang-option-flag {
    margin-right: 8px;
    line-height: 1;
    vertical-align: middle;
    border-radius: 2px;
    object-fit: cover;
}

.nav-toggle {
    display: none;
    font-size: 28px;
    color: var(--color-primary);
    cursor: pointer;
}

.nav-close {
    display: none;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-primary);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Ken Burns Effect - Zoom Animation */
.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-image {
    transform: scale(1.08);
    animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateX(0);
    }
    100% {
        transform: scale(1.08) translateX(-1%);
    }
}

/* Profesyonel Overlay - Çok katmanlı gradient */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, 
            rgba(10, 22, 40, 0.4) 0%, 
            rgba(10, 22, 40, 0.2) 40%,
            rgba(10, 22, 40, 0.5) 100%
        ),
        linear-gradient(90deg, 
            rgba(10, 22, 40, 0.7) 0%, 
            transparent 60%
        ),
        radial-gradient(ellipse at 30% 50%, 
            transparent 0%, 
            rgba(10, 22, 40, 0.3) 100%
        );
}

/* Vignette efekti */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: var(--header-height);
    width: 100%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 650px;
}

/* Hero Content Animations */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: 100px;
    color: var(--color-accent-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-badge i {
    color: var(--color-accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-title span {
    color: var(--color-accent-light);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    border-radius: 2px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-5px);
}

.hero-stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--color-accent-light);
    margin-bottom: 8px;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* Hero Navigation - Modern Minimal Style */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.hero:hover .hero-nav {
    opacity: 1;
}

.hero-nav:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.4);
}

.hero-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-nav-prev { left: 30px; }
.hero-nav-next { right: 30px; }

/* Progress Indicators - Modern Line Style */
.hero-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-accent);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-dot.active {
    background: rgba(255, 255, 255, 0.15);
}

.hero-dot.active::before {
    width: 100%;
    animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Slide Counter */
.hero-slide-counter {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 15;
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-family: var(--font-heading);
}

.hero-slide-counter .current {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.hero-slide-counter .separator {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 3px;
}

.hero-slide-counter .total {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.hero-scroll {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: bounce 2s infinite;
    z-index: 15;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Sections ===== */
.section {
    padding: var(--section-py) 0;
}

.section-gray {
    background: var(--color-gray-50);
}

.section-dark {
    background: var(--color-primary);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--color-gray-900);
}

.section-description {
    font-size: 17px;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* Koyu arka planlı section-dark üzerinde beyaz metin */
.section-dark .section-header .section-label {
    color: var(--color-accent-light) !important;
}
.section-dark .section-header .section-title {
    color: #ffffff !important;
}
.section-dark .section-header .section-description {
    color: #ffffff !important;
}

/* ===== Trust Indicators ===== */
.trust-bar {
    background: #ffffff !important;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.trust-item i {
    font-size: 24px;
    color: var(--color-accent);
}

.trust-item span {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a !important;
}

/* ===== Features ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 16px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--color-gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 16px;
    font-size: 26px;
    color: var(--color-white);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-gray-900);
}

.feature-card p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ===== Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 32px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-accent);
    transition: var(--transition);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-50);
    border-radius: 12px;
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-gray-900);
}

.service-card p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* ===== Vehicles (Premium Design) ===== */
/* Ana sayfa - VIP Araçlar bölümü */
.section.section-gray .vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.vehicle-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(10, 22, 40, 0.06);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(10, 22, 40, 0.14), 0 8px 24px rgba(184, 134, 11, 0.08);
    border-color: rgba(184, 134, 11, 0.2);
}

.vehicle-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--color-gray-100) 0%, var(--color-gray-200) 100%);
}

.vehicle-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.5) 0%, transparent 50%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.vehicle-card:hover .vehicle-image::after {
    opacity: 0.2;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.08);
}

.vehicle-type {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 8px;
    z-index: 1;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: background 0.3s ease, color 0.3s ease;
}

.vehicle-card:hover .vehicle-type {
    background: var(--color-accent);
    color: var(--color-white);
}

.vehicle-info {
    padding: 28px 26px;
    position: relative;
}

.vehicle-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 26px;
    right: 26px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vehicle-card:hover .vehicle-info::before {
    opacity: 1;
}

.vehicle-info h3 {
    font-size: 21px;
    margin-bottom: 10px;
    color: var(--color-gray-900);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.vehicle-info p {
    font-size: 14px;
    color: var(--color-gray-600);
    margin-bottom: 20px;
    line-height: 1.65;
}

.vehicle-specs {
    display: flex;
    gap: 24px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--color-gray-100);
}

.vehicle-specs span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray-600);
}

.vehicle-specs i {
    color: var(--color-accent);
    font-size: 18px;
    opacity: 0.9;
}

.vehicle-info .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.vehicle-card:hover .vehicle-info .btn {
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.35);
}

/* Ana sayfa - Araçlar bölümü başlık vurgusu */
.vehicles-section .vehicles-section-header .section-title {
    position: relative;
    display: inline-block;
}

.vehicles-section .vehicles-section-header .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ===== Full Vehicle List (Araçlarımız Sayfası - Premium) ===== */
.vehicles-list {
    background: linear-gradient(180deg, var(--color-gray-50) 0%, #f0f4f8 50%, var(--color-gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.vehicles-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.2), transparent);
    opacity: 0.6;
}

.vehicles-full-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.vehicle-card-full {
    display: grid;
    grid-template-columns: 400px 1fr 200px;
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(10, 22, 40, 0.06);
}

.vehicle-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(10, 22, 40, 0.12), 0 8px 24px rgba(184, 134, 11, 0.06);
    border-color: rgba(184, 134, 11, 0.15);
}

/* Araç albümü - sol sütun (iç/dış fotoğraflar) */
.vehicle-album {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.vehicle-album-main {
    position: relative;
    min-height: 320px;
    background: linear-gradient(145deg, var(--color-gray-100) 0%, #e8ecf0 100%);
    overflow: hidden;
    flex: 1;
}

.vehicle-album-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(10, 22, 40, 0.08) 100%);
    pointer-events: none;
}

.vehicle-album-main-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: opacity 0.35s ease;
}

.vehicle-card-full:hover .vehicle-album-main-img {
    transform: scale(1.03);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vehicle-album-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
    background: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-100);
}

.vehicle-thumb {
    width: 56px;
    height: 56px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-gray-200);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-thumb:hover {
    border-color: var(--color-accent);
}

.vehicle-thumb.active {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px var(--color-accent);
}

.vehicle-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Eski tek görsel yapı (geri uyumluluk) */
.vehicle-image-full {
    position: relative;
    min-height: 320px;
    background: linear-gradient(145deg, var(--color-gray-100) 0%, #e8ecf0 100%);
    overflow: hidden;
}

.vehicle-image-full::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(10, 22, 40, 0.08) 100%);
    pointer-events: none;
}

.vehicle-image-full img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vehicle-card-full:hover .vehicle-image-full img {
    transform: scale(1.06);
}

.vehicle-type-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 10px;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.vehicle-card-full:hover .vehicle-type-badge {
    background: var(--color-accent);
    color: var(--color-white);
}

.vehicle-details {
    padding: 40px 40px 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vehicle-header {
    margin-bottom: 12px;
}

.vehicle-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--color-gray-900);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.vehicle-brand {
    font-size: 14px;
    color: var(--color-gray-500);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.vehicle-description {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.75;
    margin-bottom: 24px;
}

.vehicle-specs-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-100);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray-700);
}

.spec-item i {
    color: var(--color-accent);
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #f1f5f9 100%);
    color: var(--color-gray-700);
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid rgba(10, 22, 40, 0.06);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.vehicle-card-full:hover .feature-tag {
    background: rgba(184, 134, 11, 0.08);
    border-color: rgba(184, 134, 11, 0.2);
    color: var(--color-gray-800);
}

.feature-tag i {
    font-size: 12px;
    color: var(--color-accent);
}

.vehicle-actions .btn {
    align-self: flex-start;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.vehicle-card-full:hover .vehicle-actions .btn {
    box-shadow: 0 6px 24px rgba(184, 134, 11, 0.3);
}

.vehicle-price-display {
    margin: 12px 0 0;
    font-size: 15px;
    color: var(--color-gray-700);
}
.vehicle-price-display strong {
    color: var(--color-accent, #b8860b);
}

/* Araç kartı - sağda fiyat + Araç Seç (eski site referansı) */
.vehicle-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 28px;
    border-left: 1px solid var(--color-gray-100);
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
}
.vehicle-price-main {
    margin-bottom: 20px;
    text-align: center;
}
.vehicle-price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary, #0a1628);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.vehicle-price-value .vehicle-currency-symbol {
    color: var(--color-accent, #b8860b);
    margin-left: 2px;
}
.vehicle-price-no-price {
    font-size: 14px;
    color: var(--color-gray-500);
    font-weight: 500;
}
.vehicle-price-block .vehicle-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}
.vehicle-price-block .btn-select-vehicle {
    width: 100%;
    max-width: 180px;
    justify-content: center;
}

/* Araçlar sayfası - intro section */
.vehicles-intro .section-header {
    margin-bottom: 48px;
}

.vehicles-intro .section-title {
    font-size: 38px;
}

/* Vehicle info kartları (Düzenli Bakım, Hijyen vb.) */
.vehicle-info .info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vehicle-info .info-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(10, 22, 40, 0.06);
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vehicle-info .info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(10, 22, 40, 0.08);
    border-color: rgba(184, 134, 11, 0.2);
}

.vehicle-info .info-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.12) 0%, rgba(184, 134, 11, 0.06) 100%);
    color: var(--color-accent);
    font-size: 24px;
    border-radius: 14px;
    transition: background 0.3s ease, color 0.3s ease;
}

.vehicle-info .info-card:hover .info-icon {
    background: var(--color-accent);
    color: var(--color-white);
}

.vehicle-info .info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-gray-900);
}

.vehicle-info .info-card p {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.65;
}

/* ===== Why Us Section ===== */
.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-text .section-label {
    display: block;
    margin-bottom: 12px;
}

.why-us-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.why-us-text > p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.why-us-list {
    margin-bottom: 32px;
}

.why-us-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.why-us-list i {
    font-size: 20px;
    color: var(--color-success);
}

.why-us-list span {
    font-size: 15px;
    color: var(--color-gray-700);
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.why-us-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    opacity: 0.1;
    border-radius: 16px;
    z-index: -1;
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Page Header ===== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb span:last-child {
    color: var(--color-accent-light);
}

/* ===== About Section ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-label {
    display: block;
    margin-bottom: 12px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-50);
    border-radius: 12px;
    font-size: 20px;
    color: var(--color-accent);
}

.value-text h4 {
    font-size: 14px;
    color: var(--color-gray-900);
    margin-bottom: 2px;
}

.value-text p {
    font-size: 12px;
    color: var(--color-gray-500);
    margin: 0;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
}

/* ===== Stats Section ===== */
.stats {
    background: var(--color-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent-light);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Mission Section ===== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.mission-card {
    padding: 48px 40px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 16px;
    text-align: center;
}

.mission-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--color-gray-50);
    border-radius: 50%;
    font-size: 28px;
    color: var(--color-primary);
}

.mission-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--color-gray-900);
}

.mission-card p {
    font-size: 15px;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* ===== Driver Features ===== */
.driver-features {
    background: var(--color-gray-50);
}

.driver-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.driver-feature {
    text-align: center;
    padding: 40px 28px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 16px;
    transition: var(--transition);
}

.driver-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.driver-feature .feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--color-primary);
    border-radius: 50%;
    font-size: 26px;
    color: var(--color-white);
}

.driver-feature h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-gray-900);
}

.driver-feature p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* ===== Promise Section ===== */
.promise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.promise-text .section-label {
    display: block;
    margin-bottom: 12px;
}

.promise-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.promise-text > p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.promise-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.promise-list i {
    font-size: 18px;
    color: var(--color-success);
}

.promise-list span {
    font-size: 15px;
    color: var(--color-gray-700);
}

.promise-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
}

/* ===== Contact Section ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-label {
    display: block;
    margin-bottom: 12px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-items {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.contact-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-50);
    border-radius: 12px;
    font-size: 22px;
    color: var(--color-primary);
}

.contact-text h4 {
    font-size: 13px;
    color: var(--color-gray-500);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-text a,
.contact-text span {
    font-size: 16px;
    color: var(--color-gray-900);
    font-weight: 500;
}

.contact-text a:hover {
    color: var(--color-accent);
}

/* İletişim sayfası açık arka planda: metinler varsayılan koyu renklerle (.contact-info stilleri) görünür.
   Koyu arka plan kullanılacaksa .contact.section üzerine .dark-bg class'ı eklenip aşağıdaki kurallar .dark-bg ile scope edilebilir. */

/* İletişim Ara / Mesaj butonları */
.contact-value {
    display: block;
    margin-bottom: 8px;
}
.btn-contact-ara {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    background: var(--color-primary);
    color: var(--color-white) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}
.btn-contact-ara:hover {
    background: var(--color-accent);
    color: var(--color-white) !important;
    border-color: var(--color-accent);
    transform: translateY(-1px);
}
body .contact.section .contact-info .btn-contact-ara {
    background: var(--color-accent);
    color: var(--color-white) !important;
    border-color: var(--color-accent-light);
}
body .contact.section .contact-info .btn-contact-ara:hover {
    background: var(--color-accent-light);
    color: var(--color-primary) !important;
}
.btn-contact-ara.btn-whatsapp {
    background: var(--color-whatsapp);
    border-color: #20bd5a;
}
body .contact.section .contact-info .btn-contact-ara.btn-whatsapp:hover {
    background: #20bd5a;
    color: var(--color-white) !important;
}

.contact-social h4 {
    font-size: 14px;
    color: var(--color-gray-500);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-50);
    border-radius: 12px;
    font-size: 18px;
    color: var(--color-gray-600);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.contact-form-wrapper {
    background: var(--color-gray-50);
    padding: 40px;
    border-radius: 16px;
}

.contact-form-wrapper h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--color-gray-900);
}

/* ===== Gallery Grid (Homepage) ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item-home {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item-home:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-home:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 32px;
    color: var(--color-white);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-700);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    color: var(--color-gray-900);
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.08);
}

.form-control::placeholder {
    color: var(--color-gray-400);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: var(--color-gray-500);
    margin-top: 6px;
}

.text-danger {
    color: var(--color-danger);
    font-size: 12px;
    margin-top: 4px;
}

/* ===== Alert ===== */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.15);
    color: var(--color-success);
}

.alert-danger {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
    color: var(--color-danger);
}

/* Vehicle Select Hint - Büyük yönlendirme mesajı */
.vehicle-select-hint {
    font-size: 1.35rem !important;
    padding: 24px 28px !important;
    font-weight: 500;
}
.vehicle-select-hint .vehicle-select-hint-icon {
    font-size: 1.75rem !important;
    flex-shrink: 0;
}
.vehicle-select-hint .vehicle-select-hint-text {
    font-size: inherit;
}

/* ===== Reservation Form ===== */
.reservation-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
}

.reservation-info .section-label {
    display: block;
    margin-bottom: 12px;
}

.reservation-info .section-title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 20px;
}

.reservation-info > p {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.reservation-features {
    margin-bottom: 32px;
}

.res-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--color-gray-700);
}

.res-feature i {
    color: var(--color-success);
    font-size: 16px;
}

.reservation-contact {
    padding: 24px;
    background: var(--color-gray-50);
    border-radius: 12px;
}

.reservation-contact p {
    font-size: 13px;
    color: var(--color-gray-500);
    margin-bottom: 12px;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 16px;
}

.contact-phone i {
    color: var(--color-primary);
}

.reservation-form-wrapper {
    background: var(--color-gray-50);
    padding: 40px;
    border-radius: 16px;
}

.form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-gray-200);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.form-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: var(--color-gray-900);
    margin-bottom: 20px;
}

.form-section h4 i {
    color: var(--color-accent);
}

.reservation-price-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 16px;
}
.reservation-price-box h5 {
    font-size: 14px;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 8px;
}
.reservation-price-box p {
    margin: 4px 0;
    font-size: 14px;
    color: var(--color-gray-700);
}
.reservation-price-box .price-note {
    font-size: 12px;
    color: var(--color-gray-500);
    margin-top: 8px;
}
.mb-2 { margin-bottom: 8px; }

.distance-calculator {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.distance-calculator .form-group {
    flex: 1;
    margin-bottom: 0;
}

.price-result {
    margin-top: 20px;
    padding: 20px;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 12px;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-label {
    font-size: 14px;
    color: var(--color-gray-500);
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.price-result small {
    font-size: 12px;
    color: var(--color-gray-500);
}

/* ===== Success Page ===== */
.success-page {
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-gray-50);
}

.success-content {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 50%;
    font-size: 40px;
    color: var(--color-success);
}

.success-content h1 {
    font-size: 32px;
    color: var(--color-gray-900);
    margin-bottom: 14px;
}

.success-message {
    font-size: 16px;
    color: var(--color-gray-500);
    margin-bottom: 36px;
    line-height: 1.7;
}

.reservation-summary {
    background: var(--color-white);
    padding: 28px;
    border-radius: 16px;
    text-align: left;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.reservation-summary h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-gray-100);
    color: var(--color-gray-900);
}

.summary-grid {
    display: grid;
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.summary-label {
    font-size: 14px;
    color: var(--color-gray-500);
}

.summary-value {
    font-size: 14px;
    color: var(--color-gray-900);
    font-weight: 500;
}

.success-info {
    padding: 16px 20px;
    background: rgba(var(--color-primary-rgb), 0.06);
    border-radius: 10px;
    margin-bottom: 28px;
}

.success-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-primary);
    margin: 0;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-gray-900);
    padding: 80px 0 32px;
    color: var(--color-white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.footer-logo .logo-text {
    color: var(--color-white);
}

.footer-logo .logo-vip {
    color: var(--color-accent);
}

.footer-description {
    font-size: 14px;
    color: var(--color-gray-400);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 15px;
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-gray-400);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-gray-400);
}

.footer-contact ul li i {
    color: var(--color-accent);
    font-size: 16px;
}

.footer-contact ul li a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--color-gray-800);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-gray-500);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-800);
    border-radius: 10px;
    font-size: 16px;
    color: var(--color-gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-gray-900);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-whatsapp);
    border-radius: 50%;
    font-size: 28px;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== Info Grid ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.info-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 16px;
}

.info-card .info-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--color-gray-50);
    border-radius: 50%;
    font-size: 24px;
    color: var(--color-primary);
}

.info-card h4 {
    font-size: 15px;
    color: var(--color-gray-900);
    margin-bottom: 6px;
}

.info-card p {
    font-size: 13px;
    color: var(--color-gray-500);
}

/* ===== Responsive ===== */
/* Navbar: 1100px altında hamburger menü - butonların üst üste binmesini önler */
@media (max-width: 1100px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-white);
        padding: 100px 32px 32px;
        transition: var(--transition);
        z-index: 1001;
        box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    }
    
    .nav-menu.show {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-right: 0;
    }
    
    .nav-link {
        font-size: 16px;
        color: var(--color-gray-900);
        padding: 8px 0;
    }
    
    .nav-link:hover {
        color: var(--color-accent);
    }
    
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-white);
        font-size: 24px;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 28px;
        right: 28px;
        font-size: 28px;
        color: var(--color-gray-900);
        cursor: pointer;
    }
    
    .nav-buttons .btn {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vehicles-grid,
    .section.section-gray .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vehicle-image-full,
    .vehicle-album-main {
        height: 260px;
        min-height: 260px;
    }
    
    .vehicle-image-full img,
    .vehicle-album-main-img {
        min-height: 260px;
    }
    
    .vehicle-details {
        padding: 28px 24px;
    }
    
    .vehicle-header h3 {
        font-size: 24px;
    }
    
    .stats-grid,
    .info-grid,
    .vehicle-info .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .driver-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 40px;
    }
    
    .about-content,
    .why-us-content,
    .promise-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .reservation-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-nav { 
        display: none; 
    }
    
    .hero-dots {
        bottom: 30px;
        padding: 10px 16px;
    }
    
    .hero-dot {
        width: 30px;
        height: 3px;
    }
    
    .hero-slide-counter {
        bottom: 30px;
        right: 30px;
    }
    
    .hero-slide-counter .current {
        font-size: 36px;
    }
    
    .hero-slide-counter .total,
    .hero-slide-counter .separator {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-white);
        padding: 100px 32px;
        transition: var(--transition);
        z-index: 1001;
    }
    
    .nav-menu.show {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 28px;
        right: 28px;
        font-size: 28px;
        color: var(--color-gray-900);
        cursor: pointer;
    }
    
    .nav-buttons .btn {
        display: none;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .features-grid,
    .services-grid,
    .vehicles-grid,
    .section.section-gray .vehicles-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-card-full {
        grid-template-columns: 1fr;
    }
    
    .vehicle-price-block {
        border-left: none;
        border-top: 1px solid var(--color-gray-100);
    }
    
    .driver-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .reservation-form-wrapper {
        padding: 24px;
    }
    
    .distance-calculator {
        flex-direction: column;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-dots {
        bottom: 20px;
        padding: 8px 14px;
        gap: 6px;
    }
    
    .hero-dot {
        width: 24px;
        height: 3px;
    }
    
    .hero-slide-counter {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 8px 14px;
    }
    
    .hero-dots {
        padding: 6px 12px;
    }
    
    .hero-dot {
        width: 18px;
        height: 2px;
    }
    
    .hero-stat {
        padding: 16px;
    }
    
    .hero-stat-number {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stats-grid,
    .info-grid,
    .vehicle-info .info-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-details {
        padding: 24px 20px;
    }
    
    .vehicle-specs-grid {
        gap: 20px;
        padding: 12px 0;
    }
    
    .vehicle-header h3 {
        font-size: 22px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 24px;
    }
}

/* ========================================
   Quick Reservation Section
======================================== */
.quick-reservation-section {
    background: var(--color-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.quick-reservation-header {
    text-align: center;
    margin-bottom: 40px;
}

.quick-reservation-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.quick-reservation-header p {
    font-size: 16px;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.quick-reservation-form {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
}

.quick-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: end;
}

.quick-form-grid .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray-600);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-form-grid .form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-gray-200);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    background: var(--color-gray-50);
}

.quick-form-grid .form-control:focus {
    border-color: var(--color-accent);
    outline: none;
    background: var(--color-white);
}

.quick-form-grid .form-submit .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .quick-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-form-grid .form-submit {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .quick-form-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-form-grid .form-submit {
        grid-column: span 1;
    }
    
    .quick-reservation-header h2 {
        font-size: 24px;
    }
}

/* ========================================
   Regions Section (New Style)
======================================== */
.regions-section-new {
    background: var(--color-primary);
    padding: 80px 0;
}

.regions-section-new .section-header {
    margin-bottom: 48px;
}

.regions-section-new .section-label-ghost {
    color: rgba(255, 255, 255, 0.05);
}

.regions-section-new .section-title {
    color: var(--color-white);
}

.regions-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.region-card-new {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 320px;
}

.region-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.region-image-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.region-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.region-card-new:hover .region-image-new img {
    transform: scale(1.08);
}

.region-image-new .region-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.region-image-new .region-placeholder i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
}

.region-info-new {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.6) 50%,
        transparent 100%
    );
    text-align: center;
}

.region-name-new {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.region-route-new {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.region-price-new {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.region-price-new strong {
    font-size: 18px;
    color: var(--color-accent-light);
}

.btn-region {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    border: none;
}

.btn-region:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.regions-section-new .btn-outline {
    color: var(--color-white);
    border-color: var(--color-white);
}

.regions-section-new .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

@media (max-width: 992px) {
    .regions-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .regions-grid-new {
        grid-template-columns: 1fr;
    }
    
    .region-card-new {
        height: 280px;
    }
}

/* ========================================
   Regions Section (Old Style - Keep for compatibility)
======================================== */
.regions-section {
    background: var(--color-gray-50);
    padding: 80px 0;
}

.section-label-ghost {
    display: block;
    font-size: 72px;
    font-weight: 800;
    color: var(--color-gray-200);
    text-transform: uppercase;
    letter-spacing: 8px;
    text-align: center;
    margin-bottom: -40px;
    opacity: 0.6;
}

.text-accent {
    color: var(--color-accent);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.region-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    display: block;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.region-card .region-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.region-card .region-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.region-card:hover .region-image img {
    transform: scale(1.05);
}

.region-card .region-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-200);
    font-size: 48px;
    color: var(--color-gray-400);
}

.region-card .region-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: var(--color-white);
}

.region-card .region-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.region-card .region-route {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    font-weight: 500;
}

.region-card .region-price {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 18px;
    font-weight: 500;
}

.region-card .region-price strong {
    color: var(--color-accent-light);
    font-size: 20px;
    font-weight: 700;
}

.region-card .btn {
    align-self: flex-start;
    background: var(--color-accent);
    color: var(--color-primary);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.region-card .btn:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

@media (max-width: 992px) {
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-label-ghost {
        font-size: 48px;
        margin-bottom: -24px;
    }
}

@media (max-width: 576px) {
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .region-card {
        height: 280px;
    }
    
    .section-label-ghost {
        font-size: 32px;
        margin-bottom: -16px;
    }
}

/* ========================================
   All Regions Page - PDF / E-posta ile birebir aynı görünüm
   Koyu lacivert başlık, altın IMPERIALVIP logosu, aynı yazı stili
======================================== */
.all-regions-page {
    padding-top: 0;
    min-height: 100vh;
    background: #ffffff;
    font-family: var(--font-family);
}

/* PDF tarzı başlık çubuğu: koyu lacivert, sol beyaz kalın başlık, sağ altın logo */
.imperial-doc-header {
    background: #0f172a;
    padding: 24px 0;
    margin: 0;
}
.imperial-doc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.imperial-doc-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}
.imperial-doc-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d4af37;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.imperial-doc-logo-star {
    font-size: 20px;
    line-height: 1;
}
.imperial-doc-logo-text {
    font-family: var(--font-family);
}
.imperial-doc-logo-center {
    justify-content: center;
    margin: 0 auto;
}

/* Sayfa başı / sonu – senin attığın görseller (birebir) */
.imperial-page-first-image,
.imperial-page-last-image {
    width: 100%;
    display: block;
    line-height: 0;
}
.imperial-page-first-image img,
.imperial-page-last-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}
.imperial-page-header-img { max-width: 100%; object-fit: contain; }
.imperial-page-footer-img { max-width: 100%; object-fit: contain; }

/* İçerik alanı: beyaz/açık gri, PDF ile aynı tipografi */
.imperial-doc-content {
    background: #ffffff;
    padding: 48px 0 32px;
}
.imperial-doc-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 32px;
    font-weight: 400;
}

.all-regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 0 0 80px;
    background: #ffffff;
}

.all-regions-page .region-card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}
.all-regions-page .region-card .region-name {
    font-size: 20px;
    font-weight: 700;
}
.all-regions-page .region-card .region-route,
.all-regions-page .region-card .region-price {
    font-size: 14px;
    font-weight: 400;
}
.all-regions-page .region-card .region-price strong {
    font-weight: 700;
    color: #d4af37;
}
.all-regions-page .region-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* PDF tarzı altbilgi: koyu çubuk, ortada IMPERIALVIP, iletişim */
.imperial-doc-footer {
    background: #0f172a;
    padding: 28px 0;
    margin: 0;
    text-align: center;
}
.imperial-doc-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.imperial-doc-footer-brand {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.06em;
}
.imperial-doc-footer-contact {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

@media (max-width: 992px) {
    .all-regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .all-regions-grid {
        grid-template-columns: 1fr;
    }
    .imperial-doc-title {
        font-size: 18px;
    }
    .imperial-doc-logo {
        font-size: 16px;
    }
}

/* ========================================
   Region Detail / Vehicle Selection
======================================== */
.region-detail-page {
    padding-top: 40px;
}

.region-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.region-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
    color: var(--color-white);
}

.region-hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.region-hero-overlay .region-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.region-hero-overlay .region-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.region-hero-overlay .region-meta i {
    color: var(--color-accent);
}

.vehicle-selection-section {
    padding: 60px 0;
    background: var(--color-gray-50);
}

.vehicle-selection-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--color-primary);
}

.vehicle-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vehicle-select-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    border: 3px solid transparent;
}

.vehicle-select-card:hover,
.vehicle-select-card.selected {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-xl);
}

.vehicle-select-card .vehicle-img {
    height: 180px;
    overflow: hidden;
}

.vehicle-select-card .vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-select-card .vehicle-details {
    padding: 20px;
}

.vehicle-select-card .vehicle-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.vehicle-select-card .vehicle-specs {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--color-gray-500);
    margin-bottom: 12px;
}

.vehicle-select-card .vehicle-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-accent);
}

@media (max-width: 992px) {
    .vehicle-selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .region-hero {
        height: 300px;
    }
    
    .region-hero-overlay h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .vehicle-selection-grid {
        grid-template-columns: 1fr;
    }
    
    .region-hero-overlay {
        padding: 24px;
    }
    
    .region-hero-overlay h1 {
        font-size: 24px;
    }
}

/* ========================================
   Selected Info Section (Reservation)
======================================== */
.selected-info-section {
    padding: 24px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-bottom: 1px solid #86efac;
}

.selected-info-box {
    background: var(--color-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid #22c55e;
}

.selected-info-box h4 {
    color: #16a34a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.selected-info-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.selected-info-grid .selected-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.selected-info-grid .selected-item .label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-gray-500);
    font-weight: 500;
}

.selected-info-grid .selected-item .value {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
}

.selected-info-grid .selected-item .specs {
    font-size: 13px;
    color: var(--color-gray-500);
}

.selected-info-grid .selected-item .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
}

/* Rezervasyon - İki sütun (Seyahat Bilgisi | Transfer Detayları) */
.container-wide { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.reservation-two-col { padding: 40px 0 80px; }
.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
@media (max-width: 992px) {
    .reservation-grid { grid-template-columns: 1fr; }
}
.reservation-form-col {
    background: var(--color-white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}
.reservation-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border: 1px solid #f0c264;
    border-left: 4px solid #d4960a;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #5a4e00;
}
.reservation-info-banner i {
    font-size: 20px;
    color: #d4960a;
    margin-top: 2px;
    flex-shrink: 0;
}
.reservation-info-banner strong {
    color: #8b6914;
}
.reservation-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
}
.reservation-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 24px 0 12px;
}
.reservation-form-col .form-group { margin-bottom: 18px; }
.reservation-form-col .form-group label { font-weight: 600; color: var(--color-gray-700); }
.reservation-form-col .form-row-sm { display: flex; gap: 12px; }
.reservation-form-col .form-row-sm .form-group { flex: 1; }

/* Toggle: Dönüş transferi - Görünür, premium tasarım */
.form-group-toggle { margin: 24px 0; }
.return-toggle-wrap {
    margin: 24px 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(212, 168, 75, 0.05) 100%);
    border: 2px solid rgba(184, 134, 11, 0.35);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.return-toggle-wrap:hover {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.12) 0%, rgba(212, 168, 75, 0.08) 100%);
}
.return-toggle-wrap:has(input:checked) {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2) 0%, rgba(212, 168, 75, 0.15) 100%);
}
.toggle-label {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-weight: 500;
}
.toggle-label input { display: none; }
.return-toggle-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.15);
    border-radius: 10px;
    color: var(--color-accent);
    transition: all 0.3s ease;
}
.toggle-label input:checked ~ .return-toggle-icon {
    background: var(--color-accent);
    color: #fff;
}
.return-toggle-content {
    flex: 1;
    min-width: 0;
}
.toggle-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    display: block;
}
.return-toggle-desc {
    font-size: 13px;
    color: var(--color-gray-600);
    margin-top: 2px;
}
.toggle-slider {
    flex-shrink: 0;
    width: 56px;
    height: 30px;
    background: #cbd5e1;
    border-radius: 30px;
    position: relative;
    transition: all 0.3s ease;
}
.toggle-slider::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}
.toggle-label input:checked ~ .toggle-slider {
    background: var(--color-accent);
}
.toggle-label input:checked ~ .toggle-slider::after {
    transform: translateX(26px);
}
.return-transfer-fields { margin-bottom: 20px; padding-left: 0; }

/* Sağ panel - Transfer Detayları */
.reservation-summary-col { position: sticky; top: 100px; }
.transfer-details-card {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-md);
}
.transfer-details-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-accent);
}
.transfer-block { margin-bottom: 20px; }
.transfer-block-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-600);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.transfer-detail {
    font-size: 14px;
    color: var(--color-gray-700);
    margin: 4px 0;
}
.transfer-detail.transfer-price { font-weight: 700; color: var(--color-accent); font-size: 15px; }
.transfer-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 20px 0;
    padding-top: 16px;
    border-top: 2px solid var(--color-gray-200);
}
.transfer-total span { color: var(--color-accent); }
.btn-complete-reservation {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    margin-top: 8px;
}
.btn-complete-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.4);
    color: #fff;
}

/* Transfer yönü (Havalimanı→Otel / Otel→Havalimanı) */
.transfer-direction-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.direction-option {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px;
    border: 2px solid var(--color-gray-200);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.direction-option:hover { border-color: var(--color-accent); background: rgba(212, 175, 55, 0.06); }
.direction-option input { margin: 0 8px 0 0; vertical-align: middle; }
.direction-option span { font-size: 15px; color: var(--color-gray-800); }
.direction-option small { display: block; font-size: 12px; color: var(--color-gray-500); margin-top: 4px; margin-left: 28px; }
.direction-option input:checked + span { font-weight: 700; color: var(--color-primary); }
.direction-option:has(input:checked) {
    border-color: var(--color-accent);
    background: rgba(212, 175, 55, 0.1);
}
.reservation-form-col input[readonly] { background: var(--color-gray-100); cursor: default; }

@media (max-width: 576px) {
    .selected-info-grid {
        flex-direction: column;
        gap: 16px;
    }
}

/* ========================================
   Hizmetlerimiz Detay Section
======================================== */
.services-detail-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(30, 58, 95, 0.85) 100%),
                url('/images/imgs/pages/hizmetlerimiz.jpg') center/cover no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

.services-detail-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.services-detail-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-detail-ghost {
    display: block;
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    letter-spacing: 12px;
    margin-bottom: -50px;
}

.services-detail-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.services-detail-text {
    text-align: center;
}

.services-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff !important;
    margin-bottom: 32px;
    font-weight: 400;
}

.services-desc {
    font-size: 16px;
    line-height: 1.9;
    color: #ffffff !important;
    margin-bottom: 24px;
}

.services-desc:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .services-detail-ghost {
        font-size: 40px;
        margin-bottom: -25px;
    }
    
    .services-detail-title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .services-intro {
        font-size: 16px;
    }
    
    .services-desc {
        font-size: 15px;
    }
}

/* ========================================
   Google Reviews Section
======================================== */
.google-reviews-section {
    padding: 80px 0;
    background: var(--color-white);
}

.google-reviews-header {
    text-align: left;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.google-reviews-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin: 0;
}

.text-google {
    background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-score {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-gray-900);
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #fbbc05;
    font-size: 18px;
}

.rating-count {
    font-size: 14px;
    color: var(--color-gray-500);
}

.btn-google {
    background: linear-gradient(135deg, #4285f4, #3367d6);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.3);
}

.btn-google i:first-child {
    color: #fbbc05;
}

.reviews-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 16px 0;
    flex: 1;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 350px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gray-300);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50%;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray-900);
}

.review-date {
    font-size: 13px;
    color: var(--color-gray-500);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.review-stars i {
    color: #fbbc05;
    font-size: 16px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin: 0;
}

.reviews-nav {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 50%;
    color: var(--color-gray-600);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.reviews-nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    background: var(--color-gray-300);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.reviews-dot.active,
.reviews-dot:hover {
    background: var(--color-accent);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .google-reviews-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .google-reviews-header h2 {
        font-size: 26px;
    }
    
    .reviews-nav {
        display: none;
    }
    
    .review-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 576px) {
    .review-card {
        flex: 0 0 280px;
    }
    
    .google-rating {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================
   Why Choose Us Section
======================================== */
.why-choose-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(30, 58, 95, 0.88) 100%),
                url('/images/imgs/pages/vip-transfer-banner.jpg') center/cover no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

.why-choose-ghost {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    letter-spacing: 8px;
    text-align: center;
    margin-bottom: -30px;
    position: relative;
    z-index: 2;
}

.why-choose-title {
    position: relative;
    z-index: 2;
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 64px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.why-choose-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-choose-card {
    text-align: center;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition);
}

.why-choose-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 32px;
    color: #d4a84b !important;
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.why-choose-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 16px;
}

.why-choose-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #ffffff !important;
    margin: 0;
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-choose-ghost {
        font-size: 28px;
        margin-bottom: -15px;
    }
    
    .why-choose-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* ========================================
   Contact Form Section
======================================== */
.contact-form-section {
    padding: 80px 0;
    background: var(--color-gray-50);
}

.contact-ghost {
    display: block;
    font-size: 80px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    text-transform: uppercase;
    letter-spacing: 12px;
    text-align: center;
    margin-bottom: -40px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-form-wrapper-new {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-new {
    display: flex;
    flex-direction: column;
}

.form-group-new.full-width {
    width: 100%;
}

.form-control-new {
    width: 100%;
    padding: 16px 20px;
    background: var(--color-gray-50);
    border: 2px solid var(--color-gray-200);
    border-radius: 8px;
    color: var(--color-gray-900);
    font-size: 15px;
    transition: var(--transition);
}

.form-control-new:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
}

.form-control-new::placeholder {
    color: var(--color-gray-400);
}

textarea.form-control-new {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
}

@media (max-width: 768px) {
    .contact-ghost {
        font-size: 40px;
        margin-bottom: -20px;
    }
    
    .contact-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .contact-form-wrapper-new {
        padding: 32px 24px;
    }
    
    .form-row-new {
        grid-template-columns: 1fr;
    }
}

/* ===== Vehicle Slider ===== */
.vehicle-slider-wrap { position: relative; overflow: hidden; border-radius: 12px; }
.vehicle-slider { position: relative; width: 100%; aspect-ratio: 16/10; background: #0a0e1a; }
.vehicle-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .45s ease; }
.vehicle-slide.active { opacity: 1; z-index: 1; }
.vehicle-slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(0,0,0,.55); color: #fff; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    transition: background .25s;
}
.slider-btn:hover { background: rgba(212,175,55,.85); }
.slider-prev { left: 10px; }
.slider-next { right: 10px; }
.slider-dots {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    z-index: 5; display: flex; gap: 6px;
}
.slider-dot {
    width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.45);
    cursor: pointer; transition: background .25s;
}
.slider-dot.active { background: #d4af37; }

/* ===== Vehicle Plate Blur ===== */
.plate-blur .vehicle-slide img,
.plate-blur .vehicle-slider img {
    filter: none;
}
.plate-blur .vehicle-slide::after,
.plate-blur .vehicle-slider-track .vehicle-slide::after {
    content: '';
    position: absolute;
    bottom: 8%; left: 30%; right: 30%;
    height: 8%;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 4px;
    z-index: 2;
}

/* ===== Date/Time Picker — Premium Design ===== */
.datetime-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.datetime-input-wrap .dt-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(184,134,11,.12) 0%, rgba(212,168,75,.08) 100%);
    color: var(--color-accent, #b8860b);
    font-size: 17px;
    pointer-events: none;
    z-index: 2;
    transition: all .3s ease;
}
.datetime-input-wrap:hover .dt-icon,
.datetime-input-wrap:focus-within .dt-icon {
    background: linear-gradient(135deg, rgba(184,134,11,.22) 0%, rgba(212,168,75,.15) 100%);
    color: #b8860b;
    transform: translateY(-50%) scale(1.06);
}

input[type="date"],
input[type="time"] {
    position: relative;
    width: 100%;
    padding: 14px 16px 14px 62px;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    letter-spacing: .3px;
    color: var(--color-gray-800, #1e293b);
    background: var(--color-gray-50, #f8fafc);
    border: 2px solid var(--color-gray-200, #e2e8f0);
    border-radius: 12px;
    transition: all .3s ease;
    appearance: none;
    -webkit-appearance: none;
    min-height: 52px;
}
input[type="date"]:hover,
input[type="time"]:hover {
    border-color: var(--color-gray-300, #cbd5e1);
    background: var(--color-white, #fff);
}
input[type="date"]:focus,
input[type="time"]:focus {
    outline: none;
    border-color: var(--color-accent, #b8860b);
    background: var(--color-white, #fff);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, .10), 0 4px 16px rgba(184, 134, 11, .06);
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: all .25s ease;
    opacity: .6;
    filter: none;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
    background: rgba(184, 134, 11, .12);
    opacity: 1;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper,
input[type="time"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-year-field,
input[type="time"]::-webkit-datetime-edit-hour-field,
input[type="time"]::-webkit-datetime-edit-minute-field,
input[type="time"]::-webkit-datetime-edit-ampm-field {
    padding: 2px 4px;
    border-radius: 4px;
    transition: all .2s ease;
}
input[type="date"]::-webkit-datetime-edit-day-field:focus,
input[type="date"]::-webkit-datetime-edit-month-field:focus,
input[type="date"]::-webkit-datetime-edit-year-field:focus,
input[type="time"]::-webkit-datetime-edit-hour-field:focus,
input[type="time"]::-webkit-datetime-edit-minute-field:focus,
input[type="time"]::-webkit-datetime-edit-ampm-field:focus {
    background: rgba(184, 134, 11, .10);
    color: var(--color-accent, #b8860b);
    outline: none;
}

.datetime-row {
    display: flex;
    gap: 14px;
    align-items: stretch;
}
.datetime-row .datetime-input-wrap {
    flex: 1;
}

@media (max-width: 600px) {
    .datetime-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* Admin panel date/time inputs */
.admin-form input[type="date"],
.admin-form input[type="time"] {
    background: #161b22;
    border: 2px solid #30363d;
    color: #e6edf3;
    border-radius: 10px;
}
.admin-form input[type="date"]:hover,
.admin-form input[type="time"]:hover {
    border-color: #484f58;
    background: #1c2129;
}
.admin-form input[type="date"]:focus,
.admin-form input[type="time"]:focus {
    border-color: #d4af37;
    background: #1c2129;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, .12), 0 4px 16px rgba(212, 175, 55, .06);
}
.admin-form input[type="date"]::-webkit-calendar-picker-indicator,
.admin-form input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: .5;
}
.admin-form input[type="date"]::-webkit-calendar-picker-indicator:hover,
.admin-form input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: .9;
    background: rgba(212, 175, 55, .15);
}
.admin-form .datetime-input-wrap .dt-icon {
    background: linear-gradient(135deg, rgba(212,175,55,.18) 0%, rgba(184,134,11,.10) 100%);
    color: #d4af37;
}
.admin-form .datetime-input-wrap:hover .dt-icon,
.admin-form .datetime-input-wrap:focus-within .dt-icon {
    background: linear-gradient(135deg, rgba(212,175,55,.28) 0%, rgba(184,134,11,.18) 100%);
}
.admin-form input[type="date"]::-webkit-datetime-edit-day-field:focus,
.admin-form input[type="date"]::-webkit-datetime-edit-month-field:focus,
.admin-form input[type="date"]::-webkit-datetime-edit-year-field:focus,
.admin-form input[type="time"]::-webkit-datetime-edit-hour-field:focus,
.admin-form input[type="time"]::-webkit-datetime-edit-minute-field:focus,
.admin-form input[type="time"]::-webkit-datetime-edit-ampm-field:focus {
    background: rgba(212, 175, 55, .15);
    color: #d4af37;
}

/* Reservations list date badge */
.res-date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}
.res-date-badge .res-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--color-gray-800, #1e293b);
}
.res-date-badge .res-date i {
    color: var(--color-accent, #b8860b);
    font-size: 14px;
}
.res-date-badge .res-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--color-gray-500, #64748b);
    font-weight: 500;
}
.res-date-badge .res-time i {
    color: var(--color-accent-light, #d4a84b);
    font-size: 12px;
}

/* Admin table date styling */
.admin-table .res-date-badge .res-date {
    color: #e6edf3;
}
.admin-table .res-date-badge .res-date i {
    color: #d4af37;
}
.admin-table .res-date-badge .res-time {
    color: #8b949e;
}
.admin-table .res-date-badge .res-time i {
    color: #d4af37;
}

/* Reservation detail page date display */
.detail-datetime {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(184,134,11,.06) 0%, rgba(212,168,75,.03) 100%);
    border: 1px solid rgba(184,134,11,.15);
    border-radius: 10px;
    margin: 4px 0;
}
.detail-datetime .dt-badge {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184,134,11,.15), rgba(212,168,75,.1));
    border-radius: 10px;
    color: var(--color-accent, #b8860b);
    font-size: 18px;
    flex-shrink: 0;
}
.detail-datetime .dt-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.detail-datetime .dt-text .dt-date {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-gray-800, #1e293b);
}
.detail-datetime .dt-text .dt-time {
    font-size: 13px;
    color: var(--color-gray-500, #64748b);
    font-weight: 500;
}

/* Admin detail page dark theme override */
.admin-detail-page .detail-datetime {
    background: linear-gradient(135deg, rgba(212,175,55,.08) 0%, rgba(184,134,11,.04) 100%);
    border-color: rgba(212,175,55,.2);
}
.admin-detail-page .detail-datetime .dt-badge {
    background: linear-gradient(135deg, rgba(212,175,55,.2), rgba(184,134,11,.12));
    color: #d4af37;
}
.admin-detail-page .detail-datetime .dt-text .dt-date {
    color: #e6edf3;
}
.admin-detail-page .detail-datetime .dt-text .dt-time {
    color: #8b949e;
}
