/* ==========================================================================
   WAYTOTRIP PREMIUM UI DESIGN SYSTEM v2.0
   Glassmorphism • Golden Hour Palette • Micro-Animations • Premium Feel
   ========================================================================== */

:root {
    --bg-color: #0c0d12;
    --bg-card: rgba(10, 12, 20, 0.65);
    --bg-card-hover: rgba(10, 12, 20, 0.78);
    --primary-color: #ffcc29;
    --primary-glow: #e5b318;
    --primary-soft: rgba(255, 204, 41, 0.15);
    --secondary-color: #3b82f6;
    --accent-warm: #ff8f3e;
    --text-color: #ffffff;
    --text-muted: #94a3b8;
    --text-bright: #e2e8f0;
    --border-color: #0c0d12;
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(255, 204, 41, 0.25);
    --glass-blur: blur(20px);
    --glass-blur-heavy: blur(32px);
    --font-heading: 'Outfit', sans-serif;
    --font-sans: 'Outfit', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.2);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 20px rgba(255, 204, 41, 0.15);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-drag: none;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: #071018;
    background:
        radial-gradient(circle at 15% 20%, rgba(0,170,255,.16), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(0,120,255,.12), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(0,220,255,.08), transparent 45%),
        linear-gradient(180deg, #071018 0%, #0b1522 35%, #111827 70%, #0a1018 100%);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--font-sans);
    scroll-behavior: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar — Minimal */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-warm) 100%);
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Premium Cursor */
#custom-cursor {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(255, 204, 41, 0.5), 0 0 4px rgba(255, 204, 41, 0.8);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

#custom-cursor.hovering {
    width: 18px;
    height: 18px;
    background: rgba(255, 204, 41, 0.3);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 204, 41, 0.4);
}

.cursor-ripple {
    position: fixed;
    width: 8px;
    height: 8px;
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    animation: ripple-out 0.5s ease-out forwards;
}

@keyframes ripple-out {
    to {
        width: 40px;
        height: 40px;
        opacity: 0;
    }
}

/* WebGL Main 3D Canvas Background */
#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    display: block;
}

/* ═══════════════════════════════════════════════════════
   HUD OVERLAYS CONTAINER
   ═══════════════════════════════════════════════════════ */
#journey-hud-overlays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
    pointer-events: none;
}

#journey-hud-overlays > * {
    pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════
   FLOATING LOCATION BADGES — Animated Glow Pills
   ═══════════════════════════════════════════════════════ */
.road-location-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 400;
}

.location-badge-pill {
    position: absolute;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.75rem;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    transition: var(--transition-bounce);
    cursor: default;
    animation: badge-float 5s ease-in-out infinite;
}

.location-badge-pill:nth-child(2n) { animation-delay: -1s; }
.location-badge-pill:nth-child(3n) { animation-delay: -2.5s; }

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.location-badge-pill:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.location-badge-pill .km-tag {
    display: block;
    font-size: 0.5rem;
    opacity: 0.8;
    font-weight: 600;
    margin-top: 2px;
}

.badge-delhi {
    left: 8%; top: 53%;
    background: #1b6b3a;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.badge-kashmir {
    right: 38%; left: auto; top: 28%;
    background: #1d4e6e;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.badge-manali {
    right: 33%; left: auto; top: 42%;
    background: #2d6a4f;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.badge-kedarnath {
    right: 22%; left: auto; top: 48%;
    background: #3a3a3a;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.badge-rajasthan {
    right: 20%; left: auto; top: 62%;
    background: #8a5a1a;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.badge-goa {
    right: 25%; left: auto; top: 72%;
    background: #1a4a6a;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════════════════════
   PREMIUM PRELOADER
   ═══════════════════════════════════════════════════════ */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: linear-gradient(135deg, #ffd043 0%, #ffb347 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#smoke-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.3;
}

.loader-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--bg-color);
    text-transform: uppercase;
}

.loader-tagline {
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-warm);
    font-weight: 800;
    margin-bottom: 25px;
}

.progress-bar-container {
    width: 260px;
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-warm) 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    position: absolute;
    top: -24px;
    right: 0;
    font-size: 0.75rem;
    color: var(--bg-color);
    font-weight: 800;
}

/* ═══════════════════════════════════════════════════════
   FULL-WIDTH TRANSPARENT NAVBAR
   ═══════════════════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 58px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: rgba(8, 10, 18, 0.55);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.nav-container {
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.nav-brand:hover {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link-item {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link-item:hover {
    color: #fff;
}

.nav-link-item.active {
    color: #fff;
    font-weight: 700;
}

/* Nav Places Dropdown */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(7, 16, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
    display: flex;
    flex-direction: column;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    padding-left: 22px;
}

.nav-dropdown-item i {
    font-size: 0.85rem;
    color: var(--primary-color, #3b82f6);
    width: 16px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════
   GLASSMORPHISM PANEL BASE
   ═══════════════════════════════════════════════════════ */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════════════════
   SOCIAL MEDIA STRIP — Vertical Glass Icons
   ═══════════════════════════════════════════════════════ */
#social-media-strip {
    position: fixed;
    left: 1.5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 600;
}

.social-icon-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(8, 10, 18, 0.6);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-bounce);
}

.social-icon-link:hover {
    transform: scale(1.15);
    background: var(--primary-color);
    color: var(--bg-color);
    box-shadow: 0 4px 16px rgba(255, 204, 41, 0.35);
}

/* ═══════════════════════════════════════════════════════
   LEFT HERO PANEL — Typography Upgrade
   ═══════════════════════════════════════════════════════ */
#left-hero-panel {
    position: fixed;
    left: 5%;
    top: 18%;
    width: 32%;
    z-index: 500;
    pointer-events: auto;
}

.sub-heading-premium {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--primary-soft);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 204, 41, 0.2);
}

.main-heading-premium {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.main-heading-premium span {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline-premium {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-bright);
    margin-bottom: 32px;
    max-width: 85%;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS — Premium Gradient with Glow
   ═══════════════════════════════════════════════════════ */
.glow-btn {
    padding: 14px 28px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-warm) 100%);
    color: var(--bg-color);
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 204, 41, 0.35);
    transition: var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.glow-btn:hover::before {
    left: 100%;
}

.glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 204, 41, 0.5);
}

.glow-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 204, 41, 0.3);
}

.glow-btn-small {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.glow-btn-small:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.watch-video-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.watch-video-btn i {
    font-size: 1.8rem;
    transition: var(--transition-smooth);
    color: rgba(255, 255, 255, 0.6);
}

.watch-video-btn:hover {
    color: #fff;
}

.watch-video-btn:hover i {
    color: var(--primary-color);
    text-shadow: 0 0 12px rgba(255, 204, 41, 0.5);
}

/* ═══════════════════════════════════════════════════════
   RIGHT PACKAGES HUD — Glass Card
   ═══════════════════════════════════════════════════════ */
#right-packages-hud {
    position: fixed;
    right: 3%;
    top: 14%;
    width: 22%;
    z-index: 500;
    padding: 18px;
}

