/* ==========================================
   GAZOVA BLACK - VIP SUPERAPP CORE STYLES
   ========================================== */

:root {
    --gold: #c5a059;
    --gold-hover: #d8b266;
    --dark: #080808;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --bg-img: url('https://images.unsplash.com/photo-1514316454349-750a7fd3da3a?q=80&w=1974&auto=format&fit=crop');
    --text-color: #fff;
    --text-muted: #888;
}

/* ==========================================
   ELITE SİNEMATİK INTRO / PRELOADER EKRANI
   ========================================== */
#intro-screen {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out, clip-path 1.2s cubic-bezier(0.8, 0, 0.2, 1);
}

#intro-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--gold);
    letter-spacing: 12px;
    margin-bottom: 5px;
    text-shadow: 0 0 30px rgba(197, 160, 89, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: introFadeIn 1.5s ease forwards 0.2s;
}

.intro-welcome {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: introFadeIn 1.5s ease forwards 0.8s;
}

.intro-loader-container {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 auto 15px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    animation: introFadeIn 1s ease forwards 1.2s;
}

#intro-loader-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, transparent, var(--gold), #fff, var(--gold), transparent);
    background-size: 200% 100%;
    box-shadow: 0 0 15px var(--gold);
    transition: width 0.15s ease-out;
}

.intro-status-wrap {
    display: flex;
    justify-content: space-between;
    width: 300px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 2px;
    opacity: 0;
    animation: introFadeIn 1s ease forwards 1.2s;
}

.intro-scanning {
    animation: introBlink 1s infinite;
}

@keyframes introFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introBlink {
    50% {
        opacity: 0.3;
    }
}

/* ==========================================
   LÜKS GÜNDÜZ MODU (PREMIUM YACHT THEME)
   ========================================== */
.light-mode {
    --dark: #f0ebe3;
    --glass: rgba(255, 255, 255, 0.72);
    --border: rgba(197, 160, 89, 0.4);
    --text-color: #1a1a1a;
    --text-muted: #666;
}

.light-mode .bg-overlay {
    filter: none;
    background:
        radial-gradient(ellipse at 65% 0%, rgba(197, 160, 89, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 18% 90%, rgba(197, 160, 89, 0.09) 0%, transparent 50%),
        linear-gradient(170deg, #faf6f0 0%, #f2e9da 35%, #ece1ce 70%, #f3ece0 100%);
}

/* NAV */
.light-mode nav {
    background: rgba(244, 239, 233, 0.85);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(197, 160, 89, 0.25);
}

.light-mode .nav-links span,
.light-mode .nav-links a {
    color: #555;
}

.light-mode .nav-links span:hover,
.light-mode .nav-links a:hover {
    color: var(--gold);
}

/* HERO TEXT */
.light-mode .hero h1 {
    color: #100d08;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    font-weight: 900;
}

.light-mode .hero p {
    color: #4a3f30;
    text-shadow: none;
}

.light-mode .hero .subtitle {
    color: var(--gold);
    opacity: 0.9;
    letter-spacing: 6px;
}

/* SERVICE CARDS */
.light-mode .service-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.light-mode .service-body h3 {
    color: #1a1a1a;
}

.light-mode .service-body p {
    color: #555;
}

/* FLEET CARDS */
.light-mode .fleet-card {
    background: rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(197, 160, 89, 0.25) !important;
    border-top-color: rgba(197, 160, 89, 0.5) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}

.light-mode .fleet-card-img-wrap {
    background: transparent !important;
}

.light-mode .fleet-card-img-wrap::after {
    background: transparent !important; /* Removed milky gradient */
}

.light-mode .fleet-card:hover {
    background: #ffffff !important;
    border-color: var(--gold) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1), 0 0 25px rgba(197, 160, 89, 0.2) !important;
}

.light-mode .fleet-card-title h3 {
    color: #1a1a1a !important;
    text-shadow: none !important;
}

.light-mode .fleet-card-title .fleet-model-tag {
    color: #555 !important;
    font-weight: 600 !important;
}

.light-mode .fleet-spec-item {
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.light-mode .fleet-spec-item .spec-val {
    color: #926d2d !important; /* Darker gold for text readability */
}

.light-mode .fleet-spec-item .spec-label {
    color: #444 !important;
    font-weight: 600 !important;
}

.light-mode .fleet-feature-tag {
    color: #333 !important;
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
    font-weight: 500 !important;
}

.light-mode .fleet-card-footer {
    border-top-color: rgba(0, 0, 0, 0.08) !important;
}

.light-mode .fleet-price .price-from {
    color: #666 !important;
}

.light-mode .fleet-price .price-val {
    color: #1a1a1a !important;
}

.light-mode .fleet-price .price-val span {
    color: #888 !important;
}

.light-mode .fleet-book-btn {
    color: #000 !important;
}

.light-mode .fleet-seats-badge {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.12);
    color: #333;
}

/* FLEET TABS */
.light-mode .fleet-tab {
    color: #666;
    border-color: rgba(197, 160, 89, 0.4);
    background: rgba(255, 255, 255, 0.6);
}

.light-mode .fleet-tab:hover,
.light-mode .fleet-tab.active {
    background: rgba(197, 160, 89, 0.12);
    border-color: var(--gold);
    color: #8a6c2e;
}

/* FEATURES (feat-item) */
.light-mode .feat-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 12px 28px rgba(128, 98, 42, 0.08);
}

.light-mode .feat-item h3 {
    color: #1a1a1a;
}

.light-mode .feat-item p {
    color: #685c4f;
}

/* SEARCH CONTAINER */
.light-mode .search-container {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.light-mode .input-box {
    border-right-color: rgba(197, 160, 89, 0.2);
}

.light-mode .input-box input {
    color: #1a1a1a;
}

.light-mode .booking-mode-bar,
.light-mode .booking-search-main,
.light-mode .booking-hero-toggle,
.light-mode .booking-side-pill,
.light-mode .booking-flight-box {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(197, 160, 89, 0.18);
}

.light-mode .booking-mode-pill {
    color: #6f6458;
}

.light-mode .booking-mode-pill.active {
    color: #173628;
    box-shadow: 0 14px 28px rgba(17, 185, 129, .12), inset 0 0 0 1px rgba(17, 185, 129, .16);
}

.light-mode .booking-hero-toggle-copy strong,
.light-mode .booking-passenger-stepper strong {
    color: #1a1a1a;
}

.light-mode .booking-hero-toggle-copy small {
    color: #7f7366;
}

.light-mode .booking-mode-bar-compact,
.light-mode .booking-hero-toggle-inline,
.light-mode .booking-side-pill-inline {
    background: rgba(255, 255, 255, 0.82);
}

.light-mode .booking-hero-toggle-inline .booking-hero-toggle-copy small {
    color: #0b8a5e;
}

.light-mode .booking-hero-shell-classic .search-container {
    /* Dark contrasting bar so the form pops in ivory context */
    background:
        radial-gradient(circle at top center, rgba(255,255,255,0.04), transparent 28%),
        linear-gradient(180deg, rgba(30,27,22,0.96) 0%, rgba(20,18,14,0.98) 100%);
    border-color: rgba(197,160,89,0.22);
    box-shadow:
        0 28px 60px rgba(40,28,10,0.28),
        0 0 0 1px rgba(197,160,89,0.14) inset;
}

.light-mode .booking-inline-controls {
    border-bottom: 1px solid rgba(197, 160, 89, 0.14);
}

.light-mode .booking-hero-shell-classic .input-box {
    background: transparent;
}

.light-mode .booking-passenger-btn {
    background: rgba(95, 70, 26, 0.08);
    color: #8a6c2e;
}

.light-mode .booking-hero-shell-classic .input-box {
    background: rgba(255, 255, 255, 0.16);
}

/* AUTH MODAL */
.light-mode .glass-modal-box {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(197, 160, 89, 0.3);
}

.light-mode .modal-title {
    color: #1a1a1a;
}

.light-mode .auth-form input {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
    color: #1a1a1a;
}

.light-mode .auth-form input::placeholder {
    color: #999;
}

.light-mode .access-portal-eyebrow,
.light-mode .portal-social-ic {
    background: rgba(197, 160, 89, 0.12);
    border-color: rgba(197, 160, 89, 0.22);
}

/* PORTAL BUTTONS */
.light-mode .portal-btn {
    color: #333;
    border-color: rgba(197, 160, 89, 0.4);
}

.light-mode .portal-btn:hover {
    color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
}

.light-mode .signature-pill,
.light-mode .hero-editorial-strip,
.light-mode .search-container {
    background: rgba(255, 255, 255, 0.78);
}

.light-mode .hero-cta-secondary {
    color: #1a1a1a;
    border-color: rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.72);
}

.light-mode .hero-marquee span,
.light-mode .editorial-item span {
    color: #666;
}

