/* ==========================================================================
   URBANIA // LUXURY ADVENTURES & EXPEDITIONS
   State-of-the-art Design System & Luxury Web Application Styles
   Build: 2026-07-30
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Luxury Palette */
    --build-version: "20260730";
    --bg-main: #060d18;
    --bg-secondary: #0b1729;
    --bg-card: rgba(18, 30, 49, 0.7);
    --bg-card-hover: rgba(26, 44, 72, 0.85);
    --bg-glass: rgba(15, 25, 42, 0.65);
    --bg-glass-light: rgba(255, 255, 255, 0.08);
    
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dark: #0a1323;
    
    --accent-gold: #d4af37;
    --accent-gold-light: #f3e5ab;
    --accent-gold-dark: #aa8c2c;
    --accent-ice: #38b6ff;
    --accent-emerald: #10b981;
    
    --border-color: rgba(255, 255, 255, 0.12);
    --border-gold: rgba(212, 175, 55, 0.35);
    --border-glow: rgba(56, 182, 255, 0.4);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-display: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Effects & Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.25);
    --shadow-ice: 0 0 30px rgba(56, 182, 255, 0.2);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* iPhone Safari Form & Button Styling Reset */
button, input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* iPhone Touch & Tap Optimization */
a, button, .btn, .filter-btn, .nav-item, .seat-node, .action-tile, .card-image-wrapper {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.25) !important;
    touch-action: manipulation !important;
}

/* Background Ambient Glow */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(56, 182, 255, 0.08) 0%, rgba(212, 175, 55, 0.03) 50%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(16, 185, 129, 0.03) 50%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
}

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

ul {
    list-style: none;
}

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

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

button {
    cursor: pointer;
}

/* ==========================================================================
   FLOATING LUXURY GLASS CAPSULE ISLAND NAVIGATION (NEW MODERN NAVBAR)
   ========================================================================== */
/* ==========================================================================
   FLOATING LUXURY GLASS CAPSULE ISLAND NAVIGATION (NEW MODERN NAVBAR)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 4%;
    background: rgba(6, 13, 24, 0.94);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.15);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 0.6rem 4%;
    background: rgba(6, 13, 24, 0.98);
    border-bottom-color: var(--accent-gold);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.35);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: 3.5px;
    line-height: 1.1;
    color: #ffffff;
    animation: floatUpDownSubtle 5s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
    white-space: nowrap;
}

.logo-sub-tag {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    color: var(--accent-gold);
    -webkit-text-fill-color: var(--accent-gold);
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    background: rgba(212, 175, 55, 0.12);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #e2e8f0;
    position: relative;
    padding: 0.45rem 0.95rem;
    border-radius: 40px;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Hovering over capsule link */
.nav-link:hover {
    color: #ffffff !important;
    background: rgba(212, 175, 55, 0.18);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

/* Active Glowing Capsule Pill */
.nav-link.active {
    background: linear-gradient(135deg, var(--accent-gold), #b89326) !important;
    color: #060d18 !important;
    font-weight: 900 !important;
    box-shadow: 0 4px 22px rgba(212, 175, 55, 0.75), inset 0 1px 1px rgba(255, 255, 255, 0.5) !important;
    transform: scale(1.03);
}

.nav-link::after {
    display: none !important;
}

/* Dropdown sub-navbar inside main navigation */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown .dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(10, 18, 32, 0.98);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
    min-width: 270px;
    padding: 0.6rem 0;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown .dropdown-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    padding: 0.75rem 1.4rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.dropdown-item:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.12);
    padding-left: 1.7rem;
}

/* Sub-navbar tabs inside About View */
.about-sub-navbar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.about-nav-btn {
    padding: 0.75rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-nav-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.about-nav-btn.active {
    background: var(--accent-gold) !important;
    color: var(--text-dark) !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5) !important;
}

.circle-pillar-card:hover {
    border-color: var(--accent-gold) !important;
    background: rgba(212, 175, 55, 0.12) !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

/* 3-Bar Mobile Menu Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 7px;
    gap: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    z-index: 100000;
}
.hamburger-btn:hover {
    background: rgba(212, 175, 55, 0.25);
}
.hamburger-btn .bar {
    width: 22px;
    height: 2.2px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
}
.hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(7.2px) rotate(45deg);
}
.hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-7.2px) rotate(-45deg);
}

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

.currency-selector {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.currency-selector:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.15);
}

.currency-selector option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.45);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

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

.btn-outline-gold {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-gold);
}

/* Main Content & SPA Views */
main {
    flex: 1;
    margin-top: 85px;
    position: relative;
    z-index: 1;
}

.view-section {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.view-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 4%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.1);
    transform: scale(1.03);
    transition: transform 10s ease;
}

