/* ═══════════════════════════════════════════
   BURDWAN CITY TRAVEL — Premium Design System
   Color: Deep Black + Royal Gold + Cream White
   Fonts: Playfair Display + Poppins
   ═══════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    --black: #0a0a0a;
    --black-deep: #050505;
    --charcoal: #1a1a1a;
    --charcoal-light: #222222;
    --card-bg: #141414;
    --gold: #c9a84c;
    --gold-light: #dfc06e;
    --gold-dark: #a88a35;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --gold-glow-strong: rgba(201, 168, 76, 0.3);
    --cream: #f5f0e8;
    --cream-dim: #d4cfc7;
    --text-primary: #f5f0e8;
    --text-secondary: #a09888;
    --text-muted: #6b6358;
    --border: #2a2520;
    --border-light: #3a352f;
    --danger: #e74c3c;
    --danger-bg: rgba(231, 76, 60, 0.1);
    --success: #27ae60;
    --success-bg: rgba(39, 174, 96, 0.1);
    --warning: #f39c12;
    --warning-bg: rgba(243, 156, 18, 0.1);
    --info: #3498db;
    --info-bg: rgba(52, 152, 219, 0.1);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-soft: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* ─── Glass Card ─── */
.glass-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(20, 20, 20, 0.95));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}


/* ══════════════════════════════════════
   CINEMATIC INTRO
   ══════════════════════════════════════ */

.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--black-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: introFadeOut 0.8s ease-in 3.2s forwards;
}

.intro-content {
    text-align: center;
    position: relative;
}

.intro-logo {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.15em;
    opacity: 0;
    animation: introLogoFade 1.2s ease-out 0.3s forwards;
    text-shadow: 0 0 60px rgba(201, 168, 76, 0.3), 0 0 120px rgba(201, 168, 76, 0.1);
}

.intro-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    color: var(--cream-dim);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 1rem;
    min-height: 1.5em;
    opacity: 0;
    animation: introTaglineFade 0.5s ease-out 1.2s forwards;
}

.intro-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem auto 0;
    animation: introLineSweep 1.5s ease-in-out 1.8s forwards;
}

@keyframes introLogoFade {
    0% { opacity: 0; transform: scale(0.8) translateY(20px); filter: blur(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

@keyframes introTaglineFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes introLineSweep {
    0% { width: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { width: min(400px, 80vw); opacity: 0.7; }
}

@keyframes introFadeOut {
    0% { opacity: 1; pointer-events: all; }
    100% { opacity: 0; pointer-events: none; visibility: hidden; }
}

.main-app {
    opacity: 0;
    animation: mainAppSlideIn 0.8s ease-out 3.5s forwards;
}

.main-app.hidden {
    /* initial hidden state handled by opacity in animation */
}

@keyframes mainAppSlideIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.nav-logo:hover { opacity: 0.8; }

.nav-logo-icon {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--cream);
}

.admin-badge {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

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

.nav-link-admin {
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.nav-link-admin:hover {
    background: var(--gold-glow);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 70px;
    z-index: 999;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    width: 100%;
    gap: 0;
}

.mobile-nav-link {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.mobile-nav-link:hover {
    color: var(--gold);
    padding-left: 8px;
}


/* ══════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════ */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    padding-top: 0;
}

/* Floating Hero Branding Card */
.hero-branding-card {
    position: absolute;
    top: 90px;
    left: 40px;
    z-index: 10;
    width: 380px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: none;
}

.hero-branding-card::-webkit-scrollbar {
    display: none;
}

.branding-curzon-gate {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 250px;
    opacity: 0.25;
    pointer-events: none;
    color: var(--gold);
}

@keyframes heroBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.1); }
    50% { box-shadow: 0 0 20px 4px rgba(201, 168, 76, 0.08); }
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
}

.hero-title-gold {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    margin: 8px auto 0;
    opacity: 0.5;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}


/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
    transform: translateY(-2px);
}

.btn-gold:active {
    transform: translateY(0);
}

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

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

.btn-danger {
    background: transparent;
    color: var(--danger);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.btn-danger:hover {
    background: var(--danger-bg);
}

.btn-icon {
    font-size: 1.1em;
}

/* Button loader */
.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: var(--black);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* ══════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════ */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    padding: 6px 18px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    background: var(--gold-glow);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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


/* ══════════════════════════════════════
   BOOKING FORM SECTION
   ══════════════════════════════════════ */

.booking-section {
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.03) 0%, transparent 50%),
                var(--black);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

.booking-form-card {
    padding: 2.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

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

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

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

textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    resize: vertical;
    transition: var(--transition);
}

textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

textarea::placeholder {
    color: var(--text-muted);
}

select option {
    background: var(--charcoal);
    color: var(--text-primary);
}

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

/* Map pick button */
.input-with-map {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.input-with-map .input-wrapper {
    flex: 1;
}

.btn-map-pick {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--gold-glow);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-map-pick:hover {
    background: var(--gold-glow-strong);
    border-color: var(--gold);
}

/* GPS Locate / Find Me Button */
.btn-gps-locate {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--radius-sm);
    color: #27ae60;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gps-locate:hover {
    background: rgba(39, 174, 96, 0.2);
    border-color: #27ae60;
}

.btn-gps-locate.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Map Search Bar (inside modal) */
.map-search-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    align-items: stretch;
}