/* AUTOCOMPLETE */
.light-mode .autocomplete-list {
    background: rgba(244, 239, 233, 0.98);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.light-mode .autocomplete-item {
    color: #333;
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.light-mode .autocomplete-item:hover {
    background: rgba(197, 160, 89, 0.1);
}

/* MOBILE MENU */
.light-mode .mobile-vip-menu {
    background: rgba(244, 239, 233, 0.98);
    border-left: 1px solid rgba(197, 160, 89, 0.3);
}

.light-mode .mobile-links span,
.light-mode .mobile-links a {
    border-bottom-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

.light-mode .mobile-links a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* VIPKOKPIT & VEHICLES */
.light-mode .vip-kokpit,
.light-mode .lux-vehicle-card,
.light-mode .route-detail-card,
.light-mode .map-vip-controls button {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.light-mode .kokpit-item h2,
.light-mode .lux-price-tag h2,
.light-mode .route-body b {
    color: #1a1a1a;
}

.light-mode .kokpit-item span,
.light-mode .kokpit-item p,
.light-mode .route-body p {
    color: #555;
}

/* MAP */
.light-mode .map-container,
.light-mode .full-screen-map {
    background: #e9e5df;
}

/* CONTACT PAGE */
.light-mode .contact-container {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(197, 160, 89, 0.2);
    border-top-color: rgba(197, 160, 89, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.light-mode .contact-info {
    border-right-color: rgba(0, 0, 0, 0.08);
}

.light-mode .info-item h4 {
    color: #888;
}

.light-mode .info-item p {
    color: #1a1a1a;
}

.light-mode .info-item i {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
    border-top-color: rgba(197, 160, 89, 0.4);
}

.light-mode .contact-form input,
.light-mode .contact-form textarea {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}

.light-mode .contact-form input::placeholder,
.light-mode .contact-form textarea::placeholder {
    color: #999;
}

.light-mode .contact-form input:focus,
.light-mode .contact-form textarea:focus {
    background: rgba(197, 160, 89, 0.05);
    border-color: rgba(197, 160, 89, 0.7);
}

/* ==========================================
   GENEL AYARLAR
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.3s ease, transform 0.3s ease;
}

body {
    background-color: var(--dark);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.bg-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(20, 20, 20, 0) 0%, var(--dark) 90%), var(--bg-img) center/cover;
    z-index: -1;
    filter: grayscale(0.5) brightness(0.4);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   GOOGLE PLACES AUTOCOMPLETE DARK THEME
   ========================================== */
.pac-container {
    z-index: 99999 !important;
    background-color: rgba(10, 10, 10, 0.98) !important;
    border: 1px solid rgba(197, 160, 89, 0.3) !important;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    margin-top: 5px;
    min-width: 320px !important;
}

.pac-item {
    color: #e8e8e8 !important;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 12px 15px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: normal !important;
    line-height: 1.5;
}

.pac-item:hover {
    background-color: rgba(197, 160, 89, 0.15) !important;
}

.pac-item-query {
    color: var(--gold) !important;
    font-weight: 700;
}

.pac-matched {
    color: var(--gold) !important;
}

.light-mode .pac-container {
    background-color: rgba(255, 255, 255, 0.98) !important;
}

.light-mode .pac-item {
    color: #1a1a1a !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* NAVIGATION */
nav {
    padding: 20px 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid transparent;
    /* Fixed Sticky Setup */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 9000;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    align-items: center;
}

.nav-links span {
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-links span:hover {
    color: var(--gold);
}

.nav-links span,
.nav-links a {
    position: relative;
}

.nav-links span::after,
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.nav-links span:hover::after,
.nav-links a:hover::after,
.nav-links .active::after {
    transform: scaleX(1);
}

/* VIP DROPDOWN */
.vip-dropdown-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
.vip-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(12, 12, 12, 0.96);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.vip-dropdown-container:hover .vip-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.mode-toggle:hover {
    background: var(--gold);
    color: #000;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 50px 20px;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.home-hero {
    isolation: isolate;
}

.hero-shell {
    width: min(1120px, calc(100% - 32px));
    padding-inline: 20px;
}

.hero-spotlight {
    position: absolute;
    inset: auto auto 10% 50%;
    width: min(58vw, 760px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    transform: translateX(calc(-50% + var(--spotlight-x, 0px))) translateY(var(--spotlight-y, 0px)) scale(var(--spotlight-scale, 1));
    background:
        radial-gradient(circle, rgba(197, 160, 89, 0.24) 0%, rgba(197, 160, 89, 0.12) 28%, rgba(197, 160, 89, 0.04) 48%, rgba(197, 160, 89, 0) 72%);
    filter: blur(10px);
    z-index: 1;
    pointer-events: none;
    animation: heroGlow 7s ease-in-out infinite alternate;
}

.signature-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    margin-bottom: 26px;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.22);
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.78) 0%, rgba(10, 10, 10, 0.52) 100%);
    backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 45px rgba(0, 0, 0, 0.3);
    font-size: 10px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.signature-pill-line {
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.8), transparent);
}

.hero-lead {
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    box-shadow: 0 18px 40px rgba(197, 160, 89, 0.2);
}

.hero-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    padding: 21px 28px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.hero-cta-secondary:hover {
    border-color: rgba(197, 160, 89, 0.5);
    color: var(--gold);
    background: rgba(197, 160, 89, 0.08);
}

.hero-editorial-strip {
    width: min(900px, 100%);
    margin-top: 30px;
    padding: 18px 22px;
    border-radius: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    border: 1px solid rgba(197, 160, 89, 0.14);
    background:
        linear-gradient(180deg, rgba(19, 19, 19, 0.84) 0%, rgba(8, 8, 8, 0.7) 100%);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.editorial-item {
    position: relative;
    text-align: left;
    padding: 6px 18px;
}

.editorial-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    width: 1px;
    height: 80%;
    background: linear-gradient(180deg, transparent, rgba(197, 160, 89, 0.35), transparent);
}

.editorial-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
}

.editorial-item span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-marquee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.hero-marquee span {
    position: relative;
    padding-right: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.hero-marquee span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: 0;
    color: rgba(197, 160, 89, 0.7);
}

.hero p.subtitle {
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

/* SERVICES SECTION */
.services-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 80px;
    animation: fadeUp 1s ease 0.3s forwards;
    opacity: 0;
}

.service-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 350px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15);
}

.service-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--gold);
    transition: transform 0.6s ease;
}

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

.service-body {
    padding: 30px 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    background: linear-gradient(0deg, #050505 0%, transparent 100%);
    z-index: 2;
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

.service-body h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.service-body p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.service-btn span {
    transition: transform 0.3s ease;
}

.service-btn:hover {
    color: #fff;
}

.service-btn:hover span {
    transform: translateX(5px);
}

/* NEON ORBS DECORATION */
.neon-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
    animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(197, 160, 89, 0.25);
    /* Gold */
    bottom: -100px;
    left: 10%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(10, 10, 10, 0.8);
    /* Dark contrast */
    top: 20%;
    right: -100px;
    animation-delay: -4s;
    animation-duration: 15s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    /* White highlight */
    top: -50px;
    left: 30%;
    animation-delay: -8s;
}

@keyframes floatOrb {
    0% {
        transform: translateY(0) scale(1) translateX(0);
    }

    100% {
        transform: translateY(-60px) scale(1.1) translateX(30px);
    }
}

/* CONTACT PAGE SUPER GLASSMORPHISM */
.contact-container {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 40px;
    max-width: 1100px;
    width: 100%;

    /* İleri Seviye Cam (Glass) Efekti */
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.65) 0%, rgba(5, 5, 5, 0.85) 100%);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-top: 1px solid rgba(197, 160, 89, 0.45);
    /* Işık yansıması */
    border-left: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 30px;
    padding: 50px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.7),
        inset 0 0 30px rgba(197, 160, 89, 0.03),
        0 0 40px rgba(197, 160, 89, 0.08);
    /* Hafif dış sarı neon parlaması */

    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    flex-shrink: 0;
    font-size: 22px;
    color: var(--gold);
    /* Premium Glass Squircle */
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(197, 160, 89, 0.5);
    /* Zarif üst ışık yansıması */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow:
        inset 0 4px 15px rgba(255, 255, 255, 0.02),
        0 10px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-item:hover i {
    transform: scale(1.1) rotate(5deg);
    background: rgba(197, 160, 89, 0.08);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.25);
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.8);
}

.info-item h4 {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    /* Subdued label */
    margin-bottom: 6px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.info-item p {
    font-size: 14px;
    color: #fff;
    /* Bright value */
    line-height: 1.6;
    font-weight: 300;
}

.contact-form {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form .input-group {
    flex: 1;
    width: 100%;
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    /* Saydam cam kutular */
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 18px 25px;
    border-radius: 16px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(197, 160, 89, 0.8);
    background: rgba(197, 160, 89, 0.05);
    box-shadow:
        inset 0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(197, 160, 89, 0.25);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .cta-button {
    border-radius: 16px;
    /* Kutularla uyumlu köşe */
    background: linear-gradient(135deg, var(--gold) 0%, #aa8343 100%);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20b858;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    background: #fff;
    color: #000;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        padding: 30px;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 0;
        padding-bottom: 30px;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

/* HOME SLIDESHOW */
#home-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#home-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    transform: scale(1.05);
    /* Slight zoom out effect */
}

#home-slideshow .slide.active {
    opacity: 1;
    transform: scale(1);
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.4) 50%, rgba(5, 5, 5, 0.8) 100%);
    z-index: 2;
}

.main-tab.active,
.main-tab-mobile.active {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}

/* SEARCH CONTAINER */
.search-container {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
        rgba(34, 34, 34, 0.12);
    backdrop-filter: blur(38px) saturate(145%);
    -webkit-backdrop-filter: blur(38px) saturate(145%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 14px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    max-width: 1100px;
    width: 95%;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    box-shadow:
        0 24px 46px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    z-index: 100;
}

.booking-hero-shell {
    width: min(1320px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.booking-mode-bar {
    width: min(980px, 100%);
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 28px;
    border: 1px solid rgba(197, 160, 89, 0.14);
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.72), rgba(9, 9, 9, 0.58));
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
}

.booking-mode-pill {
    border: none;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 18px;
    background: transparent;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .28s ease;
}

.booking-mode-pill.active {
    background: linear-gradient(160deg, rgba(17, 185, 129, .22), rgba(10, 106, 74, .10) 52%, rgba(255, 255, 255, .04));
    color: #fff;
    box-shadow: 0 16px 30px rgba(17, 185, 129, .14), inset 0 0 0 1px rgba(17, 185, 129, .18);
    position: relative;
    padding-right: 42px;
}

.booking-mode-pill.active::after {
    content: "✓";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #20c997, #0e9f6e);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(17, 185, 129, .24);
}

.booking-mode-pill-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.12);
    color: var(--gold);
    font-size: 14px;
}

.booking-search-container {
    width: min(1320px, 100%);
    border-radius: 38px;
    padding: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 18px;
    align-items: stretch;
}

