@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* --- Design Tokens --- */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #faf8f5;
    --bg-tertiary: #f2eee7;
    --accent-gold: #c39a5c;
    --accent-gold-hover: #ad8346;
    --accent-gold-light: #f7f2ea;
    --text-primary: #151619;
    --text-secondary: #4a4e57;
    --text-muted: #858c99;
    --border-color: #e2dcd0;
    --border-color-hover: rgba(195, 154, 92, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(195, 154, 92, 0.12);
    --glass-blur: blur(20px) saturate(180%);
    --card-shadow: 0 10px 30px -10px rgba(195, 154, 92, 0.08);
    --gold-shadow: 0 4px 15px rgba(195, 154, 92, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

.brand-logo-img {
    height: 85px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .brand-logo-img {
        height: 70px;
    }
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}


/* Visually Hidden Helper for Screen Readers & SEO Crawler optimization */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* --- Layout Utilities --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.section-title-wrap {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: var(--gold-shadow);
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Premium badge — gold gradient with crown */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #f5d060 0%, #d4af37 50%, #c9972a 100%);
    color: #111;
    border: none;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.5);
    animation: premium-pulse 2.5s ease-in-out infinite;
}

@keyframes premium-pulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(212, 175, 55, 0.5); }
    50%       { box-shadow: 0 4px 20px rgba(212, 175, 55, 0.8); }
}

/* Shuttle badge — blue toned for economy class */
.badge-shuttle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(100, 149, 237, 0.12);
    color: #6495ed;
    border: 1px solid rgba(100, 149, 237, 0.25);
}

/* Regional Pricing Table Row Hover */
.pricing-row:hover {
    background: rgba(195, 154, 92, 0.04) !important;
    transition: background 0.2s ease;
}
.pricing-row:hover td {
    color: var(--text-primary);
}

/* Premium glow overlay on fleet card image */
.fleet-premium-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Premium book button */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #f5d060 0%, #d4af37 100%);
    color: #111;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    white-space: nowrap;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.6);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.25);
    z-index: 9999;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.08);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- Floating Instagram Button --- */
.instagram-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 24px rgba(220, 39, 67, 0.45), 0 2px 8px rgba(0,0,0,0.25);
    z-index: 9999;
    animation: pulse-instagram 2s infinite;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.instagram-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(220, 39, 67, 0.65);
}

@keyframes pulse-instagram {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 39, 67, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(220, 39, 67, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 39, 67, 0);
    }
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: var(--bg-secondary);
    border-bottom-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(197, 168, 128, 0.08);
}

header.scrolled .alert-promo-banner {
    display: none;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switch {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-switch:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
/* ===================================================
   HERO CINEMATIC SLIDER
   =================================================== */

/* Section container */
.hero-slider-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 130px;
    perspective: 1200px;
}

/* Background layer stack — crossfade via opacity transitions */
.hero-slides-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.04);
    will-change: opacity;
}

.hero-slide-bg.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cinematic dark gradient overlay */
.hero-slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(8, 8, 12, 0.85) 0%,
        rgba(8, 8, 12, 0.65) 45%,
        rgba(8, 8, 12, 0.30) 75%,
        rgba(8, 8, 12, 0.10) 100%
    );
}

/* Centered hero text wrapper */
.hero-text-center {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
    min-height: 400px;
}

/* Individual slide content panels — stacked, switching via opacity + transform */
.hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
    visibility: hidden;
}

.hero-slide-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    position: relative;
}

.hero-slide-content.slide-exit {
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
}

/* Slide badge */
.hero-slide-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), #c9972a);
    color: #111;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    margin: 0 auto 1.4rem auto;
    box-shadow: 0 4px 20px rgba(197, 153, 52, 0.35);
}

/* Slide title */
.hero-slide-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.4rem;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.3rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-slide-title span {
    color: var(--accent-gold);
    position: relative;
}

/* Slide description */
.hero-slide-desc {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin-bottom: 1.8rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Slide feature pills */
.hero-slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.hero-slide-features span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 0.45rem 1rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    transition: background 0.25s;
}

.hero-slide-features span:hover {
    background: rgba(197, 153, 52, 0.22);
    border-color: rgba(197, 153, 52, 0.5);
}

.hero-slide-features i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Trust badges row */
.hero-trust-badges-slider {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.htb-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 0.55rem 1rem;
}

.htb-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    display: none;
}

.htb-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

.htb-val {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 1px;
}

.htb-val i {
    color: var(--accent-gold);
}

.htb-val span {
    opacity: 0.7;
}

/* Slide controls: centered glassmorphic pill at the bottom */
.hero-slide-controls {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    background: rgba(8, 9, 12, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.hero-slide-dots {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.hero-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.25);
}

.hero-dot:hover {
    border-color: var(--accent-gold);
}

/* Progress bar */
.hero-slider-progress {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    overflow: hidden;
}

.hero-slider-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-gold), #e8bb55);
    transition: width 0.1s linear;
    border-radius: 2px;
}

/* Slide counter */
.hero-slide-counter {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

#hero-current-slide {
    color: var(--accent-gold);
    font-size: 0.95rem;
}