.hero:hover .hero-bg img {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 13, 24, 0.5) 0%, rgba(6, 13, 24, 0.2) 50%, var(--bg-main) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1100px;
    text-align: center;
    z-index: 2;
    padding: 2rem 0;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    color: var(--accent-gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
        filter: drop-shadow(0 10px 25px rgba(212, 175, 55, 0.45));
    }
    50% {
        transform: translateY(-16px);
        filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.85));
    }
}

@keyframes floatUpDownSubtle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 25px rgba(255,255,255,0.25);
    animation: floatUpDown 4s ease-in-out infinite;
}

.hero-subtitle {
    font-family: 'Plus Jakarta Sans', 'Outfit', var(--font-body);
    font-size: clamp(1.05rem, 1.6vw, 1.4rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.4px;
    color: #f1f5f9;
    max-width: 850px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
/* Trip Finder Search Bar (Inspired by Mockup) */
.trip-finder {
    background: rgba(15, 25, 42, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.8rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1fr auto;
    gap: 1.5rem;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
    text-align: left;
}

.finder-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
    padding-right: 1.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.finder-item:last-of-type {
    border-right: none;
}

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

.finder-input {
    width: 100%;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
}

.finder-input option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.5rem;
}

/* Value Propositions / Features Bar (Below Hero) */
.features-bar {
    max-width: 1380px;
    margin: -2.5rem auto 3rem;
    position: relative;
    z-index: 10;
    padding: 0 4%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.feature-card {
    background: rgba(15, 25, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 170px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.28), 0 0 15px rgba(15, 25, 42, 0.9);
}

.feature-icon-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(10, 18, 32, 0.7) 100%);
    border: 1.2px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-badge {
    transform: scale(1.1) rotate(4deg);
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.35) 0%, rgba(212, 175, 55, 0.12) 100%);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.55);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: transform var(--transition-fast);
}

.feature-title {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.3;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-secondary);
    opacity: 0.9;
}

/* Section Common Styles */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 0.35rem 1.1rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.8rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFE79A;
    line-height: 1.6;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* Category Filter Tabs */
.filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.6rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-gold);
    color: var(--text-dark);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

/* Destinations & Tour Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4%;
}

.tour-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    group: true;
}

.tour-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
}

.card-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(6, 13, 24, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.card-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(6, 13, 24, 0.85);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

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

.card-content {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-location {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-ice);
    margin-bottom: 0.4rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.4rem;
    flex: 1;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-bottom: 1.4rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

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

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.price-value span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* Layout for Packages View with Sidebar (Mockup Left Screen) */
.packages-container {
    max-width: 1440px;
    margin: 2rem auto 4rem;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
}

.sidebar-filters {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-group {
    margin-bottom: 1.8rem;
}

.filter-group-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.7rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    accent-color: var(--accent-gold);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.price-range-slider {
    width: 100%;
    margin-top: 0.5rem;
    accent-color: var(--accent-gold);
}

/* Detail View (Inspired by SANTORINI & ADVENTURE mockup screens) */
.detail-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: flex-end;
    padding: 3rem 6%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin: 1rem 4% 3rem;
}