.booking-search-main {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr .9fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.booking-search-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.booking-input-lg {
    min-height: 112px;
    justify-content: center;
    padding-top: 18px;
    padding-bottom: 18px;
}

.booking-datetime-box .booking-date-time-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking-datetime-box .booking-date-time-row input {
    min-width: 0;
}

.booking-hero-toggle {
    min-height: 112px;
    padding: 18px 18px 16px;
    border-radius: 26px;
    border: 1px solid rgba(197, 160, 89, 0.12);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    position: relative;
}

.booking-hero-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booking-hero-toggle-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-hero-toggle-copy strong {
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #fff;
}

.booking-hero-toggle-copy small {
    font-size: 12px;
    color: var(--text-muted);
}

.booking-toggle-ui-hero {
    flex: 0 0 auto;
}

.booking-hero-toggle input:checked+.booking-toggle-ui-hero {
    background: linear-gradient(135deg, #26d46d, #1cab5a);
    border-color: rgba(38, 212, 109, .22);
}

.booking-hero-toggle input:checked+.booking-toggle-ui-hero::after {
    left: 34px;
}

.booking-side-pill {
    min-height: 112px;
    padding: 18px 18px 16px;
    border-radius: 26px;
    border: 1px solid rgba(197, 160, 89, 0.12);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.booking-side-pill span {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1.4px;
}

.booking-side-pill select {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 24px;
    font-weight: 700;
    outline: none;
    font-family: 'Inter', sans-serif;
    appearance: none;
}

.booking-search-footer {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 16px;
    align-items: stretch;
}

.booking-flight-box {
    min-height: 92px;
    border-radius: 26px;
    border-right: none;
    border: 1px solid rgba(197, 160, 89, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.booking-hero-submit {
    min-height: 92px;
    border-radius: 28px;
    font-size: 14px;
    letter-spacing: 1.6px;
    box-shadow: 0 22px 42px rgba(197, 160, 89, 0.18);
}

.booking-hero-shell-classic {
    width: min(1280px, 100%);
    position: relative;
    padding-top: 96px;
}

.booking-hero-shell-classic .search-container {
    margin-top: 0;
    padding: 14px 20px;
    border-radius: 44px;
    flex-wrap: nowrap;
    gap: 0;
    background:
        linear-gradient(180deg, rgba(18, 18, 18, 0.86) 0%, rgba(10, 10, 10, 0.92) 100%);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.booking-inline-controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 6px 6px 16px;
}

.booking-top-controls {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 96px);
    max-width: 1180px;
    z-index: 2;
    padding: 0;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.booking-inline-tabs,
.booking-inline-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.booking-inline-tabs {
    flex: 1 1 auto;
    justify-content: flex-start;
}

.booking-inline-meta {
    flex: 0 0 auto;
    justify-content: flex-end;
}

.booking-hero-toggle-inline {
    min-height: 76px;
    padding: 12px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(197, 160, 89, 0.12);
}

.booking-hero-toggle-inline .booking-hero-toggle-copy {
    gap: 2px;
}

.booking-hero-toggle-inline .booking-hero-toggle-copy strong {
    font-size: 11px;
    letter-spacing: 1.1px;
}

.booking-side-pill-inline {
    min-height: 76px;
    padding: 12px 16px;
    border-radius: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.028);
    border-color: rgba(197, 160, 89, 0.12);
}

.booking-side-pill-inline span {
    white-space: nowrap;
}

.booking-passenger-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-passenger-stepper strong {
    min-width: 92px;
    font-size: 18px;
    color: #fff;
    letter-spacing: .2px;
    text-align: center;
}

.booking-passenger-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all .24s ease;
}

.booking-passenger-btn:hover {
    background: rgba(17, 185, 129, .16);
    color: #8ff2ca;
}

.booking-hero-shell-classic .input-box {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    min-height: 96px;
    justify-content: center;
}

.booking-classic-bar #booking-form-submit {
    flex: 0 0 290px;
    min-height: 72px;
    margin-left: 18px;
    border-radius: 999px;
}

.input-box {
    flex: 1;
    padding: 15px 25px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    min-height: 78px;
}

.input-box::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 25px;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.55;
}

.input-box:last-of-type {
    border-right: none;
}

.input-box span {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.input-box input {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 14px;
    width: 100%;
    outline: none;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.input-box input::placeholder {
    color: var(--text-muted);
}

.input-box input:focus {
    border-bottom: 1px solid var(--gold);
}

.cta-button {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 22px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.cta-button:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.25);
}

.cta-button:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

/* PORTAL BUTTONS */
.portal-btn {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.portal-btn:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

@keyframes heroGlow {
    from {
        opacity: 0.62;
        filter: blur(14px);
    }

    to {
        opacity: 0.96;
        filter: blur(8px);
    }
}

/* AUTOCOMPLETE */
.autocomplete-list {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid var(--border);
    border-radius: 18px;
    z-index: 1500;
    max-height: 280px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.autocomplete-list::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-list::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.35);
    border-radius: 10px;
}

.autocomplete-item {
    padding: 14px 18px;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    text-align: left;
}

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

.autocomplete-item:hover {
    background: rgba(197, 160, 89, 0.08);
    color: var(--gold);
}

.autocomplete-item strong {
    color: var(--gold);
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
    font-weight: 700;
}

.autocomplete-item small {
    color: var(--text-muted);
    display: block;
    font-size: 11px;
    line-height: 1.5;
}

.vip-suggest {
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.12) 0%, rgba(197, 160, 89, 0.04) 100%) !important;
    border-left: 3px solid var(--gold) !important;
}

/* MAP */
.map-container {
    width: 100%;
    max-width: 1100px;
    height: 450px;
    border-radius: 24px;
    margin-top: 40px;
    border: 1px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
    position: relative;
    overflow: hidden;
    background: #0b0b0b;
}

.map-container>div {
    border-radius: 24px;
}

.full-screen-map {
    position: fixed !important;
    inset: 20px !important;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    z-index: 5000 !important;
    border-radius: 28px !important;
    background: #0b0b0b;
}

.full-screen-map>div {
    border-radius: 28px !important;
}

/* GOOGLE MAP POLISH */
.gm-style iframe+div,
.gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-tc::after {
    border-radius: 16px !important;
}

.gm-style .gm-style-iw-c {
    padding: 10px 12px !important;
    background: rgba(12, 12, 12, 0.94) !important;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38) !important;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
}

.gm-style .gm-ui-hover-effect {
    top: 4px !important;
    right: 4px !important;
    opacity: 0.8;
}

.gm-style .gm-ui-hover-effect span {
    filter: invert(1);
}

/* ROUTE DETAIL CARD */
.route-detail-card {
    position: absolute;
    bottom: 24px;
    left: 18px;
    width: 300px;
    max-width: calc(100% - 36px);
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.94) 0%, rgba(8, 8, 8, 0.98) 100%);
    border: 1px solid rgba(197, 160, 89, 0.34);
    border-radius: 18px;
    color: #fff;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 1000;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    animation: fadeUp 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.route-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.route-header span {
    font-size: 10px;
    letter-spacing: 2.2px;
    color: var(--gold);
    font-weight: 800;
}

.route-header button {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
}

.route-header button:hover {
    background: rgba(197, 160, 89, 0.16);
    color: var(--gold);
    transform: scale(1.06);
}

.route-body {
    padding: 12px 16px 16px;
}

.route-body p {
    margin: 7px 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
}

.route-body b {
    color: #fff;
    font-size: 14px;
}

/* MAP VIP CONTROLS */
.map-vip-controls {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1200;
}

.map-vip-controls button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.78);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
}

.map-vip-controls button:hover {
    transform: translateY(-2px) scale(1.04);
    background: rgba(197, 160, 89, 0.14);
    border-color: rgba(197, 160, 89, 0.56);
    color: var(--gold);
}

/* VIP KOKPIT PANEL */
.vip-kokpit {
    margin-top: 30px;
    max-width: 1100px;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    justify-content: space-around;
    backdrop-filter: blur(20px);
    animation: fadeUp 0.8s ease forwards;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.kokpit-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid var(--border);
}

.kokpit-item:last-child {
    border-right: none;
}

.kokpit-item span {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: 800;
}

.kokpit-item h2 {
    font-size: 26px;
    color: #fff;
    margin: 8px 0;
    font-family: 'Inter', sans-serif;
}

.kokpit-item p {
    font-size: 11px;
    color: var(--text-muted);
}

/* LUXURY VEHICLE LIST */
.deals-container {
    margin-top: 30px;
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lux-vehicle-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 25px 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.lux-vehicle-card:hover {
    border-color: var(--gold);
    transform: scale(1.02);
    background: rgba(197, 160, 89, 0.05);
}

.lux-info-main {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lux-info-main h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
}

.lux-info-main p {
    font-size: 12px;
    color: var(--text-muted);
}

.lux-price-tag {
    text-align: right;
}

.lux-price-tag h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
}

.lux-book-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    cursor: pointer;
}

.lux-book-btn:hover {
    background: var(--gold);
    color: #000;
}

/* ==========================================
   FLEET VIEW VIDEO BACKGROUND
   ========================================== */
.fleet-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    max-width: none !important;
    /* Zoom to crop out any black pillarboxing encoded in the video file */
    transform: scale(1.25);
    transform-origin: center center;
}

.fleet-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    /* Reduced darkness so the cards don't look murky */
    background: rgba(0, 0, 0, 0.45);
}

.light-mode .fleet-bg-overlay {
    /* Premium light overlay respecting the yacht theme */
    background: rgba(244, 239, 233, 0.55);
}

/* FEATURES */
.features {
    display: flex;
    gap: 60px;
    margin-top: 80px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    flex-wrap: wrap;
    justify-content: center;
}

.feat-item {
    padding: 18px 22px;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

.feat-item h3 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1.5;
}

.feat-item p {
    font-size: 13px;
    color: var(--text-muted);
    max-width: none;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   RESPONSIVE & MOBILE
   ========================================== */
@media (max-width: 1000px) {
    nav {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

    .vip-nav-actions {
        display: none !important;
    }

    /* Hide desktop login on mobile */
    nav > div > span[onclick*="toggleAuthModal"],
    nav > div > a[href*="customer.php"] {
        display: none !important;
    }

    .hero-shell {
        width: calc(100% - 20px);
        padding-inline: 10px;
    }

    .signature-pill {
        letter-spacing: 2px;
        padding: 11px 16px;
    }

    .hero-editorial-strip {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .editorial-item {
        text-align: center;
        padding-inline: 6px;
    }

    .editorial-item:not(:last-child)::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -7px;
        width: 68%;
        height: 1px;
        transform: translateX(-50%);
    }

    .search-container {
        border-radius: 30px;
        flex-direction: column;
        padding: 25px;
    }

    .booking-mode-pill {
        flex: 1 1 calc(33.333% - 8px);
        justify-content: center;
        min-width: 150px;
    }

    .booking-inline-controls,
    .booking-inline-tabs,
    .booking-inline-meta {
        width: 100%;
        justify-content: center;
    }

    .booking-hero-shell-classic {
        padding-top: 18px;
    }

    .booking-top-controls {
        position: static;
        width: 100%;
        max-width: none;
        transform: none;
        margin-bottom: 14px;
        padding: 0 8px;
    }

    .booking-hero-shell-classic .search-container {
        flex-wrap: wrap;
        padding: 12px;
    }

    .booking-inline-meta {
        gap: 12px;
    }

    .booking-hero-toggle-inline,
    .booking-side-pill-inline {
        width: 100%;
        justify-content: space-between;
    }

    .booking-side-pill-inline {
        align-items: flex-start;
    }

    .booking-hero-shell-classic .input-box {
        min-height: auto;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .booking-classic-bar #booking-form-submit {
        flex: 1 1 100%;
        width: 100%;
        margin-left: 0;
        margin-top: 12px;
    }

    .booking-passenger-stepper {
        width: 100%;
        justify-content: space-between;
    }

    .booking-passenger-stepper strong {
        min-width: 0;
        font-size: 20px;
    }

    .input-box {
        border-right: none;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }

    .map-container {
        height: 380px;
    }

    .vip-kokpit {
        flex-direction: column;
        gap: 20px;
    }

    .kokpit-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 15px;
    }

    .lux-vehicle-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .lux-info-main {
        flex-direction: column;
        gap: 10px;
    }

    .route-detail-card {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 16px;
    }

    .map-vip-controls {
        top: 12px;
        right: 12px;
    }

    .map-vip-controls button {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .hamburger-btn {
        display: flex !important;
    }
}

/* ==========================================
   VIP MOBİL MENÜ (GLASSMORPHISM)
   ========================================== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger-btn span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

.mobile-vip-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 3000;
    transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 1px solid var(--border);
    padding: 60px 30px;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.8);
}

.mobile-vip-menu.active {
    right: 0;
}

.mob-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2999;
    transition: opacity 0.3s ease;
}

.mob-menu-overlay.active {
    display: block;
}


.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.mobile-links span {
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

/* ── MOBİL MENU ACCORDION ── */
.mob-accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
    transition: color 0.3s;
}

.mob-accordion:hover {
    color: var(--gold);
}

.mob-acc-arrow {
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    flex-shrink: 0;
    opacity: 0.6;
}

.mob-accordion.open .mob-acc-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.mob-accordion.open {
    color: var(--gold);
}

.mob-accordion-body {
    display: none;
    flex-direction: column;
    gap: 0;
    padding-left: 10px;
    border-left: 2px solid rgba(197,160,89,0.25);
    margin-bottom: 10px;
    overflow: hidden;
}

.mob-accordion-body.open {
    display: flex;
}

.mob-accordion-body a {
    text-decoration: none;
    color: #999;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 0 10px 12px;
    transition: color 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.mob-accordion-body a:hover {
    color: var(--gold);
}

/* ── MOBİL GİRİŞ YAP BUTONU ── */
.mob-login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(197,160,89,0.15), rgba(197,160,89,0.05));
    border: 1px solid rgba(197,160,89,0.3);
    border-radius: 12px;
    padding: 12px 18px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.mob-login-btn:hover {
    background: rgba(197,160,89,0.2);
    border-color: var(--gold);
}

/* ── MOBİL TEMA SATIRI ── */
.mob-theme-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 10px 0;
    transition: color 0.3s;
}

