/* ==========================================
   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;
    }
}

/* ══════════════════════════════════════════════════════════════
   INTRO TEMA SİSTEMİ — data-intro-theme="1..5"
══════════════════════════════════════════════════════════════ */

/* ── TEMA 1: LUXURY GOLD (Varsayılan) ── */
#intro-screen[data-intro-theme="1"],
#intro-screen:not([data-intro-theme]) {
    background: #050505;
}
#intro-screen[data-intro-theme="1"]::before,
#intro-screen:not([data-intro-theme])::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 15% 25%, rgba(197,160,89,.10) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 85% 75%, rgba(197,160,89,.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: goldAmbient 8s ease-in-out infinite alternate;
}
@keyframes goldAmbient {
    from { opacity: .6; }
    to   { opacity: 1; }
}
#intro-screen[data-intro-theme="1"] .intro-logo {
    text-shadow: 0 0 30px rgba(197,160,89,.6), 0 0 80px rgba(197,160,89,.2), 0 0 140px rgba(197,160,89,.08);
}
#intro-screen[data-intro-theme="1"] #intro-loader-bar {
    background: linear-gradient(90deg, #9a7030, #c5a059, #e8c880, #c5a059);
    background-size: 200% 100%;
    box-shadow: 0 0 14px rgba(197,160,89,.8), 0 0 30px rgba(197,160,89,.3);
    animation: introBarShimmer 2s linear infinite;
}
@keyframes introBarShimmer {
    from { background-position: 100% 0; }
    to   { background-position: -100% 0; }
}

/* ── TEMA 2: CYBER MATRIX ── */
#intro-screen[data-intro-theme="2"] {
    background: #000800;
}
/* CRT scan-line overlay */
#intro-screen[data-intro-theme="2"]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 2px,
        rgba(0,255,65,.012) 2px,
        rgba(0,255,65,.012) 4px
    );
    pointer-events: none;
    z-index: 3;
}
/* Corner vignette */
#intro-screen[data-intro-theme="2"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,3,0,.7) 100%);
    pointer-events: none;
    z-index: 3;
}
#intro-screen[data-intro-theme="2"] .intro-logo {
    font-family: 'Courier New', monospace !important;
    color: #00ff41;
    letter-spacing: 6px;
    text-shadow: 0 0 18px #00ff41, 0 0 40px rgba(0,255,65,.5), 0 0 80px rgba(0,255,65,.15);
    animation: matrixGlitch 6s ease-in-out infinite;
}
@keyframes matrixGlitch {
    0%,92%,100% { clip-path: none; transform: none; }
    93% { clip-path: inset(30% 0 50% 0); transform: translateX(-3px); }
    94% { clip-path: inset(50% 0 20% 0); transform: translateX(3px); }
    95% { clip-path: none; transform: none; }
    96% { clip-path: inset(10% 0 70% 0); transform: translateX(-2px); }
    97% { clip-path: none; transform: translateX(0); }
}
#intro-screen[data-intro-theme="2"] .intro-welcome {
    color: rgba(0,255,65,.5);
    font-family: 'Courier New', monospace;
    letter-spacing: 4px;
}
#intro-screen[data-intro-theme="2"] #intro-loader-bar {
    background: linear-gradient(90deg, #003300, #00ff41, #88ffaa, #00ff41);
    background-size: 200% 100%;
    box-shadow: 0 0 12px #00ff41, 0 0 24px rgba(0,255,65,.4);
    animation: introBarShimmer 1.4s linear infinite;
}
#intro-screen[data-intro-theme="2"] .intro-scanning {
    color: #00ff41;
    font-family: 'Courier New', monospace;
    animation: introBlink .7s steps(1) infinite;
}

/* ── TEMA 3: CRIMSON ROYALE ── */
#intro-screen[data-intro-theme="3"] {
    background: radial-gradient(ellipse at 50% 60%, #1a0005 0%, #070000 60%, #000000 100%);
}
#intro-screen[data-intro-theme="3"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 25%, rgba(50,0,5,.6) 100%);
    pointer-events: none;
    z-index: 3;
    animation: crimsonBreath 4s ease-in-out infinite alternate;
}
@keyframes crimsonBreath {
    from { opacity: .5; }
    to   { opacity: 1; }
}
#intro-screen[data-intro-theme="3"] .intro-logo {
    color: #e0203a;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 20px rgba(224,32,58,.8), 0 0 50px rgba(224,32,58,.35), 0 0 100px rgba(224,32,58,.12);
    animation: crimsonPulse 3s ease-in-out infinite;
}
@keyframes crimsonPulse {
    0%,100% { text-shadow: 0 0 20px rgba(224,32,58,.8), 0 0 50px rgba(224,32,58,.3); }
    50%      { text-shadow: 0 0 30px rgba(255,60,80,1),  0 0 70px rgba(224,32,58,.5), 0 0 120px rgba(200,0,20,.2); }
}
#intro-screen[data-intro-theme="3"] .intro-welcome {
    color: rgba(224,32,58,.55);
}
#intro-screen[data-intro-theme="3"] #intro-loader-bar {
    background: linear-gradient(90deg, #5a0010, #cc1133, #ff4060, #cc1133);
    background-size: 200% 100%;
    box-shadow: 0 0 14px rgba(204,17,51,.8), 0 0 30px rgba(204,17,51,.3);
    animation: introBarShimmer 1.8s linear infinite;
}
#intro-screen[data-intro-theme="3"] .intro-scanning { color: rgba(224,32,58,.7); }

/* ── TEMA 4: ARCTIC FROST ── */
#intro-screen[data-intro-theme="4"] {
    background: radial-gradient(ellipse at 50% 30%, #001e3c 0%, #000c18 60%, #000508 100%);
}
#intro-screen[data-intro-theme="4"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,80,150,.08) 0%, transparent 35%, rgba(0,20,50,.12) 100%),
        radial-gradient(ellipse at 50% 0%, rgba(80,180,220,.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: auroraGlow 10s ease-in-out infinite alternate;
}
@keyframes auroraGlow {
    from { opacity: .5; transform: scaleY(.95); }
    to   { opacity: 1;  transform: scaleY(1.05); }
}
#intro-screen[data-intro-theme="4"] .intro-logo {
    font-family: 'Inter', sans-serif !important;
    font-weight: 200;
    color: #89d4ef;
    letter-spacing: 18px;
    text-shadow: 0 0 20px rgba(137,212,239,.7), 0 0 50px rgba(137,212,239,.3), 0 0 100px rgba(100,200,240,.1);
}
#intro-screen[data-intro-theme="4"] .intro-welcome {
    color: rgba(137,212,239,.5);
    letter-spacing: 8px;
    font-weight: 300;
}
#intro-screen[data-intro-theme="4"] #intro-loader-bar {
    background: linear-gradient(90deg, #2a7090, #89d4ef, #d0f0ff, #89d4ef);
    background-size: 200% 100%;
    box-shadow: 0 0 14px rgba(137,212,239,.7), 0 0 30px rgba(137,212,239,.25);
    animation: introBarShimmer 2.2s linear infinite;
}
#intro-screen[data-intro-theme="4"] .intro-scanning { color: rgba(137,212,239,.6); }

/* ── TEMA 5: NEON ULTRAVIOLET ── */
#intro-screen[data-intro-theme="5"] {
    background: radial-gradient(ellipse at 50% 40%, #110025 0%, #060010 60%, #02000a 100%);
}
#intro-screen[data-intro-theme="5"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 5% 10%,  rgba(168,85,247,.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 45% at 95% 90%, rgba(168,85,247,.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(100,20,180,.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: uvPulseAmbient 5s ease-in-out infinite alternate;
}
@keyframes uvPulseAmbient {
    from { opacity: .4; }
    to   { opacity: 1; }
}
#intro-screen[data-intro-theme="5"] .intro-logo {
    color: #a855f7;
    text-shadow: 0 0 20px #a855f7, 0 0 50px rgba(168,85,247,.5), 0 0 100px rgba(168,85,247,.2);
    animation: uvLogoFlicker 4s ease-in-out infinite;
}
@keyframes uvLogoFlicker {
    0%,96%,100% { text-shadow: 0 0 20px #a855f7, 0 0 50px rgba(168,85,247,.5); }
    97% { text-shadow: 0 0 30px #c084fc, 0 0 60px #a855f7, 0 0 100px rgba(168,85,247,.6); color: #c084fc; }
    98% { text-shadow: 0 0 20px #a855f7, 0 0 50px rgba(168,85,247,.5); color: #a855f7; }
}
#intro-screen[data-intro-theme="5"] .intro-welcome {
    color: rgba(168,85,247,.55);
    letter-spacing: 5px;
}
#intro-screen[data-intro-theme="5"] #intro-loader-bar {
    background: linear-gradient(90deg, #4a0090, #a855f7, #d8a0ff, #a855f7);
    background-size: 200% 100%;
    box-shadow: 0 0 14px rgba(168,85,247,.8), 0 0 30px rgba(168,85,247,.35), 0 0 60px rgba(168,85,247,.1);
    animation: introBarShimmer 1.6s linear infinite;
}
#intro-screen[data-intro-theme="5"] .intro-scanning { color: rgba(168,85,247,.7); }

/* ── TEMA 6: HYPERSPACE ── */
#intro-screen[data-intro-theme="6"] {
    background: radial-gradient(ellipse at 50% 50%, #000520 0%, #000008 70%);
}
#intro-screen[data-intro-theme="6"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 30% 30% at 50% 50%, rgba(80,120,255,.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: warpCore 3s ease-in-out infinite alternate;
}
@keyframes warpCore {
    from { transform: scale(.9); opacity: .4; }
    to   { transform: scale(1.15); opacity: 1; }
}
#intro-screen[data-intro-theme="6"] .intro-logo {
    color: #88aaff;
    font-family: 'Inter', sans-serif !important;
    font-weight: 200;
    letter-spacing: 20px;
    text-shadow: 0 0 20px #88aaff, 0 0 60px rgba(100,140,255,.4), 0 0 120px rgba(80,120,255,.15);
}
#intro-screen[data-intro-theme="6"] .intro-welcome { color: rgba(136,170,255,.5); letter-spacing: 10px; }
#intro-screen[data-intro-theme="6"] #intro-loader-bar {
    background: linear-gradient(90deg, #1133aa, #4466dd, #88aaff, #4466dd);
    background-size: 200% 100%;
    box-shadow: 0 0 14px rgba(136,170,255,.8), 0 0 30px rgba(100,140,255,.3);
    animation: introBarShimmer 1.8s linear infinite;
}
#intro-screen[data-intro-theme="6"] .intro-scanning { color: rgba(136,170,255,.6); }