.detail-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.detail-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.detail-layout {
    max-width: 1440px;
    margin: 0 auto 5rem;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.detail-nav-tabs {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.detail-tab {
    padding: 0.8rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.detail-tab.active {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.itinerary-day {
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 1.2rem;
}

.day-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.day-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.3rem 0 0.6rem;
    color: var(--text-primary);
}

/* Booking Sidebar / Modal (Inspired by BOOKING FORM Mockup) */
.booking-box {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-lg);
}

.booking-box-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    align-items: end;
}

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

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: rgba(15, 25, 42, 0.95);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.form-control::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.form-control:focus {
    border-color: var(--accent-gold);
    background: rgba(15, 25, 42, 1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    outline: none;
}

/* Fix for Blank / Invisible Option dropdown elements in native OS/browser popups */
select, select.form-control, select.finder-input {
    background-color: #0f192a !important;
    color: #ffffff !important;
}

select option, .form-control option, .finder-input option {
    background-color: #0f192a !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
}

select option:hover, select option:focus, select option:checked,
.form-control option:hover, .form-control option:focus, .form-control option:checked,
.finder-input option:hover, .finder-input option:focus, .finder-input option:checked {
    background-color: #1e293b !important;
    color: var(--accent-gold) !important;
}

.addon-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 0.6rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.addon-card:hover, .addon-card.selected {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.addon-info h5 {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.addon-info span {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.addon-price {
    font-weight: 700;
    color: var(--accent-gold);
}

.price-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    margin: 1.5rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    padding-top: 0.8rem;
    margin-top: 0.8rem;
    margin-bottom: 0;
}

.summary-row.total span:last-child {
    color: var(--accent-gold);
}

/* Process Infographic Section (Only The Best Quality For You) */
.process-section {
    padding: 5rem 4%;
    background: rgba(11, 23, 41, 0.6);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 4rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1.5rem;
}

.process-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: #F5D061;
    text-shadow: 0 0 22px rgba(245, 208, 97, 0.6);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

/* Newsletter & Footer */
footer {
    background: linear-gradient(180deg, #060d18 0%, #03060c 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.85);
    padding: 5rem 4% 2.5rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    max-width: 1540px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1.8fr;
    gap: 3.2rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
    max-width: 380px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 0.75rem;
    list-style: none;
}

.footer-links a {
    color: #ffffff !important;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold) !important;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.newsletter-form {
    display: flex;
    gap: 0.4rem;
    margin-top: 1.2rem;
    background: rgba(15, 25, 42, 0.9);
    border: 1px solid var(--border-gold);
    padding: 0.35rem 0.4rem 0.35rem 1.1rem;
    border-radius: var(--radius-full);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.6);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
}

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

.footer-bottom {
    max-width: 1540px;
    margin: 0 auto;
    padding-top: 2.2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1.2rem;
}

/* Floating Concierge AI Chat Widget */
.concierge-widget {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 999;
}

.concierge-trigger {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-fast);
}

.concierge-trigger:hover {
    transform: scale(1.1) rotate(5deg);
}

.concierge-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 360px;
    background: #091322;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.concierge-box.active {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.concierge-header {
    background: linear-gradient(135deg, #101e33, #182c4a);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.concierge-messages {
    height: 300px;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.msg {
    max-width: 82%;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    line-height: 1.4;
}

.msg.ai {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.msg.user {
    background: var(--accent-ice);
    color: var(--text-dark);
    font-weight: 500;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.concierge-input-area {
    padding: 0.8rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

/* Modal Windows */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 8, 16, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-smooth);
}

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

.modal-content {
    background: #0b1729;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--accent-gold);
}

/* ==========================================================================
   VIP CONCIERGE COMMAND CARD & GLOBAL EMBASSY LOUNGE STYLES (CONTACT SIDEBAR)
   ========================================================================== */
.concierge-command-card,
.butler-command-card {
    background: linear-gradient(145deg, rgba(16, 24, 40, 0.88) 0%, rgba(8, 12, 20, 0.96) 100%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    padding: 2.2rem;
    margin-bottom: 2.5rem;
}

.concierge-command-card::before,
.butler-command-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.command-status-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.2);
}

.command-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: pulseDotAnim 1.5s infinite;
}

@keyframes pulseDotAnim {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 14px #10b981; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.action-tile {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 16px;
    padding: 1.1rem 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    margin-bottom: 0.85rem;
    position: relative;
    overflow: hidden;
}

.action-tile.voice {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-primary);
}

.action-tile.voice:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--accent-gold);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.action-tile.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #ffffff;
}

.action-tile.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.lounge-embassy-card {
    background: rgba(15, 25, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1.4rem 1.6rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.lounge-embassy-card:hover {
    background: rgba(15, 25, 42, 0.92);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}

.embassy-clock-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.72rem;
    color: var(--accent-gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Urbania 9+2 Seater Fleet & Interactive Cabin Map Styles */
.fleet-hero {
    position: relative;
    padding: 5rem 4%;
    background: linear-gradient(180deg, var(--bg-main) 0%, #081223 50%, var(--bg-main) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.fleet-hero-grid {
    padding: 1.6rem 2rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.8rem;
    align-items: center;
}

.fleet-showcase-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    max-width: 1440px;
    margin: 0 auto;
    align-items: flex-start;
}

.fleet-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.fleet-visual img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.6s ease;
}

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

.fleet-badge-floating {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(6, 13, 24, 0.94);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold);
    padding: 1.2rem 1.6rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.spec-pills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 2rem;
}

.spec-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec-pill i, .spec-pill span.icon {
    color: var(--accent-gold);
    font-weight: 700;
}

/* Interactive Cabin Seat Map (9+2 Seater Configuration) */
.cabin-map-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.cabin-map-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cabin-container {
    background: rgba(4, 9, 18, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px 40px 20px 20px;
    padding: 2rem 1.5rem 1.5rem;
    max-width: 360px;
    margin: 1.5rem auto;
    position: relative;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.cabin-front-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    margin-bottom: 1.2rem;
}

.seat-row {
    display: grid;
    grid-template-columns: 1fr 0.6fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
    align-items: center;
}

.seat-row.four-seat {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.seat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.8rem 0.4rem;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    user-select: none;
}

.seat:hover {
    border-color: var(--accent-gold);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.seat.vip {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--border-gold);
    color: var(--accent-gold-light);
}

.seat.driver {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    color: #34d399;
    cursor: not-allowed;
}

.seat.selected {
    background: var(--accent-gold);
    border-color: #ffffff;
    color: var(--text-dark);
    font-weight: 800;
    box-shadow: var(--shadow-gold);
    transform: scale(1.06);
}

.seat.booked {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    cursor: not-allowed;
    text-decoration: line-through;
}

.aisle {
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.2);
    writing-mode: vertical-rl;
    margin: 0 auto;
}

.seat-legend {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

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

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
}

.legend-dot.available { background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3); }
.legend-dot.vip { background: rgba(212, 175, 55, 0.3); border: 1px solid var(--accent-gold); }
.legend-dot.selected { background: var(--accent-gold); }
.legend-dot.booked { background: rgba(255, 255, 255, 0.05); }