/* Floating Instagram — fixed LEFT side */
.hero-instagram-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 22%, #dc2743 48%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(220, 39, 67, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    text-decoration: none;
}

.hero-instagram-float:hover {
    transform: scale(1.14) translateY(-3px);
    box-shadow: 0 14px 34px rgba(220, 39, 67, 0.6), 0 4px 14px rgba(0, 0, 0, 0.35);
    color: #fff !important;
}

/* Airport badge — top of hero */
.hero-airport-badge {
    position: absolute;
    top: 5.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    padding: 0.5rem 1.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    white-space: nowrap;
}

.hero-airport-badge i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.hero-airport-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-live 1.8s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
}

.hero-airport-live {
    color: #86efac;
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes pulse-live {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Accent Horizontal Line above badge */
.hero-slide-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, rgba(255, 255, 255, 0.8) 100%);
    margin-bottom: 1.2rem;
    border-radius: 2px;
}


/* Prev / Next arrow buttons */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-arrow-prev { left: 2rem; }
.hero-arrow-next { right: 2rem; }

.hero-slider-arrow:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #111;
    transform: translateY(-50%) scale(1.08);
}


/* ===================================================
   OVERLAY: Dark left (text readable), open right (vehicle photo shows)
   =================================================== */
.hero-slider-overlay {
    background: linear-gradient(
        to right,
        rgba(5, 5, 9, 0.94) 0%,
        rgba(5, 5, 9, 0.86) 28%,
        rgba(5, 5, 9, 0.55) 50%,
        rgba(5, 5, 9, 0.25) 72%,
        rgba(5, 5, 9, 0.40) 100%
    ) !important;
}

/* Vehicle name badge — bottom center of hero */
.hero-vehicle-badge {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197,153,52,0.45);
    border-radius: 50px;
    padding: 0.45rem 1.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.6s ease 0.9s;
}

.hero-vehicle-badge.visible {
    opacity: 1;
}


/* Legacy .hero fallback (kept for safety) */


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, 
        rgba(250, 248, 245, 0.98) 0%, 
        rgba(250, 248, 245, 0.95) 30%, 
        rgba(250, 248, 245, 0.78) 55%, 
        rgba(250, 248, 245, 0.25) 80%, 
        rgba(250, 248, 245, 0.05) 100%
    ), url('assets/hero_bg.png') no-repeat center center/cover;
    padding-top: 155px;
    overflow: hidden;
    perspective: 1000px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content h1 span {
    color: var(--accent-gold);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-feature-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}



/* ===================================================
   BOOKING BAR SECTION (below hero)
   =================================================== */
.booking-section-below {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 1.6rem 0;
    position: relative;
    z-index: 10;
}

.booking-section-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-section-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-bar-form {
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.bb-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    min-width: 140px;
}

.bb-group.bb-short {
    flex: 0 0 110px;
    min-width: 100px;
}

.bb-group label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bb-group .form-control {
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    border-radius: 10px;
    height: 44px;
}

.bb-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.1rem;
    color: var(--accent-gold);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1.4rem;
}

.bb-btn {
    height: 44px;
    padding: 0 1.4rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c9972a 100%);
    color: #111;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(197,153,52,0.35);
}

.bb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197,153,52,0.5);
}

.bb-rates {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.bb-rates span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Booking Widget / Form --- */
.booking-widget {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--card-shadow), var(--gold-shadow);
}

.booking-widget h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-widget h3 i {
    color: var(--accent-gold);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 2.5rem;
}

select.form-control option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-book-now {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1rem;
}

/* --- Features Section --- */
.features-section {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: var(--card-shadow);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Fleet Section --- */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 2.5rem;
}

.fleet-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
}

.fleet-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: 0 15px 35px -5px rgba(195, 154, 92, 0.12), var(--gold-shadow);
}