.mob-theme-row:hover {
    color: var(--gold);
}

/* ==========================================
   ULTRA GLASS VIP AUTH MODAL (3-WAY)
   ========================================== */
.glass-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 16px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.glass-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    align-items: flex-start;
}

/* Şişe Şeffaflığı ve Altın Neon Aura */
.glass-modal-box {
    background: rgba(255, 255, 255, 0.042);
    backdrop-filter: blur(64px) saturate(190%);
    -webkit-backdrop-filter: blur(64px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 30px;
    padding: 45px;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.055) inset,
        0 64px 128px rgba(0, 0, 0, 0.60),
        0 4px 48px rgba(197, 160, 89, 0.07);
    animation: modalGlowFade 0.5s ease-out;
}

@keyframes modalGlowFade {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(40px);
        box-shadow: 0 0 0 transparent;
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
        box-shadow: 0 0 50px rgba(197, 160, 89, 0.15);
    }
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

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

.modal-title {
    text-align: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 25px;
}

.access-portal-box {
    max-width: 620px;
    padding: 36px 36px 32px;
    background: rgba(255, 255, 255, 0.042);
    backdrop-filter: blur(64px) saturate(190%);
    -webkit-backdrop-filter: blur(64px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.055) inset,
        0 64px 128px rgba(0, 0, 0, 0.58),
        0 4px 48px rgba(197, 160, 89, 0.07);
}
.access-portal-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.88) 50%, transparent);
    border-radius: 30px 30px 0 0;
    pointer-events: none;
}
.access-portal-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 90px;
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.04), transparent);
    border-radius: 30px 30px 0 0;
    pointer-events: none;
}

.access-portal-hero {
    text-align: center;
    margin-bottom: 24px;
}

.access-portal-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.24);
    background: rgba(197, 160, 89, 0.08);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.access-portal-subcopy {
    margin: 0 auto;
    max-width: 460px;
    color: #9f978d;
    font-size: 14px;
    line-height: 1.75;
}

.access-portal-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.access-portal-metrics span,
.portal-footer-note {
    color: #a79b89;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.access-portal-metrics span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

/* 3'LÜ SWITCH TASARIMI (Bireysel / Acenta / Şoför) */
.auth-switch-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.auth-switch {
    position: relative;
    display: flex;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-switch input {
    display: none;
}

.auth-switch label {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s;
}

.auth-switch input:checked+label {
    color: #000;
}

.switch-selector {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(33.333% - 3.33px);
    height: calc(100% - 10px);
    background: var(--gold);
    border-radius: 50px;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.auth-switch input[value="b2c"]:checked~.switch-selector {
    transform: translateX(0);
}

.auth-switch input[value="b2b"]:checked~.switch-selector {
    transform: translateX(100%);
}

.auth-switch input[value="driver"]:checked~.switch-selector {
    transform: translateX(200%);
}

.portal-mode-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 6px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 14px;
}

.portal-mode-btn {
    border: none;
    min-height: 48px;
    border-radius: 14px;
    background: transparent;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
}

.portal-mode-btn.active {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.16), rgba(197, 160, 89, 0.06));
    color: var(--gold);
    box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.18);
}

.portal-sector-note {
    margin: 0 0 14px;
    color: #968b7d;
    font-size: 13px;
    line-height: 1.7;
}

.portal-social-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.portal-social-btn {
    min-height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #ece2d3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all .3s ease;
}

.portal-social-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(197, 160, 89, 0.28);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.portal-social-btn.is-disabled {
    opacity: .45;
}

.portal-social-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(240, 234, 216, 0.75);
    font-size: 13px;
    font-weight: 700;
}

/* Provider-specific icon colours */
[data-social-provider="google"] .portal-social-ic   { background: #fff; color: #111; font-size: 12px; font-weight: 800; font-family: Arial, sans-serif; }
[data-social-provider="facebook"] .portal-social-ic { background: #1877f2; color: #fff; font-size: 14px; font-weight: 900; }
[data-social-provider="apple"] .portal-social-ic {
    background: #e8e8e8;
    font-size: 0;
}
[data-social-provider="apple"] .portal-social-ic::after {
    display: block;
    width: 14px;
    height: 14px;
    content: "";
    background: #111;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98l-.09.06c-.22.14-2.18 1.27-2.16 3.8.03 3.02 2.65 4.03 2.68 4.04l-.07.28M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98l-.09.06c-.22.14-2.18 1.27-2.16 3.8.03 3.02 2.65 4.03 2.68 4.04l-.07.28M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z'/%3E%3C/svg%3E") center / contain no-repeat;
}
[data-social-provider="phone"] .portal-social-ic    { background: rgba(197, 160, 89, 0.18); color: #e8cb7d; }

.portal-social-btn span:last-child {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.portal-panes {
    margin-top: 4px;
}

.portal-pane {
    display: none;
}

.portal-pane.active {
    display: block;
    animation: fadeUp .28s ease;
}

/* Form bloğu tamamen şeffaf — bg yok, sadece inputlar görünür */
.auth-form {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.portal-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

/* FORM ALANLARI VE NEON IŞIK EFEKTLERİ */
.auth-form .input-group {
    margin-bottom: 15px;
}

.auth-form input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
    color: #f0ead8;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.auth-form input::placeholder {
    color: rgba(240, 234, 216, 0.28);
}

.auth-form input:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.10);
}

.auth-form input:focus {
    border-color: rgba(197, 160, 89, 0.58);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.11);
}

.neon-border input:focus {
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

.hidden-fields {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hidden-fields.show {
    max-height: 250px;
    opacity: 1;
    margin-top: 15px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding-top: 15px;
}

.modal-btn {
    width: 100%;
    margin-top: 10px;
    border-radius: 13px;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.8px;
    background: linear-gradient(135deg, #c5a059 0%, #e8cb7d 100%);
    box-shadow: 0 8px 28px rgba(197, 160, 89, 0.22);
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.modal-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.28) 50%, transparent 65%);
    transform: translateX(-200%);
    transition: transform 0.55s ease;
}
.modal-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(197, 160, 89, 0.32);
}
.modal-btn:hover::after { transform: translateX(200%); }
.modal-btn:active { transform: translateY(0) scale(0.98); }

.portal-footer-note {
    margin-top: 16px;
    text-align: center;
    line-height: 1.7;
}

.light-mode .access-portal-box {
    background: rgba(255, 252, 247, 0.82);
    border-color: rgba(95, 70, 26, 0.12);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.7) inset,
        0 48px 100px rgba(111, 81, 30, 0.16);
}
.light-mode .auth-form input {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(95, 70, 26, 0.14);
    color: #1a1508;
}
.light-mode .auth-form input::placeholder { color: rgba(26, 21, 8, 0.32); }

.light-mode .access-portal-subcopy,
.light-mode .portal-sector-note,
.light-mode .portal-footer-note,
.light-mode .access-portal-metrics span {
    color: #786a56;
}

.light-mode .portal-mode-shell,
.light-mode .portal-social-btn,
.light-mode .access-portal-metrics span {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(197, 160, 89, 0.16);
}

.light-mode .portal-social-btn {
    color: #2d2217;
}

.light-mode .portal-mode-btn {
    color: #726453;
}

.light-mode .portal-mode-btn.active {
    color: #8a6c2e;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.16), rgba(197, 160, 89, 0.04));
}

@media(max-width:760px) {
    .access-portal-box {
        width: calc(100% - 20px);
        max-width: none;
        padding: 26px 18px 22px;
        border-radius: 24px;
    }

    .modal-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .access-portal-subcopy {
        font-size: 13px;
    }

    .portal-social-row,
    .portal-grid-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ==========================================
   FİLOMUZ - ARAÇ GALERİSİ
   ========================================== */
#fleet-view {
    justify-content: flex-start;
    padding-top: 140px;
    min-height: 100vh;
}

.fleet-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeUp 0.8s ease forwards;
}

.fleet-category-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.1s forwards;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.fleet-tab {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.fleet-tab:hover,
.fleet-tab.active {
    background: rgba(197, 160, 89, 0.12);
    border-color: var(--gold);
    color: var(--gold);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    padding-bottom: 100px;
    animation: fadeUp 0.9s ease 0.2s forwards;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.fleet-card {
    background: rgba(22, 22, 22, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(197, 160, 89, 0.5);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    background: rgba(26, 26, 26, 0.9);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(197, 160, 89, 0.2);
}

.fleet-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #0d0d0d;
}

.fleet-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(1); /* Restored brightness */
}

.fleet-card:hover .fleet-card-img-wrap img {
    transform: scale(1.08);
    filter: brightness(1);
}

.fleet-card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.95) 0%, transparent 100%);
}

.fleet-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.5);
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.fleet-badge.badge-premium {
    background: rgba(197, 160, 89, 0.9);
    color: #000;
    border-color: var(--gold);
}

.fleet-seats-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fleet-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 14px;
}

.fleet-card-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.fleet-card-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.9);
}

.fleet-card-title .fleet-model-tag {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85); /* Much brighter so it's readable */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.fleet-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.fleet-spec-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
}

.fleet-spec-item .spec-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.fleet-spec-item .spec-label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
    display: block;
}

.fleet-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fleet-feature-tag {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.fleet-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fleet-price {
    display: flex;
    flex-direction: column;
}

.fleet-price .price-from {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fleet-price .price-val {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.fleet-price .price-val span {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.fleet-book-btn {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.fleet-book-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.35);
}

/* Filter hide */
.fleet-card[data-hidden="true"] {
    display: none;
}

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

    .fleet-category-tabs {
        gap: 8px;
    }

    .fleet-tab {
        padding: 8px 16px;
        font-size: 10px;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-marquee {
        gap: 10px 14px;
    }

    .hero-marquee span {
        font-size: 10px;
    }
}

/* ==========================================
   OTEL REZERVASYON MODALI
   ========================================== */
.hotel-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hotel-input-wrap label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700;
}

.hotel-input-wrap input,
.hotel-input-wrap select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hotel-input-wrap select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c5a059'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.hotel-input-wrap select option {
    background: #111;
    color: #fff;
}

.hotel-input-wrap input:focus,
.hotel-input-wrap select:focus {
    border-color: rgba(197, 160, 89, 0.7);
    background: rgba(197, 160, 89, 0.05);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.15);
}