/* Responsive Breakpoints */
@media (max-width: 1420px) and (min-width: 1025px) {
    .vip-hotline-btn {
        display: none !important;
    }
    .nav-link {
        padding: 0.42rem 0.65rem !important;
        font-size: 0.74rem !important;
    }
}
@media (max-width: 1180px) and (min-width: 1025px) {
    .logo-main {
        font-size: 1.25rem !important;
        letter-spacing: 2px !important;
    }
    .logo-sub-text {
        font-size: 0.5rem !important;
    }
    .nav-link {
        padding: 0.4rem 0.52rem !important;
        font-size: 0.72rem !important;
    }
}

.hero-service-banner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3.5rem;
}

@media (max-width: 1024px) {
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        border-top: none !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: 2px solid var(--accent-gold) !important;
        padding-top: max(0.65rem, env(safe-area-inset-top)) !important;
        padding-bottom: 0.65rem !important;
        padding-left: 4% !important;
        padding-right: 4% !important;
        background: rgba(6, 13, 24, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.9) !important;
        z-index: 99999 !important;
    }
    #app-main {
        padding-top: calc(82px + env(safe-area-inset-top)) !important;
    }
    .nav-container {
        flex-wrap: nowrap;
        justify-content: space-between !important;
        min-width: 0 !important;
    }
    .desktop-nav-buttons {
        display: none !important;
    }
    .mobile-only-actions {
        display: flex !important;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px dashed rgba(212, 175, 55, 0.35);
        width: 100%;
    }
    .mobile-only-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .logo-main {
        font-size: 1.22rem !important;
        letter-spacing: 2.2px !important;
    }
    .logo-sub-text {
        font-size: 0.52rem !important;
        letter-spacing: 1.4px !important;
    }
    .logo-tagline {
        font-size: 0.48rem !important;
    }
    .hamburger-btn {
        display: flex !important;
    }
    .nav-links {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: calc(85vh - env(safe-area-inset-top, 0px)) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        flex-direction: column;
        background: rgba(6, 13, 24, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-bottom: 3px solid var(--accent-gold);
        padding: 1.25rem 4%;
        gap: 0.6rem;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        z-index: 99998 !important;
    }
    .nav-links.mobile-open {
        display: flex !important;
        animation: dropDownSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .nav-link {
        font-size: 1rem;
        font-weight: 700;
        padding: 0.8rem 1.2rem;
        width: 100%;
        border-radius: var(--radius-sm);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        transition: all 0.25s ease;
        color: #ffffff !important;
    }
    .nav-link:hover, .nav-link.active {
        background: rgba(212, 175, 55, 0.2) !important;
        border-color: var(--accent-gold) !important;
        color: var(--accent-gold) !important;
        padding-left: 1.5rem;
    }
    .nav-dropdown {
        width: 100%;
    }
    .nav-dropdown .dropdown-content {
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(10, 18, 32, 0.8) !important;
        margin: 0.4rem 0 0.6rem 0.8rem !important;
        padding: 0.4rem 0.6rem !important;
        border-left: 2.5px solid var(--accent-gold) !important;
        border-radius: var(--radius-sm) !important;
        width: calc(100% - 0.8rem) !important;
    }
    .nav-dropdown .dropdown-item {
        padding: 0.65rem 1rem !important;
        font-size: 0.92rem !important;
        font-weight: 600 !important;
        color: #e2e8f0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }
    #app-main {
        padding-top: 75px !important;
    }
    .fleet-showcase-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        gap: 2.5rem;
    }
    .features-grid, .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trip-finder {
        grid-template-columns: repeat(2, 1fr);
    }
    .packages-container {
        grid-template-columns: 1fr;
    }
    .detail-layout {
        grid-template-columns: 1fr;
    }
}

@keyframes dropDownSlide {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 580px) {
    header .btn-secondary {
        display: none !important;
    }
    header .btn-primary {
        padding: 0.5rem 1rem !important;
        font-size: 0.78rem !important;
    }
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .logo-main {
        font-size: 1.15rem !important;
        letter-spacing: 1.8px !important;
    }
    .logo-sub-text {
        font-size: 0.48rem !important;
        letter-spacing: 1.2px !important;
    }
    .logo-tagline {
        font-size: 0.44rem !important;
    }
    .features-grid, .process-grid, .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 1.05rem !important;
        letter-spacing: 1.5px !important;
    }
    .logo-sub-text {
        font-size: 0.45rem !important;
        letter-spacing: 1px !important;
    }
    .logo-tagline {
        font-size: 0.42rem !important;
    }
    .hamburger-btn {
        width: 36px !important;
        height: 36px !important;
    }
}