.fleet-img-wrap {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.fleet-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.fleet-card:hover .fleet-img-wrap img {
    transform: scale(1.05);
}

.fleet-info {
    padding: 2rem;
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

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

.fleet-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.fleet-spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fleet-spec-item i {
    color: var(--accent-gold);
}

.fleet-features-list {
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.fleet-feature-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.fleet-feature-item i {
    color: #25d366;
    font-size: 0.8rem;
}

.fleet-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.fleet-price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.fleet-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.fleet-price span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Tour Builder Section (Places to Visit) --- */
.tour-layout {
    display: block;
}

.sights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
}

.sight-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.sight-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
}

.sight-img-wrap {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.sight-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.sight-card:hover .sight-img-wrap img {
    transform: scale(1.05);
}

.sight-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sight-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sight-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sight-actions {
    margin-top: auto;
    display: flex;
    gap: 0.8rem;
}

.sight-actions .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    flex: 1;
}

.btn-add-tour {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-add-tour:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-add-tour.added {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Tour Sidebar Cart */


/* --- FAQ / Collapsible Accordion --- */
.faq-section {
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-color-hover);
}

.faq-header {
    padding: 1.2rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-icon {
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    color: var(--accent-gold);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.1);
}

.faq-content {
    padding: 1.5rem 1.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-body {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

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

/* --- Modals --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color-hover);
    border-radius: 16px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1001;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.9), var(--gold-shadow);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.modal.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.modal-header {
    padding: 2rem 2.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 700;
}

.modal-title span {
    color: var(--accent-gold);
}

.modal-body {
    padding: 2rem 2.5rem;
}

/* Detail Modal Styles */
.detail-modal-img {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.detail-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-modal-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.detail-modal-meta {
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    font-size: 0.9rem;
}

.meta-item {
    text-align: center;
}

.meta-item-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.meta-item-val {
    font-weight: 600;
    color: var(--accent-gold);
}

/* Success Modal Styles */
.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.success-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.success-msg {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.success-details {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.success-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.success-detail-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.success-label {
    color: var(--text-muted);
}

.success-val {
    font-weight: 600;
}

.success-total {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* --- Footer --- */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

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

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-info-list i {
    color: var(--accent-gold);
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Developer credit badge */
.arfcode-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.35rem 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: rgba(255,255,255,0.03);
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.arfcode-credit i {
    font-size: 0.85rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.arfcode-credit strong {
    background: linear-gradient(90deg, var(--accent-gold), #fff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.arfcode-credit:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.07);
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.18);
    color: #fff;
    transform: translateY(-1px);
}

.arfcode-credit:hover i {
    transform: rotate(15deg);
}

/* ===================================================
   PAYLAŞIMLI YOLCULUK ÇUBUĞU — Sayfanın en altı
   =================================================== */
.shared-ride-bar {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #0e1117 0%, #141820 50%, #0e1117 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    flex-wrap: wrap;
    text-align: center;
    z-index: 50;
}

.shared-ride-bar > i {
    font-size: 1rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.shared-ride-bar strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.shared-ride-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    background: #25d366;
    color: #fff !important;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.35);
    flex-shrink: 0;
}

.shared-ride-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.55);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero {
        background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.97)), url('assets/hero_bg.png') no-repeat center center/cover;
        padding-top: 120px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .booking-widget {
        max-width: 550px;
        margin: 0 auto;
        text-align: left;
    }
    
    .tour-layout {
        grid-template-columns: 1fr;
    }
    
    .tour-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* Nav menu responsive — handled in comprehensive mobile block below */

@media (min-width: 1025px) and (max-width: 1200px) {
    .nav-menu {
        gap: 1rem !important;
    }
    .nav-link {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 768px) {
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* --- Autocomplete Suggestions --- */
.autocomplete-container {
    position: relative;
    width: 100%;
}

.suggestions-list {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    max-height: 280px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color-hover);
    border-radius: 8px;
    z-index: 110;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), var(--gold-shadow);
    display: none;
}

.suggestions-list.active {
    display: block;
}

.suggestion-group-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-gold);
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}

.suggestion-group-header:first-of-type {
    border-top: none;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(212, 175, 55, 0.08);
}

.suggestion-item i {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.suggestion-item:hover i {
    color: var(--accent-gold);
}

.suggestion-item-text {
    display: flex;
    flex-direction: column;
}

.suggestion-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.suggestion-empty {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- Regions Coverage Showcase --- */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.region-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
}

.region-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.05);
}

.region-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.region-sub-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.region-sub-badge {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.region-sub-badge:hover {
    border-color: var(--accent-gold);
    color: var(--text-primary);
    background: rgba(197, 168, 128, 0.05);
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.05);
    padding: 1.2rem 2rem;
    z-index: 999;
    transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        text-align: center;
    }
    .cookie-banner-actions {
        justify-content: center;
    }
}

/* --- Chatbot Widget (Sol Alt Köşe) --- */
.chatbot-widget {
    position: fixed;
    bottom: 110px;
    left: 30px;
    z-index: 99998;
    font-family: var(--font-body);
}

.chat-bubble {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c5a880 0%, #a07840 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 1.5rem;
    box-shadow: 0 8px 30px rgba(160, 120, 64, 0.45), 0 2px 8px rgba(0,0,0,0.3);
    position: relative;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.chat-bubble * {
    pointer-events: none !important;
}

.chat-bubble:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 40px rgba(160, 120, 64, 0.55), 0 4px 12px rgba(0,0,0,0.35);
}

.chat-bubble .chat-bubble-label {
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1;
    color: rgba(255,255,255,0.9);
}

.chat-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(197, 168, 128, 0.7);
    animation: chat-pulse 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes chat-pulse {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.55); opacity: 0; }
}

.chat-badge-text {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #25d366;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.15rem 0.45rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1.5px solid #fff;
}

/* Chat Drawer Panel — soldan açılır */
.chat-drawer {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 360px;
    height: 520px;
    background: #1a1c22;
    border: 1px solid rgba(197,168,128,0.2);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(197,168,128,0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.chat-drawer.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

@media (max-width: 480px) {
    .chat-drawer {
        width: calc(100vw - 24px);
        left: 0;
        bottom: 75px;
    }
    .chatbot-widget {
        left: 12px;
        bottom: 80px;
    }
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #1e2028 0%, #16181f 100%);
    border-bottom: 1px solid rgba(197,168,128,0.15);
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c5a880, #a07840);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(160,120,64,0.4);
}

.chat-bot-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.chat-status {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1px;
}

.chat-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25d366;
    display: inline-block;
    box-shadow: 0 0 6px #25d366;
    animation: blink-dot 2s infinite;
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.chat-close {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-close:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

/* Chat Messages Area */
.chat-messages {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #13151a;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(197,168,128,0.3) transparent;
}

.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(197,168,128,0.3); border-radius: 4px; }

.chat-bubble-msg {
    max-width: 88%;
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    font-size: 0.84rem;
    line-height: 1.5;
}

.chat-bubble-msg.bot {
    background: #1e2028;
    color: rgba(255,255,255,0.88);
    border: 1px solid rgba(197,168,128,0.12);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}

.chat-bubble-msg.user {
    background: linear-gradient(135deg, #c5a880, #a07840);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 3px;
    box-shadow: 0 4px 12px rgba(160,120,64,0.3);
}

/* Quick option buttons */
.chat-options-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-top: 0.5rem;
}

.chat-option-btn {
    background: rgba(197,168,128,0.08);
    border: 1px solid rgba(197,168,128,0.3);
    color: #c5a880;
    padding: 0.5rem 0.85rem;
    border-radius: 60px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    width: fit-content;
}

.chat-option-btn:hover {
    background: rgba(197,168,128,0.18);
    color: #f0d9a8;
    border-color: rgba(197,168,128,0.5);
    transform: translateX(3px);
}

/* Chat Input */
.chat-input-area {
    padding: 0.7rem 0.9rem;
    background: #1a1c22;
    border-top: 1px solid rgba(197,168,128,0.12);
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-shrink: 0;
}

#chat-input {
    flex-grow: 1;
    border: 1px solid rgba(197,168,128,0.2);
    padding: 0.55rem 0.9rem;
    border-radius: 20px;
    font-size: 0.84rem;
    outline: none;
    transition: border-color 0.2s;
    color: rgba(255,255,255,0.9);
    background: #13151a;
}

#chat-input::placeholder { color: rgba(255,255,255,0.3); }

#chat-input:focus {
    border-color: rgba(197,168,128,0.5);
}

.chat-send-btn {
    background: linear-gradient(135deg, #c5a880, #a07840);
    color: #ffffff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.2s;
    flex-shrink: 0;
}

.chat-send-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(160,120,64,0.4);
}

/* --- Language & Currency Dropdowns --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 0.48rem 0.9rem;
    border-radius: 30px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
    min-width: 82px;
    white-space: nowrap;
}

.dropdown-trigger:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--card-shadow), 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
    width: 150px;
    display: flex;
    flex-direction: column;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.dropdown-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.6rem 1.2rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-smooth);
    font-weight: 500;
    text-align: left;
}

.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--accent-gold);
}

.dropdown-item span {
    font-size: 1.1rem;
}

/* Adjust layout spacing */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Hotel rate cards hover effects */
.hotel-rate-card:hover {
    border-color: var(--accent-gold-hover) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(197, 168, 128, 0.12) !important;
}

/* --- Route Guides Section --- */
.route-guides-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.route-guide-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
}

.route-guide-card:hover {
    border-color: var(--accent-gold-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(197, 168, 128, 0.08);
}

.route-guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.route-badge {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-heading);
}

.route-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.route-guide-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .route-guides-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* --- Alert Promo Banner --- */
.alert-promo-banner {
    background: linear-gradient(135deg, var(--accent-gold-hover), var(--accent-gold));
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    padding: 0.6rem 1rem;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
    box-shadow: 0 2px 10px rgba(197, 168, 128, 0.25);
    z-index: 1001;
    position: relative;
}

@media (max-width: 576px) {
    .alert-promo-banner {
        font-size: 0.68rem;
        padding: 0.4rem 0.5rem;
        letter-spacing: 0;
        line-height: 1.3;
    }
}

/* --- Testimonials Styling --- */
.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--accent-gold-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(197, 168, 128, 0.08);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-gold-light);
    color: var(--accent-gold-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
}