.packages-hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.packages-hud-header h3 {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.packages-hud-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-hud-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.package-hud-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.pkg-hud-thumb {
    width: 46px;
    height: 46px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.package-hud-item:hover .pkg-hud-thumb {
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(255, 204, 41, 0.2);
}

.pkg-hud-details {
    flex-grow: 1;
    min-width: 0;
}

.pkg-hud-details h4 {
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pkg-hud-details span {
    font-size: 0.62rem;
    color: var(--text-muted);
    font-weight: 700;
}

.pkg-hud-price {
    font-size: 0.82rem;
    font-weight: 900;
    color: var(--primary-color);
    white-space: nowrap;
}

.view-all-pkg-link {
    display: block;
    margin-top: 14px;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
}

.view-all-pkg-link:hover {
    color: var(--primary-color);
    background: var(--primary-soft);
    border-color: rgba(255, 204, 41, 0.2);
}

/* ═══════════════════════════════════════════════════════
   BOTTOM LEFT ROUTE MAP HUD — Glass Mini-Map
   ═══════════════════════════════════════════════════════ */
#bottom-left-map-hud {
    position: fixed;
    left: 3%;
    bottom: 4%;
    width: 15%;
    z-index: 500;
    padding: 14px;
}

#bottom-left-map-hud h4 {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

#hud-map-frame {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
}

#india-hud-svg {
    height: 100%;
    width: auto;
}

.hud-map-outline {
    fill: rgba(255, 255, 255, 0.04);
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 1.5px;
}

.hud-node {
    fill: rgba(255, 255, 255, 0.15);
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 1px;
    transition: var(--transition-smooth);
}

.hud-node.active {
    fill: var(--primary-color);
    stroke: #ffffff;
    stroke-width: 2px;
    filter: drop-shadow(0 0 6px rgba(255, 204, 41, 0.6));
}

.hud-map-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════
   BOTTOM CENTER CAPSULE BADGES
   ═══════════════════════════════════════════════════════ */
#bottom-center-capsule {
    position: fixed;
    left: 50%;
    bottom: 4%;
    transform: translateX(-50%);
    z-index: 500;
}

.capsule-badges-grid {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(8, 10, 18, 0.7);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    padding: 10px 22px;
    box-shadow: var(--shadow-md);
}

.capsule-badges-grid span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-bright);
}

.capsule-badges-grid span i {
    color: var(--primary-color);
}

.capsule-badges-grid .divider {
    color: rgba(255, 255, 255, 0.1);
}

/* ═══════════════════════════════════════════════════════
   SCROLL INDICATOR — Animated Pulse
   ═══════════════════════════════════════════════════════ */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    background: transparent;
    position: relative;
    margin: 0 auto;
}

.mouse-wheel {
    width: 3px;
    height: 7px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.5s infinite;
}

@keyframes scroll-wheel-anim {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ═══════════════════════════════════════════════════════
   JOURNEY OVERLAY & SCROLL SECTIONS
   ═══════════════════════════════════════════════════════ */
#journey-overlay {
    position: relative;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.scroll-section {
    position: relative;
    width: 100%;
    height: 180vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section {
    height: 100vh;
}

/* ═══════════════════════════════════════════════════════
   CINEMATIC TITLE CARDS — Glass Location Labels
   ═══════════════════════════════════════════════════════ */
.cinematic-title-card {
    position: absolute;
    background: rgba(8, 10, 18, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    color: #ffffff;
    pointer-events: auto;
}

.cinematic-title-card.active {
    opacity: 1;
    transform: translateY(0);
}

.cinematic-title-card.left-panel {
    left: 8%;
    bottom: 12%;
}

.cinematic-title-card.right-panel {
    right: 8%;
    bottom: 12%;
    text-align: right;
}

.card-meta {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-title {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 900;
    margin: 6px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-mileage {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════
   SLIDE-UP PLANNING DRAWER
   ═══════════════════════════════════════════════════════ */
#final-planner-drawer {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 102%);
    width: 95%;
    max-width: 1350px;
    height: 82vh;
    z-index: 1500;
    background: #ffffff;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -16px 60px rgba(0, 0, 0, 0.25);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    color: var(--bg-color);
    overflow: hidden;
}

#final-planner-drawer.active {
    transform: translate(-50%, 0);
}

.drawer-close-btn {
    width: 100%;
    height: 44px;
    background: #f8f9fa;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.drawer-close-btn:hover {
    background: #eef0f2;
}

.handle-line {
    width: 40px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.drawer-scroller {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
}

.drawer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.double-column-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
}

/* ═══════════════════════════════════════════════════════
   PACKAGES SWIPER CARDS
   ═══════════════════════════════════════════════════════ */
.packages-swiper {
    width: 100%;
    padding: 10px 0 35px 0 !important;
}

.package-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-bounce);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.package-visual-frame {
    height: 170px;
    position: relative;
    overflow: hidden;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image {
    transform: scale(1.05);
}

.package-info {
    padding: 20px;
    color: var(--bg-color);
}

.package-title {
    font-size: 1.15rem;
    font-weight: 900;
}

.package-meta {
    font-size: 0.72rem;
    margin-top: 6px;
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-weight: 700;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 15px;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 900;
}

/* ═══════════════════════════════════════════════════════
   SHOWROOM SECTION
   ═══════════════════════════════════════════════════════ */
.showroom-wrapper {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.showroom-viewer-container {
    height: 250px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    background: #f8f9fa;
    overflow: hidden;
}

#showroom-canvas-target {
    width: 100%;
    height: 100%;
}

.fleet-switcher {
    display: flex;
    background: #f1f2f6;
    border-radius: var(--radius-sm);
    padding: 4px;
    margin-bottom: 12px;
}

.fleet-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 0;
    color: var(--bg-color);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.fleet-tab.active {
    background: var(--primary-color);
    box-shadow: var(--shadow-sm);
    font-weight: 800;
}

.price-specs-box {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--bg-color);
}

/* ═══════════════════════════════════════════════════════
   BOOKING FORM SECTION
   ═══════════════════════════════════════════════════════ */
.booking-wrapper {
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--bg-color);
}

.booking-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--bg-color);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper select, .input-wrapper input {
    width: 100%;
    background: #f8f9fa;
    border: 2px solid rgba(0, 0, 0, 0.08);
    padding: 11px 15px 11px 38px;
    color: var(--bg-color);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-smooth);
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.8rem;
    pointer-events: none;
}

.input-wrapper select:focus, .input-wrapper input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.input-wrapper input[type="range"] {
    padding: 0;
    height: 8px;
    background: #e0e0e0;
}

.full-width {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════
   DRAWER FOOTER
   ═══════════════════════════════════════════════════════ */
#drawer-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.drawer-footer-links {
    display: flex;
    gap: 20px;
}

.drawer-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.drawer-footer-links a:hover {
    color: var(--primary-color);
}

/* ═══════════════════════════════════════════════════════
   GLOBAL SHARED FOOTER STYLING
   ═══════════════════════════════════════════════════════ */