.map-search-bar .input-wrapper {
    flex: 1;
}

.map-search-bar .input-wrapper input {
    padding: 10px 14px 10px 40px;
    font-size: 0.88rem;
}

/* Map Search Results */
.map-search-results {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card-bg);
}

.map-search-result-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    color: var(--text-primary);
}

.map-search-result-item:last-child {
    border-bottom: none;
}

.map-search-result-item:hover {
    background: var(--gold-glow);
    color: var(--gold);
}

.map-search-result-icon {
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 2px;
}

.map-search-result-text {
    line-height: 1.4;
}

.map-search-no-results {
    padding: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.map-search-results::-webkit-scrollbar {
    width: 6px;
}

.map-search-results::-webkit-scrollbar-track {
    background: var(--card-bg);
}

.map-search-results::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 3px;
}

/* Route Preview Card */
.route-preview-card {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    animation: fadeSlideIn 0.4s ease-out;
}

.route-map-container {
    width: 100%;
    height: 200px;
    background: var(--charcoal-light);
}

.route-info {
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.route-info-item {
    flex: 1;
    text-align: center;
    padding: 8px;
    background: rgba(201, 168, 76, 0.05);
    border-radius: var(--radius-sm);
}

.route-info-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.route-info-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
}

.route-fare {
    color: var(--gold) !important;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-submit {
    margin-top: 0.5rem;
    width: 100%;
}

/* Vehicle Showcase Sidebar */
.vehicle-showcase {
    padding: 2rem;
    position: sticky;
    top: 90px;
}

.vehicle-showcase h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.vehicle-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: default;
    border: 1px solid transparent;
    margin-bottom: 8px;
}

.vehicle-item:hover,
.vehicle-item.active {
    background: var(--gold-glow);
    border-color: rgba(201, 168, 76, 0.15);
}

.vehicle-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.vehicle-info h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 2px;
}

.vehicle-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.vehicle-rate {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
}


/* ══════════════════════════════════════
   MY BOOKINGS SECTION
   ══════════════════════════════════════ */

.my-bookings-section {
    background: var(--black-deep);
}

.my-bookings-lookup {
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
}