.testimonial-country {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}



/* Advisor Card Hover Overrides */
.advisor-card:hover {
    border-color: var(--accent-gold-hover) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(197, 168, 128, 0.08) !important;
}

/* Timeline & Corporate VIP Card Transitions */
.step-card:hover {
    border-color: var(--accent-gold-hover) !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(197, 168, 128, 0.08) !important;
}

.step-card:hover .step-img-wrap img {
    transform: scale(1.08);
}

.step-img-wrap img {
    transition: transform var(--transition-smooth);
}

.corp-card:hover {
    border-color: var(--accent-gold-hover) !important;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.12) !important;
}

.corp-card:hover .corp-img-wrap img {
    transform: scale(1.08);
}

.corp-img-wrap img {
    transition: transform var(--transition-smooth);
}

/* --- Driving Vito Animation in Hero Background --- */
.hero-vito-animation-wrap {
    position: absolute;
    bottom: 12%;
    right: 32%;
    width: 680px;
    z-index: 1;
    pointer-events: none;
    /* Driving arrival animation keyframe moved to wrapper so elements stay relative */
    transform: translate(650px, 90px) scale(0.55) rotate(5deg);
    opacity: 0;
    animation: vito-drive-in-hero 2.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.3s;
}

.hero-vito-animation-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(-25px 25px 15px rgba(0, 0, 0, 0.42));
    display: block;
}