#footer {
    position: relative;
    z-index: 600;
    background: rgba(4, 9, 15, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 30px 0;
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-overlay-grid {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-overlay-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-overlay-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-branding-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-column h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.footer-links li a:hover {
    color: var(--primary-color, #3b82f6);
    padding-left: 6px;
}

.footer-column.contact-col p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column.contact-col i {
    color: var(--primary-color, #3b82f6);
}

.footer-bottom-bar {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════
   HAMBURGER MENU
   ═══════════════════════════════════════════════════════ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Error messages */
.error-msg {
    color: #ff6b6b;
    font-size: 0.65rem;
    font-weight: 800;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   UTILITY ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.fade-up {
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Subtle shimmer for premium elements */
@keyframes subtle-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ═══════════════════════════════════════════════════════
   NAVBAR SCROLLED STATE
   ═══════════════════════════════════════════════════════ */
#navbar.scrolled {
    background: rgba(8, 10, 18, 0.88);
    height: 52px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.04);
}

#navbar {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ═══════════════════════════════════════════════════════
   JOURNEY PROGRESS BAR HUD
   ═══════════════════════════════════════════════════════ */
#journey-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

#journey-progress-bar.visible {
    opacity: 1;
    transform: translateY(0);
}

.jpb-track {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
}

.jpb-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-warm, #ff8f3e) 50%, var(--primary-color) 100%);
    border-radius: 0 2px 2px 0;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 204, 41, 0.4);
}

.jpb-info {
    display: flex;
    justify-content: space-between;
    padding: 6px 20px;
    background: rgba(8, 10, 18, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.jpb-location {
    font-family: var(--font-sans, 'Outfit', sans-serif);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color, #ffcc29);
}

.jpb-distance {
    font-family: var(--font-sans, 'Outfit', sans-serif);
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════
   SCROLL INDICATOR FIX — Text visibility on 3D scene
   ═══════════════════════════════════════════════════════ */
.scroll-indicator p {
    color: rgba(255, 255, 255, 0.7) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.mouse-icon {
    border-color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════
   INTERACTIVE HOVER GLOWS — Package Items Glow
   ═══════════════════════════════════════════════════════ */
.package-hud-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.3s ease;
}

.package-hud-item {
    position: relative;
}

.package-hud-item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

/* ═══════════════════════════════════════════════════════
   HUD NODE PULSE ANIMATION
   ═══════════════════════════════════════════════════════ */
.hud-node.active {
    animation: node-pulse 2s ease-in-out infinite;
}

@keyframes node-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 4px rgba(255, 204, 41, 0.4)); 
    }
    50% { 
        filter: drop-shadow(0 0 10px rgba(255, 204, 41, 0.8)); 
    }
}

/* ═══════════════════════════════════════════════════════
   GLASSMORPHISM ANIMATED BORDER ON HOVER
   ═══════════════════════════════════════════════════════ */
.glass-panel::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(255, 204, 41, 0) 0%, 
        rgba(255, 204, 41, 0.15) 50%,
        rgba(255, 204, 41, 0) 100%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.glass-panel {
    position: relative;
    overflow: visible;
}

.glass-panel:hover::before {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   HERO TRUST STATISTICS
   ═══════════════════════════════════════════════════════ */
.trust-stats-container {
    margin-top: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    backdrop-filter: var(--glass-blur);
    max-width: 90%;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.trust-rating .stars {
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.trust-rating .trust-text {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.stat-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

.stat-item {
    text-align: left;
}

.stat-number, .stat-number-static {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.58rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════
   SCROLLABLE CONTENT FLOW
   ═══════════════════════════════════════════════════════ */
#main-content-flow {
    position: relative;
    width: 100%;
    z-index: 600;
    overflow: hidden;
    padding-top: 0;
    background: transparent !important;
}

/* Golden heading glow + Dual Blurred Ambient Lights across entire main content flow */
#main-content-flow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: none !important;
    filter: none !important;
    animation: none !important;
    pointer-events: none;
}

/* Subtle Vignette Depth & Grid Dots across main content flow */
#main-content-flow::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(#ffffff55 1px, transparent 1px),
        radial-gradient(#4fc3ff55 1px, transparent 1px);
    background-size:
        70px 70px,
        120px 120px;
    background-position:
        0 0,
        40px 30px;
    opacity: .25;
    pointer-events: none;
}

.content-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3vh 0;
}

/* ─── TRAVEL SERVICES SECTION PREMIUM BACKGROUND ─── */
#services {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 4vh 5% 3vh 5% !important;
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

#services > .section-header,
#services > .services-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

/* Golden heading glow + Dual Blurred Ambient Lights (Gold and Blue) */
#services::before{
    content:"";
    position:absolute;
    inset:0;

    background:

    radial-gradient(circle,
        rgba(0,190,255,.20) 0%,
        transparent 60%) 10% 20% / 500px 500px no-repeat,

    radial-gradient(circle,
        rgba(60,140,255,.18) 0%,
        transparent 60%) 90% 15% / 400px 400px no-repeat,

    radial-gradient(circle,
        rgba(255,255,255,.04) 0%,
        transparent 70%) center center / 700px 700px no-repeat;

    filter:blur(40px);

    animation:ambientFloat 18s ease-in-out infinite alternate;

    pointer-events:none;
}

/* Subtle Vignette Depth */
#services::after{

content:"";

position:absolute;
inset:0;

background-image:

radial-gradient(#ffffff55 1px, transparent 1px),
radial-gradient(#4fc3ff55 1px, transparent 1px);

background-size:
70px 70px,
120px 120px;

background-position:
0 0,
40px 30px;

opacity:.25;

pointer-events:none;

}
@keyframes ambientFloat{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-35px);
}

100%{
transform:translateY(20px);
}

}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-meta {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* ─── SERVICES GRID ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

/* ─── LUXURY GLOWING FLOATING GLASS CARDS ─── */

/* 1. Accent Color Identities */
.services-grid .service-card:nth-child(1) {
    --accent-color: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.18);
}
.services-grid .service-card:nth-child(2) {
    --accent-color: #a855f7;
    --accent-glow: rgba(168, 85, 247, 0.18);
}
.services-grid .service-card:nth-child(3) {
    --accent-color: #ffcc29;
    --accent-glow: rgba(255, 204, 41, 0.32);
}
.services-grid .service-card:nth-child(4) {
    --accent-color: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.18);
}
.services-grid .service-card:nth-child(5) {
    --accent-color: #f97316;
    --accent-glow: rgba(249, 115, 22, 0.18);
}
.services-grid .service-card:nth-child(6) {
    --accent-color: #ff5ca8;
    --accent-glow: rgba(255, 92, 168, 0.18);
}

/* Base Glassmorphism Card Style */
.service-card {
    position: relative;
    padding: 45px 28px 35px 28px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(22, 25, 38, 0.45) 0%, rgba(15, 17, 26, 0.3) 100%);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.25), 
        0 0 25px var(--accent-glow),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    z-index: 10;
}

/* Center Featured Card (Tour Packages) */
.services-grid .service-card:nth-child(3) {
    min-height: calc(100% + 25px);
    transform: translateY(-12px);
    border: 2px solid rgba(255, 204, 41, 0.45);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.35), 
        0 0 35px rgba(255, 204, 41, 0.45),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(30, 27, 18, 0.55) 0%, rgba(20, 18, 12, 0.35) 100%);
}

/* Most Popular Badge on Tour Packages Card */
.services-grid .service-card:nth-child(3)::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(90deg, #ffcc29, #ff8f3e);
    color: #0c0d12;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 4px 35px;
    transform: rotate(45deg) translateZ(0);
    transform-origin: center;
    will-change: transform;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
    display: none;
}

/* Circular Glowing Icon Wrapper */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2), 
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}
.services-grid .service-card:nth-child(3) .service-icon-wrapper {
    width: 90px;
    height: 90px;
    border-color: rgba(255, 204, 41, 0.35);
    
}

.service-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.2;
    transition: opacity 0.5s ease;
}

.service-icon {
    font-size: 1.9rem;
    color: var(--accent-color);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    text-shadow: 0 0 12px var(--accent-color);
}
.services-grid .service-card:nth-child(3) .service-icon {
    font-size: 2.3rem;
}

/* Card Accent Bottom Glow */
.service-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 10%;
    width: 80%;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(25px);
    pointer-events: none;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Glossy Sweep line container overlay */
.service-card-gloss {
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.06) 48%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.06) 52%,
        transparent 55%
    );
    pointer-events: none;
    z-index: 15;
    animation: glossy-sweep 5s infinite ease-in-out;
}
@keyframes glossy-sweep {
    0% { transform: translate(-10%, -10%); }
    80% { transform: translate(-10%, -10%); }
    100% { transform: translate(45%, 45%); }
}