/* ── TEMA 7: NEON HEX GRID ── */
#intro-screen[data-intro-theme="7"] {
    background: radial-gradient(ellipse at 50% 50%, #001525 0%, #00050f 70%);
}
#intro-screen[data-intro-theme="7"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,229,255,.04) 0%, transparent 70%),
        radial-gradient(ellipse at 0% 100%, rgba(0,180,220,.05) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(0,200,240,.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: hexAmbient 6s ease-in-out infinite alternate;
}
@keyframes hexAmbient { from { opacity: .4; } to { opacity: 1; } }
#intro-screen[data-intro-theme="7"] .intro-logo {
    color: #00e5ff;
    font-family: 'Inter', sans-serif !important;
    font-weight: 300;
    letter-spacing: 14px;
    text-shadow: 0 0 18px #00e5ff, 0 0 50px rgba(0,229,255,.45), 0 0 100px rgba(0,200,240,.15);
}
#intro-screen[data-intro-theme="7"] .intro-welcome { color: rgba(0,229,255,.45); letter-spacing: 7px; }
#intro-screen[data-intro-theme="7"] #intro-loader-bar {
    background: linear-gradient(90deg, #005577, #00b8d4, #00e5ff, #00b8d4);
    background-size: 200% 100%;
    box-shadow: 0 0 14px rgba(0,229,255,.8), 0 0 28px rgba(0,200,240,.3);
    animation: introBarShimmer 1.7s linear infinite;
}
#intro-screen[data-intro-theme="7"] .intro-scanning { color: rgba(0,229,255,.6); }

/* ── TEMA 8: PLASMA ORBS ── */
#intro-screen[data-intro-theme="8"] {
    background: radial-gradient(ellipse at 50% 50%, #12002a 0%, #050010 70%);
}
#intro-screen[data-intro-theme="8"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 20% 30%, rgba(255,0,150,.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 45% at 80% 70%, rgba(150,0,255,.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: plasmaShift 7s ease-in-out infinite alternate;
}
@keyframes plasmaShift {
    0%   { filter: hue-rotate(0deg); opacity: .5; }
    100% { filter: hue-rotate(40deg); opacity: 1; }
}
#intro-screen[data-intro-theme="8"] .intro-logo {
    color: #ff6ec7;
    text-shadow: 0 0 20px #ff6ec7, 0 0 50px rgba(255,110,199,.45), 0 0 100px rgba(220,50,180,.15);
    animation: plasmaLogoWave 5s ease-in-out infinite;
}
@keyframes plasmaLogoWave {
    0%,100% { color: #ff6ec7; text-shadow: 0 0 20px #ff6ec7, 0 0 50px rgba(255,110,199,.4); }
    33%      { color: #b06eff; text-shadow: 0 0 20px #b06eff, 0 0 50px rgba(176,110,255,.4); }
    66%      { color: #00e5c8; text-shadow: 0 0 20px #00e5c8, 0 0 50px rgba(0,229,200,.4); }
}
#intro-screen[data-intro-theme="8"] .intro-welcome { color: rgba(255,110,199,.5); }
#intro-screen[data-intro-theme="8"] #intro-loader-bar {
    background: linear-gradient(90deg, #6600aa, #cc44cc, #ff6ec7, #cc44cc);
    background-size: 200% 100%;
    box-shadow: 0 0 14px rgba(255,110,199,.8), 0 0 30px rgba(200,50,200,.3);
    animation: introBarShimmer 1.5s linear infinite;
}
#intro-screen[data-intro-theme="8"] .intro-scanning { color: rgba(255,110,199,.65); }

/* ── TEMA 9: DNA HELİKSİ ── */
#intro-screen[data-intro-theme="9"] {
    background: radial-gradient(ellipse at 50% 50%, #041510 0%, #020a08 70%);
}
#intro-screen[data-intro-theme="9"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 80% at 50% 50%, rgba(64,224,176,.04) 0%, transparent 70%),
        radial-gradient(ellipse at 50% 0%, rgba(197,160,89,.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(64,224,176,.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
#intro-screen[data-intro-theme="9"] .intro-logo {
    color: #40e0b0;
    font-family: 'Inter', sans-serif !important;
    font-weight: 300;
    letter-spacing: 12px;
    text-shadow: 0 0 18px #40e0b0, 0 0 50px rgba(64,224,176,.4), 0 0 100px rgba(64,224,176,.12);
}
#intro-screen[data-intro-theme="9"] .intro-welcome { color: rgba(64,224,176,.45); letter-spacing: 6px; }
#intro-screen[data-intro-theme="9"] #intro-loader-bar {
    background: linear-gradient(90deg, #c5a059, #60d0a0, #40e0b0, #60d0a0);
    background-size: 200% 100%;
    box-shadow: 0 0 14px rgba(64,224,176,.75), 0 0 28px rgba(64,224,176,.25);
    animation: introBarShimmer 2s linear infinite;
}
#intro-screen[data-intro-theme="9"] .intro-scanning { color: rgba(64,224,176,.6); }

/* ── TEMA 10: OCEAN WAVES ── */
#intro-screen[data-intro-theme="10"] {
    background: radial-gradient(ellipse at 50% 80%, #001e30 0%, #000d1a 60%, #000508 100%);
}
#intro-screen[data-intro-theme="10"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 40% at 50% 100%, rgba(0,140,180,.08) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(0,80,120,.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: oceanDepth 8s ease-in-out infinite alternate;
}
@keyframes oceanDepth {
    from { opacity: .4; transform: scaleY(.97); }
    to   { opacity: 1;  transform: scaleY(1.03); }
}
#intro-screen[data-intro-theme="10"] .intro-logo {
    color: #00c8d4;
    font-family: 'Inter', sans-serif !important;
    font-weight: 300;
    letter-spacing: 14px;
    text-shadow: 0 0 18px #00c8d4, 0 0 50px rgba(0,200,212,.4), 0 0 100px rgba(0,160,180,.12);
}
#intro-screen[data-intro-theme="10"] .intro-welcome { color: rgba(0,200,212,.45); letter-spacing: 7px; }
#intro-screen[data-intro-theme="10"] #intro-loader-bar {
    background: linear-gradient(90deg, #004455, #00a0b0, #00c8d4, #00a0b0);
    background-size: 200% 100%;
    box-shadow: 0 0 14px rgba(0,200,212,.75), 0 0 28px rgba(0,160,200,.3);
    animation: introBarShimmer 2s linear infinite;
}
#intro-screen[data-intro-theme="10"] .intro-scanning { color: rgba(0,200,212,.6); }

/* ── INTRO LOCALE DETECTION BADGE ────────────────────────────── */
#intro-locale-badge {
    position: absolute;
    bottom: clamp(28px, 5vh, 72px);
    left: 50%;
    transform: translateX(-50%) translateY(18px);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(8,8,8,0.65);
    border: 1px solid rgba(197,160,89,0.24);
    border-radius: 50px;
    padding: 9px 20px 9px 11px;
    opacity: 0;
    transition: opacity 0.55s ease, transform 0.6s cubic-bezier(0.34,1.1,0.64,1);
    z-index: 3;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
}
#intro-locale-badge.ilb-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.ilb-flag-wrap {
    position: relative;
    width: 28px;
    height: 21px;
    overflow: hidden;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.ilb-flag {
    width: 28px;
    height: 21px;
    object-fit: cover;
    display: block;
    clip-path: inset(0 100% 0 0);
}
#intro-locale-badge.ilb-show .ilb-flag {
    animation: ilbReveal 0.72s cubic-bezier(0.4,0,0.15,1) 0.18s both;
}
@keyframes ilbReveal {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0% 0 0); }
}
.ilb-shimmer {
    position: absolute;
    inset: 0;
    width: 12px;
    background: linear-gradient(90deg, transparent, rgba(255,242,190,0.88), transparent);
    transform: translateX(-12px);
    pointer-events: none;
}
#intro-locale-badge.ilb-show .ilb-shimmer {
    animation: ilbShimmer 0.72s cubic-bezier(0.4,0,0.15,1) 0.18s both;
}
@keyframes ilbShimmer {
    from { transform: translateX(-12px); }
    to   { transform: translateX(28px); }
}

.ilb-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: 'Inter', sans-serif;
}
.ilb-lang {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #c5a059;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.4s ease 0.82s;
}
.ilb-source-label {
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.4s ease 1.0s;
}
#intro-locale-badge.ilb-show .ilb-lang,
#intro-locale-badge.ilb-show .ilb-source-label {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    #intro-locale-badge           { transition: opacity 0.4s ease !important; }
    #intro-locale-badge:not(.ilb-show) { transform: translateX(-50%) !important; }
    .ilb-flag                     { animation: none !important; clip-path: none !important; }
    .ilb-shimmer                  { display: none !important; }
    .ilb-lang, .ilb-source-label  { transition: opacity 0.4s ease 0.2s !important; }
}
/* ── END INTRO LOCALE BADGE ──────────────────────────────────── */