/* Travel Circle Slide Base Grids */
.tc-slide-box {
    background: linear-gradient(145deg, #060e1d 0%, #0c182e 100%);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    padding: 3.5rem 4%;
    box-shadow: 0 0 50px rgba(212,175,55,0.25);
    position: relative;
    overflow: hidden;
    margin-bottom: 4.5rem;
}
.tc-slide4-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    margin-bottom: 3rem;
}
.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.tc-slide6-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}
.tc-slide6-subgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.8rem;
}
.tc-slide6-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 1.5rem 0;
}
.tc-slide7-topgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.tc-slide7-bottomgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    margin-bottom: 3rem;
}

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .cabin-gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .cabin-card {
        aspect-ratio: 4 / 3 !important;
        height: auto !important;
    }
    .fleet-visual {
        display: flex;
        flex-direction: column;
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    .fleet-visual img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        object-position: center 30%;
        display: block;
    }
    .fleet-badge-floating {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        border-radius: 0 !important;
        border: none !important;
        border-top: 1px solid var(--border-gold) !important;
        background: #060d18 !important;
        padding: 1.25rem 1.4rem !important;
        flex-direction: column;
        align-items: flex-start !important;
        box-shadow: none !important;
        width: 100% !important;
        box-sizing: border-box;
        gap: 1rem !important;
    }
    .section-title, .hero-title, .fleet-info .section-title {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
        word-wrap: break-word !important;
        max-width: 100% !important;
    }
    .fleet-hero {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    .fleet-hero-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        padding: 1.5rem 1rem !important;
        gap: 1.8rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .fleet-hero .section-tag {
        font-size: 0.72rem !important;
        letter-spacing: 1px !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
    .fleet-hero .section-title {
        font-size: clamp(1.35rem, 5.5vw, 2.2rem) !important;
        word-break: break-word !important;
        line-height: 1.3 !important;
    }
    .fleet-hero .section-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        word-break: break-word !important;
    }
    #fleet-view div[style*="max-width: 680px"],
    #fleet-view div[style*="max-width: 440px"],
    .fleet-hero div[style*="max-width: 400px"],
    .fleet-hero div[style*="max-width: 380px"] {
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 1.5rem !important;
    }
    #fleet-view img, .fleet-hero img {
        width: 100% !important;
        height: auto !important;
        max-height: 520px !important;
        object-fit: contain !important;
    }
    .fleet-card-container {
        padding: 1.6rem 1.1rem !important;
        border-radius: var(--radius-md) !important;
    }
    .fleet-showcase-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2.2rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .fleet-feature-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .fleet-info, .contact-grid, .membership-grid, .hero-service-banner, .tc-slide-box {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        overflow-x: hidden !important;
    }
    .tc-slide-box {
        padding: 1.8rem 1.1rem !important;
        margin-bottom: 2.5rem !important;
    }
    .tc-slide4-grid,
    .tc-slide6-grid,
    .tc-slide6-subgrid,
    .tc-slide7-topgrid,
    .tc-slide7-bottomgrid {
        grid-template-columns: 1fr !important;
        gap: 1.8rem !important;
    }
    .tc-slide6-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem !important;
    }
    .hero-service-banner {
        grid-template-columns: 1fr !important;
        padding: 1.8rem 1.2rem !important;
        gap: 2rem !important;
        margin-bottom: 2.5rem !important;
    }
    .service-pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .membership-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .about-philosophy-card {
        padding: 1.6rem 1.1rem !important;
        margin-bottom: 2.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .about-philosophy-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.8rem !important;
        width: 100% !important;
    }
    .about-philosophy-img {
        width: 100% !important;
        min-height: 240px !important;
        max-height: 300px !important;
        height: 240px !important;
    }
    .about-philosophy-img img {
        width: 100% !important;
        min-height: 240px !important;
        max-height: 300px !important;
        height: 240px !important;
        object-fit: cover !important;
    }
    .about-philosophy-stats {
        gap: 0.6rem !important;
        padding: 0.8rem 0.6rem !important;
    }
    .about-philosophy-stats > div > div:first-child {
        font-size: 1.3rem !important;
    }
    .about-philosophy-stats > div > div:last-child {
        font-size: 0.72rem !important;
    }
    .form-row-2col {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
        margin-bottom: 0.8rem !important;
    }
    .inquiry-form-card,
    .concierge-command-card,
    .lounge-embassy-card {
        padding: 1.4rem 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .form-label {
        min-height: 0 !important;
        font-size: 0.78rem !important;
        margin-bottom: 0.4rem !important;
    }
    .captcha-badge {
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        font-size: 1.2rem !important;
        padding: 0.6rem 0.5rem !important;
        text-align: center !important;
    }
    .captcha-input {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    .action-tile {
        padding: 0.9rem 0.8rem !important;
        gap: 0.8rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .action-tile strong {
        font-size: 0.9rem !important;
        word-break: break-all !important;
    }
    .spec-pills {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    .spec-pill {
        width: 100% !important;
        box-sizing: border-box;
        white-space: normal !important;
        word-wrap: break-word;
    }
    .btn, a.btn, button.btn {
        position: relative !important;
        z-index: 50 !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3) !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
}

/* Cabin & Gallery Responsive Full-View Cards */
.cabin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.6rem;
}

.cabin-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    aspect-ratio: 4 / 3;
    height: auto;
    position: relative;
    background: #080e1a;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cabin-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.cabin-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cabin-img.top-focus {
    object-position: center 15%;
}

.cabin-img.center-focus {
    object-position: center 25%;
}

/* ==========================================================================
   ULTRA-PREMIUM CURSOR POINTING & HOVER AURA ANIMATION ENGINE
   ========================================================================== */
/* Custom Cursor Rings */
.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28), height 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28), background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
}