/* Premium Hover Transitions */
.services-grid .service-card:hover {
    transform: translateY(-20px);
    border-color: rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, rgba(22, 25, 38, 0.6) 0%, rgba(15, 17, 26, 0.45) 100%);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.45), 
        0 0 35px var(--accent-glow),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
}
.services-grid .service-card:nth-child(3):hover {
    transform: translateY(-28px) scale(1.03);
    border-color: rgba(255, 204, 41, 0.7);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.55), 
        0 0 45px rgba(255, 204, 41, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.25);
}

.services-grid .service-card:hover .service-icon-wrapper {
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.services-grid .service-card:hover .service-icon {
    transform: scale(1.12);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Premium Buttons Styling */
.service-book-btn {
    padding: 10px 22px !important;
    font-size: 0.72rem !important;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(12, 13, 18, 0.8) 100%) !important;
    border: 1px solid var(--accent-color) !important;
    color: #ffffff !important;
    font-weight: 800;
    border-radius: var(--radius-sm) !important;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.service-book-btn::after {
    content: ' \2192';
    display: inline-block;
    transition: transform 0.3s ease;
}
.services-grid .service-card:hover .service-book-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color) 100%) !important;
    color: #0c0d12 !important;
    box-shadow: 0 0 20px var(--accent-color);
}
.services-grid .service-card:hover .service-book-btn::after {
    transform: translateX(5px);
}

/* ─── MAP & TIMELINE FLOW ─── */
.map-timeline-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.journey-timeline-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-step {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

.timeline-step.active {
    background: rgba(255, 204, 41, 0.06);
    border-color: rgba(255, 204, 41, 0.2);
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.timeline-step.active .step-dot {
    background: var(--primary-color);
    color: #000;
}

.step-info h4 {
    font-size: 0.95rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4px;
    transition: var(--transition-smooth);
}

.timeline-step.active .step-info h4 {
    color: var(--primary-color);
}

.step-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.stylized-india-map-card {
    padding: 24px;
    border-radius: var(--radius-lg);
}

#india-large-route-svg {
    width: 100%;
    height: auto;
    max-height: 480px;
}

.map-pin-group {
    cursor: pointer;
}

.map-node {
    fill: rgba(255, 255, 255, 0.15);
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 1px;
    transition: var(--transition-smooth);
}

.map-node.active {
    fill: var(--primary-color);
    stroke: #ffffff;
    stroke-width: 1.5px;
}

.map-label {
    fill: rgba(255, 255, 255, 0.5);
    font-size: 3.5px;
    font-family: var(--font-sans);
    font-weight: 700;
    transition: var(--transition-smooth);
}

.map-pin-group:hover .map-label, .timeline-step.active .map-label {
    fill: #ffffff;
    font-weight: 800;
}

/* ─── TESTIMONIALS SLIDER ─── */
.reviews-swiper {
    padding: 50px 40px !important;
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.review-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-bright);
    margin-bottom: 25px;
    font-style: italic;
    max-width: 85%;
}

.review-author h4 {
    font-size: 0.95rem;
    font-weight: 900;
    color: #ffffff;
}

.review-author span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-top: 4px;
}

.reviews-pagination {
    bottom: 15px !important;
}

.reviews-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1;
}

.reviews-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    width: 20px !important;
    border-radius: 4px !important;
}

/* ─── FINAL CTA SECTION ─── */
.final-cta-card {
    position: relative;
    padding: 100px 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, rgba(8, 10, 18, 0.9) 0%, rgba(20, 12, 8, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-landscape-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 13, 18, 0.95) 0%, rgba(12, 13, 18, 0.4) 60%, rgba(211, 84, 0, 0.25) 100%);
    z-index: 1;
    pointer-events: none;
}

.cta-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.cta-subtitle {
    font-size: 0.95rem;
    color: var(--text-bright);
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* ─── CINEMATIC OVERLAY MODAL ─── */
.cinematic-modal-overlay {
    position: fixed;
    inset: 0;
    background: #000000;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.cinematic-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cinematic-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Cinema Letterbox Bars */
.cinema-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 12%;
    background: #000000;
    z-index: 100;
}
.top-bar { top: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.bottom-bar { bottom: 0; border-top: 1px solid rgba(255,255,255,0.05); }

/* Close Button */
.cinematic-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 200;
    transition: color 0.3s;
}
.cinematic-close:hover {
    color: #ffffff;
}

/* Slide Container & Individual Slides */
.cinematic-slide-container {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.cinematic-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.cinematic-slide.active {
    opacity: 1;
}

/* Ken Burns Pan & Zoom Effect */
@keyframes kenBurns {
    0% { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1%, -1%); }
}

.cinematic-slide.pan-zoom {
    animation: kenBurns 4.5s ease-out forwards;
}

/* Voiceover Overlay */
.cinematic-vo-overlay {
    position: absolute;
    bottom: 16%;
    left: 5%;
    right: 5%;
    text-align: center;
    z-index: 50;
    pointer-events: none;
}

#cinematic-vo-text {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1.6;
    text-shadow: 0 4px 15px rgba(0,0,0,0.9);
}

/* Final CTA Screen overlay inside modal */
.cinematic-cta-screen {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(12,13,18,0.95) 0%, rgba(5,6,8,0.99) 100%);
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
}

.cinematic-cta-screen.active {
    opacity: 1;
    pointer-events: auto;
}

.cta-heading-large {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 20px 0 10px;
    text-align: center;
}

.cta-subheading-large {
    font-size: 1.1rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
}

/* ─── LIVE HUD PANEL ─── */
.live-journey-hud {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    padding: 12px 30px;
    background: rgba(8, 10, 18, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-pill);
    z-index: 1500;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hud-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hud-label {
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.hud-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* ─── GLASSMORPHIC DESTINATION CARD ─── */
.dest-overlay-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(6, 8, 14, 0.65);
    border: 1px solid rgba(255, 215, 0, 0.22);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: var(--radius-lg);
    padding: 45px 65px;
    text-align: center;
    z-index: 4500;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.dest-overlay-card.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.0);
}

.dest-overlay-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.dest-overlay-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.dest-overlay-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 5px 0;
    text-transform: uppercase;
}

.dest-overlay-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.dest-overlay-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.5), transparent);
    margin: 20px auto;
}

.dest-overlay-meta {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ─── JOURNEY COMPLETION CARD ─── */
.journey-complete-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: radial-gradient(circle at center, rgba(8, 10, 18, 0.96) 0%, rgba(4, 5, 8, 0.99) 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: var(--radius-lg);
    padding: 50px 70px;
    text-align: center;
    z-index: 4800;
    opacity: 0;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    max-width: 480px;
    width: 90%;
}

.journey-complete-card.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.0);
    pointer-events: auto;
}

.complete-header {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.complete-line {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.complete-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.complete-list li {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
}

.complete-total {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.complete-thanks {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.complete-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 25px;
}

.complete-brand span {
    color: var(--primary-color);
}

.complete-action-btn {
    background: var(--primary-color);
    border: none;
    color: #080a12;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s;
}

.complete-action-btn:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}


/* ─── BUILD YOUR DREAM JOURNEY WIZARD ─── */
#journey-map-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 2vh 5% 3vh 5% !important;
    position: relative;
    overflow: hidden;
    background: transparent !important;
}

#journey-map-section > .section-header,
#journey-map-section > .luxury-wizard-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.luxury-wizard-wrapper {
    max-width: 720px;
    margin: 15px auto 0 auto;
    padding: 45px;
    border-radius: 24px;
    background: rgba(22, 24, 34, 0.78);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Wizard Header & Dots */
.wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 20px;
}