/* Oda Kartları */
.hotel-room-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 3px solid rgba(197, 160, 89, 0.4);
    border-radius: 16px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotel-room-card:hover {
    background: rgba(197, 160, 89, 0.06);
    border-color: rgba(197, 160, 89, 0.5);
    border-left-color: var(--gold);
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hotel-room-info {
    flex: 1;
}

.hotel-room-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hotel-room-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.hotel-room-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.hotel-room-tags span {
    font-size: 10px;
    color: rgba(197, 160, 89, 0.8);
    border: 1px solid rgba(197, 160, 89, 0.25);
    padding: 3px 10px;
    border-radius: 50px;
}

.hotel-room-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.hotel-room-price .price-from {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hotel-room-price .price-val {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
}

/* Light mode overrides */
.light-mode .hotel-input-wrap input,
.light-mode .hotel-input-wrap select {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
    color: #1a1a1a;
}

.light-mode .hotel-room-card {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

.light-mode .hotel-room-info h4 {
    color: #1a1a1a;
}

@media (max-width: 600px) {
    .hotel-room-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .hotel-room-price {
        align-items: flex-start;
        flex-direction: row;
        gap: 14px;
        align-items: center;
    }
}

/* ==========================================
   HOTEL SLİDESHOW
   ========================================== */
.hotel-slideshow {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #0a0a0a;
}

.hotel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hotel-slide.active {
    opacity: 1;
}

.hotel-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--gold);
    font-size: 22px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(8px);
    padding: 0;
    line-height: 1;
}

.hotel-slide-btn:hover {
    background: rgba(197, 160, 89, 0.3);
    border-color: var(--gold);
}

.hotel-slide-btn.prev {
    left: 10px;
}

.hotel-slide-btn.next {
    right: 10px;
}

.hotel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.hotel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(197, 160, 89, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotel-dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 4px;
}

/* ==========================================
   BOOKING FORM FINAL OVERRIDE
   ========================================== */
.booking-hero-shell.booking-hero-shell-classic{
    width:min(1240px, calc(100% - 56px)) !important;
    margin:0 auto !important;
    display:flex !important;
    flex-direction:column !important;
    gap:12px !important;
    padding-top:0 !important;
}

.booking-tabs-bar{
    width:100%;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:0;
    padding:0 6px 12px;
    margin:0 0 2px;
    border-bottom:1px solid rgba(255,255,255,0.10);
}

.booking-tabs-left,
.booking-tabs-right{
    display:flex;
    align-items:center;
    gap:10px;
}

.booking-tabs-left{
    min-width:0;
    flex-wrap:wrap;
    justify-content:center;
}

.booking-tabs-right{
    flex:0 0 auto;
    display:none;
}

.booking-tabs-link{
    position:relative;
    min-height:48px;
    padding:0 14px;
    border:none;
    background:transparent;
    color:rgba(255,255,255,0.70);
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    border-radius:16px;
    transition:color .24s ease, background .24s ease, transform .24s ease;
}

.booking-tabs-link:hover{
    color:#fff;
    background:rgba(255,255,255,0.03);
}

.booking-tabs-link.active{
    color:#fff;
    padding-right:42px;
}

.booking-tabs-link.active::after{
    content:"";
    position:absolute;
    left:24px;
    right:24px;
    bottom:-13px;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.96), rgba(255,255,255,0.18));
    box-shadow:
        0 0 10px rgba(197,160,89,0.12),
        0 4px 18px rgba(197,160,89,0.10);
}

.booking-tabs-link.active::before{
    content:"✓";
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    width:24px;
    height:24px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:800;
    color:#fff;
    background:linear-gradient(135deg, #27d39a, #10b981);
    box-shadow:0 10px 20px rgba(16,185,129,0.28);
}

.booking-tabs-ic{
    width:28px;
    height:28px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    background:rgba(197,160,89,0.12);
    border:1px solid rgba(197,160,89,0.16);
    font-size:13px;
    flex:0 0 auto;
}

.booking-tabs-link.active .booking-tabs-ic{
    background:rgba(18,49,38,0.72);
    border-color:rgba(39,211,154,0.24);
    color:#8ff2ca;
}

.booking-tabs-stepper{
    display:flex;
    align-items:center;
    gap:10px;
}

.booking-tabs-stepper strong{
    min-width:64px;
    font-size:16px;
    color:#fff;
    text-align:center;
    white-space:nowrap;
}

.booking-form-stepper{
    width:100%;
    justify-content:space-between;
    gap:10px;
}

.booking-helper-passenger .booking-passenger-btn{
    width:40px;
    height:40px;
    border-radius:14px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border:1px solid rgba(255,255,255,0.08);
    color:var(--gold);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 8px 16px rgba(0,0,0,0.10);
}

.booking-helper-passenger .booking-passenger-btn:hover{
    background:
        linear-gradient(180deg, rgba(197,160,89,0.16), rgba(197,160,89,0.06));
    border-color:rgba(197,160,89,0.18);
    color:#efd49a;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 14px rgba(197,160,89,0.10),
        0 10px 18px rgba(0,0,0,0.12);
}

.booking-helper-passenger .booking-tabs-stepper strong{
    min-width:66px;
    font-size:17px;
    font-weight:700;
}

.booking-helper-bar{
    display:flex;
    align-items:stretch;
    justify-content:center;
    gap:12px;
    width:100%;
    margin-top:-2px;
}

.booking-helper-card{
    position:relative;
    min-height:56px;
    padding:0 16px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.04), transparent 34%),
        linear-gradient(180deg, rgba(16,16,16,0.72) 0%, rgba(10,10,10,0.80) 100%);
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 10px 22px rgba(0,0,0,0.14);
}

.booking-helper-card > span{
    font-size:10px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    color:var(--gold);
    white-space:nowrap;
}

.booking-helper-toggle{
    min-width:210px;
    justify-content:center;
    padding:0 52px 0 16px;
    cursor:pointer;
    user-select:none;
    text-align:center;
}

.booking-helper-passenger{
    min-width:246px;
    justify-content:space-between;
}

.booking-helper-toggle > span:first-child{
    width:100%;
    text-align:center;
}

.booking-helper-toggle::after{
    content:"";
    position:absolute;
    left:28px;
    right:28px;
    bottom:-10px;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, rgba(255,255,255,0.16), rgba(255,255,255,0.92), rgba(255,255,255,0.16));
    opacity:0;
    box-shadow:
        0 0 12px rgba(197,160,89,0.12),
        0 4px 18px rgba(197,160,89,0.10);
    transition:opacity .24s ease, box-shadow .24s ease;
}

.booking-helper-check{
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%) scale(.86);
    width:22px;
    height:22px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:800;
    color:#fff;
    background:linear-gradient(135deg, #27d39a, #10b981);
    box-shadow:0 10px 20px rgba(16,185,129,0.28);
    opacity:0;
    transition:opacity .24s ease, transform .24s ease;
}

.booking-helper-toggle.is-active::after{
    opacity:1;
}

.booking-helper-toggle.is-active .booking-helper-check{
    opacity:1;
    transform:translateY(-50%) scale(1);
}

.booking-helper-toggle:focus-visible{
    outline:2px solid rgba(255,255,255,0.7);
    outline-offset:3px;
}

.booking-hero-shell-classic .booking-top-controls{
    width:100% !important;
    margin:0 auto !important;
    padding:0 8px !important;
    display:grid !important;
    grid-template-columns:minmax(0, 1fr) auto !important;
    align-items:center !important;
    gap:12px !important;
    position:static !important;
    transform:none !important;
    overflow:hidden !important;
}

.booking-hero-shell-classic .booking-inline-tabs{
    min-width:0 !important;
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
    flex-wrap:nowrap !important;
    overflow:hidden !important;
}

.booking-hero-shell-classic .booking-inline-meta{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:10px !important;
    flex-wrap:nowrap !important;
}

.booking-hero-shell-classic .booking-mode-pill{
    min-height:54px !important;
    padding:0 18px !important;
    border-radius:18px !important;
    flex:0 1 auto !important;
}

.booking-hero-shell-classic .booking-hero-toggle-inline{
    min-width:150px !important;
    min-height:54px !important;
    padding:10px 14px !important;
    border-radius:18px !important;
}

.booking-hero-shell-classic .booking-side-pill-inline{
    min-width:198px !important;
    min-height:54px !important;
    padding:10px 14px !important;
    border-radius:18px !important;
}

.booking-hero-shell-classic .booking-passenger-stepper strong{
    min-width:64px !important;
    font-size:15px !important;
}

.booking-hero-shell-classic .search-container.booking-classic-bar{
    width:100% !important;
    margin:0 !important;
    padding:12px 14px 12px 18px !important;
    display:flex !important;
    align-items:stretch !important;
    flex-wrap:nowrap !important;
    gap:0 !important;
    border-radius:32px !important;
    background:linear-gradient(180deg, rgba(14,14,14,0.80) 0%, rgba(8,8,8,0.84) 100%) !important;
    backdrop-filter:blur(16px) saturate(118%) !important;
    -webkit-backdrop-filter:blur(16px) saturate(118%) !important;
}

.booking-hero-shell-classic .booking-classic-bar .input-box{
    min-height:86px !important;
    padding:12px 24px !important;
    border-right:1px solid rgba(255,255,255,0.10) !important;
    border-radius:0 !important;
    background:transparent !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
}

.booking-hero-shell-classic .booking-classic-bar .input-box:last-of-type{
    border-right:none !important;
}

.booking-hero-shell-classic .booking-classic-bar #booking-form-submit{
    flex:0 0 290px !important;
    width:290px !important;
    min-height:74px !important;
    margin:0 0 0 14px !important;
    align-self:center !important;
    border-radius:999px !important;
}

@media (max-width: 1180px){
    .booking-hero-shell-classic .booking-top-controls{
        display:flex !important;
        flex-wrap:wrap !important;
        padding:0 !important;
    }
    .booking-hero-shell-classic .booking-inline-tabs,
    .booking-hero-shell-classic .booking-inline-meta{
        width:100% !important;
    }
    .booking-hero-shell-classic .booking-inline-meta{
        justify-content:flex-start !important;
    }
    .booking-hero-shell-classic .search-container.booking-classic-bar{
        flex-wrap:wrap !important;
        padding:12px !important;
    }
    .booking-hero-shell-classic .booking-classic-bar .input-box{
        flex:1 1 calc(50% - 10px) !important;
        min-width:240px !important;
        border-right:none !important;
        border-radius:18px !important;
        background:rgba(255,255,255,0.03) !important;
        backdrop-filter:blur(16px) !important;
        -webkit-backdrop-filter:blur(16px) !important;
    }
    .booking-hero-shell-classic .booking-classic-bar #booking-form-submit{
        flex:1 1 100% !important;
        width:100% !important;
        margin:10px 0 0 !important;
    }
}