@keyframes vito-drive-in-hero {
    0% {
        transform: translate(650px, 90px) scale(0.55) rotate(5deg);
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.94;
    }
}

/* Ensure content layers are properly aligned and responsive */
.hero-content {
    position: relative;
    z-index: 2 !important;
    animation: hero-fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

.booking-widget {
    position: relative;
    z-index: 2 !important;
    animation: hero-fade-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(226, 220, 208, 0.8) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), var(--gold-shadow) !important;
}

@keyframes hero-fade-up {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile adjustments for cinematic slide and overlay */
@media (max-width: 991px) {
    .hero {
        background: linear-gradient(to bottom, 
            rgba(250, 248, 245, 0.96) 0%, 
            rgba(250, 248, 245, 0.92) 45%, 
            rgba(250, 248, 245, 0.8) 75%, 
            rgba(250, 248, 245, 0.96) 100%
        ), url('assets/hero_bg.png') no-repeat center center/cover !important;
        padding-top: 130px;
    }
    .hero-vehicle-showcase {
        display: none !important;
    }


    /* Hero slider mobile overrides */
    .hero-slider-section {
        padding-top: 110px;
        min-height: auto;
        padding-bottom: 2.5rem;
    }

    .hero-slider-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-slider-left {
        min-height: 320px;
    }

    .hero-slide-title {
        font-size: 2.1rem;
    }

    .hero-slide-desc {
        font-size: 0.95rem;
    }

    .hero-arrow-prev { left: 0.75rem; }
    .hero-arrow-next { right: 0.75rem; }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .hero-trust-badges-slider {
        flex-wrap: wrap;
    }

    .hero-vehicle-badge {
        bottom: 1rem;
        font-size: 0.72rem;
        padding: 0.35rem 1rem;
    }
}


/* --- Dark Luxury Rhythm for Fleet Section --- */
#fleet {
    background: #0c0d0f !important;
    border-top: 1px solid rgba(195, 154, 92, 0.15);
    border-bottom: 1px solid rgba(195, 154, 92, 0.15);
    padding: 6rem 0;
}

#fleet .section-title {
    color: #ffffff !important;
}

#fleet .section-subtitle {
    color: #a1a8b5 !important;
}

#fleet .fleet-card {
    background: #14161a !important;
    border: 1px solid rgba(195, 154, 92, 0.22) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

#fleet .fleet-card:hover {
    border-color: var(--accent-gold-hover) !important;
    box-shadow: 0 20px 40px rgba(195, 154, 92, 0.15), 0 5px 15px rgba(0, 0, 0, 0.5) !important;
    transform: translateY(-8px);
}

#fleet .fleet-title {
    color: #ffffff !important;
}

#fleet .fleet-specs {
    border-bottom: 1px solid rgba(195, 154, 92, 0.15) !important;
    color: #d9dfeb !important;
}

#fleet .fleet-feature-item {
    color: #a1a8b5 !important;
}

#fleet .fleet-feature-item i {
    color: var(--accent-gold) !important;
}

#fleet .fleet-price-label {
    color: #8b94a0 !important;
}

#fleet .fleet-price {
    color: var(--accent-gold) !important;
}

/* --- Immersive Cinematic VIP Preloader Style --- */
.vip-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c0d0f;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
}

.vip-preloader.fade-out {
    opacity: 0;
    transform: scale(1.05);
    visibility: hidden;
}

.preloader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/vip_vito_real.png') no-repeat center center/cover;
    filter: brightness(0.28) blur(1px);
    transform: scale(1.03);
    animation: preloader-bg-zoom 3.5s ease-out forwards;
}

.preloader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(12, 13, 15, 0.85) 100%), 
                linear-gradient(to bottom, rgba(12, 13, 15, 0.5) 0%, rgba(12, 13, 15, 0.9) 100%);
}

.preloader-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.preloader-logo {
    margin-bottom: 2rem;
    animation: preloader-logo-fade 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.preloader-logo-img {
    height: 90px;
    width: auto;
}

.preloader-bar-container {
    width: 260px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin: 1.5rem auto;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(195, 154, 92, 0.15);
}

.preloader-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    box-shadow: 0 0 8px var(--accent-gold);
    animation: preloader-fill-progress 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-status {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: preloader-pulse 1.6s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-top: 1rem;
}

/* Keyframes */
@keyframes preloader-bg-zoom {
    0% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1.08);
    }
}

@keyframes preloader-logo-fade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes preloader-fill-progress {
    to {
        width: 100%;
    }
}

@keyframes preloader-pulse {
    0%, 100% {
        opacity: 0.55;
    }
    50% {
        opacity: 1;
    }
}

/* ===================================================
   VIP WIDGET TABS & OPTIONS ADDITIONS
   =================================================== */