.progress-indicator {
    font-size: 0.85rem;
    font-weight: 700;
    color: #AAB2C3;
}

.current-step-num {
    color: #E9C46A;
    font-weight: 900;
}

.step-progress-dots {
    display: flex;
    gap: 8px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: background 0.3s, transform 0.3s;
}

.progress-dot.active {
    background: linear-gradient(135deg, #E9C46A 0%, #C99A2E 100%);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(233, 196, 106, 0.5);
}

/* Panel Typography */
.panel-heading {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.panel-subheading {
    color: #AAB2C3;
    font-size: 0.82rem;
    line-height: 1.5;
}

/* Panel Transitions */
.wizard-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.wizard-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Form inputs & controls */
.form-question {
    margin-bottom: 28px;
    position: relative;
}

.question-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #AAB2C3;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Segmented Control Selector */
.segmented-control {
    display: flex;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 12px;
    gap: 4px;
}

.segment-item {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.segment-item input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.segment-label {
    display: block;
    padding: 10px;
    border-radius: 8px;
    color: #AAB2C3;
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.segment-item:hover .segment-label {
    color: #ffffff;
}

.segment-item input:checked + .segment-label {
    background: linear-gradient(135deg, #E9C46A 0%, #C99A2E 100%);
    color: #000000;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(201, 154, 46, 0.25);
}

/* Luxury Input Fields */
.luxury-input-wrapper {
    position: relative;
}

.luxury-input-wrapper input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 14px 14px 44px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    outline: none;
    transition: all 0.3s ease;
}

.luxury-input-wrapper input:focus {
    border-color: #F4C95D;
    background: rgba(244, 201, 93, 0.02);
    box-shadow: 0 0 15px rgba(244, 201, 93, 0.1);
}

.luxury-input-wrapper .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #AAB2C3;
    font-size: 0.9rem;
    pointer-events: none;
}

.luxury-input-wrapper input:focus + .input-icon {
    color: #F4C95D;
}

.luxury-input-wrapper input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Search suggestions dropdown */
.relative-dropdown {
    position: relative;
}

.live-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.live-search-input-wrapper input {
    padding-right: 36px !important;
}

.clear-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #aab2c3;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    display: none;
    z-index: 5;
}

.clear-search-btn:hover {
    color: #e9c46a;
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.custom-live-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    min-width: 320px;
    background: rgba(12, 14, 22, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(233, 196, 106, 0.28);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(233, 196, 106, 0.12);
    padding: 16px;
    max-height: 420px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-live-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Custom Scrollbar for Dropdown */
.custom-live-dropdown::-webkit-scrollbar {
    width: 6px;
}
.custom-live-dropdown::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}
.custom-live-dropdown::-webkit-scrollbar-thumb {
    background: rgba(233, 196, 106, 0.3);
    border-radius: 4px;
}
.custom-live-dropdown::-webkit-scrollbar-thumb:hover {
    background: #e9c46a;
}

/* Dropdown Section Header */
.dropdown-section-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: #e9c46a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-section-block {
    margin-bottom: 16px;
}
.dropdown-section-block:last-child {
    margin-bottom: 0;
}

/* Recent Searches Pills */
.recent-searches-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.recent-pill-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.recent-pill-item:hover, .recent-pill-item.keyboard-active {
    background: rgba(233, 196, 106, 0.15);
    border-color: #e9c46a;
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(233, 196, 106, 0.15);
}

.recent-pill-route {
    display: flex;
    align-items: center;
    gap: 8px;
}

.recent-pill-icon {
    color: #e9c46a;
    font-size: 0.75rem;
}

/* Trending Grid Cards */
.trending-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.trending-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.trending-card-item:hover, .trending-card-item.keyboard-active {
    background: rgba(233, 196, 106, 0.14);
    border-color: #e9c46a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.trending-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.trending-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.trending-name {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trending-sub {
    font-size: 0.68rem;
    color: #aab2c3;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Rich Live Search Result Cards */
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    outline: none;
}

.search-card-item:hover, .search-card-item.keyboard-active, .search-card-item:focus-visible {
    background: rgba(233, 196, 106, 0.15);
    border-color: #e9c46a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(233, 196, 106, 0.2);
}

.search-card-left {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.search-card-thumb {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.search-card-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
}

.search-card-header-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-card-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-card-tag {
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tag-popular {
    background: rgba(255, 159, 67, 0.2);
    color: #ff9f43;
    border: 1px solid rgba(255, 159, 67, 0.4);
}

.tag-trending {
    background: rgba(233, 196, 106, 0.2);
    color: #e9c46a;
    border: 1px solid rgba(233, 196, 106, 0.4);
}

.search-card-subtitle {
    font-size: 0.72rem;
    color: #aab2c3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.search-card-rating {
    background: rgba(255, 204, 41, 0.15);
    border: 1px solid rgba(255, 204, 41, 0.3);
    color: #ffcc29;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-gmaps-card {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 6px;
    padding-top: 10px;
    color: #60a5fa !important;
}

.search-gmaps-card:hover, .search-gmaps-card.keyboard-active {
    background: rgba(96, 165, 250, 0.15) !important;
    border-color: #60a5fa !important;
    box-shadow: 0 4px 16px rgba(96, 165, 250, 0.25) !important;
}

/* From/To Container & Swap Button */
.from-to-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.swap-locations-btn {
    position: absolute;
    left: 50%;
    top: 36px;
    transform: translate(-50%, 0);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(233, 196, 106, 0.15);
    border: 1px solid rgba(233, 196, 106, 0.4);
    color: #E9C46A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.swap-locations-btn:hover {
    background: #E9C46A;
    color: #071018;
    transform: translate(-50%, 0) rotate(180deg) scale(1.15);
    box-shadow: 0 0 18px rgba(233, 196, 106, 0.6);
}

/* Popular Quick Routes Pills */
.popular-routes-container {
    margin-top: 6px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popular-routes-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #AAB2C3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-route-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.route-pill-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.route-pill-btn:hover, .route-pill-btn.active {
    background: rgba(233, 196, 106, 0.18);
    border-color: #E9C46A;
    color: #E9C46A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 196, 106, 0.2);
}

/* Select Input Styling */
.luxury-select-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 14px 14px 44px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.luxury-select-input option {
    background: #0f111a;
    color: #ffffff;
    padding: 10px;
}

.luxury-select-input:focus {
    border-color: #F4C95D;
    background: rgba(244, 201, 93, 0.02);
    box-shadow: 0 0 15px rgba(244, 201, 93, 0.1);
}

/* Vehicle Selection Pills inside Distance Card */
.fleet-quick-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
}

.fleet-selector-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: #AAB2C3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fleet-pills-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.v-quick-pill {
    flex: 1;
    min-width: 110px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #AAB2C3;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.v-quick-pill:hover, .v-quick-pill.active {
    background: rgba(233, 196, 106, 0.18);
    border-color: #E9C46A;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(233, 196, 106, 0.2);
}

/* Dynamic Route Distance Card */
.route-distance-card {
    margin-top: 20px;
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(11, 21, 34, 0.95) 100%);
    border: 1px solid rgba(233, 196, 106, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slideUpFade 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.distance-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

.route-cities {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.city-badge {
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.gmaps-route-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(66, 133, 244, 0.12);
    border: 1px solid rgba(66, 133, 244, 0.35);
    color: #60a5fa;
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
}

.gmaps-route-btn:hover {
    background: rgba(66, 133, 244, 0.25);
    border-color: #60a5fa;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.35);
}

.pickup-city {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

.drop-city {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
}

.route-arrow {
    color: #E9C46A;
    font-size: 0.9rem;
}

.trip-type-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E9C46A;
    background: rgba(233, 196, 106, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(233, 196, 106, 0.25);
}

.distance-card-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.metric-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-icon {
    font-size: 1.1rem;
    color: #E9C46A;
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.65rem;
    color: #AAB2C3;
    text-transform: uppercase;
    font-weight: 700;
}

.metric-val {
    font-size: 0.9rem;
    font-weight: 900;
    color: #ffffff;
}

.distance-card-action {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.distance-book-btn {
    padding: 10px 24px !important;
    font-size: 0.8rem !important;
    border-radius: 25px !important;
}

@media (max-width: 600px) {
    .distance-card-metrics {
        grid-template-columns: 1fr;
    }
    .swap-locations-btn {
        display: none;
    }
}

/* Passenger Steppers */
.steppers-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.luxury-stepper-box {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s;
}

.luxury-stepper-box:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.stepper-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stepper-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
}

.stepper-desc {
    font-size: 0.72rem;
    color: #AAB2C3;
}

.stepper-control {
    display: flex;
    align-items: center;
    gap: 18px;
}

.stepper-control button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.25s ease;
}

.stepper-control button:hover {
    background: linear-gradient(135deg, #E9C46A 0%, #C99A2E 100%);
    border-color: #E9C46A;
    color: #000000;
    box-shadow: 0 0 10px rgba(233, 196, 106, 0.35);
}

.stepper-control .counter-val {
    font-size: 1.1rem;
    font-weight: 900;
    color: #E9C46A;
    min-width: 20px;
    text-align: center;
}

/* Vehicle Grid Cards */
.luxury-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.vehicle-choice-card {
    position: relative;
    cursor: pointer;
}

.vehicle-choice-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.vehicle-choice-content {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.vehicle-choice-card:hover .vehicle-choice-content {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
}

.vehicle-choice-content .v-emoji {
    font-size: 2.2rem;
}

.vehicle-choice-content .v-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vehicle-choice-content .v-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
}

.vehicle-choice-content .v-cap {
    font-size: 0.7rem;
    color: #AAB2C3;
}

.vehicle-choice-card input:checked + .vehicle-choice-content {
    border-color: #E9C46A;
    background: rgba(233, 196, 106, 0.04);
    box-shadow: 0 0 20px rgba(233, 196, 106, 0.1);
}

.vehicle-choice-card input:checked + .vehicle-choice-content .v-name {
    color: #E9C46A;
}

/* Hotel switches toggles */
.hotel-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.lux-toggle-switch {
    position: relative;
}

.lux-toggle-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    display: flex;
    width: 100px;
    height: 38px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 19px;
    padding: 3px;
    position: relative;
    cursor: pointer;
    user-select: none;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    font-weight: 800;
    color: #AAB2C3;
}

.toggle-yes {
    margin-left: 14px;
}

.toggle-no {
    margin-right: 14px;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    width: 44px;
    height: 30px;
    background: linear-gradient(135deg, #E9C46A 0%, #C99A2E 100%);
    border-radius: 15px;
    top: 3.5px;
    left: 3px;
    transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    box-shadow: 0 3px 8px rgba(201, 154, 46, 0.25);
}

.lux-toggle-switch input:checked + .toggle-slider::after {
    left: 51px;
}

.lux-toggle-switch input:checked + .toggle-slider .toggle-yes {
    color: #000000;
    z-index: 2;
}

.lux-toggle-switch input:not(:checked) + .toggle-slider .toggle-no {
    color: #000000;
    z-index: 2;
}

/* Notes Textarea */
textarea#dream-notes {
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    outline: none;
    resize: none;
    transition: all 0.3s ease;
}

textarea#dream-notes:focus {
    border-color: #F4C95D;
    background: rgba(244, 201, 93, 0.02);
    box-shadow: 0 0 15px rgba(244, 201, 93, 0.1);
}

.error-msg {
    display: block;
    color: #ff4757;
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 6px;
}

/* Review Summary Display */
.review-luxury-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 28px;
    border-radius: 20px;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 12px;
    cursor: pointer;
    transition: transform 0.2s;
}

.review-item:hover {
    transform: translateX(4px);
}

.review-item.block-item {
    grid-column: span 2;
    border-bottom: none;
    padding-bottom: 0;
}

.rev-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #AAB2C3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rev-val {
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
}

.review-item:hover .rev-val {
    color: #E9C46A;
}

/* Actions bar */
.wizard-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
}