.cursor-ring {
    width: 38px;
    height: 38px;
    border: 2px solid rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

/* Hovering / Pointing State (When pointing the cursor at clickable or interactive elements) */
body.cursor-pointing .cursor-ring {
    width: 65px;
    height: 65px;
    border-color: #ffffff;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.05) 70%);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.4);
    animation: cursorPulse 1.2s infinite alternate ease-in-out;
}

body.cursor-pointing .cursor-dot {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    box-shadow: 0 0 15px #ffffff, 0 0 25px var(--accent-gold);
}

@keyframes cursorPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.15) rotate(15deg); }
}

/* Pointing Hover Animations on Cards & Buttons */
.feature-card, .destination-card, .package-card, .nav-link, .btn, .finder-item {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.feature-card:hover, .destination-card:hover, .package-card:hover {
    transform: translateY(-10px) scale(1.025) !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3), 0 0 20px rgba(15, 25, 42, 0.8) !important;
}

.btn:hover {
    transform: translateY(-3px) scale(1.04) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5) !important;
}

.nav-link:hover {
    transform: translateY(-2px) scale(1.08) !important;
    color: var(--accent-gold) !important;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.8) !important;
}

.finder-item:hover {
    border-color: var(--accent-gold) !important;
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.15) !important;
    transform: translateY(-3px) !important;
}

/* ==========================================================================
   ANTIGRAVITY POINTER SPOTLIGHT & RIPPLE SHOCKWAVE ENGINE
   ========================================================================== */
/* Spotlight container positioning */
.feature-card, .destination-card, .package-card, .inquiry-form-card, .finder-item, .btn {
    position: relative !important;
    overflow: hidden !important;
}

/* Dynamic Radial Pointer Spotlight inside Cards & Buttons (follows exact pointer --pointer-x --pointer-y) */
.feature-card::before, .destination-card::before, .package-card::before, .inquiry-form-card::before, .finder-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: radial-gradient(450px circle at var(--pointer-x, -500px) var(--pointer-y, -500px), rgba(212, 175, 55, 0.22), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.feature-card:hover::before, .destination-card:hover::before, .package-card:hover::before, .inquiry-form-card:hover::before, .finder-item:hover::before {
    opacity: 1;
}

/* Button Pointer Spotlight Glow */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: radial-gradient(160px circle at var(--pointer-x, -500px) var(--pointer-y, -500px), rgba(255, 255, 255, 0.45), transparent 75%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1;
}

.btn:hover::before {
    opacity: 1;
}

/* Antigravity Pointer Click & Hover Ripple Shockwave */
.antigravity-pointer-ripple {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1);
    z-index: 999999;
    animation: pointerRippleAnim 0.35s ease-out forwards;
}

@keyframes pointerRippleAnim {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.6; box-shadow: 0 0 8px rgba(212, 175, 55, 0.2); }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; box-shadow: 0 0 15px transparent; }
}

/* ==========================================================================
   ANDROID & IPHONE (iOS) DEDICATED RESPONSIVE MOBILE ENGINE
   ========================================================================== */

/* 1. iOS Safe Area Variables & Body Scroll Lock */
:root {
    --sat: env(safe-area-inset-top, 0px);
    --sab: env(safe-area-inset-bottom, 0px);
    --sal: env(safe-area-inset-left, 0px);
    --sar: env(safe-area-inset-right, 0px);
}

body {
    padding-left: var(--sal);
    padding-right: var(--sar);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

/* Modal Open Scroll Prevention for iOS & Android */
body.modal-open {
    overflow: hidden !important;
    touch-action: none !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* 2. Global Input Auto-Zoom Prevention on iOS Safari */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="search"],
    input[type="date"],
    select,
    textarea,
    .form-control {
        font-size: 16px !important; /* Prevents auto zoom-in on iPhone iOS Safari */
    }
}