@media (max-width: 768px){
    .booking-hero-shell.booking-hero-shell-classic{
        width:min(100%, calc(100% - 16px)) !important;
    }

    .booking-tabs-bar{
        width:100%;
        align-items:stretch;
        flex-direction:column;
        overflow-x:auto;
        padding-bottom:10px;
        gap:6px;
    }

    .booking-tabs-left,
    .booking-tabs-right{
        width:100%;
        flex-wrap:wrap;
    }

    .booking-helper-bar{
        flex-wrap:wrap;
    }

    .booking-helper-toggle,
    .booking-helper-passenger{
        flex:1 1 220px;
    }

    .booking-tabs-link{
        font-size:14px;
        white-space:nowrap;
    }

    .booking-tabs-toggle{
        flex:1 1 220px;
        justify-content:space-between;
    }
    .booking-hero-shell-classic .booking-top-controls,
    .booking-hero-shell-classic .booking-inline-tabs,
    .booking-hero-shell-classic .booking-inline-meta{
        display:flex !important;
        flex-direction:column !important;
        align-items:stretch !important;
    }
    .booking-hero-shell-classic .booking-mode-pill,
    .booking-hero-shell-classic .booking-hero-toggle-inline,
    .booking-hero-shell-classic .booking-side-pill-inline{
        width:100% !important;
        min-width:0 !important;
    }
    .booking-hero-shell-classic .booking-classic-bar .input-box{
        flex:1 1 100% !important;
        min-width:0 !important;
        width:100% !important;
    }
}

/* ==========================================
   BOOKING TOP CONTROLS HARD FIX
   ========================================== */
.booking-hero-shell-classic .booking-top-controls{
    grid-template-columns:minmax(0, 620px) minmax(330px, 430px) !important;
    justify-content:space-between !important;
}

.booking-hero-shell-classic .booking-inline-tabs{
    justify-content:flex-start !important;
}

.booking-hero-shell-classic .booking-inline-meta{
    display:grid !important;
    grid-template-columns:minmax(150px, 1fr) minmax(190px, 1.15fr) !important;
    justify-content:end !important;
    align-items:stretch !important;
    gap:10px !important;
}

.booking-hero-shell-classic .booking-mode-pill{
    min-width:0 !important;
}

.booking-hero-shell-classic .booking-hero-toggle-inline,
.booking-hero-shell-classic .booking-side-pill-inline{
    width:100% !important;
    min-width:0 !important;
}

@media (max-width: 1320px){
    .booking-hero-shell-classic .booking-top-controls{
        grid-template-columns:minmax(0, 1fr) minmax(300px, 380px) !important;
    }
    .booking-hero-shell-classic .booking-inline-tabs{
        gap:8px !important;
    }
    .booking-hero-shell-classic .booking-mode-pill{
        padding:0 14px !important;
    }
}

@media (max-width: 1180px){
    .booking-hero-shell-classic .booking-top-controls{
        display:flex !important;
        flex-direction:column !important;
        align-items:stretch !important;
    }
    .booking-hero-shell-classic .booking-inline-meta{
        display:grid !important;
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
        justify-content:stretch !important;
    }
}

@media (max-width: 768px){
    .booking-hero-shell-classic .booking-inline-meta{
        grid-template-columns:1fr !important;
    }
}

/* ==========================================
   LIGHT MODE BOOKING POLISH
   ========================================== */
.light-mode #booking-view{
    position:relative;
}

.light-mode #booking-view::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 18%, rgba(214,180,108,0.12), transparent 24%),
        radial-gradient(circle at 78% 20%, rgba(255,255,255,0.55), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(244,239,233,0.04));
    pointer-events:none;
}

.light-mode #booking-view > *{
    position:relative;
    z-index:1;
}

.light-mode #booking-view .subtitle{
    color:#5f5a54;
    letter-spacing:6px;
}

.light-mode #booking-view h1{
    color:#111111;
    text-shadow:0 10px 30px rgba(255,255,255,0.65), 0 3px 10px rgba(0,0,0,0.08);
}

.light-mode .booking-tabs-bar{
    border-bottom-color:rgba(113,90,45,0.16);
}

.light-mode .booking-tabs-link{
    color:#786f63;
}

.light-mode .booking-tabs-link:hover{
    color:#1f1b16;
    background:rgba(197,160,89,0.06);
}

.light-mode .booking-tabs-link.active{
    color:#17130f;
}

.light-mode .booking-tabs-link.active::after{
    background:linear-gradient(90deg, rgba(197,160,89,0.14), rgba(132,103,47,0.96), rgba(197,160,89,0.14));
    box-shadow:
        0 0 10px rgba(197,160,89,0.10),
        0 4px 16px rgba(197,160,89,0.08);
}

.light-mode .booking-tabs-ic{
    background:rgba(197,160,89,0.10);
    border-color:rgba(197,160,89,0.18);
    color:#9b7730;
}

.light-mode .booking-tabs-link.active .booking-tabs-ic{
    background:rgba(21,103,72,0.12);
    border-color:rgba(21,103,72,0.16);
    color:#177b57;
}

.light-mode .booking-helper-card{
    border-color:rgba(197,160,89,0.14);
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.72), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(244,239,233,0.58) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.88),
        0 16px 30px rgba(155,123,60,0.10);
}

.light-mode .booking-helper-card > span,
.light-mode .booking-helper-passenger .booking-tabs-stepper strong{
    color:#2a2218;
}

.light-mode .booking-helper-toggle::after{
    background:linear-gradient(90deg, rgba(197,160,89,0.10), rgba(132,103,47,0.92), rgba(197,160,89,0.10));
    box-shadow:
        0 0 10px rgba(197,160,89,0.08),
        0 4px 14px rgba(197,160,89,0.07);
}

.light-mode .booking-helper-passenger .booking-passenger-btn{
    background:linear-gradient(180deg, rgba(255,255,255,0.82), rgba(239,232,223,0.88));
    border-color:rgba(197,160,89,0.16);
    color:#9b7730;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.95),
        0 8px 16px rgba(155,123,60,0.08);
}

.light-mode .booking-helper-passenger .booking-passenger-btn:hover{
    background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,239,229,0.96));
    color:#7b5b1c;
}

.light-mode .feat-item{
    background:
        radial-gradient(circle at top center, rgba(255,255,255,0.88), transparent 48%),
        linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(248,243,236,0.74) 100%);
    border:1px solid rgba(197,160,89,0.12);
    border-top-color:rgba(197,160,89,0.28);
    border-radius:26px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.95),
        0 18px 34px rgba(122,95,46,0.08);
    backdrop-filter:blur(10px);
}

.light-mode .feat-item h3{
    color:#20180f;
    letter-spacing:3px;
}

.light-mode .feat-item p{
    color:#5f564c;
    line-height:1.9;
}

/* ==========================================
   LIGHT MODE VIP BOOKING REFINEMENT
   ========================================== */
.light-mode .booking-hero-shell-classic{
    gap:22px;
}

.light-mode .booking-tabs-bar{
    width:min(980px, calc(100% - 40px));
    margin:0 auto;
    padding-bottom:18px;
    border-bottom-color:rgba(197,160,89,0.20);
}

.light-mode .booking-tabs-link{
    min-height:54px;
    padding:0 18px;
    border-radius:999px;
    background:linear-gradient(180deg, rgba(255,251,245,0.56), rgba(246,238,227,0.34));
    border:1px solid rgba(197,160,89,0.14);
    box-shadow:
        0 12px 24px rgba(163,129,67,0.06),
        inset 0 1px 0 rgba(255,255,255,0.72);
}

.light-mode .booking-tabs-link.active{
    background:linear-gradient(180deg, rgba(255,255,255,0.76), rgba(246,240,229,0.52));
    border-color:rgba(22,118,84,0.16);
    box-shadow:
        0 18px 36px rgba(17,96,69,0.10),
        inset 0 1px 0 rgba(255,255,255,0.76);
}

.light-mode .booking-classic-bar {
    background:
        radial-gradient(circle at 10% 10%, rgba(255,255,255,0.1), transparent 40%),
        rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.5);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}

.light-mode .booking-classic-bar .input-box span {
    color: #9a7430; /* Rich gold-brown label */
    font-weight: 700;
}

.light-mode .booking-classic-bar .input-box input {
    color: #1a1a1a;
}

.light-mode .booking-classic-bar .input-box input::placeholder {
    color: rgba(26,26,26,0.4);
}

.light-mode .booking-classic-bar .input-box {
    border-right-color: rgba(197, 160, 89, 0.18) !important;
}

/* Light mode - VIP select header text contrast */
.light-mode .booking-classic-bar .vip-select-header {
    color: #1a1a1a !important;
}

.light-mode .booking-classic-bar .vip-select-header svg {
    stroke: #9a7430 !important;
}

.light-mode .booking-classic-bar .cta-button{
    background:linear-gradient(135deg, #e0bc70 0%, #c99f49 100%);
    color:#18120b;
    box-shadow:
        0 18px 40px rgba(201,159,73,0.26),
        inset 0 1px 0 rgba(255,245,221,0.62);
}

.light-mode .booking-classic-bar .cta-button:hover{
    transform:translateY(-1px);
    box-shadow:
        0 24px 46px rgba(201,159,73,0.30),
        inset 0 1px 0 rgba(255,245,221,0.74);
}

.light-mode .booking-helper-bar{
    gap:16px;
    margin-top:-4px;
}

.light-mode .booking-helper-card{
    border-color:rgba(197,160,89,0.16);
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.82), transparent 48%),
        linear-gradient(180deg, rgba(252,248,242,0.82) 0%, rgba(244,236,224,0.64) 100%);
    box-shadow:
        0 18px 34px rgba(134,101,46,0.10),
        inset 0 1px 0 rgba(255,255,255,0.98);
    backdrop-filter:blur(12px);
}

.light-mode .booking-helper-toggle{
    min-width:264px;
}

.light-mode .booking-helper-card > span,
.light-mode .booking-helper-passenger .booking-tabs-stepper strong{
    color:#2a1d10;
    letter-spacing:1.7px;
}

.light-mode .booking-helper-passenger .booking-passenger-btn{
    background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(237,229,216,0.92));
    border-color:rgba(197,160,89,0.18);
    color:#9a742e;
    box-shadow:
        0 10px 18px rgba(161,122,60,0.10),
        inset 0 1px 0 rgba(255,255,255,0.98);
}

.light-mode .booking-helper-passenger .booking-passenger-btn:hover{
    color:#7b5a1a;
    background:linear-gradient(180deg, rgba(255,255,255,1), rgba(243,235,224,0.96));
}