/* ==========================================
   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-amount {
    color: #1a1a1a !important;
}

.light-mode .fleet-price .price-suffix {
    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;
}

.light-mode .fleet-seats-count {
    color: #191919;
}

.light-mode .fleet-seats-label {
    color: #4b4b4b;
}

/* 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;
    align-items: center;
    justify-content: space-between;
    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);
    min-width: 280px;
}

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

@media (min-width: 1001px) {
    .nav-links.nav-links-centered {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        max-width: calc(100% - 720px);
        justify-content: 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;
}

.home-hero .hero-content {
    width: min(100%, 1200px);
    padding-inline: 28px;
}

.home-hero-copy {
    width: min(100%, 980px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.home-hero .subtitle.hero-kicker {
    margin-bottom: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.home-hero-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.72);
}

.home-hero-title-main {
    display: block;
    font-size: clamp(3.9rem, 9.2vw, 7.2rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.38));
}

.home-hero-title-outline {
    display: block;
    font-size: clamp(3rem, 8.1vw, 6.15rem);
    line-height: 0.9;
    letter-spacing: 0.04em;
    opacity: 0.92;
}

.home-hero-description {
    width: min(100%, 840px);
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: rgba(247, 240, 231, 0.94);
    font-family: "Playfair Display", "Times New Roman", serif;
    font-style: italic;
    font-size: clamp(0.92rem, 1.2vw, 1.08rem);
    line-height: 1.72;
    font-weight: 400;
    text-wrap: balance;
}

.home-hero-cta {
    margin-top: 4px;
    min-width: 260px;
    border: 1px solid rgba(238, 209, 150, 0.46);
    background:
        radial-gradient(140% 190% at 50% -70%, rgba(255, 248, 232, 0.42) 0%, rgba(255, 248, 232, 0) 58%),
        linear-gradient(135deg, #d6b067 0%, #be9247 48%, #a97b35 100%);
    color: #fff6e7;
    letter-spacing: 2.2px;
    text-shadow: 0 2px 10px rgba(58, 35, 10, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 251, 240, 0.45),
        inset 0 -1px 0 rgba(123, 82, 24, 0.28),
        0 24px 48px rgba(146, 102, 38, 0.34),
        0 8px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease, border-color 0.24s ease;
}

.home-hero-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(250, 224, 172, 0.7);
    filter: saturate(1.06) brightness(1.03);
    box-shadow:
        inset 0 1px 0 rgba(255, 251, 240, 0.52),
        inset 0 -1px 0 rgba(123, 82, 24, 0.35),
        0 28px 56px rgba(146, 102, 38, 0.42),
        0 12px 26px rgba(0, 0, 0, 0.22);
}

.home-hero-cta:active {
    transform: translateY(0);
}

.hero-youtube-audio-control {
    position: absolute;
    right: clamp(18px, 2.8vw, 34px);
    bottom: clamp(20px, 4vw, 34px);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.hero-youtube-audio-control.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-youtube-audio-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(238, 209, 150, 0.28);
    background: linear-gradient(135deg, rgba(18, 14, 10, 0.74), rgba(35, 26, 18, 0.62));
    color: rgba(252, 244, 230, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: border-color 0.28s ease, background 0.28s ease, transform 0.24s ease;
}

.hero-youtube-audio-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(247, 222, 176, 0.56);
    background: linear-gradient(135deg, rgba(32, 24, 17, 0.82), rgba(57, 42, 29, 0.72));
}

.hero-youtube-audio-toggle:focus-visible {
    outline: 2px solid rgba(240, 205, 137, 0.9);
    outline-offset: 3px;
}

.hero-youtube-volume-panel {
    display: inline-flex;
    align-items: center;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-6px);
    transition: width 0.26s ease, opacity 0.22s ease, transform 0.22s ease;
}

.hero-youtube-audio-control.is-expanded .hero-youtube-volume-panel {
    width: 118px;
    opacity: 1;
    transform: translateX(0);
}

.hero-youtube-volume-slider {
    width: 118px;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(238, 209, 150, 0.28);
    background: linear-gradient(135deg, rgba(18, 14, 10, 0.74), rgba(35, 26, 18, 0.62));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    appearance: none;
    -webkit-appearance: none;
}

.hero-youtube-volume-slider::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(224, 187, 115, 0.95), rgba(162, 119, 46, 0.7));
}

.hero-youtube-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    margin-top: -6px;
    border-radius: 50%;
    border: 1px solid rgba(246, 226, 186, 0.9);
    background: linear-gradient(135deg, #fff7e8, #d6b067);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
}

.hero-youtube-volume-slider::-moz-range-track {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(224, 187, 115, 0.95), rgba(162, 119, 46, 0.7));
}

.hero-youtube-audio-toggle__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-youtube-audio-toggle__icon svg {
    width: 100%;
    height: 100%;
}

body.light-mode .hero-youtube-audio-toggle,
body.light-mode .hero-youtube-volume-slider {
    background: linear-gradient(135deg, rgba(255, 252, 246, 0.84), rgba(245, 232, 209, 0.8));
    color: #5b431d;
    border-color: rgba(180, 135, 64, 0.26);
    box-shadow: 0 16px 32px rgba(112, 84, 32, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.light-mode .hero-youtube-audio-toggle:hover,
body.light-mode .hero-youtube-volume-slider:hover {
    border-color: rgba(180, 135, 64, 0.48);
    background: linear-gradient(135deg, rgba(255, 251, 243, 0.95), rgba(244, 227, 194, 0.92));
}

@media (max-width: 820px) {
    .home-hero .hero-content {
        padding-inline: 18px;
    }

    .home-hero-copy {
        gap: 18px;
    }

    .home-hero .subtitle.hero-kicker {
        padding: 0;
        letter-spacing: 3.2px;
        font-size: 12px;
    }

    .home-hero-title {
        gap: 10px;
    }

    .home-hero-title-main {
        font-size: clamp(3.2rem, 14.6vw, 4.9rem);
    }

    .home-hero-title-outline {
        font-size: clamp(2.25rem, 13vw, 4.1rem);
        line-height: 0.95;
    }

    .home-hero-description {
        padding: 0;
        font-size: 15px;
        line-height: 1.6;
    }

    .home-hero-cta {
        min-width: min(100%, 260px);
        width: 100%;
        padding-inline: 28px;
    }

    .hero-youtube-audio-control {
        right: 14px;
        bottom: 16px;
        gap: 8px;
    }

    .hero-youtube-audio-toggle {
        width: 46px;
        height: 46px;
    }

    .hero-youtube-audio-control.is-expanded .hero-youtube-volume-panel {
        width: 102px;
    }

    .hero-youtube-volume-slider {
        width: 102px;
        height: 40px;
        padding: 0 14px;
    }
}

/* 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);
}

#home-slideshow .hero-youtube-slide {
    background-color: #050505;
    overflow: hidden;
}

#home-slideshow .hero-youtube-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 4, 4, 0.72) 0%, rgba(4, 4, 4, 0.24) 18%, rgba(4, 4, 4, 0.08) 42%, rgba(4, 4, 4, 0.3) 100%),
        linear-gradient(90deg, rgba(4, 4, 4, 0.4) 0%, rgba(4, 4, 4, 0.05) 28%, rgba(4, 4, 4, 0) 55%);
    z-index: 1;
    pointer-events: none;
}

#home-slideshow .hero-youtube-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

#home-slideshow .hero-youtube-slide.is-playing .hero-youtube-frame {
    opacity: 1;
}

/* ── HERO VIDEO CINEMATIC PRELOAD ────────────────────────────── */
#home-slideshow .hero-video-preload {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: url('https://travel.graferpro.com/uploads/media/218d2754a16e77e07b0450df79327ace.png');
    background-size: cover;
    background-position: center 40%;
    pointer-events: none;
    opacity: 1;
    filter: blur(0px) brightness(0.82);
    will-change: opacity, filter, transform;
    transition:
        opacity    2.6s cubic-bezier(0.4, 0, 0.2, 1),
        filter     2.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heroPreloadDrift 18s ease-out forwards;
    transform-origin: 52% 46%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* cinematic vignette over the preload image */
#home-slideshow .hero-video-preload::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0,0,0,0.55) 0%,
            rgba(0,0,0,0.08) 38%,
            rgba(0,0,0,0.12) 65%,
            rgba(0,0,0,0.65) 100%
        ),
        linear-gradient(90deg,
            rgba(0,0,0,0.32) 0%,
            transparent 52%
        );
    pointer-events: none;
}

/* slow cinematic push-in drift */
@keyframes heroPreloadDrift {
    0%   { transform: scale(1.0)  translate3d(0,    0,    0); }
    100% { transform: scale(1.09) translate3d(-1.2%, 0.6%, 0); }
}

/* video starts playing → preload dissolves away */
#home-slideshow .hero-youtube-slide.is-playing .hero-video-preload {
    opacity: 0;
    filter: blur(20px) brightness(1.1);
}

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

.main-tab,
.main-tab-mobile {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.main-tab:hover,
.main-tab-mobile:hover {
    color: rgba(255, 255, 255, 1);
}

.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);
}

.fleet-bg-image {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.fleet-bg-youtube {
    position: fixed;
    top: 50%; left: 50%;
    width: 177.78vh;
    height: 56.25vw;
    min-width: 100vw;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.fleet-bg-youtube iframe { width: 100%; height: 100%; border: none; }

/* Fleet vitrin feature visibility helpers */
.fv-no-badge .fleet-badge,
.fv-no-badge .fleet-seats-badge { display: none !important; }
.fv-no-price .fleet-price       { display: none !important; }
.fv-no-specs .fleet-specs       { display: none !important; }
.fv-no-features .fleet-features { display: none !important; }

/* 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 !important;
    }

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

    .nav-right-controls {
        display: none !important;
    }

    .logo {
        min-width: unset;
    }

    /* 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;
    }

    nav {
        justify-content: space-between;
    }
}

/* ==========================================
   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(4, 3, 8, 0.78);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 14px 32px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.38s ease, visibility 0.38s ease;
}

.glass-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ════════════════════════════════════════════
   VIP ACCESS PORTAL MODAL — FULL REDESIGN
════════════════════════════════════════════ */

/* ── GENERIC glass-modal-box (non-access-portal) ── */
.glass-modal-box {
    background: rgba(12, 9, 18, .90);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(215, 174, 89, .16);
    border-radius: 28px;
    padding: 40px;
    width: 90%; max-width: 480px;
    position: relative;
    box-shadow: 0 0 0 1px rgba(255,255,255,.05) inset,
                0 48px 100px rgba(0,0,0,.70),
                0 0 60px rgba(197,160,89,.06);
    animation: modalIn .42s cubic-bezier(.22,1,.36,1);
}

@keyframes modalIn {
    from { opacity:0; transform:scale(.93) translateY(28px); }
    to   { opacity:1; transform:scale(1)   translateY(0);    }
}

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

/* ── CLOSE BUTTON ── */
.close-modal-btn {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(215,174,89,.32);
    color: rgba(255,248,232,.52);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .22s, border-color .22s, color .22s, transform .34s cubic-bezier(0.34,1.2,0.64,1);
    z-index: 10;
}
.close-modal-btn:hover {
    background: rgba(215,174,89,.16);
    border-color: rgba(215,174,89,.65);
    color: #f1d27b;
    transform: rotate(90deg) scale(1.08);
}

/* ── ACCESS PORTAL BOX ── */
.access-portal-box {
    max-width: 560px;
    padding: 0;
    background: rgba(10, 8, 16, .94);
    backdrop-filter: blur(48px) saturate(200%);
    -webkit-backdrop-filter: blur(48px) saturate(200%);
    border: 1px solid rgba(215,174,89,.20);
    border-radius: 28px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.055) inset,
        0 60px 120px rgba(0,0,0,.72),
        0 0 80px rgba(197,160,89,.08);
    overflow: hidden;
    animation: modalIn .42s cubic-bezier(.22,1,.36,1);
}

/* Top gold line */
.access-portal-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(215,174,89,.90) 50%, transparent 95%);
    pointer-events: none;
    z-index: 2;
}