.lookup-form {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.lookup-form .input-wrapper {
    flex: 1;
}

.my-bookings-result {
    /* populated by JS */
}

.booking-result-card {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
    animation: fadeSlideIn 0.3s ease-out;
}

.booking-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.booking-result-id {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
    font-size: 1.05rem;
}

.booking-result-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.booking-result-detail {
    font-size: 0.85rem;
}

.booking-result-detail strong {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 2px;
}


/* ══════════════════════════════════════
   STATUS BADGES
   ══════════════════════════════════════ */

.status-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-Pending {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.status-Confirmed {
    background: var(--info-bg);
    color: var(--info);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.status-Completed {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.status-Cancelled {
    background: var(--danger-bg);
    color: var(--danger);
    border: 1px solid rgba(231, 76, 60, 0.2);
}


/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */

.site-footer {
    background: var(--black-deep);
    padding-top: 0;
}

.footer-gold-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 3rem 24px;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-style: italic;
}

.footer-info {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.8rem;
}

.footer-col p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.2rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* ══════════════════════════════════════
   MODALS
   ══════════════════════════════════════ */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background: var(--charcoal);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    width: 100%;
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
    margin: auto 0;
    flex-shrink: 0;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.map-modal {
    max-width: 700px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--cream);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--danger-bg);
    border-color: var(--danger);
    color: var(--danger);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.map-instruction {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.map-picker-container {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--charcoal-light);
}

.map-selected-address {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    padding: 12px 16px;
    background: var(--gold-glow);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-sm);
    color: var(--cream);
    font-size: 0.88rem;
}

.address-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Confirmation Modal */
.confirmation-modal {
    max-width: 420px;
    text-align: center;
    padding: 3rem 2.5rem;
}

.confirmation-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    animation: confirmPop 0.5s ease-out;
}

@keyframes confirmPop {
    0% { transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.confirmation-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

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

.confirmation-booking-id {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gold-glow);
    border: 1px dashed rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-md);
}

.confirmation-details {
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}


/* ══════════════════════════════════════
   ADMIN PAGE
   ══════════════════════════════════════ */

.admin-body {
    background: var(--black);
}

/* Admin Gate */
.admin-gate {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
                var(--black);
    padding: 24px;
}

.gate-card {
    width: 100%;
    max-width: 420px;
    padding: 3rem;
    text-align: center;
}

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