.booking-tab {
    transition: all 0.3s ease;
}
.booking-tab:hover {
    color: var(--accent-gold) !important;
}
.booking-tab.active {
    border-bottom: 2px solid var(--accent-gold) !important;
    color: var(--accent-gold) !important;
}
.btn-guide-trigger {
    transition: all 0.3s ease;
}
.btn-guide-trigger:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}
.bb-group.return-date-group {
    animation: slideDownFade 0.3s ease forwards;
}
@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Canlı Rezervasyon FOMO Bildirim Kutusu */
.fomo-notification {
    position: fixed;
    bottom: 105px;
    left: 30px;
    z-index: 9998;
    background: rgba(14, 17, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.05);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    max-width: 320px;
    width: calc(100vw - 60px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.fomo-notification.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 768px) {
    .fomo-notification {
        bottom: 85px;
        left: 20px;
        width: calc(100vw - 40px);
        max-width: 340px;
    }
}

/* Tabela Canlı Önizleme & Araç İçi Galeri Stilleri */
.btn-outline-gallery {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.btn-outline-gallery:hover {
    background: rgba(212, 175, 55, 0.08) !important;
    border-color: var(--accent-gold) !important;
    color: var(--accent-gold) !important;
}

.welcome-sign-board {
    border: 3px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(135deg, #111 0%, #1e1e1e 100%), linear-gradient(135deg, #f5d060 0%, #d4af37 50%, #c9972a 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    animation: gold-pulse-border 3s infinite ease-in-out;
}

@keyframes gold-pulse-border {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 10px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.3);
    }
}

/* Popüler Otel Kartları Hover Animasyonları */
.hotel-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hotel-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold) !important;
    box-shadow: var(--gold-shadow);
    background: var(--bg-tertiary) !important;
}

.hotel-card:hover .hotel-hover-arrow {
    opacity: 1 !important;
    transform: translateY(-5px);
}

/* Responsive Fixes to Prevent Mobile Layout Shifts and Overflows */
@media (max-width: 768px) {
    .booking-tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 0.25rem !important;
        margin-bottom: 0.8rem !important;
        border-bottom: 1px solid var(--border-color);
        scrollbar-width: none; /* Firefox */
    }
    .booking-tabs::-webkit-scrollbar {
        display: none; /* Safari/Chrome */
    }
    .booking-tab {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.6rem !important;
        flex-shrink: 0;
    }
    .weather-badge-container {
        font-size: 0.72rem !important;
        padding: 0.4rem 0.8rem !important;
        width: 100% !important;
        border-radius: 8px !important;
        text-align: center;
        margin-bottom: 1rem !important;
    }
    .booking-section-inner {
        padding: 1.5rem !important;
        border-radius: 12px !important;
    }
    .booking-bar-form {
        gap: 1rem !important;
    }
    .bb-group {
        width: 100% !important;
    }
    .bb-divider {
        display: none !important; /* hide arrows in mobile stack */
    }
    .hotels-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
        gap: 1.2rem !important;
    }
    .hotel-card {
        min-height: 120px !important;
        padding: 1.2rem !important;
    }
    .welcome-sign-board {
        transform: scale(0.95);
        max-width: 290px !important;
    }
}

@media (max-width: 480px) {
    .welcome-sign-board {
        transform: scale(0.9);
        max-width: 270px !important;
    }
    .booking-section-inner {
        padding: 1rem !important;
    }
    .booking-tab {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.5rem !important;
    }
}
.brochure-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.brochure-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold) !important;
    box-shadow: var(--gold-shadow);
}

/* VIP Gold Card Styles */
.vip-luxury-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.vip-luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
}

.vip-luxury-card:hover {
    transform: translateY(-10px) rotateX(10deg) rotateY(-10deg);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(195, 154, 92, 0.3) !important;
    border-color: #ffffff !important;
}

.vip-luxury-card:hover::before {
    left: 150%;
    transition: all 1.2s ease-in-out;
}

@media (max-width: 991px) {
    .vip-club-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center;
    }
    .vip-club-grid div {
        align-items: center !important;
    }
    .vip-club-grid ul {
        justify-content: center;
        text-align: left;
    }
    .vip-club-grid button {
        margin: 0 auto;
    }
}

/* =====================================================
   MOBILE-FIRST COMPLETE FIX
   No horizontal scroll · No layout shift · No image jump
   ===================================================== */

/* 1. GLOBAL: Hard block any overflow — applied unconditionally */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* 2. HERO SLIDER: Prevent perspective transform from creating horizontal overflow */
.hero-slider-section {
    overflow: hidden !important;
    perspective: none !important; /* perspective causes overflow on mobile */
    width: 100% !important;
    max-width: 100vw !important;
}

.hero-slides-bg {
    overflow: hidden !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
}

/* Hero background images: prevent scale overflow */
.hero-slide-bg {
    background-attachment: scroll !important; /* fixed causes CLS on iOS */
    background-size: cover !important;
    background-position: center center !important;
    transform-origin: center center;
    overflow: hidden;
    will-change: opacity;
}

/* Stop hero text container from creating overflow */
.hero-text-center {
    width: 100% !important;
    padding: 0 1rem !important;
    left: 0 !important;
    right: 0 !important;
    overflow: hidden;
}

.hero-slide-content {
    overflow: hidden;
    width: 100%;
}

/* 3. HERO CONTROLS: keep pill inside viewport */
.hero-slide-controls {
    max-width: calc(100vw - 2rem) !important;
    overflow: hidden !important;
}