/* Inner top glow */
.access-portal-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 120px;
    background: radial-gradient(ellipse 70% 80px at 50% 0%, rgba(215,174,89,.10), transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* ── HERO SECTION ── */
.access-portal-hero {
    text-align: center;
    padding: 34px 32px 20px;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.access-portal-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(215,174,89,.28);
    background: rgba(215,174,89,.08);
    color: #d7ae59;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.access-portal-eyebrow::before {
    content: "◆";
    font-size: 7px;
    opacity: .7;
}

.access-portal-hero .modal-title {
    font-size: clamp(24px, 5vw, 34px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #fff8e8;
    letter-spacing: -.3px;
}

.access-portal-hero .modal-title em {
    font-style: italic;
    background: linear-gradient(135deg, #f1d27b, #d7ae59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.access-portal-subcopy {
    margin: 0 auto 18px;
    max-width: 420px;
    color: rgba(255,248,232,.45);
    font-size: 13.5px;
    line-height: 1.7;
}

.access-portal-metrics {
    display: none;
}

/* ── CONTENT AREA ── */
.portal-content {
    padding: 22px 28px 26px;
    position: relative;
    z-index: 2;
}

/* ── SECTOR SWITCHER (Bireysel / Acenta / Şoför) ── */
.auth-switch-container {
    margin-bottom: 20px;
}

.auth-switch {
    position: relative;
    display: flex;
    width: 100%;
    background: rgba(255,255,255,.04);
    border-radius: 16px;
    padding: 4px;
    border: 1px solid rgba(255,255,255,.08);
}

.auth-switch button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 10px 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,248,232,.38);
    cursor: pointer;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    border: none;
    background: transparent;
    transition: color .25s;
}

.auth-switch button .seg-icon {
    font-size: 14px;
    line-height: 1;
}

.auth-switch button.active,
.auth-switch button[aria-selected="true"] {
    color: #120d04;
}

.switch-selector {
    position: absolute;
    top: 4px;
    left: calc(4px + ((100% - 8px) / var(--auth-sector-count, 3)) * var(--auth-sector-index, 0));
    width: calc((100% - 8px) / var(--auth-sector-count, 3));
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #f1d27b, #d7ae59);
    border-radius: 12px;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(215,174,89,.28);
    pointer-events: none;
    transition: left .38s cubic-bezier(.25,1,.5,1), width .22s ease;
}

.auth-switch button:focus-visible {
    outline: 2px solid rgba(241,210,123,.72);
    outline-offset: 2px;
}

/* ── MODE TABS (Giriş / Kayıt) ── */
.portal-mode-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
    margin-bottom: 18px;
}

.portal-mode-btn {
    border: none;
    border-bottom: 2px solid transparent;
    min-height: 42px;
    border-radius: 0;
    background: transparent;
    color: rgba(255,248,232,.38);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .22s, border-color .22s;
    margin-bottom: -1px;
}

.portal-mode-btn:hover { color: rgba(255,248,232,.65); }

.portal-mode-btn.active {
    color: #d7ae59;
    border-bottom-color: #d7ae59;
    background: transparent;
    box-shadow: none;
}

.portal-mode-shell.is-login-only {
    grid-template-columns: 1fr;
}

.portal-mode-btn.is-hidden {
    display: none;
}

/* ── SECTOR NOTE ── */
.portal-sector-note {
    margin: 0 0 14px;
    color: rgba(255,248,232,.38);
    font-size: 12.5px;
    line-height: 1.65;
}

.portal-empty-state {
    border-radius: 22px;
    border: 1px solid rgba(215,174,89,.14);
    background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(215,174,89,.06));
    padding: 26px 22px;
    text-align: center;
}

.portal-empty-title {
    color: #fff8e8;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .2px;
}

.portal-empty-copy {
    margin-top: 10px;
    color: rgba(255,248,232,.56);
    font-size: 13px;
    line-height: 1.75;
}

/* ── SOCIAL BUTTONS ── */
.portal-social-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}

.portal-social-btn {
    min-height: 66px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    color: rgba(240,234,216,.80);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    transition: transform .22s, border-color .22s, background .22s, box-shadow .22s;
    position: relative;
    overflow: hidden;
}

.portal-social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(215,174,89,.08), transparent);
    opacity: 0;
    transition: opacity .22s;
}

.portal-social-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(215,174,89,.30);
    box-shadow: 0 12px 28px rgba(0,0,0,.28), 0 0 0 1px rgba(215,174,89,.10);
}

.portal-social-btn:hover::before { opacity: 1; }

.portal-social-btn.is-disabled { opacity: .35; pointer-events: none; }

.portal-social-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    color: rgba(240,234,216,.80);
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Google — proper colored G logo */
[data-social-provider="google"] .portal-social-ic {
    background: #fff;
    font-size: 0;
}
[data-social-provider="google"] .portal-social-ic::after {
    display: block; width: 20px; height: 20px; content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 533.5 544.3'%3E%3Cpath d='M533.5 278.4c0-18.5-1.5-37.1-4.7-55.3H272.1v104.8h147c-6.1 33.8-25.7 63.7-54.4 82.7v68h87.7c51.5-47.4 81.1-117.4 81.1-200.2z' fill='%234285f4'/%3E%3Cpath d='M272.1 544.3c73.4 0 135.3-24.1 180.4-65.7l-87.7-68c-24.4 16.6-55.9 26-92.6 26-71 0-131.2-47.9-152.8-112.3H28.9v70.1c46.2 91.9 140.3 149.9 243.2 149.9z' fill='%2334a853'/%3E%3Cpath d='M119.3 324.3c-11.4-33.8-11.4-70.4 0-104.2V150H28.9c-38.6 76.9-38.6 167.5 0 244.4l90.4-70.1z' fill='%23fbbc04'/%3E%3Cpath d='M272.1 107.7c38.8-.6 76.3 14 104.4 40.8l77.7-77.7C405 24.6 339.7-.8 272.1 0 169.2 0 75.1 58 28.9 150l90.4 70.1c21.5-64.5 81.8-112.4 152.8-112.4z' fill='%23ea4335'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Facebook — white f on blue */
[data-social-provider="facebook"] .portal-social-ic {
    background: #1877f2;
    font-size: 0;
}
[data-social-provider="facebook"] .portal-social-ic::after {
    display: block; width: 19px; height: 19px; content: "";
    background: #fff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.198 21.5h4v-8.01h3.604l.396-3.98h-4V7.5a1 1 0 0 1 1-1h3v-4h-3a5 5 0 0 0-5 5v2.01h-2l-.396 3.98h2.396v8.01z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.198 21.5h4v-8.01h3.604l.396-3.98h-4V7.5a1 1 0 0 1 1-1h3v-4h-3a5 5 0 0 0-5 5v2.01h-2l-.396 3.98h2.396v8.01z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Apple — dark bg, white logo */
[data-social-provider="apple"] .portal-social-ic { background: #1c1c1e; font-size: 0; }
[data-social-provider="apple"] .portal-social-ic::after {
    display: block; width: 20px; height: 20px; content: "";
    background: #f5f5f5;
    -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;
}

/* Phone — modern smartphone icon */
[data-social-provider="phone"] .portal-social-ic { background: rgba(215,174,89,.16); font-size: 0; }
[data-social-provider="phone"] .portal-social-ic::after {
    display: block; width: 19px; height: 19px; content: "";
    background: #e8cb7d;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 2H7C5.9 2 5 2.9 5 4v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 18c-.83 0-1.5-.67-1.5-1.5S11.17 17 12 17s1.5.67 1.5 1.5S12.83 20 12 20zm5-4H7V4h10v12z'/%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='M17 2H7C5.9 2 5 2.9 5 4v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 18c-.83 0-1.5-.67-1.5-1.5S11.17 17 12 17s1.5.67 1.5 1.5S12.83 20 12 20zm5-4H7V4h10v12z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.portal-social-btn span:last-child {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    color: rgba(240,234,216,.70);
}

/* ── DIVIDER ── */
.portal-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 6px 0 18px;
    font-size: 10px;
    color: rgba(215,174,89,.75);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
}
.portal-divider::before,
.portal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215,174,89,.45), transparent);
}

/* ── PANES ── */
.portal-panes { }
.portal-pane  { display: none; }
.portal-pane.active { display: block; animation: fadeUp .26s ease; }

/* ── FORM INPUTS ── */
.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: 10px;
}

.auth-form .input-group { margin-bottom: 12px; }

.auth-form input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(215,174,89,.38);
    border-radius: 14px;
    color: #f0ead8;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05), inset 0 0 0 0 rgba(215,174,89,0);
    transition: border-color .22s, background .22s, box-shadow .25s;
}

.auth-form input::placeholder { color: rgba(255,248,232,.32); }

.auth-form input:hover {
    border-color: rgba(215,174,89,.55);
    background: rgba(255,255,255,.08);
}

.auth-form input:focus {
    border-color: rgba(215,174,89,.85);
    background: rgba(215,174,89,.05);
    box-shadow:
        0 0 0 3px rgba(215,174,89,.18),
        0 4px 20px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.08);
}

/* ── CTA BUTTON ── */
.modal-btn {
    width: 100%;
    margin-top: 8px;
    min-height: 52px;
    border-radius: 14px;
    padding: 14px 20px;
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #120d04;
    background: linear-gradient(135deg, #f1d27b 0%, #d7ae59 55%, #a87c2a 100%);
    box-shadow: 0 10px 32px rgba(197,160,89,.26), inset 0 1px 0 rgba(255,255,255,.28);
    position: relative;
    overflow: hidden;
    transition: filter .15s, transform .12s, box-shadow .18s;
}

.modal-btn::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(118deg, transparent 36%, rgba(255,255,255,.28) 46%, transparent 60%);
    animation: modalBtnShine 3.8s linear infinite;
}

@keyframes modalBtnShine {
    from { transform: translateX(-55%) rotate(1deg); }
    to   { transform: translateX( 55%) rotate(1deg); }
}

.modal-btn:hover  { filter: brightness(1.06); box-shadow: 0 16px 44px rgba(197,160,89,.34); }
.modal-btn:active { transform: translateY(1px); }