.wizard-actions button.glow-btn {
    background: linear-gradient(135deg, #E9C46A 0%, #C99A2E 100%);
    color: #000000;
    border: none;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(201, 154, 46, 0.25);
}

.wizard-actions button.glow-btn:hover {
    background: linear-gradient(135deg, #FFD76A 0%, #E9C46A 100%);
    box-shadow: 0 8px 25px rgba(233, 196, 106, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 580px) {
    .luxury-vehicle-grid {
        grid-template-columns: 1fr;
    }
    .review-luxury-summary {
        grid-template-columns: 1fr;
    }
    .review-item.block-item {
        grid-column: span 1;
    }
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .luxury-wizard-wrapper {
        padding: 24px 16px;
    }
}

/* ─── TRAVEL SERVICES LUXURY BACKGROUND BLOB & PARTICLE ANIMATIONS ─── */

/* Background Animated Light Blobs */
.services-blob-1 {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: float-blob-1 15s infinite ease-in-out;
}
.services-blob-2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: float-blob-2 20s infinite ease-in-out;
}

@keyframes float-blob-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, 40px) scale(1.15); }
}
@keyframes float-blob-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-90px, -60px) scale(0.9); }
}

/* Tiny Floating Particles */
.services-particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}
.services-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* =========================================
   WAYTOTRIP LIVE DESTINATION SEARCH Styles
   ========================================= */

#live-destination-search {
    position: relative;
    padding: 80px 0;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

#live-destination-search.visible {
    opacity: 1;
    transform: translateY(0);
}

#live-destination-search .live-search-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 30px auto 0 auto;
}

.live-search-panel {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: rgba(10, 12, 20, 0.75);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 204, 41, 0.2);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 204, 41, 0.05);
    position: relative;
}

/* Live status row styling */
.live-search-status-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.live-search-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-pill);
}

.live-search-status .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #2ec4b6;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    box-shadow: 0 0 8px #2ec4b6;
    animation: live-search-pulse 2s infinite;
}

.live-search-status .status-text {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-bright);
}

/* Fields Wrapper */
.live-search-fields-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-bottom: 30px;
}

.live-search-input-group {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.live-search-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-transform: uppercase;
    padding-left: 4px;
}