/* 3. Header Navbar Mobile Adjustments for iOS & Android */
@media screen and (max-width: 1024px) {
    .navbar {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border-top: none !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: 1.5px solid var(--accent-gold) !important;
        padding-top: max(0.6rem, var(--sat)) !important;
        padding-bottom: 0.6rem !important;
        padding-left: 4% !important;
        padding-right: 4% !important;
        box-sizing: border-box !important;
        background: rgba(6, 13, 24, 0.98) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9) !important;
    }

    .nav-container {
        padding: 0 !important;
        width: 100% !important;
    }

    .nav-links {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: calc(85vh - var(--sat, 0px)) !important;
        padding-top: 1.25rem !important;
        padding-bottom: max(1.5rem, var(--sab, 0px)) !important;
        border-radius: 0 0 16px 16px !important;
    }

    .desktop-nav-buttons .btn-secondary {
        display: none !important;
    }

    .desktop-nav-buttons .btn-primary {
        padding: 0.45rem 0.85rem !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.5px !important;
    }

    .mobile-only-actions {
        display: flex !important;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.2rem;
        padding-top: 1rem;
        border-top: 1px dashed var(--border-gold);
    }
}

@media screen and (max-width: 480px) {
    .logo-brand span:first-of-type {
        font-size: 1.05rem !important;
    }
    .logo-brand div span:nth-child(2) {
        font-size: 0.42rem !important;
    }
}

/* 4. Hero Section Mobile Optimization */
@media screen and (max-width: 768px) {
    .hero {
        min-height: max(550px, 85dvh) !important;
        padding: max(5.5rem, calc(var(--sat) + 5rem)) 4% 3rem !important;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 3rem) !important;
        letter-spacing: 2px !important;
    }

    .hero-subtitle {
        font-size: clamp(0.92rem, 3.8vw, 1.15rem) !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        margin: 1.2rem auto 2.2rem !important;
        padding: 0 0.5rem !important;
    }

    .kerala-hero-badge {
        padding: 0.55rem 1.1rem !important;
        width: calc(100% - 1rem) !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .kerala-hero-badge span {
        font-size: clamp(0.72rem, 2.8vw, 0.88rem) !important;
        white-space: normal !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }
}

/* 5. Lightbox Modal Mobile & Touch Optimization */
@media screen and (max-width: 768px) {
    #lightbox-modal {
        padding: max(1rem, var(--sat)) 0.6rem max(1.2rem, var(--sab)) !important;
    }

    #lightbox-modal > div {
        max-width: 100% !important;
        width: 100% !important;
        padding: 1rem 0.75rem !important;
        max-height: calc(100vh - var(--sat) - var(--sab) - 2rem) !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #lightbox-img-wrapper {
        max-height: 60vh !important;
        width: 100% !important;
    }

    #lightbox-modal button {
        touch-action: manipulation;
        min-height: 40px;
    }
}