/* Combined refined feat-item styles for light mode - final pass */
.light-mode .feat-item {
    position: relative;
    overflow: hidden;
    padding: 36px 32px 30px;
    background:
        linear-gradient(165deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.35);
    border-top-color: rgba(255,255,255,0.5);
    border-radius: 32px;
    box-shadow:
        0 22px 44px rgba(0,0,0,0.08),
        0 4px 8px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.light-mode .feat-item::before {
    content: "";
    position: absolute;
    left: 24px; right: 24px; top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(197,160,89,0.7), transparent);
    border-radius: 2px;
}

/* Gold icon header for each card */
.light-mode .feat-item::after {
    content: "✦";
    position: absolute;
    top: 22px; right: 24px;
    font-size: 13px;
    color: rgba(197,160,89,0.55);
    letter-spacing: 0;
}

.light-mode .feat-item h3 {
    color: #1a130a;
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 14px;
    font-weight: 800;
}

.light-mode .feat-item p {
    color: #5c5047;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
}

.light-mode .features {
    gap: 28px;
}

.light-mode .feat-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 60px rgba(100,75,30,0.14),
        0 4px 8px rgba(100,75,30,0.06),
        inset 0 1px 0 #fff;
}

/* Light mode VIP Booking Tabs */
.light-mode .booking-tabs-left {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.light-mode .booking-tabs-link {
    color: rgba(40,30,18,0.85);
    font-weight: 600;
    background: transparent;
}

.light-mode .booking-tabs-link.active {
    background: linear-gradient(135deg, rgba(197,160,89,0.18), rgba(197,160,89,0.05));
    border-color: rgba(197,160,89,0.45) !important;
    color: #7a5c18 !important;
    text-shadow: none;
    box-shadow: 0 0 20px rgba(197,160,89,0.15);
}

.light-mode .booking-tabs-link.active .booking-tabs-ic {
    color: var(--gold) !important;
}

/* Light mode Helper bar cards */
.light-mode .booking-helper-card {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.light-mode #roundtrip-label {
    color: #2a1d10;
}

.light-mode #passenger-count-display {
    color: #1a130a !important;
}

.light-mode .vip-chevron-btn {
    color: rgba(40,30,18,0.5) !important;
}

.light-mode .vip-chevron-btn:hover {
    color: var(--gold) !important;
}

.light-mode .booking-helper-toggle.is-active .vip-tumbler {
    border-color: var(--gold);
    background: rgba(197,160,89,0.15);
}

/* Light mode - Dark search bar input text */
.light-mode .booking-classic-bar .input-box span {
    color: rgba(197,160,89,0.9);
    font-weight: 700;
}

.light-mode .booking-classic-bar .input-box input {
    color: #f0ebe0;
}

.light-mode .booking-classic-bar .input-box input::placeholder {
    color: rgba(240,235,224,0.45);
}

.light-mode .booking-classic-bar .input-box {
    border-right-color: rgba(197,160,89,0.18) !important;
}

/* Light mode - VIP select inside dark bar */
.light-mode .vip-select-header {
    color: #f0ebe0;
}

.light-mode .booking-classic-bar .vip-select-header svg {
    stroke: rgba(197,160,89,0.8);
}


/* ==========================================
   BOOKING HERO LAYOUT FIX
   ========================================== */
.booking-hero-shell-classic {
    width: min(1360px, calc(100% - 24px));
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 0;
}

.booking-top-controls {
    position: static;
    transform: none;
    width: calc(100% - 40px);
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 18px;
    padding: 0;
    margin: 0 auto;
}

.booking-inline-tabs {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: hidden;
}

.booking-inline-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: nowrap;
}

.booking-mode-pill {
    min-height: 64px;
    padding: 0 20px;
    border-radius: 24px;
    flex: 0 0 auto;
}

.booking-hero-toggle-inline,
.booking-side-pill-inline {
    min-height: 64px;
    border-radius: 22px;
}

.booking-hero-toggle-inline {
    min-width: 168px;
    justify-content: center;
}

.booking-side-pill-inline {
    min-width: 220px;
}

.booking-passenger-stepper strong {
    min-width: 84px;
}

.booking-hero-shell-classic .search-container.booking-classic-bar {
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 0;
    padding: 18px 18px 18px 22px;
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.94) 0%, rgba(10, 10, 10, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 22px 46px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: visible;
}

.booking-hero-shell-classic .booking-classic-bar .input-box {
    flex: 1 1 0;
    min-width: 0;
    min-height: 112px;
    padding: 18px 26px;
    justify-content: center;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.booking-hero-shell-classic .booking-classic-bar .input-box:last-of-type {
    border-right: none;
}

.booking-hero-shell-classic .booking-classic-bar #flight-input-container {
    flex: 1.05 1 0;
}

.booking-classic-bar #booking-form-submit {
    flex: 0 0 330px;
    width: 330px;
    min-height: 92px;
    margin: 0 0 0 18px;
    align-self: center;
    border-radius: 999px;
}

@media (max-width: 1240px) {
    .booking-top-controls {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .booking-inline-tabs,
    .booking-inline-meta {
        width: 100%;
    }

    .booking-inline-meta {
        justify-content: flex-start;
    }

    .booking-hero-shell-classic .search-container.booking-classic-bar {
        flex-wrap: wrap;
        padding: 14px;
    }

    .booking-hero-shell-classic .booking-classic-bar .input-box {
        flex: 1 1 calc(50% - 12px);
        min-width: 260px;
        min-height: 90px;
        border-right: none;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .booking-classic-bar #booking-form-submit {
        flex: 1 1 100%;
        width: 100%;
        min-height: 78px;
        margin: 12px 0 0;
    }
}

@media (max-width: 768px) {
    .booking-hero-shell-classic {
        width: min(100%, calc(100% - 12px));
    }

    .booking-top-controls,
    .booking-inline-tabs,
    .booking-inline-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-top-controls {
        width: 100%;
    }

    .booking-inline-tabs,
    .booking-inline-meta {
        gap: 12px;
    }

    .booking-mode-pill,
    .booking-hero-toggle-inline,
    .booking-side-pill-inline {
        width: 100%;
        min-width: 0;
    }

    .booking-hero-shell-classic .search-container.booking-classic-bar {
        padding: 12px;
    }

    .booking-hero-shell-classic .booking-classic-bar .input-box {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .booking-hero-shell-classic .booking-classic-bar .input-box:last-of-type {
        border-bottom: none;
    }
}

/* ==========================================
   VIP FEATURE CARDS - LIGHT MODE ICON OVERRIDES
   ========================================== */
.light-mode .feat-icon {
    background: linear-gradient(135deg, rgba(197,160,89,0.16), rgba(197,160,89,0.04));
    border-color: rgba(197,160,89,0.38);
    color: #9a7430;
    box-shadow: 0 6px 18px rgba(197,160,89,0.12), inset 0 1px 0 #fff;
}

.light-mode .feat-item:hover .feat-icon {
    background: linear-gradient(135deg, rgba(197,160,89,0.28), rgba(197,160,89,0.10));
    box-shadow: 0 10px 28px rgba(197,160,89,0.22), inset 0 1px 0 #fff;
}

.light-mode .feat-line {
    background: linear-gradient(90deg, transparent, rgba(197,160,89,0.9), transparent);
    opacity: 0.8;
}

.light-mode .feat-item p {
    color: #5c5047;
    font-weight: 400;
}

/* LIGHT MODE - Booking Helper Pill ( make it warm white, not dark ) */
.light-mode #transfer-helper-bar .booking-helper-card,
.light-mode #tour-helper-bar .booking-helper-card {
    background: rgba(255,255,255,0.25) !important;
    border-color: rgba(255,255,255,0.4) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    color: #2a1d10;
}

.light-mode .vip-tumbler {
    background: rgba(0,0,0,0.15);
    border-color: rgba(197,160,89,0.5);
}

.light-mode .vip-select-header span {
    color: rgba(245,238,225,0.9);
}

/* ==========================================
   VIP AUTOCOMPLETE DROPDOWN (Google Places .pac-container)
   ========================================== */
.pac-container {
    background: rgba(14, 12, 10, 0.97) !important;
    border: 1px solid rgba(197, 160, 89, 0.35) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(197,160,89,0.12) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    overflow: hidden !important;
    padding: 8px 0 !important;
    margin-top: 8px !important;
    font-family: inherit !important;
}

.pac-container::after {
    display: none !important; /* hide Google logo */
}

.pac-item {
    background: transparent !important;
    border: none !important;
    border-top: 1px solid rgba(255,255,255,0.04) !important;
    padding: 12px 18px !important;
    cursor: pointer !important;
    transition: background 0.18s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.pac-item:first-child {
    border-top: none !important;
}

.pac-item:hover {
    background: rgba(197, 160, 89, 0.12) !important;
}

.pac-item-query,
.pac-matched {
    color: #FFDF00 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.pac-item > span:last-child {
    color: rgba(255,255,255,0.5) !important;
    font-size: 12px !important;
    font-weight: 300 !important;
}

.pac-icon {
    background-image: none !important;
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

/* Light mode: keep same dark bar feel for autocomplete */
.light-mode .pac-container {
    background: rgba(18, 15, 10, 0.98) !important;
    border-color: rgba(197, 160, 89, 0.40) !important;
    box-shadow: 0 20px 60px rgba(30, 20, 5, 0.60), 0 0 0 1px rgba(197,160,89,0.15) !important;
}

/* ==========================================
   BOOKING AMBIENT SLIDESHOW - Light Mode Only
   ========================================== */
.booking-ambient-slide {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 0; /* Behind content but above bg-overlay */
    overflow: hidden;
}

.light-mode #booking-view .booking-ambient-slide {
    display: block;
    position: absolute !important;
    z-index: 0 !important;
}

.bas-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    filter: blur(12px); /* Start blurred */
    transition: opacity 3s ease-in-out, filter 3s ease-in-out;
    animation: basKenBurns 20s linear infinite alternate;
}

.bas-slide:nth-child(even) {
    animation-direction: alternate-reverse;
}

.bas-slide.active {
    opacity: 0.70; /* Increased heavily for image clarity */
    filter: blur(0px); /* Sharpens as it fades in */
    z-index: 1;
}

@keyframes basKenBurns {
    0%   { transform: scale(1.02) translate(0, 0); }
    100% { transform: scale(1.1) translate(-15px, -5px); }
}

.bas-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(5,5,5,0.7) 100%), linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(5,5,5,0.85) 100%);
    pointer-events: none;
    z-index: 2;
}
.light-mode .bas-overlay {
    background: radial-gradient(ellipse at center, transparent 30%, rgba(255,255,255,0.2) 100%), linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(240,233,220,0.4) 100%);
}

/* Ensure booking content is above slideshow without blocking it */
#booking-view .subtitle,
#booking-view h1,
#booking-view .booking-hero-shell,
#booking-view .features,
#booking-view .map-container,
#booking-view .deals-container {
    position: relative;
    z-index: 2;
}
#booking-view .bookingWidget-con {
    position: relative;
    z-index: 1;
}