.gate-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gate-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.gate-error {
    color: var(--danger);
    font-size: 0.82rem;
    margin-top: 0.8rem;
    animation: shake 0.4s ease-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* Admin Stats */
.admin-stats-section {
    padding: 100px 0 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.stat-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--card-bg);
    flex-shrink: 0;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Admin Filters */
.admin-filters-section {
    padding: 1.5rem 0;
}

.filters-bar {
    display: flex;
    gap: 1rem;
    align-items: end;
    padding: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.filter-group select {
    padding: 10px 14px;
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.filter-group select:focus {
    border-color: var(--gold);
}

.search-group {
    flex: 1;
}

.search-group .input-wrapper input {
    padding: 10px 14px 10px 40px;
}

/* Bookings Table */
.admin-table-section {
    padding: 0 0 3rem;
}

.table-wrapper {
    padding: 0;
    overflow: hidden;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    min-width: 1100px;
}

.bookings-table thead {
    background: var(--card-bg);
}

.bookings-table th {
    padding: 14px 12px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.bookings-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(42, 37, 32, 0.5);
    color: var(--text-primary);
    vertical-align: middle;
}

.bookings-table tbody tr {
    transition: var(--transition);
}

.bookings-table tbody tr:hover {
    background: rgba(201, 168, 76, 0.03);
}

.table-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.table-actions select {
    padding: 5px 8px;
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 0.75rem;
    font-family: var(--font-body);
    cursor: pointer;
    -webkit-appearance: none;
}

.table-actions button {
    padding: 5px 10px;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid;
    background: transparent;
}

.btn-view-route {
    color: var(--gold);
    border-color: rgba(201, 168, 76, 0.3);
}

.btn-view-route:hover {
    background: var(--gold-glow);
}

.btn-delete-row {
    color: var(--danger);
    border-color: rgba(231, 76, 60, 0.3);
}

.btn-delete-row:hover {
    background: var(--danger-bg);
}

.table-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.table-empty p {
    font-size: 0.95rem;
}

.td-truncate {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-logout {
    color: var(--danger) !important;
    border-color: rgba(231, 76, 60, 0.3) !important;
}

.btn-logout:hover {
    background: var(--danger-bg) !important;
}


/* ══════════════════════════════════════
   LEAFLET OVERRIDES (dark theme)
   ══════════════════════════════════════ */

.leaflet-container {
    background: var(--charcoal) !important;
}

.leaflet-control-attribution {
    background: rgba(26, 26, 26, 0.8) !important;
    color: var(--text-muted) !important;
    font-size: 0.65rem !important;
}

.leaflet-control-attribution a {
    color: var(--gold) !important;
}

.leaflet-control-zoom a {
    background: var(--charcoal) !important;
    color: var(--cream) !important;
    border-color: var(--border) !important;
}

.leaflet-control-zoom a:hover {
    background: var(--charcoal-light) !important;
    color: var(--gold) !important;
}

.leaflet-popup-content-wrapper {
    background: var(--charcoal) !important;
    color: var(--cream) !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: var(--shadow-soft) !important;
}

.leaflet-popup-tip {
    background: var(--charcoal) !important;
}


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .vehicle-showcase {
        position: static;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stat-divider {
        display: none;
    }

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

    .input-with-map {
        flex-direction: column;
    }

    .btn-map-pick {
        justify-content: center;
    }

    .lookup-form {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .filters-bar {
        flex-direction: column;
    }

    .booking-form-card {
        padding: 1.5rem;
    }

    .section {
        padding: 50px 0;
    }

    .map-picker-container {
        height: 280px;
    }

    .modal-container {
        margin: 16px;
    }

    .booking-result-details {
        grid-template-columns: 1fr;
    }

    .confirmation-modal {
        padding: 2rem 1.5rem;
    }
}

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

    .hero-badge {
        font-size: 0.68rem;
        padding: 6px 16px;
    }

    .container {
        padding: 0 16px;
    }

    .nav-content {
        height: 60px;
    }

    .booking-form-card {
        padding: 1.2rem;
    }
}


/* ══════════════════════════════════════
   OLA-STYLE BOOKING UI
   ══════════════════════════════════════ */

.ola-booking-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-map-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ola-main-map {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* GPS Button */
.ola-gps-btn {
    position: absolute;
    right: 20px;
    bottom: 50%;
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--charcoal);
    border: 1px solid var(--border-light);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.ola-gps-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

/* Floating Search Card */
.ola-search-card {
    position: absolute;
    top: 90px;
    right: 40px;
    z-index: 10;
    width: 420px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 16px 16px 20px;
    display: flex;
    gap: 14px;
    align-items: stretch;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.ola-search-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 6px 0;
    min-width: 14px;
}

.ola-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ola-dot-green {
    background: var(--success);
    box-shadow: 0 0 8px rgba(39, 174, 96, 0.4);
}

.ola-dot-red {
    background: var(--danger);
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.4);
}

.ola-dot-line {
    width: 2px;
    height: 20px;
    background: repeating-linear-gradient(
        to bottom,
        var(--text-muted) 0px,
        var(--text-muted) 3px,
        transparent 3px,
        transparent 6px
    );
}

.ola-search-inputs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ola-search-input {
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

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

.ola-search-input:focus {
    background: rgba(201, 168, 76, 0.05);
    border-radius: var(--radius-sm);
}

.ola-search-divider {
    height: 1px;
    background: var(--border);
    margin: 0 4px;
}

/* Autocomplete Dropdown */
.ola-autocomplete {
    position: absolute;
    top: 180px;
    right: 40px;
    z-index: 15;
    width: 420px;
    max-height: 280px;
    overflow-y: auto;
    background: rgba(20, 20, 20, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.ola-ac-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.ola-ac-item:hover {
    background: var(--gold-glow);
}

.ola-ac-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ola-ac-text {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.ola-ac-loading {
    padding: 18px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Bottom Sheet */
.ola-bottom-sheet {
    position: absolute;
    bottom: 24px;
    right: 40px;
    z-index: 10;
    width: 420px;
    background: rgba(14, 14, 14, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px 20px 24px;
    animation: sheetSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 55vh;
    overflow-y: auto;
}

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

.ola-sheet-handle {
    width: 40px;
    height: 4px;
    background: var(--border-light);
    border-radius: 4px;
    margin: 0 auto 14px;
    display: none;
}

/* Route Info Bar */
.ola-route-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 10px 0 14px;
}

.ola-route-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.ola-route-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ola-route-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.ola-fare-highlight {
    color: var(--gold);
}

.ola-route-divider {
    width: 1px;
    height: 32px;
    background: var(--border-light);
}

/* Vehicle Cards */
.ola-vehicles {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 0 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ola-vehicles::-webkit-scrollbar { display: none; }

.ola-vehicle-card {
    flex: 0 0 auto;
    min-width: 100px;
    padding: 12px 14px;
    background: var(--charcoal);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.ola-vehicle-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
}

.ola-vehicle-card.active {
    border-color: var(--gold);
    background: var(--gold-glow);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.ola-vehicle-icon {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.ola-vehicle-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.ola-vehicle-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.ola-vehicle-fare {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
}

/* Compact Booking Form */
.ola-book-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ola-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ola-form-field input {
    width: 100%;
    padding: 12px 14px;
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}

.ola-form-field input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.ola-form-field input::placeholder {
    color: var(--text-muted);
}

.ola-pax-field {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ola-pax-field label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    white-space: nowrap;
    font-weight: 500;
}

.ola-pax-field input {
    max-width: 70px;
}

/* Book Ride Button */
.ola-book-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.03em;
    margin-top: 4px;
}

.ola-book-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
    transform: translateY(-1px);
}

.ola-book-btn:active {
    transform: translateY(0);
}

.ola-book-btn .btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: var(--black);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Mobile responsive for Ola booking */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: visible;
        padding-top: 70px;
    }

    .hero-branding-card {
        position: static;
        width: 100%;
        max-height: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        box-shadow: none;
        padding: 1.5rem;
        gap: 0.8rem;
    }

    .branding-curzon-gate {
        width: 150px;
        bottom: -10px;
        right: -10px;
        opacity: 0.15;
    }

    .hero-map-wrapper {
        position: relative;
        height: 50vh;
        width: 100%;
        inset: auto;
    }

    .ola-main-map {
        position: absolute;
        inset: 0;
    }

    .ola-search-card {
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: 92%;
        padding: 12px;
    }

    .ola-autocomplete {
        position: absolute;
        top: 105px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: 92%;
        z-index: 15;
    }

    .ola-bottom-sheet {
        position: relative;
        width: 100%;
        bottom: auto;
        right: auto;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        max-height: none;
        padding: 12px 16px 20px;
    }

    .ola-sheet-handle {
        display: block;
    }

    .ola-gps-btn {
        right: 12px;
        bottom: 15px;
    }
}

/* ══════════════════════════════════════
   HERITAGE TOUR SECTION (23 DISTRICTS)
   ══════════════════════════════════════ */

.heritage-section {
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.03) 0%, transparent 70%),
                var(--black-deep);
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 5;
}

.heritage-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: center;
}

.heritage-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.heritage-search-wrapper .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: var(--text-muted);
}

.heritage-search-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.heritage-search-wrapper input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.15);
}

.heritage-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.heritage-tabs .tab-btn {
    padding: 8px 18px;
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.heritage-tabs .tab-btn:hover {
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold);
}

.heritage-tabs .tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.heritage-card {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
    animation: fadeInUp 0.4s ease-out;
}

.heritage-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.1);
}

.heritage-card.hidden {
    display: none !important;
}

.heritage-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 8px;
}

.heritage-district-tag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    background: var(--gold-glow);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.heritage-cat-tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
}

.heritage-landmark-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
    margin-top: 4px;
}

.heritage-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex-grow: 1;
}

.heritage-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.heritage-distance-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.heritage-distance-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.heritage-distance-val {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cream);
}

.btn-heritage-book {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-heritage-book:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

/* Ola Booking Type: Ride Now / Later */
.ola-booking-type {
    display: flex;
    gap: 10px;
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: 12px;
}

.btn-booking-type {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-booking-type:hover {
    color: var(--gold);
}

.btn-booking-type.active {
    background: var(--gold-glow);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

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

@media (max-width: 768px) {
    .heritage-filter-bar {
        padding: 1rem;
    }
    
    .heritage-grid {
        grid-template-columns: 1fr;
    }
}