/* 6. Invoice & Booking Modal Mobile Optimization */
@media screen and (max-width: 768px) {
    .modal-overlay {
        padding: max(1rem, var(--sat)) 0.6rem max(1.2rem, var(--sab)) !important;
    }

    .modal-content {
        max-width: 100% !important;
        width: 100% !important;
        padding: 1.4rem 1rem !important;
        max-height: calc(100vh - var(--sat) - var(--sab) - 1.5rem) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

/* 7. Floating Concierge Chat Box Mobile Responsive Fix */
@media screen and (max-width: 580px) {
    .concierge-chat-box {
        right: 0.75rem !important;
        bottom: max(5.2rem, calc(var(--sab) + 4.8rem)) !important;
        width: calc(100% - 1.5rem) !important;
        max-width: 100% !important;
        max-height: 70vh !important;
    }
    
    .floating-chat-trigger {
        right: 0.75rem !important;
        bottom: max(1rem, var(--sab)) !important;
    }
}

/* 8. Touch Active Feedback for Mobile Elements */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot, .cursor-ring {
        display: none !important; /* Hide custom cursor on mobile touch screens */
    }

    .btn:active, .card:active, .nav-link:active {
        transform: scale(0.97) !important;
        opacity: 0.9 !important;
    }
}

/* 9. Mobile Readability & Fleet View Responsive Enhancements for iOS & Android */
@media screen and (max-width: 768px) {
    /* Fleet & Cabin Map Adjustments */
    .fleet-card-container {
        padding: 1.2rem 0.8rem !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .cabin-container {
        padding: 0.8rem 0.4rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .cabin-front-label {
        font-size: 0.65rem !important;
        letter-spacing: 0.8px !important;
        padding: 0.35rem 0.2rem !important;
    }

    .seat-row {
        gap: 0.35rem !important;
    }

    .seat {
        font-size: 0.7rem !important;
        min-height: 46px !important;
        padding: 0.35rem 0.2rem !important;
    }

    .seat.driver {
        font-size: 0.72rem !important;
        min-height: 42px !important;
    }

    .kerala-exclusive-box {
        padding: 0.85rem 0.9rem !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    /* Amenities console grid inside cabin map: 2 columns on mobile for large, clear text */
    .cabin-container div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem !important;
    }

    /* All Section Titles & Text readability on Mobile */
    .section-title, h2, h3 {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    p, span, li, label {
        word-break: break-word !important;
        overflow-wrap: break-wrap !important;
    }

    .fleet-feature-grid > div {
        padding: 1rem 0.85rem !important;
    }

    .fleet-feature-grid h4 {
        font-size: 0.92rem !important;
    }

    .fleet-feature-grid p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }
}

/* ==========================================================================
   SERVICES PAGE — MOBILE RESPONSIVE FIXES (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

    /* --- Services View Container --- */
    #services-view > div {
        padding: 1.5rem 4% 3rem !important;
    }

    /* --- Section Header Titles in Services --- */
    #services-view .section-title {
        font-size: clamp(1.35rem, 6vw, 1.8rem) !important;
        line-height: 1.25 !important;
        word-break: break-word !important;
    }

    /* --- Hero Service Banner --- */
    .hero-service-banner {
        grid-template-columns: 1fr !important;
        padding: 1.5rem 1rem !important;
        gap: 1.5rem !important;
        margin-bottom: 2rem !important;
    }

    /* Banner heading font size */
    .hero-service-banner h3 {
        font-size: clamp(1.2rem, 5.5vw, 1.7rem) !important;
        line-height: 1.3 !important;
    }

    /* Badge pills inside banner */
    .hero-service-banner > div:first-child > div[style*="display:flex"] {
        flex-direction: column !important;
        gap: 0.7rem !important;
    }

    /* --- Royal Welcome Experience — Section heading --- */
    #royal-welcome-experience h3 {
        font-size: clamp(1.3rem, 6vw, 1.9rem) !important;
        line-height: 1.25 !important;
        word-break: break-word !important;
    }

    /* --- Royal Welcome Experience — 6-card grid (minmax 320px → 1fr) --- */
    #royal-welcome-experience > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* --- Travel Box section heading --- */
    #travel-box h3 {
        font-size: clamp(1.2rem, 5.5vw, 1.7rem) !important;
        word-break: break-word !important;
        line-height: 1.3 !important;
    }

    /* --- Travel Box — Star banner flex wrap --- */
    #travel-box > div[style*="display:flex"] {
        flex-wrap: wrap !important;
        gap: 0.8rem !important;
        padding: 1rem 1.2rem !important;
    }

    /* --- Travel Box — 11-item convenience grid (minmax 280px → 1fr) --- */
    #travel-box > div[style*="grid-template-columns: repeat(auto-fill"] {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }

    /* --- First Aid Kit card — remove grid-column span 2 --- */
    #travel-box div[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }

    /* --- Travel Box — Bottom 5-pillars banner (minmax 180px → 1fr) --- */
    #travel-box > div[style*="grid-template-columns: repeat(auto-fit, minmax(180px"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
        padding: 1rem !important;
    }

    /* --- Premium Add-ons section heading --- */
    #premium-addons h3 {
        font-size: clamp(1.1rem, 5vw, 1.5rem) !important;
        word-break: break-word !important;
        line-height: 1.3 !important;
    }

    /* --- Premium Add-ons grid (minmax 260px → 1fr) --- */
    #premium-addons > div[style*="grid-template-columns"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
    }

    /* --- Charter Types section heading --- */
    #charter-types h3 {
        font-size: clamp(1.1rem, 5vw, 1.5rem) !important;
        word-break: break-word !important;
        line-height: 1.3 !important;
    }

    /* --- Charter Types grid (minmax 280px → 1fr) --- */
    #charter-types > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }

    /* --- Section sub-section dividers margin --- */
    #royal-welcome-experience,
    #travel-box,
    #premium-addons,
    #charter-types {
        margin-top: 2.5rem !important;
        padding-top: 1.5rem !important;
    }

    /* --- Prevent any inline-flex badges from overflowing --- */
    #services-view span[style*="display:inline-flex"] {
        white-space: normal !important;
        word-break: break-word !important;
        text-align: center !important;
    }

    /* --- Service promise box (right panel in banner) padding --- */
    .hero-service-banner > div:last-child {
        padding: 1.2rem !important;
    }
}

/* Extra small screens (max-width: 400px) — Services page */
@media (max-width: 400px) {

    #services-view > div {
        padding: 1.2rem 3.5% 2.5rem !important;
    }

    /* Stack Premium Add-ons to single column on very small screens */
    #premium-addons > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Stack bottom pillars banner to single column */
    #travel-box > div[style*="grid-template-columns: repeat(auto-fit, minmax(180px"] {
        grid-template-columns: 1fr !important;
    }
}