.bas-slide.last-active {
    opacity: 0.55;
    filter: blur(0px);
    z-index: 0;
}

/* ==========================================
   VIP GUEST PROMPT MODAL (INTERCEPTOR)
   ========================================== */
.guest-prompt-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 5, 0.85); /* Deep luxury dark */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.guest-prompt-overlay.visible {
    opacity: 1;
}

.guest-prompt-box {
    background: linear-gradient(145deg, #f5f1ea 0%, #ebe3d5 100%);
    border: 1px solid rgba(197, 160, 89, 0.4);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), inset 0 1px 0 #fff;
    border-radius: 28px;
    width: 90%;
    max-width: 480px;
    padding: 50px 40px;
    position: relative;
    text-align: center;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0;
}

.guest-prompt-overlay.visible .guest-prompt-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.gp-close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #8c7653;
    cursor: pointer;
    transition: color 0.3s;
}
.gp-close-btn:hover { color: #1a1a1a; }

.gp-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 20px;
    color: #9a742e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.gp-header h2 {
    font-size: 32px;
    color: #1a130a;
    margin-bottom: 16px;
    font-weight: 700;
}

.gp-header p {
    font-size: 15px;
    color: #5c5047;
    line-height: 1.6;
    margin-bottom: 36px;
}

.gp-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gp-btn-primary, .gp-btn-secondary {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gp-btn-primary {
    background: linear-gradient(135deg, #e0bc70 0%, #c99f49 100%);
    color: #1a1a1a;
    box-shadow: 0 10px 24px rgba(197, 160, 89, 0.3), inset 0 1px 0 rgba(255,255,255,0.4);
}
.gp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4), inset 0 1px 0 rgba(255,255,255,0.6);
}
.gp-btn-primary span { font-size: 16px; font-weight: 800; letter-spacing: 1px; }
.gp-btn-primary small { font-size: 12px; opacity: 0.8; font-weight: 600; }

.gp-btn-secondary {
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: #9a742e;
}
.gp-btn-secondary:hover {
    background: rgba(197, 160, 89, 0.05);
    border-color: rgba(197, 160, 89, 0.8);
}
.gp-btn-secondary span { font-size: 15px; font-weight: 700; letter-spacing: 1px; color: #1a1a1a; }
.gp-btn-secondary small { font-size: 12px; color: #7a6a55; }

.gp-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 8px 0;
}
.gp-divider::before, .gp-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}
.gp-divider span {
    padding: 0 16px;
    color: #a39581;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.gp-footer-note {
    margin-top: 24px;
    font-size: 12px;
    color: #8c7f6e;
    line-height: 1.5;
}

/* Dark mode generic overrides */
:not(.light-mode) .guest-prompt-box {
    background: linear-gradient(145deg, #1f1d1a 0%, #14120f 100%);
    border-color: rgba(197, 160, 89, 0.2);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
}
:not(.light-mode) .gp-header h2 { color: #f5ebe0; }
:not(.light-mode) .gp-header p { color: #a1978a; }
:not(.light-mode) .gp-btn-secondary span { color: #f5ebe0; }
:not(.light-mode) .gp-footer-note { color: #7c7263; }


/* ==========================================
   VIP FLOATING ACTION BUTTONS & HERO ANIMATION
   ========================================== */

.vip-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08); /* Frosted dark/light agnostic */
    border: 1px solid rgba(197, 160, 89, 0.35);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.1);
}

.vip-action-btn:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.2), inset 0 1px 0 rgba(255,255,255,0.2);
}

.vip-action-btn .icon {
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.vip-language-chip {
    min-width: auto;
    padding: 8px 12px;
    gap: 6px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.vip-language-chip .icon {
    font-size: 13px;
}

/* Light mode specific text readability for buttons */
.light-mode .vip-action-btn {
    background: rgba(255,255,255,0.9);
    color: #1a1a1a;
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05), inset 0 1px 0 #fff;
}
.light-mode .vip-action-btn:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(100,75,30,0.1), inset 0 1px 0 #fff;
}

/* HERO TITLE GOLD SWEEP ANIMATION */
/* Defines base color variable depending on mode */
:root {
    --h1-base: #f5ebe0;
}
.light-mode {
    --h1-base: #111111;
}

.hero-title-anim {
    background: linear-gradient(to right, #e0bc70 50%, #f5ebe0 50%);
    background-size: 200% 100%;
    /* Start with Base color (right half) */
    background-position: 100% 0;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: sweepLeftToRight 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.5s;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.light-mode .hero-title-anim {
    background: linear-gradient(to right, #cdaa63 50%, #1a1a1a 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255,255,255,0.6);
}

@keyframes sweepLeftToRight {
    0% { background-position: 100% 0; }
    100% { background-position: 0% 0; }
}


/* ==========================================
   VIP DAY/NIGHT TUMBLER & PIN BUTTON (NAVBAR)
   ========================================== */
.vip-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

/* Base shape of the tumbler track */
.vip-theme-tumbler {
    width: 62px;
    height: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08); /* Frosted dark/light agnostic */
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.05);
    border: 1px solid rgba(197, 160, 89, 0.4);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    transition: background 0.4s ease, border-color 0.4s ease;
}

/* Light Mode track background */
.light-mode .vip-theme-tumbler {
    background: rgba(0, 0, 0, 0.04); /* Soft gray indent */
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.1), 0 1px 0 rgba(255,255,255,0.9);
    border-color: rgba(197, 160, 89, 0.5);
}

.vtt-track {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    line-height: 1;
}

.vtt-icon {
    z-index: 3;
    transition: opacity 0.3s, color 0.3s;
    font-size: 15px;
    color: rgba(255,255,255,0.4); /* base faint state */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
}

/* In DARK mode, hide Moon (under knob), show Sun to indicate light-mode option */
:not(.light-mode) .vtt-moon { opacity: 0; }
:not(.light-mode) .vtt-sun { color: #e0bc70; opacity: 1; text-shadow: 0 0 5px rgba(224,188,112,0.4); }

/* In LIGHT mode, show Moon to indicate dark-mode option, hide Sun */
.light-mode .vtt-sun { opacity: 0; }
.light-mode .vtt-moon { color: #5c5047; opacity: 1; text-shadow: none; font-weight: bold; }

.vtt-knob {
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #e0bc70 0%, #c99f49 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.6), inset 0 1px 0 rgba(255,255,255,0.6);
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), background 0.4s;
    z-index: 1; /* Knob sits underneath the icons */
}

.light-mode .vtt-knob {
    left: 35px;
    background: linear-gradient(135deg, #f5f1ea 0%, #ebe3d5 100%);
    box-shadow: 0 4px 10px rgba(100,75,30,0.3), inset 0 1px 0 #fff;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

/* Pin Button */
.vip-pin-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.08); /* Transparent */
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.vip-pin-btn:hover {
    background: rgba(197, 160, 89, 0.2);
    border-color: #cdaa63;
    color: #cdaa63;
    transform: scale(1.05);
}

.light-mode .vip-pin-btn {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(197, 160, 89, 0.4);
    color: #4a3a2e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05), inset 0 1px 0 #fff;
}
.light-mode .vip-pin-btn:hover {
    background: #fff;
    color: #9a742e;
}


/* ========================================== */
/* VIP MAPBOX ROUTING MODAL */
/* ========================================== */

.vip-map-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99999;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.vip-map-modal.active {
    opacity: 1;
    visibility: visible;
}

.vip-map-loader {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

.gold-pulse-ring {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: pulseRing 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(215, 166, 74, 0.3);
}

.gold-pulse-ring i {
    color: var(--gold);
    font-size: 20px;
    animation: mapPinBop 1.5s infinite;
}

.loader-text {
    margin-top: 15px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

@keyframes pulseRing {
    0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(215, 166, 74, 0.5); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(215, 166, 74, 0); }
    100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(215, 166, 74, 0); }
}
@keyframes mapPinBop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

#vip-map-container {
    flex: 1;
    width: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.vip-map-modal.route-drawn #vip-map-container {
    opacity: 1;
    transform: scale(1);
}

.vip-map-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 5;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.8) 100%);
}

.vip-map-info-panel {
    position: absolute;
    top: 40px; right: 40px;
    width: 320px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(215, 166, 74, 0.2);
    border-radius: 20px;
    padding: 24px;
    z-index: 15;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.5s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.vip-map-modal.route-drawn .vip-map-info-panel {
    transform: translateX(0);
    opacity: 1;
}

.vip-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vip-info-header i {
    color: var(--gold);
    font-size: 20px;
    filter: drop-shadow(0 0 5px rgba(215,166,74,0.5));
}

.vip-info-header span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.vip-info-route {
    font-family: 'Inter', sans-serif;
    color: #aaa;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}



.vip-info-stats {
    display: flex;
    justify-content: space-between;
}

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

.stat-val {
    display: block;
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 4px;
}

.stat-lbl {
    color: #777;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Nav-links dropdown items (Kurumsal etc.) */
.nav-links .vip-dropdown-menu a, .nav-links .vip-dropdown-menu span {
    display: block;
    padding: 10px 20px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.nav-links .vip-dropdown-menu a::after, .nav-links .vip-dropdown-menu span::after {
    display: none;
}
.nav-links .vip-dropdown-menu a:hover, .nav-links .vip-dropdown-menu span:hover {
    color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
}

/* Language dropdown inside vip-control-hub — flex row for flag + text */
.vip-control-hub .vip-dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    color: #ccc;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}
.vip-control-hub .vip-dropdown-menu a::after { display: none !important; }
.vip-control-hub .vip-dropdown-menu a:hover {
    color: var(--gold);
    background: rgba(197, 160, 89, 0.07);
}

.vip-map-actions {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    z-index: 15;
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.8s;
}

.vip-map-modal.route-drawn .vip-map-actions {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.map-btn {
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.map-btn-skip {
    background: rgba(255,255,255,0.05);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.map-btn-skip:hover {
    background: rgba(255,255,255,0.1);
}

.map-btn-continue {
    background: linear-gradient(135deg, var(--gold), #e0bc70);
    color: #000;
    box-shadow: 0 10px 25px rgba(215, 166, 74, 0.3);
}

.map-btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(215, 166, 74, 0.4);
}

@media (max-width: 768px) {
    .vip-map-info-panel {
        top: 20px; right: 20px; left: 20px;
        width: auto;
        padding: 15px;
    }
    .vip-map-actions {
        bottom: 20px;
        width: calc(100% - 40px);
        flex-direction: column;
    }
    .map-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mapbox Popup Overrides for VIP Theme */
.vip-mapbox-popup .mapboxgl-popup-content {
    background: transparent;
    padding: 0;
    border-radius: 16px;
    box-shadow: none;
}
.vip-mapbox-popup .mapboxgl-popup-tip {
    border-top-color: rgba(10,10,10,0.95);
}