/* 4. CONTAINER: never wider than viewport */
.container {
    width: 100% !important;
    max-width: 1280px;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
}

/* 5. ALL SECTIONS: hard clamp */
section, footer, .booking-section-below, .features-section {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
}

header {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: visible !important;
}

/* 6. FLOATING BUTTONS: keep within safe area */
.whatsapp-float {
    bottom: env(safe-area-inset-bottom, 20px);
    right: 20px;
    z-index: 9999;
}

.instagram-float {
    bottom: env(safe-area-inset-bottom, 20px);
    left: 20px;
    z-index: 9999;
}

/* =====================================================
   TABLET — up to 1024px
   ===================================================== */
@media (max-width: 1024px) {
    /* Hamburger nav */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem;
        gap: 1.2rem;
        z-index: 98;
        box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        overflow-x: hidden;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-slide-title {
        font-size: 2.4rem;
    }
}

/* =====================================================
   MOBILE — up to 768px
   ===================================================== */
@media (max-width: 768px) {

    /* --- Global layout resets --- */
    .section-padding {
        padding: 3.5rem 0 !important;
    }

    .section-title {
        font-size: 1.7rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
    }

    .section-title-wrap {
        margin-bottom: 2rem !important;
    }

    /* --- Hero slider --- */
    .hero-slider-section {
        min-height: 100svh !important; /* svh = small viewport height, avoids iOS address bar jump */
        padding-top: 140px !important;
    }

    .hero-slide-title {
        font-size: 1.85rem !important;
        line-height: 1.2 !important;
    }

    .hero-slide-desc {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.2rem !important;
    }

    .hero-slide-badge {
        font-size: 0.68rem !important;
        padding: 0.3rem 0.8rem !important;
    }

    .hero-slide-features {
        gap: 0.4rem !important;
        margin-bottom: 1.2rem !important;
    }

    .hero-slide-features span {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.7rem !important;
    }

    .hero-trust-badges-slider {
        flex-wrap: wrap !important;
        gap: 0.6rem !important;
        justify-content: center !important;
    }

    .htb-item {
        padding: 0.4rem 0.7rem !important;
        font-size: 0.8rem !important;
    }

    /* Slider controls pill — prevent overflow */
    .hero-slide-controls {
        bottom: 1.2rem !important;
        gap: 0.7rem !important;
        padding: 0.45rem 0.9rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        max-width: calc(100vw - 2rem) !important;
    }

    .hero-dot {
        width: 7px !important;
        height: 7px !important;
    }

    .hero-slide-dots {
        gap: 0.4rem !important;
    }

    /* Hero airport badge */
    .hero-airport-badge {
        font-size: 0.7rem !important;
        padding: 0.35rem 0.8rem !important;
        top: 110px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        white-space: nowrap !important;
    }

    /* Vehicle badge */
    .hero-vehicle-badge {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.8rem !important;
        bottom: 80px !important;
    }

    /* --- Navigation container --- */
    .nav-container {
        height: 115px !important;
        padding: 10px 1rem 0 1rem !important;
        align-items: flex-start !important;
        position: relative !important;
    }

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

    .nav-actions {
        gap: 0.6rem !important;
        align-items: center !important;
        height: 50px !important;
    }

    #nav-call-btn {
        position: absolute !important;
        bottom: 8px !important;
        left: 1rem !important;
        right: 1rem !important;
        width: calc(100% - 2rem) !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.78rem !important;
        padding: 0.4rem 1rem !important;
        height: 34px !important;
    }

    /* Currency dropdown */
    .currency-dropdown-btn,
    .lang-switch {
        font-size: 0.78rem !important;
        padding: 0.3rem 0.5rem !important;
    }

    /* --- Booking section --- */
    .booking-section-below {
        padding: 1.5rem 0 !important;
    }

    .booking-section-inner {
        padding: 1.2rem 1rem !important;
        border-radius: 12px !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .weather-badge-container {
        font-size: 0.72rem !important;
        padding: 0.4rem 0.9rem !important;
        width: 100% !important;
        border-radius: 8px !important;
        text-align: center;
        justify-content: center;
        margin-bottom: 1rem !important;
    }

    .booking-tabs {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 0.2rem !important;
        margin-bottom: 0.8rem !important;
        scrollbar-width: none;
        border-bottom: 1px solid var(--border-color);
    }

    .booking-tabs::-webkit-scrollbar {
        display: none;
    }

    .booking-tab {
        font-size: 0.78rem !important;
        padding: 0.35rem 0.7rem !important;
        flex-shrink: 0 !important;
    }

    .booking-bar-form {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
    }

    .bb-group {
        width: 100% !important;
        min-width: 0 !important;
    }

    .bb-divider {
        display: none !important;
    }

    .bb-btn {
        width: 100% !important;
        padding: 0.9rem !important;
        font-size: 0.95rem !important;
    }

    .bb-rates {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.4rem !important;
        flex-wrap: wrap !important;
    }

    #live-rates-display {
        flex-wrap: wrap !important;
        gap: 0.35rem !important;
    }

    /* Return trip toggle */
    .booking-section-label {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }

    /* --- Fleet section --- */
    .fleet-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    /* --- Features grid --- */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* --- Hotel cards --- */
    .hotels-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem !important;
    }

    .hotel-card {
        min-height: 110px !important;
        padding: 1rem !important;
    }

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 0.8rem !important;
        text-align: center !important;
    }

    /* --- Form grid rows --- */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    /* --- Floating buttons - mobile sizing --- */
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        font-size: 22px !important;
        bottom: 20px !important;
        right: 16px !important;
    }

    .instagram-float {
        width: 50px !important;
        height: 50px !important;
        font-size: 22px !important;
        bottom: 20px !important;
        left: 16px !important;
    }

    /* --- Chatbot widget --- */
    .chatbot-widget {
        bottom: 80px !important;
        left: 16px !important;
        right: auto !important;
    }

    .chat-drawer {
        width: min(calc(100vw - 2rem), 340px) !important;
        height: 420px !important;
        bottom: 75px !important;
        left: 0 !important;
        right: auto !important;
    }

    /* --- FOMO notification --- */
    .fomo-notification {
        bottom: 80px !important;
        left: 12px !important;
        width: calc(100vw - 24px) !important;
        max-width: 340px !important;
    }

    /* --- Brochure showcase --- */
    .brochure-showcase > div {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    /* --- Modal sizing --- */
    .modal-container {
        max-width: calc(100vw - 2rem) !important;
        max-height: 90vh !important;
        margin: 1rem !important;
        border-radius: 12px !important;
        overflow-y: auto !important;
    }

    /* Welcome sign board */
    .welcome-sign-board {
        max-width: 280px !important;
        transform: scale(0.9);
    }
}