/* ── RESET ROW ── */
.portal-reset-row {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.portal-reset-row a {
    color: rgba(215,174,89,.65);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s;
}

.portal-reset-row a:hover { color: #f1d27b; }

/* ── REMEMBER / TRUSTED DEVICE TOGGLES ── */
.portal-toggle-block {
    margin: 14px 0 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.portal-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    background: rgba(255,255,255,.04);
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s;
    user-select: none;
}
.portal-toggle-row:hover { background: rgba(255,255,255,.07); }
.portal-toggle-text { flex: 1; min-width: 0; }
.portal-toggle-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,248,232,.88);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.portal-toggle-sub {
    display: block;
    font-size: 10px;
    color: rgba(255,248,232,.42);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.portal-toggle-switch {
    position: relative;
    flex-shrink: 0;
    width: 40px;
    height: 22px;
}
.portal-toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
.portal-toggle-thumb {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.16);
    border-radius: 11px;
    transition: background .22s;
}
.portal-toggle-thumb::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 16px;
    height: 16px;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,.4);
    transition: transform .22s;
}
.portal-toggle-input:checked + .portal-toggle-thumb { background: #c5a059; }
.portal-toggle-input:checked + .portal-toggle-thumb::after { transform: translateX(18px); }
.portal-forgot-link-standalone {
    display: block;
    text-align: right;
    color: rgba(215,174,89,.65);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s;
    margin: 5px 2px 10px;
}
.portal-forgot-link-standalone:hover { color: #f1d27b; }
.light-mode .portal-toggle-row { background: rgba(0,0,0,.04); }
.light-mode .portal-toggle-row:hover { background: rgba(0,0,0,.08); }
.light-mode .portal-toggle-title { color: rgba(28,23,18,.82); }
.light-mode .portal-toggle-sub { color: rgba(28,23,18,.42); }
.light-mode .portal-toggle-thumb { background: rgba(0,0,0,.18); }
.light-mode .portal-toggle-thumb::after { background: rgba(255,255,255,.98); }
.light-mode .portal-forgot-link-standalone { color: rgba(130,90,10,.65); }
.light-mode .portal-forgot-link-standalone:hover { color: #8a6610; }

/* ── FOOTER NOTE ── */
.portal-footer-note {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.06);
    text-align: center;
    color: rgba(255,248,232,.28);
    font-size: 11px;
    letter-spacing: .05em;
    line-height: 1.65;
}

/* ── HIDDEN FIELDS ── */
.hidden-fields {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(.4,0,.2,1);
}
.hidden-fields.show {
    max-height: 280px;
    opacity: 1;
    margin-top: 12px;
    border-top: 1px solid rgba(215,174,89,.14);
    padding-top: 12px;
}

/* ── LIGHT MODE ── */
.light-mode .glass-modal-overlay { background: rgba(30,20,8,.68); }
.light-mode .access-portal-box {
    background: rgba(255,251,242,.92);
    border-color: rgba(160,120,30,.22);
    box-shadow: 0 0 0 1px rgba(255,255,255,.80) inset,
                0 48px 100px rgba(80,55,15,.20);
}
.light-mode .access-portal-box::before {
    background: linear-gradient(90deg, transparent 5%, rgba(160,120,30,.70) 50%, transparent 95%);
}
.light-mode .access-portal-hero {
    border-bottom-color: rgba(0,0,0,.07);
}
.light-mode .access-portal-hero .modal-title { color: #1c1508; }
.light-mode .access-portal-eyebrow { color: #8a6610; border-color: rgba(160,120,30,.28); background: rgba(160,120,30,.08); }
.light-mode .access-portal-subcopy { color: rgba(28,21,8,.48); }
.light-mode .access-portal-metrics span { color: rgba(120,90,20,.70); border-color: rgba(160,120,30,.18); background: rgba(160,120,30,.06); }

.light-mode .close-modal-btn { background: rgba(160,120,30,.08); border-color: rgba(160,120,30,.22); color: rgba(28,21,8,.40); }
.light-mode .close-modal-btn:hover { background: rgba(160,120,30,.16); border-color: rgba(160,120,30,.45); color: #8a6610; }

.light-mode .auth-switch { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); }
.light-mode .auth-switch label { color: rgba(28,21,8,.38); }
.light-mode .auth-switch input:checked + label { color: #120d04; }
.light-mode .switch-selector { box-shadow: 0 6px 20px rgba(160,120,30,.22); }

.light-mode .portal-mode-shell { border-bottom-color: rgba(0,0,0,.08); }
.light-mode .auth-switch button { color: rgba(28,21,8,.42); }
.light-mode .auth-switch button.active,
.light-mode .auth-switch button[aria-selected="true"] { color: #1c1508; }
.light-mode .portal-mode-btn { color: rgba(28,21,8,.36); }
.light-mode .portal-mode-btn:hover { color: rgba(28,21,8,.60); }
.light-mode .portal-mode-btn.active { color: #8a6610; border-bottom-color: #8a6610; }
.light-mode .portal-empty-state { background: linear-gradient(135deg, rgba(191,145,68,.08), rgba(255,255,255,.82)); border-color: rgba(191,145,68,.16); }
.light-mode .portal-empty-title { color: #24180a; }
.light-mode .portal-empty-copy { color: rgba(36,24,10,.62); }

.light-mode .portal-sector-note { color: rgba(28,21,8,.44); }

.light-mode .portal-social-btn { background: rgba(255,255,255,.72); border-color: rgba(160,120,30,.16); color: #2d2217; }
.light-mode .portal-social-btn:hover { border-color: rgba(160,120,30,.36); box-shadow: 0 12px 28px rgba(60,40,10,.12); }
.light-mode .portal-social-btn span:last-child { color: rgba(28,21,8,.50); }

.light-mode .portal-divider { color: rgba(130,90,10,.75); }
.light-mode .portal-divider::before,
.light-mode .portal-divider::after { background: linear-gradient(90deg, transparent, rgba(130,90,10,.35), transparent); }

.light-mode .auth-form input { background: rgba(255,255,255,.88); border-color: rgba(160,120,30,.40); color: #1a1508; box-shadow: inset 0 1px 0 rgba(255,255,255,.9); }
.light-mode .auth-form input::placeholder { color: rgba(26,21,8,.30); }
.light-mode .auth-form input:hover { border-color: rgba(160,120,30,.60); background: #fff; }
.light-mode .auth-form input:focus { border-color: rgba(140,100,20,.80); box-shadow: 0 0 0 3px rgba(140,100,20,.14), inset 0 1px 0 rgba(255,255,255,.9); }

.light-mode .portal-reset-row a { color: rgba(130,90,10,.65); }
.light-mode .portal-reset-row a:hover { color: #8a6610; }
.light-mode .portal-footer-note { color: rgba(28,21,8,.28); border-top-color: rgba(0,0,0,.07); }

/* ── MOBILE ── */
@media (max-width: 760px) {
    .glass-modal-overlay { padding: 12px 8px 24px; align-items: flex-end; }

    .access-portal-box {
        width: 100%;
        max-width: none;
        border-radius: 24px 24px 0 0;
        border-bottom: none;
    }

    .access-portal-hero { padding: 26px 20px 16px; }
    .access-portal-hero .modal-title { font-size: 24px; }
    .access-portal-subcopy { font-size: 13px; }
    .access-portal-metrics { display: none; }

    .portal-content { padding: 18px 18px 22px; }

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

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

.manual-hotel-public-view {
    justify-content: flex-start;
    align-items: stretch;
    padding: 118px 3vw 70px;
    min-height: 100vh;
    overflow-y: auto;
    background: #f5f7fb;
    color: #07113f;
}

.manual-hotel-public-view::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(245,247,251,.92), rgba(255,255,255,.98));
    pointer-events: none;
}

.manual-hotel-public-inner { width: min(1500px, 100%); margin: 0 auto; position: relative; z-index: 2; }
.manual-hotel-public-head { text-align: center; margin-bottom: 26px; }
.manual-hotel-public-head h1 { margin: 10px 0 12px; color: #07113f; font-family: 'Playfair Display', serif; font-size: clamp(2.25rem, 4.4vw, 4.6rem); line-height: .98; }
.manual-hotel-public-head p:last-child { max-width: 780px; margin: 0 auto; color: rgba(7,17,63,.62); line-height: 1.7; }
.manual-hotel-public-view .subtitle { color: #c5a059; }

.manual-hotel-searchbar {
    display: grid;
    grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(150px, .7fr)) auto;
    gap: 12px;
    align-items: end;
    padding: 14px;
    border: 1px solid rgba(7,17,63,.14);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(7,17,63,.1);
}
.manual-hotel-searchbar label { display: grid; gap: 6px; }
.manual-hotel-searchbar span { color: #07113f; font-size: 12px; font-weight: 900; letter-spacing: .02em; }
.manual-hotel-searchbar input { width: 100%; border: 1px solid rgba(7,17,63,.18); border-radius: 10px; background: #fff; color: #07113f; padding: 14px 15px; font: inherit; outline: none; }
.manual-hotel-searchbar input:focus { border-color: #07113f; box-shadow: 0 0 0 4px rgba(7,17,63,.08); }
.manual-hotel-searchbar .cta-button { height: 50px; min-width: 110px; border-radius: 999px; }

.manual-hotel-public-grid { display: grid; gap: 16px; margin-top: 24px; }
.manual-hotel-public-card {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    border: 1px solid rgba(7,17,63,.12);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(7,17,63,.08);
}
.manual-hotel-public-card-image { position: relative; min-height: 260px; }
.manual-hotel-public-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; background: rgba(7,17,63,.06); }
.manual-hotel-vip-badge { position: absolute; left: 14px; bottom: 14px; border-radius: 6px; background: #07113f; color: #fff; padding: 8px 10px; font-size: 12px; font-weight: 900; }
.manual-hotel-public-body { display: grid; grid-template-columns: minmax(0, 1fr) 230px; gap: 20px; padding: 22px; }
.manual-hotel-public-body h3 { margin: 0 0 8px; color: #07113f; font-size: 24px; line-height: 1.18; }
.manual-hotel-public-body p { margin: 0 0 8px; color: rgba(7,17,63,.72); font-size: 14px; line-height: 1.58; }
.manual-hotel-location { color: #07113f !important; font-weight: 800; }
.manual-hotel-public-meta { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0; }
.manual-hotel-public-meta span { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; background: rgba(0,116,93,.1); color: #08704f; padding: 7px 10px; font-size: 12px; font-weight: 800; }
.manual-hotel-public-meta svg { width: 15px; height: 15px; }
.manual-hotel-public-price { display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end; gap: 12px; margin-top: 10px; text-align: right; }
.manual-hotel-public-price small,
.manual-hotel-public-price em { display: block; color: rgba(7,17,63,.62); font-style: normal; font-size: 12px; }
.manual-hotel-public-price strong { display: block; color: #07113f; font-size: 28px; line-height: 1; }
.manual-hotel-primary-btn {
    border: 0;
    border-radius: 999px;
    background: #07113f;
    color: #fff;
    padding: 13px 22px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.manual-hotel-primary-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(7,17,63,.22); }
.manual-hotel-public-empty { grid-column: 1 / -1; padding: 40px; border: 1px dashed rgba(7,17,63,.22); border-radius: 12px; color: rgba(7,17,63,.68); text-align: center; background: #fff; }

.manual-hotel-detail-modal { position: fixed; inset: 0; display: none; z-index: 10000; }
.manual-hotel-detail-modal.is-open { display: block; }
.manual-hotel-detail-backdrop { position: absolute; inset: 0; background: rgba(3,7,24,.62); backdrop-filter: blur(4px); }
.manual-hotel-detail-dialog { position: relative; width: min(1520px, calc(100vw - 26px)); max-height: calc(100vh - 28px); margin: 14px auto; overflow-y: auto; border: 1px solid rgba(7,17,63,.12); border-radius: 12px; background: #fff; color: #07113f; }
.manual-hotel-detail-close { display: none; }
.manual-hotel-detail-content { padding: 24px; }
.manual-hotel-sticky-head { position: sticky; top: 0; z-index: 8; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; margin: -24px -24px 20px; padding: 12px 24px; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(7,17,63,.1); backdrop-filter: blur(18px); }
.manual-hotel-sticky-head strong { font-size: 20px; color: #07113f; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.manual-hotel-back-btn { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(7,17,63,.26); border-radius: 999px; background: #fff; color: #07113f; cursor: pointer; }
.manual-hotel-back-btn svg { width: 22px; height: 22px; }
.manual-public-icon { width: 18px; height: 18px; flex: 0 0 auto; vertical-align: -4px; }
.manual-hotel-gallery { display: grid; grid-template-columns: 1.55fr 1fr 1fr; gap: 3px; overflow: hidden; cursor: pointer; }
.manual-hotel-gallery figure { position: relative; margin: 0; min-height: 210px; overflow: hidden; background: #e8ebf1; }
.manual-hotel-gallery figure:first-child { grid-row: span 2; min-height: 423px; }
.manual-hotel-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease, opacity .18s ease; }
.manual-hotel-gallery figure:hover img { transform: scale(1.035); }
.manual-hotel-gallery img.is-changing { opacity: .2; transition: opacity .18s ease; }
.manual-hotel-photo-count { position: absolute; right: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; background: rgba(7,17,63,.86); color: #fff; padding: 9px 16px; font-weight: 900; }
.manual-hotel-photo-count svg { width: 17px; height: 17px; }
.manual-hotel-tabs { display: flex; gap: 26px; border-bottom: 1px solid rgba(7,17,63,.14); margin: 18px 0 14px; font-weight: 900; }
.manual-hotel-tabs span { padding: 13px 0; color: #07113f; }
.manual-hotel-tabs .active { border-bottom: 2px solid #07113f; }
.manual-hotel-overview-row { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 28px; padding: 0 14px 18px; border-bottom: 1px solid rgba(7,17,63,.12); }
.manual-hotel-overview-row h2 { margin: 0 0 8px; font-size: clamp(1.7rem, 3vw, 2.6rem); color: #07113f; }
.manual-hotel-overview-row p { color: rgba(7,17,63,.78); line-height: 1.55; }
.manual-hotel-amenities { padding: 22px 14px; border-bottom: 1px solid rgba(7,17,63,.12); }
.manual-hotel-amenities h3 { margin: 0 0 14px; color: #07113f; font-size: 22px; }
.manual-hotel-amenities > div { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.manual-hotel-amenities span { display: flex; align-items: center; gap: 10px; color: #07113f; font-weight: 800; min-height: 42px; }
.manual-hotel-amenities svg { color: #08704f; }
.manual-hotel-score { display: inline-grid; grid-template-columns: auto auto; align-items: center; gap: 2px 8px; margin-top: 8px; color: #07113f; }
.manual-hotel-score strong { grid-row: span 2; border-radius: 6px; background: #17855d; color: #fff; padding: 7px 8px; font-size: 15px; }
.manual-hotel-score span { font-weight: 900; }
.manual-hotel-score small { grid-column: 2; color: rgba(7,17,63,.62); }
.manual-hotel-detail-price { display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end; text-align: right; color: #07113f; }
.manual-hotel-detail-price strong { font-size: 32px; line-height: 1; }
.manual-hotel-detail-price span,
.manual-hotel-detail-price small { color: rgba(7,17,63,.7); }
.manual-hotel-room-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 26px 0 16px; color: #07113f; font-weight: 800; }
.manual-room-filter-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.manual-room-filter-chips button { border: 1px solid rgba(7,17,63,.42); border-radius: 999px; background: #fff; color: #07113f; padding: 10px 16px; font: inherit; font-weight: 800; cursor: pointer; }
.manual-room-filter-chips button.active { border-width: 2px; background: #f7f9ff; }
.manual-hotel-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 24px; }
.manual-hotel-rooms-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
/* ── ROOM CARD – Hotels.com style ── */
.manual-hotel-room-public { display: flex; flex-direction: column; min-height: 100%; border: 1px solid #dde3ef; border-radius: 16px; background: #fff; overflow: hidden; box-shadow: 0 4px 16px rgba(7,17,63,.07); transition: box-shadow .22s, transform .22s; }
.manual-hotel-room-public:hover { box-shadow: 0 12px 34px rgba(7,17,63,.14); transform: translateY(-3px); }
.manual-hotel-room-image { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #e8ebf1; cursor: pointer; }
.manual-hotel-room-image img, .mhr-main-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .38s ease; }
.manual-hotel-room-image:hover .mhr-main-img { transform: scale(1.045); }
/* prev / next arrows */
.mhr-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border: none; border-radius: 50%; background: rgba(255,255,255,.93); color: #0d1b40; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3; box-shadow: 0 2px 8px rgba(0,0,0,.18); opacity: 0; transition: opacity .18s; padding: 0; }
.manual-hotel-room-image:hover .mhr-nav { opacity: 1; }
.mhr-prev { left: 10px; }
.mhr-next { right: 10px; }
/* photo-count badge */
.manual-hotel-room-image > span { position: absolute; right: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; background: rgba(13,27,64,.72); backdrop-filter: blur(6px); color: #fff; padding: 5px 10px; font-size: 12px; font-weight: 700; cursor: pointer; pointer-events: all; }
.manual-hotel-room-image > span svg { width: 14px; height: 14px; }
/* body */
.manual-hotel-room-body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.manual-hotel-room-body h4 { margin: 0 0 10px; color: #0d1b40; font-size: 16px; font-weight: 800; line-height: 1.25; }
/* review score – green badge */
.mhr-score { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mhr-score > strong { background: #0b6b35; color: #fff; border-radius: 8px 8px 8px 2px; font-size: 14px; font-weight: 900; padding: 5px 9px; min-width: 36px; text-align: center; flex-shrink: 0; }
.mhr-score-text { display: flex; flex-direction: column; gap: 1px; }
.mhr-score-text span { color: #0d1b40; font-size: 13px; font-weight: 700; }
.mhr-score-text small { color: #697186; font-size: 11.5px; }
/* feature bullets */
.manual-room-bullets { display: flex; flex-direction: column; gap: 7px; margin: 0 0 12px; padding: 0; list-style: none; }
.manual-room-bullets li { display: flex; align-items: center; gap: 9px; color: #2b3a5c; font-size: 13.5px; }
.manual-room-bullets li svg { width: 16px; height: 16px; color: #4a5b80; flex-shrink: 0; }
/* badge pills */
.mhr-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.mhr-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; border-radius: 6px; padding: 4px 9px; background: #f0f3fa; color: #2b3a5c; border: 1px solid #dde3ee; }
.mhr-badge svg { width: 13px; height: 13px; }
.mhr-badge-green { background: #eaf6f0; color: #0b6b35; border-color: #b4dcc8; }
/* detail link */
.manual-room-more { display: inline-block; color: #0d1b40; font-size: 13px; font-weight: 700; margin-bottom: 14px; text-decoration: underline; cursor: pointer; }
/* price + CTA */
.manual-hotel-room-public .manual-hotel-public-price { margin-top: auto; display: flex; flex-direction: column; align-items: stretch; gap: 8px; border-top: 1px solid #edf0f7; padding-top: 14px; text-align: left; }
.mhr-price { display: flex; flex-direction: column; gap: 2px; }
.mhr-price small { color: #697186; font-size: 11px; }
.mhr-price strong { color: #0d1b40; font-size: 22px; font-weight: 900; line-height: 1; }
.manual-hotel-room-public .manual-hotel-primary-btn { width: 100%; background: #0d1b40; border-radius: 10px; font-size: 14px; font-weight: 800; padding: 13px 16px; }
.manual-hotel-room-public .manual-hotel-primary-btn:hover { background: #1a2e5c; }
.manual-hotel-book-form { position: sticky; top: 10px; border: 1px solid rgba(7,17,63,.14); border-radius: 16px; background: #fff; padding: 18px; box-shadow: 0 16px 34px rgba(7,17,63,.1); }
.manual-hotel-book-form h3 { margin-top: 0; color: #07113f; }
.manual-hotel-book-form label { display: grid; gap: 6px; margin-bottom: 10px; color: rgba(7,17,63,.68); font-size: 12px; font-weight: 900; }
.manual-hotel-book-form input, .manual-hotel-book-form select, .manual-hotel-book-form textarea { border: 1px solid rgba(7,17,63,.18); border-radius: 10px; padding: 10px; font: inherit; color: #07113f; background: #fff; }
.manual-hotel-book-form button { width: 100%; border-radius: 12px; }
.manual-hotel-photo-modal { position: fixed; inset: 0; display: none; z-index: 10020; background: rgba(0,0,0,.42); }
.manual-hotel-photo-modal.is-open { display: block; }
.manual-hotel-photo-dialog { width: min(1500px, calc(100vw - 32px)); height: calc(100vh - 22px); margin: 10px auto; overflow-y: auto; border-radius: 18px; background: #fff; color: #07113f; box-shadow: 0 24px 80px rgba(0,0,0,.32); }
.manual-photo-head { position: sticky; top: 0; z-index: 3; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 12px 20px; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(7,17,63,.1); backdrop-filter: blur(16px); }
.manual-photo-head strong { font-size: 20px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.manual-photo-chips { position: sticky; top: 71px; z-index: 2; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 1fr); gap: 14px; overflow-x: auto; padding: 14px 20px 18px; background: #fff; }
.manual-photo-chips button { position: relative; height: 58px; overflow: hidden; border: 0; border-radius: 16px; background: #07113f; color: #fff; cursor: pointer; font-weight: 900; }
.manual-photo-chips button.active { outline: 2px solid #07113f; outline-offset: 2px; }
.manual-photo-chips img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.manual-photo-chips span { position: relative; z-index: 1; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.manual-hotel-photo-dialog h2 { margin: 22px 20px 18px; font-size: clamp(2rem, 4vw, 3.2rem); }
.manual-photo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 16px; padding: 0 20px 28px; }
.manual-photo-grid figure { margin: 0; }
.manual-photo-grid img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.manual-photo-grid figcaption { margin-top: 9px; color: #07113f; font-size: 16px; }

@media (max-width: 1020px) {
    .manual-hotel-searchbar,
    .manual-hotel-public-card,
    .manual-hotel-public-body,
    .manual-hotel-overview-row,
    .manual-hotel-detail-layout,
    .manual-hotel-rooms-grid,
    .manual-hotel-amenities > div { grid-template-columns: 1fr; }
    .manual-hotel-gallery { grid-template-columns: 1fr 1fr; }
    .manual-hotel-gallery figure:first-child { grid-column: span 2; grid-row: auto; min-height: 260px; }
    .manual-hotel-public-price,
    .manual-hotel-detail-price { align-items: flex-start; text-align: left; }
}

@media (max-width: 640px) {
    .manual-hotel-public-view { padding: 100px 14px 56px; }
    .manual-hotel-detail-content { padding: 14px; }
    .manual-hotel-gallery { grid-template-columns: 1fr; }
    .manual-hotel-gallery figure:first-child { grid-column: auto; min-height: 240px; }
    .manual-hotel-room-toolbar { align-items: flex-start; flex-direction: column; }
    .manual-hotel-sticky-head,
    .manual-photo-head { grid-template-columns: auto 1fr; }
    .manual-hotel-sticky-head .manual-hotel-primary-btn,
    .manual-photo-head .manual-hotel-primary-btn { grid-column: 1 / -1; }
    .manual-photo-grid { grid-template-columns: 1fr; }
}

.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(197, 160, 89, 0.28);
    border-top: 2px solid rgba(197, 160, 89, 0.65);
    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), 0 0 0 1px rgba(197, 160, 89, 0.06);
    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:
        linear-gradient(110deg, transparent 0%, transparent 38%, rgba(240, 202, 118, 0.18) 48%, transparent 58%, transparent 100%),
        linear-gradient(180deg, rgba(197, 160, 89, 0.08), rgba(9, 9, 9, 0.96)),
        #0d0d0d;
    background-size: 220% 100%, 100% 100%, 100% 100%;
    --fleet-image-progress: 0%;
}

.fleet-card-img-wrap:not(.is-loaded) {
    animation: fleetImageSkeleton 1.35s ease-in-out infinite;
}

.fleet-card-img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.15s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.8s ease;
    filter: blur(10px) brightness(0.78) saturate(0.92);
    opacity: 0.38;
    will-change: opacity, filter, transform;
}

.fleet-card-img-wrap.is-loaded img {
    opacity: 1;
    filter: blur(0) brightness(1);
}

.fleet-card-img-wrap::before {
    content: attr(data-progress-text);
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 152px;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(244, 211, 137, 0.42);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(255, 240, 198, 0.94);
    background:
        linear-gradient(90deg, rgba(197, 160, 89, 0.18) 0%, rgba(197, 160, 89, 0.18) var(--fleet-image-progress), rgba(12, 12, 12, 0.78) var(--fleet-image-progress)),
        rgba(10, 10, 10, 0.78);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 18px 34px rgba(0, 0, 0, 0.35),
        0 0 22px rgba(197, 160, 89, 0.12);
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.24s ease, transform 0.24s ease;
    white-space: nowrap;
}

.fleet-card-img-wrap.is-loaded::before {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.96);
}

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

.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%);
    z-index: 1;
}

@keyframes fleetImageSkeleton {
    0% { background-position: 120% 0, 0 0, 0 0; }
    100% { background-position: -120% 0, 0 0, 0 0; }
}

.fleet-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.03) 18%, rgba(21, 18, 14, 0.7) 100%);
    border: 1px solid rgba(197, 160, 89, 0.56);
    color: #efc978;
    font-size: 10px;
    font-weight: 800;
    padding: 7px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        inset 0 -10px 18px rgba(0, 0, 0, 0.16),
        0 12px 22px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    z-index: 3;
    white-space: nowrap;
}

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

.fleet-badge.badge-dark {
    background: rgba(197, 160, 89, 0.13);
    color: var(--gold);
    border-color: rgba(197, 160, 89, 0.52);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fleet-badge.badge-glow {
    background: rgba(197, 160, 89, 0.14);
    color: rgba(255, 255, 255, 0.96);
    border-color: rgba(197, 160, 89, 0.6);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.38), 0 0 24px rgba(197, 160, 89, 0.14);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.fleet-badge.badge-glass {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(214, 220, 228, 0.18) 42%, rgba(110, 119, 137, 0.18) 100%);
    color: #d8ab55;
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -10px 18px rgba(63, 73, 90, 0.14),
        0 12px 26px rgba(0, 0, 0, 0.22);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 2px 10px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.fleet-badge.badge-onyx {
    background: linear-gradient(180deg, rgba(16, 17, 22, 0.74) 0%, rgba(36, 39, 46, 0.58) 100%);
    color: #e1b86c;
    border-color: rgba(197, 160, 89, 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -8px 14px rgba(0, 0, 0, 0.18),
        0 12px 24px rgba(0, 0, 0, 0.22);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.fleet-badge.badge-champagne {
    background: linear-gradient(135deg, rgba(255, 250, 241, 0.88) 0%, rgba(230, 206, 152, 0.66) 52%, rgba(197, 160, 89, 0.38) 100%);
    color: #5f3b05;
    border-color: rgba(248, 226, 176, 0.74);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.66),
        0 0 0 1px rgba(197, 160, 89, 0.12),
        0 12px 28px rgba(197, 160, 89, 0.2);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.fleet-seats-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background:
        radial-gradient(circle at 30% 20%, rgba(150, 95, 255, 0.18), transparent 55%),
        linear-gradient(180deg, rgba(26, 23, 33, 0.92) 0%, rgba(10, 10, 15, 0.86) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px 6px 8px;
    border-radius: 50px;
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.24);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.fleet-seats-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b56dff;
    background: linear-gradient(180deg, rgba(181, 109, 255, 0.16), rgba(181, 109, 255, 0.04));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.fleet-seats-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.fleet-seats-count {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.fleet-seats-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1;
}

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

.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;
}

@keyframes spec-vip-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(197, 160, 89, 0.12), inset 0 0 5px rgba(197, 160, 89, 0.04); }
    50%       { box-shadow: 0 0 14px rgba(197, 160, 89, 0.32), inset 0 0 8px rgba(197, 160, 89, 0.09); }
}

.fleet-spec-item {
    background: rgba(197, 160, 89, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    animation: spec-vip-glow 3.2s ease-in-out infinite;
    transition: border-color 0.3s ease;
}

.fleet-card:hover .fleet-spec-item {
    border-color: rgba(197, 160, 89, 0.55);
}

.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.82);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.22);
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.fleet-card:hover .fleet-feature-tag {
    background: rgba(197, 160, 89, 0.1);
    border-color: rgba(197, 160, 89, 0.45);
    color: rgba(255, 255, 255, 0.96);
}

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

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

.fleet-price .price-from {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.52);
    text-transform: uppercase;
    letter-spacing: 2.8px;
    font-weight: 700;
}

.fleet-price .price-val {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    font-family: 'Playfair Display', serif;
}

.fleet-price .price-amount {
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.28);
}

.fleet-price .price-suffix {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.48);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.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);
}

.fleet-theme2-spotlight {
    min-width: 176px;
    max-width: 212px;
    align-self: stretch;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(197, 160, 89, 0.28);
    background:
        radial-gradient(circle at top left, rgba(255, 214, 120, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.96) 0%, rgba(23, 16, 8, 0.88) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(197, 160, 89, 0.05),
        0 14px 30px rgba(0, 0, 0, 0.22);
}

.fleet-theme2-spotlight-title {
    color: #f6cf81;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.fleet-theme2-spotlight-subtitle {
    margin-top: 4px;
    color: rgba(255, 244, 218, 0.58);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fv-theme-2 .fleet-grid {
    max-width: 1240px;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.fv-theme-2 .fleet-card-theme2 {
    border-radius: 28px;
    border: 1px solid rgba(197, 160, 89, 0.34);
    border-top: 1px solid rgba(238, 198, 112, 0.72);
    background:
        radial-gradient(circle at top left, rgba(217, 170, 77, 0.07), transparent 26%),
        linear-gradient(180deg, rgba(17, 17, 17, 0.88) 0%, rgba(8, 8, 8, 0.98) 100%);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.46),
        0 0 0 1px rgba(197, 160, 89, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fv-theme-2 .fleet-card-theme2::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 22px;
    border: 1px solid rgba(197, 160, 89, 0.08);
    pointer-events: none;
    opacity: .85;
}

.fv-theme-2 .fleet-card-theme2:hover {
    transform: translateY(-12px);
    box-shadow:
        0 24px 58px rgba(0, 0, 0, 0.56),
        0 0 28px rgba(197, 160, 89, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fv-theme-2 .fleet-card-theme2 .fleet-card-img-wrap {
    height: 250px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.fv-theme-2 .fleet-card-theme2 .fleet-card-img-wrap::after {
    height: 90px;
    background: linear-gradient(0deg, rgba(4, 4, 4, 0.98) 0%, rgba(4, 4, 4, 0.08) 100%);
}

.fv-theme-2 .fleet-card-theme2 .fleet-card-body {
    padding: 22px 22px 20px;
    gap: 15px;
    min-height: 345px;
}

.fv-theme-2 .fleet-card-theme2 .fleet-card-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.fv-theme-2 .fleet-card-theme2 .fleet-card-title > div:first-child {
    min-width: 0;
    width: 100%;
}

.fv-theme-2 .fleet-card-theme2 .fleet-card-title h3 {
    font-size: clamp(25px, 2.2vw, 30px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    word-break: normal;
    overflow-wrap: anywhere;
    max-width: 100%;
    text-wrap: balance;
}

.fv-theme-2 .fleet-card-theme2 .fleet-model-tag {
    margin-top: 7px;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 248, 235, 0.76);
}

.fv-theme-2 .fleet-card-theme2 .fleet-theme2-spotlight {
    min-width: 0;
    max-width: 100%;
    width: auto;
    align-self: flex-start;
    padding: 11px 14px;
    border-radius: 18px;
}

.fv-theme-2 .fleet-card-theme2 .fleet-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.fv-theme-2 .fleet-card-theme2 .fleet-spec-item {
    min-height: 86px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 16px;
    background:
        radial-gradient(circle at top, rgba(255, 212, 122, 0.06), transparent 58%),
        rgba(255, 255, 255, 0.022);
    border-color: rgba(197, 160, 89, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 14px rgba(197, 160, 89, 0.04);
}

.fv-theme-2 .fleet-card-theme2 .fleet-spec-item .spec-val {
    font-size: 16px;
    letter-spacing: -0.01em;
}

.fv-theme-2 .fleet-card-theme2 .fleet-spec-item .spec-label {
    margin-top: 7px;
    font-size: 10px;
    letter-spacing: 1.9px;
    color: rgba(255, 238, 210, 0.56);
}

.fv-theme-2 .fleet-card-theme2 .fleet-features {
    gap: 8px;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.fv-theme-2 .fleet-card-theme2 .fleet-feature-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 999px;
    color: rgba(255, 245, 224, 0.9);
    font-size: 12px;
    font-weight: 600;
}

.fv-theme-2 .fleet-card-theme2 .fleet-feature-tag + .fleet-feature-tag {
    padding-left: 12px;
}

.fv-theme-2 .fleet-card-theme2 .fleet-feature-tag + .fleet-feature-tag::before {
    display: none;
}

.fv-theme-2 .fleet-card-theme2 .fleet-card-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 14px;
    padding-top: 18px;
    border-top-color: rgba(197, 160, 89, 0.14);
}

.fv-theme-2 .fleet-card-theme2 .fleet-price {
    min-width: 0;
}

.fv-theme-2 .fleet-card-theme2 .fleet-price .price-from {
    font-size: 11px;
    letter-spacing: 2.4px;
    color: rgba(255, 236, 203, 0.58);
    white-space: nowrap;
}

.fv-theme-2 .fleet-card-theme2 .fleet-price .price-amount {
    font-size: clamp(32px, 3vw, 42px);
    color: #f3cc7a;
    text-shadow: 0 0 14px rgba(197, 160, 89, 0.14);
}

.fv-theme-2 .fleet-card-theme2 .fleet-price .price-suffix {
    font-size: 15px;
}

.fv-theme-2 .fleet-card-theme2 .fleet-book-btn {
    min-width: 188px;
    padding: 15px 22px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1.8px;
    background: linear-gradient(135deg, #f0c66f 0%, #c6943d 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 12px 24px rgba(197, 160, 89, 0.2);
}

.fv-theme-2 .fleet-card-theme2 .fleet-seats-badge {
    top: 18px;
    right: 18px;
    padding: 8px 12px 8px 9px;
    border-radius: 16px 999px 999px 16px;
    background:
        radial-gradient(circle at 30% 20%, rgba(150, 95, 255, 0.2), transparent 58%),
        linear-gradient(180deg, rgba(36, 28, 48, 0.9) 0%, rgba(14, 12, 21, 0.88) 100%);
    border-color: rgba(255, 255, 255, 0.11);
}

.fv-theme-2 .fleet-card-theme2 .fleet-badge {
    top: 18px;
    left: 18px;
    padding: 9px 18px;
    border-radius: 18px;
}

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

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

    .fv-theme-2 .fleet-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fv-theme-2 .fleet-card-theme2 .fleet-card-img-wrap {
        height: 220px;
    }

    .fv-theme-2 .fleet-card-theme2 .fleet-card-body {
        padding: 20px 18px 18px;
        min-height: auto;
    }

    .fv-theme-2 .fleet-card-theme2 .fleet-card-title {
        flex-direction: column;
    }

    .fv-theme-2 .fleet-card-theme2 .fleet-theme2-spotlight {
        min-width: 100%;
        max-width: none;
    }

    .fv-theme-2 .fleet-card-theme2 .fleet-specs {
        grid-template-columns: 1fr 1fr;
    }

    .fv-theme-2 .fleet-card-theme2 .fleet-card-footer {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .fv-theme-2 .fleet-card-theme2 .fleet-book-btn {
        min-width: 0;
        width: 100%;
    }

    .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:20px !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: none;
    position: relative;
}
.booking-tabs-bar.vehicle-line-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(197,160,89,0.2) 15%,
        rgba(232,201,122,0.9) 40%,
        #f5d97a 50%,
        rgba(232,201,122,0.9) 60%,
        rgba(197,160,89,0.2) 85%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: goldLineSweep 7s ease-in-out infinite;
}
@keyframes goldLineSweep {
    0%   { background-position: 150% center; opacity: 0.3; }
    50%  { background-position: 0% center;   opacity: 1;   }
    100% { background-position: -150% center; opacity: 0.3; }
}

.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;
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:9px 16px 9px 10px;
    border:1px solid transparent;
    background:transparent;
    color:rgba(255,255,255,0.42);
    font-size:12px;
    font-weight:700;
    letter-spacing:0.35px;
    text-transform:uppercase;
    cursor:pointer;
    border-radius:42px;
    overflow:hidden;
    white-space:nowrap;
    transition:color .2s, background .2s, border-color .2s, box-shadow .2s;
}

.booking-tabs-link:hover{
    color:rgba(255,255,255,0.78);
    background:rgba(218,165,32,0.07);
    border-color:rgba(218,165,32,0.18);
}

.booking-tabs-link.active{
    color:#FFE566;
    background:linear-gradient(135deg, rgba(218,165,32,0.20), rgba(218,165,32,0.07));
    border-color:rgba(218,165,32,0.42);
    box-shadow:0 0 22px rgba(218,165,32,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
    padding-right:16px;
    text-shadow:0 0 14px rgba(218,165,32,0.55);
}

.booking-tabs-link.active::before{ content:none; display:none; }
.booking-tabs-link.active::after{ content:none; display:none; }

.booking-tabs-ic{ display:none; }

.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 .search-container.booking-classic-bar.car-mode-hidden{
    display:none !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:11px;
        padding:8px 13px 8px 8px;
    }
    .booking-tabs-link .btl-icon{
        width:26px;
        height:26px;
    }

    .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:rgba(80,65,40,0.55);
}

.light-mode .booking-tabs-link:hover{
    color:rgba(40,25,8,0.85);
    background:rgba(197,160,89,0.07);
    border-color:rgba(197,160,89,0.22);
}

.light-mode .booking-tabs-link.active{
    color:#7a5800;
    background:linear-gradient(135deg,rgba(197,160,89,0.18),rgba(197,160,89,0.06));
    border-color:rgba(197,160,89,0.45);
    text-shadow:0 0 10px rgba(197,160,89,0.4);
}

.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 {
    z-index: 999999 !important;
    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(4, 3, 2, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.guest-prompt-box {
    background: #0e0c09;
    border: 1px solid rgba(197, 160, 89, 0.18);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 32px 80px rgba(0,0,0,0.9),
        0 0 60px rgba(197,160,89,0.06);
    border-radius: 24px;
    width: 90%;
    max-width: 460px;
    padding: 0;
    position: relative;
    text-align: center;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
    opacity: 0;
    overflow: hidden;
}

.guest-prompt-box::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c5a059, #e8c97a, #c5a059, transparent);
}

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

.gp-inner {
    padding: 44px 40px 40px;
}

.gp-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    line-height: 1;
}
.gp-close-btn:hover {
    background: rgba(197,160,89,0.15);
    border-color: rgba(197,160,89,0.4);
    color: #c5a059;
}

.gp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 20px;
    color: #c5a059;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 28px;
    text-transform: uppercase;
}
.gp-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c5a059;
    box-shadow: 0 0 6px #c5a059;
    flex-shrink: 0;
}

.gp-header h2 {
    font-size: 28px;
    color: #f0e8d8;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.gp-header p {
    font-size: 14px;
    color: rgba(200,185,165,0.65);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

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

.gp-btn-primary, .gp-btn-secondary {
    width: 100%;
    padding: 18px 20px;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
}

.gp-btn-primary {
    background: linear-gradient(135deg, #d4a843 0%, #b8892a 50%, #c9a040 100%);
    border: none;
    color: #0e0c09;
    box-shadow: 0 8px 28px rgba(197,160,89,0.28), 0 2px 8px rgba(0,0,0,0.4);
}
.gp-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.gp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(197,160,89,0.38), 0 4px 12px rgba(0,0,0,0.5);
}
.gp-btn-primary:active { transform: translateY(0); }
.gp-btn-primary span { font-size: 14px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.gp-btn-primary small { font-size: 11.5px; opacity: 0.7; font-weight: 500; letter-spacing: 0.3px; }

.gp-btn-secondary {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: #f0e8d8;
}
.gp-btn-secondary:hover {
    background: rgba(197,160,89,0.07);
    border-color: rgba(197,160,89,0.45);
    transform: translateY(-1px);
}
.gp-btn-secondary:active { transform: translateY(0); }
.gp-btn-secondary span { font-size: 14px; font-weight: 700; letter-spacing: 1px; color: #f0e8d8; text-transform: uppercase; }
.gp-btn-secondary small { font-size: 11.5px; color: rgba(200,185,165,0.5); font-weight: 400; }

.gp-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 4px 0;
}
.gp-divider::before, .gp-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(197,160,89,0.12);
}
.gp-divider span {
    color: rgba(197,160,89,0.4);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    flex-shrink: 0;
}

.gp-footer-note {
    margin-top: 28px;
    font-size: 11.5px;
    color: rgba(160,150,135,0.5);
    line-height: 1.6;
    padding: 0 8px;
}
: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);
}

/* ==========================================
   MOBİL BOOKING VIEW FIX
   ========================================== */
@media (max-width: 768px) {
    #booking-view {
        justify-content: flex-start !important;
        padding-top: 82px !important;
        padding-bottom: 40px !important;
        overflow-y: auto;
        min-height: 100dvh;
    }

    #booking-view h1.hero-title-anim {
        font-size: clamp(1.9rem, 8vw, 2.6rem) !important;
        margin-bottom: 14px !important;
        line-height: 1.12 !important;
    }

    #booking-view .subtitle {
        font-size: 10px !important;
        letter-spacing: 4px !important;
        margin-bottom: 10px !important;
    }

    /* Tabs: sola hizala + mask kaldır — center ile 5+ tab sol tarafa kayıyordu */
    .booking-tabs-left {
        justify-content: flex-start !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }

    /* ── TEK YÖN + KİŞİ — mobil kompakt satır ── */
    #transfer-helper-bar {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        margin-top: 10px !important;
        padding: 0 !important;
        background: rgba(255,255,255,0.03) !important;
        border: 1px solid rgba(218,165,32,0.20) !important;
        border-radius: 18px !important;
        overflow: hidden !important;
    }

    #transfer-helper-bar .booking-helper-card {
        flex: 1 !important;
        min-width: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        border-right: 1px solid rgba(218,165,32,0.14) !important;
        background: transparent !important;
        padding: 12px 16px !important;
        box-shadow: none !important;
        gap: 10px !important;
        justify-content: center !important;
        min-height: 50px !important;
        transform: none !important;
        transition: background 0.18s !important;
    }

    #transfer-helper-bar .booking-helper-card:last-child {
        border-right: none !important;
    }

    #transfer-helper-bar .booking-helper-card:hover,
    #transfer-helper-bar .booking-helper-card:active {
        background: rgba(218,165,32,0.07) !important;
        transform: none !important;
        box-shadow: none !important;
    }

    #roundtrip-label {
        font-size: 12px !important;
        letter-spacing: 0.6px !important;
        min-width: 0 !important;
    }

    #transfer-helper-bar .booking-helper-passenger span:first-child {
        font-size: 11px !important;
        letter-spacing: 1px !important;
    }

    #passenger-count-display {
        font-size: 14px !important;
        min-width: 38px !important;
    }

    .vip-tumbler {
        width: 38px !important;
        height: 22px !important;
        flex-shrink: 0 !important;
    }

    .vip-tumbler-thumb {
        width: 16px !important;
        height: 16px !important;
    }

    .booking-helper-toggle.is-active .vip-tumbler-thumb {
        transform: translateX(16px) !important;
    }
}