.live-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.live-search-input-wrapper .input-icon {
    position: absolute;
    left: 16px;
    font-size: 1.1rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.live-search-input {
    width: 100%;
    padding: 16px 80px 16px 45px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.live-search-input::placeholder {
    color: var(--text-muted);
}

.live-search-input:focus {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 204, 41, 0.4);
    box-shadow: 0 0 15px rgba(255, 204, 41, 0.1);
}

.live-search-input-group.confirmed .live-search-input {
    border-color: rgba(46, 196, 182, 0.4);
    background: rgba(46, 196, 182, 0.02);
}

.confirmed-icon {
    position: absolute;
    right: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2ec4b6;
    color: #0c0d12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    pointer-events: none;
    box-shadow: 0 0 8px rgba(46, 196, 182, 0.3);
}

.clear-search-btn {
    position: absolute;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: var(--transition-smooth);
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.clear-search-btn:hover {
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

/* Swap button styling */
.live-search-swap-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 204, 41, 0.1);
    border: 1px solid rgba(255, 204, 41, 0.25);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    margin-top: 22px; /* aligns with inputs due to labels */
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.live-search-swap-btn:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: rotate(180deg) scale(1.05);
    box-shadow: 0 0 15px rgba(255, 204, 41, 0.35);
}

.live-search-swap-btn.swapping {
    animation: swap-btn-spin 0.4s ease-out;
}

.swap-icon-mobile {
    display: none;
}

/* Custom Dropdown listbox */
.live-search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(10, 14, 22, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 204, 41, 0.2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    max-height: 320px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.live-search-dropdown.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Custom scrollbar for dropdown */
.live-search-dropdown::-webkit-scrollbar {
    width: 6px;
}

.live-search-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.live-search-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 204, 41, 0.2);
    border-radius: 3px;
}

.live-search-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 204, 41, 0.4);
}

/* Results row items */
.live-search-result {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.live-search-result:last-child {
    border-bottom: none;
}

.live-search-result-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.live-search-result-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.live-search-result-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-color);
}

.live-search-result-address {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.live-search-result.active,
.live-search-result:hover {
    background: rgba(255, 204, 41, 0.08);
    border-left: 3px solid var(--primary-color);
    padding-left: 15px; /* offset the border */
}

.live-search-result.active .live-search-result-icon,
.live-search-result:hover .live-search-result-icon {
    background: rgba(255, 204, 41, 0.15);
}

/* Loading & Empty state */
.live-search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.live-search-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 204, 41, 0.1);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: live-search-spin 0.8s linear infinite;
}

.live-search-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 30px 20px;
    text-align: center;
    color: var(--text-muted);
}

.live-search-empty span {
    font-size: 1.5rem;
}

.live-search-empty p {
    font-size: 0.85rem;
}

/* Explore Route Action Button */
.live-search-actions {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.live-search-explore-btn {
    min-width: 200px;
    justify-content: center;
    opacity: 0.5;
    pointer-events: none;
    box-shadow: none;
    filter: grayscale(1);
    transition: var(--transition-bounce), opacity 0.3s ease, filter 0.3s ease;
}

.live-search-explore-btn.ready {
    opacity: 1;
    pointer-events: auto;
    filter: none;
    box-shadow: 0 4px 20px rgba(255, 204, 41, 0.35);
}

/* MapTiler Attribution */
.live-search-attribution {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.live-search-attribution a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 4px;
    font-weight: 700;
}

.live-search-attribution a:hover {
    text-decoration: underline;
}

/* Keyframes */
@keyframes live-search-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(46, 196, 182, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0);
    }
}

@keyframes live-search-spin {
    to { transform: rotate(360deg); }
}

@keyframes swap-btn-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(180deg); }
}

/* Responsive Stacking Queries */
@media (max-width: 768px) {
    #live-destination-search {
        padding: 60px 0;
    }
    
    .live-search-panel {
        padding: 25px 20px;
    }
    
    .live-search-fields-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .live-search-swap-btn {
        margin: 5px 0;
        transform: rotate(90deg);
        order: 2;
    }
    
    .live-search-swap-btn:hover {
        transform: rotate(270deg) scale(1.05);
    }
    
    #from-group {
        order: 1;
        width: 100%;
    }
    
    #to-group {
        order: 3;
        width: 100%;
    }
    
    .swap-icon-desktop {
        display: none;
    }
    
    .swap-icon-mobile {
        display: block;
        font-size: 1.1rem;
    }
}

/* =========================================
   WAYTOTRIP ROUTE PLANNER CSS
   ========================================= */

.live-search-route-panel {
    margin-top: 25px;
    padding: 25px;
    border-radius: var(--radius-md);
    background: rgba(8, 10, 16, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 204, 41, 0.08);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02), 0 10px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.live-search-route-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading State Styling */
.route-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.route-spinner {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255, 204, 41, 0.1);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: live-search-spin 0.8s linear infinite;
    box-shadow: 0 0 10px rgba(255, 204, 41, 0.15);
}

/* Error State Styling */
.route-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
    text-align: center;
    color: #ff6b6b;
}

.route-error span {
    font-size: 1.5rem;
}

.route-error p {
    font-size: 0.88rem;
    font-weight: 500;
}

/* Content State Styling */
.route-content {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

.route-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header Row (From/To & Line) */
.route-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.route-place {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 30%;
    text-align: center;
}

.route-from-place {
    align-items: flex-start;
    text-align: left;
}

.route-to-place {
    align-items: flex-end;
    text-align: right;
}

.route-place-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.from-dot {
    background-color: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.to-dot {
    background-color: #2ec4b6;
    box-shadow: 0 0 10px #2ec4b6;
}

.route-place-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.5px;
    word-break: break-word;
}

/* Connector Line & Vehicle */
.route-connector-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 10px;
    min-width: 80px;
}

.route-connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, #2ec4b6 100%);
    position: relative;
    border-radius: 1px;
}

.route-connector-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: route-pulse-line 2s infinite linear;
}

.route-vehicle-icon {
    position: absolute;
    background: rgba(12, 14, 22, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: route-vehicle-bob 3s ease-in-out infinite;
}

/* Stats Row */
.route-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 25px;
}

.route-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.route-stat-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.route-stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 204, 41, 0.1);
}

.route-actions-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.route-actions-row .live-search-explore-btn {
    min-width: 180px;
    padding: 12px 24px;
    font-size: 0.75rem;
}

/* Animations */
@keyframes route-pulse-line {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes route-vehicle-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .live-search-route-panel {
        padding: 20px 15px;
    }
    
    .route-header-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .route-place {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .route-connector-wrapper {
        width: 100%;
        max-width: 200px;
        height: 30px;
    }
    
    .route-connector-line {
        height: 2px;
        width: 100%;
    }
    
    .route-stats-row {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }
    
    .route-stat {
        width: 100%;
    }
    
    .route-stat-value {
        font-size: 1.2rem;
    }
}

/* =========================================
   WAYTOTRIP EXACT LOCATION MAP PICKER
   ========================================= */

/* Trigger Button inside Input Box */
.map-picker-trigger-btn {
    position: absolute;
    right: 46px; /* positioned next to clear/confirmed icon */
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: var(--transition-bounce);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    z-index: 5;
    outline: none;
}

.map-picker-trigger-btn:hover {
    background: rgba(255, 204, 41, 0.15);
    transform: scale(1.1);
}

.live-search-input-group.confirmed .map-picker-trigger-btn {
    right: 46px; /* maintains position */
}

/* Modal Overlay with Blurred Backdrop */
.map-picker-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 5, 8, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.map-picker-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Glass Modal Panel */
.map-picker-modal {
    width: 100%;
    max-width: 650px;
    background: rgba(12, 14, 22, 0.95);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border: 1px solid rgba(255, 204, 41, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 204, 41, 0.05);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.map-picker-modal-overlay.open .map-picker-modal {
    transform: translateY(0);
}

/* Modal Header */
.map-picker-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.map-picker-modal-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-color);
    text-transform: uppercase;
}

.map-picker-close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.map-picker-close-btn:hover {
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

/* Modal Body */
.map-picker-modal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Interactive Map Canvas */
.map-picker-map-container {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0d0e12;
    overflow: hidden;
}

/* Selected Address Block */
.map-picker-selected-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    position: relative;
}

.map-picker-selected-info .info-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.info-value-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.map-picker-selected-info .info-value {
    font-size: 0.88rem;
    color: var(--text-color);
    line-height: 1.4;
    word-break: break-word;
}