/* =====================================================
   SMALL MOBILE — up to 480px
   ===================================================== */
@media (max-width: 480px) {

    .hero-slide-title {
        font-size: 1.55rem !important;
    }

    .hero-slide-desc {
        font-size: 0.85rem !important;
    }

    .hero-slide-features span {
        font-size: 0.7rem !important;
        padding: 0.28rem 0.55rem !important;
    }

    /* Only 2 feature pills visible on small screens */
    .hero-slide-features span:nth-child(3) {
        display: none !important;
    }

    .hotels-grid {
        grid-template-columns: 1fr !important;
    }

    .booking-section-inner {
        padding: 0.9rem !important;
    }

    .welcome-sign-board {
        max-width: 250px !important;
        transform: scale(0.85);
    }

    .chat-drawer {
        width: calc(100vw - 1.5rem) !important;
        left: 0 !important;
        right: auto !important;
    }

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

    .nav-actions {
        gap: 0.4rem !important;
    }
}

/* =====================================================
   PULSE ANIMATIONS (live dot)
   ===================================================== */
@keyframes pulse-live-dot {
    0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70%  { transform: scale(1);    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* =====================================================
   GLOBAL IMAGE SAFETY — prevents CLS and overflow
   ===================================================== */
img {
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

/* =====================================================
   FINAL MOBILE OVERRIDES — NO HORIZONTAL SCROLL
   Images won't nest/overlap, grids are clamped
   ===================================================== */
@media (max-width: 600px) {

    /* Steps grid: always 1 column on small screens */
    .steps-grid {
        grid-template-columns: 1fr !important;
    }

    /* Brochure showcase: always 1 column */
    .brochure-showcase > div,
    [style*="repeat(auto-fit, minmax(280px"] {
        grid-template-columns: 1fr !important;
    }

    /* Sights / tours: 1 column */
    .sights-grid {
        grid-template-columns: 1fr !important;
    }

    /* Fleet: 1 column */
    .fleet-grid {
        grid-template-columns: 1fr !important;
    }

    /* Features: 1 column */
    .features-grid {
        grid-template-columns: 1fr !important;
    }

    /* Regions: 1 column */
    .regions-grid {
        grid-template-columns: 1fr !important;
    }

    /* Hero arrows: hide on small phones, swipe is enough */
    .hero-slider-arrow {
        display: none !important;
    }

    /* Clamp section padding */
    .section-padding {
        padding: 2.5rem 0 !important;
    }

    /* Booking tab text smaller */
    .booking-tab {
        font-size: 0.72rem !important;
        padding: 0.3rem 0.5rem !important;
    }

    /* Step card images — fixed height prevents jump */
    .step-img-wrap {
        height: 140px !important;
    }

    /* Fleet card image containment */
    .fleet-card-img {
        height: 200px !important;
        overflow: hidden !important;
    }

    .fleet-card-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Hero vehicle badge — remove on very small screens */
    .hero-vehicle-badge {
        display: none !important;
    }

    /* Call me popup stays on screen */
    #callme-popup {
        width: calc(100vw - 20px) !important;
        right: 10px !important;
        bottom: 200px !important;
    }
}

/* Prevent any child from breaking out of body */
body > * {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Standalone chatbot responsive overrides */
@media (max-width: 480px) {
    #mvip-chat-wrap {
        left: 15px !important;
        bottom: 85px !important;
    }
    #mvip-panel {
        width: calc(100vw - 30px) !important;
        height: 440px !important;
        bottom: 68px !important;
    }
}