/* Spinner Loader */
.map-picker-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-picker-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 204, 41, 0.1);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: live-search-spin 0.8s linear infinite;
}

/* Error banner */
.map-picker-error-msg {
    padding: 10px 14px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--radius-sm);
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Modal Footer */
.map-picker-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(8, 10, 16, 0.4);
}

.map-picker-btn {
    padding: 12px 20px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-picker-gps-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-bright);
}

.map-picker-gps-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    transform: translateY(-2px);
}

.map-picker-confirm-btn {
    border: none;
    box-shadow: 0 4px 15px rgba(255, 204, 41, 0.25);
}

.map-picker-confirm-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 204, 41, 0.4);
}

/* Custom Draggable Marker Style */
.custom-map-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: grab;
    transition: transform 0.15s ease;
}

.custom-map-marker:active {
    cursor: grabbing;
    transform: scale(1.15);
}

.custom-map-marker-icon {
    font-size: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}

/* MapLibre popup style customization to match dark theme */
.maplibregl-popup-content {
    background: rgba(12, 14, 22, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 204, 41, 0.25) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
}

.maplibregl-popup-anchor-top .maplibregl-popup-tip {
    border-bottom-color: rgba(255, 204, 41, 0.25) !important;
}
.maplibregl-popup-anchor-bottom .maplibregl-popup-tip {
    border-top-color: rgba(255, 204, 41, 0.25) !important;
}

/* Responsive modal rules */
@media (max-width: 600px) {
    .map-picker-modal-overlay {
        padding: 10px;
    }
    
    .map-picker-modal {
        border-radius: var(--radius-md);
    }
    
    .map-picker-modal-header {
        padding: 15px 18px;
    }
    
    .map-picker-modal-body {
        padding: 15px;
        gap: 12px;
    }
    
    .map-picker-map-container {
        height: 260px;
    }
    
    .map-picker-modal-footer {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .map-picker-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   MAP PICKER IN-MODAL SEARCH & RE-CENTER
   ========================================= */

.map-picker-search-container {
    position: relative;
    width: 100%;
}

.map-picker-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    pointer-events: none;
    opacity: 0.6;
}

.map-picker-search-input {
    width: 100%;
    padding: 12px 40px 12px 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    transition: var(--transition-smooth);
    outline: none;
}

.map-picker-search-input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 204, 41, 0.4);
    box-shadow: 0 0 15px rgba(255, 204, 41, 0.1);
}

.map-picker-search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.map-picker-search-clear:hover {
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.08);
}

/* Modal Search Dropdown Suggestions */
.map-picker-search-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: rgba(12, 14, 22, 0.98);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border: 1px solid rgba(255, 204, 41, 0.25);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-height: 240px;
    overflow-y: auto;
    z-index: 10;
}

.map-picker-search-item {
    display: flex;
    flex-direction: column;
    padding: 10px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
    text-align: left;
}

.map-picker-search-item:last-child {
    border-bottom: none;
}

.map-picker-search-item:hover {
    background: rgba(255, 204, 41, 0.08);
}

.map-picker-search-item-primary {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-bright);
}

.map-picker-search-item-secondary {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Floating Recenter Button */
.map-picker-recenter-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    background: rgba(12, 14, 22, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-bright);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.map-picker-recenter-btn:hover {
    background: rgba(255, 204, 41, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Selected Location Box adjustments */
.map-picker-selected-info {
    min-height: 75px;
}

.map-picker-selected-info .info-value {
    white-space: pre-line;
}

/* =========================================
   WAYTOTRIP ROUTE BOOKING ACTIONS
   ========================================= */
.route-booking-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 204, 41, 0.15);
}

.route-booking-row .glow-btn,
.route-booking-row .whatsapp-btn,
.route-booking-row .book-trip-btn {
    flex: 1;
    max-width: 250px;
    padding: 12px 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Book on WhatsApp (Premium WhatsApp Green / Gold accents) */
.route-booking-row .whatsapp-btn {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.05) 100%);
    border: 1.5px solid #25D366;
    color: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.1);
}

.route-booking-row .whatsapp-btn:hover {
    background: #25D366;
    color: #0c0f1d; /* Dark navy */
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Book This Trip (Gold / Bronze Premium theme) */
.route-booking-row .book-trip-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4af37 100%);
    border: none;
    color: #0c0f1d; /* Dark navy */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.route-booking-row .book-trip-btn:hover {
    background: linear-gradient(135deg, #ffcc29 0%, var(--primary-color) 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* Responsive side-by-side to stacked */
@media (max-width: 768px) {
    .route-booking-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .route-booking-row .glow-btn,
    .route-booking-row .whatsapp-btn,
    .route-booking-row .book-trip-btn {
        width: 100%;
        max-width: 100%;
    }
}

/* ==========================================================================
   WHY TRAVEL WITH WAYTOTRIP SECTION
   ========================================================================== */
#why-choose-us-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

#why-choose-us-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

#why-choose-us-section .section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 15px;
    font-family: var(--font-sans);
}

/* 4 Feature Cards Layout */
.why-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
    margin-bottom: 50px;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Individual Feature Card Design */
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-md);
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Inner gold subtle glow / accent line */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.why-card:hover::before {
    opacity: 0.8;
}

/* Hover interactions */
.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 204, 41, 0.35);
    background: linear-gradient(185deg, rgba(255, 204, 41, 0.03) 0%, var(--bg-card-hover) 100%);
    box-shadow: 0 10px 25px rgba(255, 204, 41, 0.05), var(--shadow-lg);
}

/* Glowing Icon Container */
.why-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 204, 41, 0.06);
    border: 1.5px solid rgba(255, 204, 41, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(255, 204, 41, 0.05);
}

.why-icon-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(255, 204, 41, 0.3);
    transition: all 0.3s ease;
}

/* Hover Icon Glow */
.why-card:hover .why-icon-box {
    background: rgba(255, 204, 41, 0.12);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 204, 41, 0.3), inset 0 0 8px rgba(255, 204, 41, 0.1);
    transform: scale(1.05);
}

.why-card:hover .why-icon-box i {
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(255, 204, 41, 0.6);
}

/* Card Heading & Text */
.why-card-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-bright);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.why-card-desc {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Bottom CTA wrapper */
.why-bottom-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 15px;
    width: 100%;
}

.why-bottom-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.why-bottom-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
    box-sizing: border-box;
}

/* WhatsApp Button (Why Us custom styles) */
.why-bottom-actions .why-whatsapp-btn {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.05) 100%);
    border: 1.5px solid #25D366;
    color: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.1);
    padding: 14px 28px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
}

.why-bottom-actions .why-whatsapp-btn i {
    font-size: 1.1rem;
    margin-right: 8px;
}

.why-bottom-actions .why-whatsapp-btn:hover {
    background: #25D366;
    color: #0c0f1d;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Book Your Trip button matching layout */
.why-bottom-actions .why-book-btn {
    padding: 14px 28px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    flex: 1;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .why-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    #why-choose-us-section {
        padding: 70px 20px;
    }
}

@media (max-width: 576px) {
    .why-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    
    #why-choose-us-section {
        padding: 55px 15px;
    }
    
    .why-bottom-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .why-bottom-actions .why-whatsapp-btn,
    .why-bottom-actions .why-book-btn {
        width: 100%;
    }
    
    .why-card {
        padding: 30px 20px;
    }
}

/* GLOBAL FLOATING WHATSAPP BUTTON FOR ALL PAGES */
.whatsapp-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    background: #25d366;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 20px;
        right: 16px;
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}
