@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color System */
    --primary: #ff7a00;
    --primary-rgb: 255, 122, 0;
    --primary-hover: #e06b00;
    --primary-glow: rgba(255, 122, 0, 0.12);
    --primary-glow-strong: rgba(255, 122, 0, 0.35);
    
    --bg-main: #090a0c;
    --bg-surface: #101217;
    --bg-card: rgba(18, 20, 26, 0.65);
    --bg-card-border: rgba(255, 255, 255, 0.06);
    --bg-input: rgba(255, 255, 255, 0.04);
    --bg-input-border: rgba(255, 255, 255, 0.08);
    
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #1f2937;
    --text-inverse: #090a0c;
    
    --accent-gold: #ffc700;
    --accent-gold-rgb: 255, 199, 0;
    
    --success: #25d366; /* WhatsApp Green */
    --success-hover: #20ba59;
    --danger: #ef4444;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing & Borders */
    --border-radius-xl: 24px;
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 25px rgba(255, 122, 0, 0.2);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    image-rendering: -webkit-optimize-contrast;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Common Styles */
section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-glow);
    border: 1px solid rgba(255, 122, 0, 0.2);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary);
    font-size: inherit !important;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.section-more-action {
    text-align: center;
    margin-top: 50px;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    gap: 8px;
    border: none;
    outline: none;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff9f43);
    color: var(--text-inverse);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-whatsapp {
    background: var(--success);
    color: #fff;
}

.btn-whatsapp:hover {
    background: var(--success-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-icon {
    font-size: 1.1rem;
}

.w-100 {
    width: 100%;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(255, 122, 0, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
}

/* Input Fields styling */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.08em;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-input);
    border: 1px solid var(--bg-input-border);
    color: #fff;
    border-radius: var(--border-radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background: rgba(255, 255, 255, 0.07);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 40px;
}

select.form-input option {
    background: var(--bg-surface);
    color: #fff;
}

/* Hero & General visual effects */
.glow-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow-strong) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

/* SECTION 15: Splash Screen Styles */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #060709;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
}

.splash-screen.fade-out {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    position: relative;
}

.splash-logo {
    width: 120px;
    height: auto;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--primary);
    margin-bottom: 25px;
    animation: pulseGlow 2s infinite ease-in-out;
}

.splash-logo-glow {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(30px);
    opacity: 0.3;
    z-index: -1;
}

.splash-title {
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.splash-subtitle {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
}

.splash-loader {
    width: 180px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #ffb03a);
    border-radius: 10px;
    animation: loadProgress 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 122, 0, 0.2);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 25px rgba(255, 122, 0, 0.4);
    }
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Transit Hub Pickup Banner styling */
.hub-pickup-banner {
    position: relative;
    z-index: 990;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 122, 0, 0.15) 0%, rgba(255, 199, 0, 0.05) 50%, rgba(255, 122, 0, 0.15) 100%);
    border-bottom: 1px solid rgba(255, 122, 0, 0.2);
    padding: 10px 20px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    margin-top: 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    --header-h: 80px;
    z-index: 1000;
    background: rgba(9, 10, 12, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

/* Push header down if banner is active */
body:has(#transit-banner) .header {
    top: 38px;
}

.header.scrolled {
    height: 70px;
    --header-h: 70px;
    background: rgba(9, 10, 12, 0.9);
    border-color: rgba(255, 122, 0, 0.15);
}

body:has(#transit-banner) .header.scrolled {
    top: 0; /* Align back on scroll */
}

.header .container {
    max-width: 1440px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid rgba(255, 122, 0, 0.2);
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 48px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px; /* Reduced from 24px to prevent overlapping */
}

.nav-link {
    font-size: 0.85rem; /* Reduced from 0.9rem to prevent overlapping */
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.header-btn-call {
    background: var(--primary-glow);
    color: var(--primary);
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.header-btn-call:hover {
    background: var(--primary);
    color: var(--text-inverse);
    transform: translateY(-2px);
}

.header-btn-wa {
    background: var(--success);
    color: #fff;
}

.header-btn-wa:hover {
    background: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* SECTION 1: Hero Section Styles */
.hero-section {
    min-height: 100vh;
    padding-top: 170px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('../images/layout/hero_background.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(9, 10, 12, 0.78) 0%, rgba(9, 10, 12, 0.72) 50%, rgba(9, 10, 12, 0.96) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    padding-right: 20px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-headline span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), #ffb03a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: inherit !important;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-trust-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 16px;
    border-radius: 100px;
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.trust-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.hero-form-wrapper {
    position: relative;
}

.booking-card {
    border-color: rgba(255, 122, 0, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ffc700);
}

.booking-card-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 18px;
    text-align: center;
}

/* Fuel Switch styling */
.rental-toggle-wrapper {
    margin-bottom: 20px;
    text-align: center;
}

.rental-fuel-note {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 500;
    line-height: 1.45;
}

.booking-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4px;
    border-radius: var(--border-radius-md);
    margin-bottom: 25px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 10px 2px;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    text-align: center;
}

.tab-btn:hover {
    color: #fff;
}

.tab-btn.active {
    background: var(--primary);
    color: var(--text-inverse);
}

.form-footer-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
}

/* SECTION 1.5: Brand Trust Metrics Banner Styles */
.trust-metrics-section {
    padding: 40px 0;
    position: relative;
    z-index: 10;
    margin-top: -20px;
    margin-bottom: 20px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(18, 20, 26, 0.4);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.metric-card:hover {
    border-color: rgba(255, 122, 0, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.08);
}

.metric-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 50%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* SECTION 2: Service & Identity Selector Styles */
.identity-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.identity-card {
    text-align: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 16px;
}

.identity-card.active {
    border-color: var(--primary);
    background: rgba(255, 122, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.1);
}

.identity-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 1px solid var(--bg-input-border);
    color: var(--primary);
    margin-bottom: 18px;
    transition: var(--transition-bounce);
}

.identity-card.active .identity-icon-wrapper,
.identity-card:hover .identity-icon-wrapper {
    background: var(--primary);
    color: var(--text-inverse);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

.identity-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.identity-card p {
    font-size: 0.8rem;
    line-height: 1.45;
}

/* Section 2 Tab Switcher Styling */
.services-tab-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.service-tab-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.service-tab-btn:hover {
    border-color: rgba(255, 122, 0, 0.3);
    color: #fff;
    background: rgba(255, 122, 0, 0.02);
}

.service-tab-btn.active {
    background: var(--primary);
    color: var(--text-inverse);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.35);
}



/* Tab Panel Hide/Show transitions with slide up */
.identity-grid {
    display: none;
    opacity: 0;
}

.identity-grid.active {
    display: grid;
    animation: fadeInSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECTION 3: Tours & Travel Packages Styles */
.package-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.filter-btn.active {
    background: var(--primary-glow);
    border-color: var(--primary);
    color: var(--primary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transition: var(--transition-smooth);
}

.package-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--bg-card-border);
    transition: var(--transition-bounce);
}

.package-card.hidden {
    display: none;
}

.package-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.package-card:hover .package-img {
    transform: scale(1.08);
}

.package-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(9, 10, 12, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 5;
}

/* Badges overlay in package cards */
.package-badges-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 5;
}

.badge-tag {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.tag-family { background: #007bff; }
.tag-young { background: var(--primary); }
.tag-couples { background: #e0245e; }

.package-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-card-title {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 8px;
}

.package-highlights {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.package-details-list {
    list-style: none;
    margin-bottom: 18px;
    flex-grow: 1;
}

.package-details-list li {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
}

.package-details-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.package-price {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.package-price span {
    display: block;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
}

/* SECTION 4: Request for Special Arrangements Styles */
.highlighted-special-card {
    border: 1px solid rgba(255, 199, 0, 0.25) !important;
    background: linear-gradient(145deg, rgba(18, 20, 26, 0.8) 0%, rgba(25, 22, 18, 0.8) 100%) !important;
    box-shadow: 0 0 30px rgba(255, 199, 0, 0.06);
}

.special-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.special-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.special-title span {
    color: var(--accent-gold);
    font-size: inherit !important;
}

.special-desc {
    margin-bottom: 25px;
}

.special-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.special-badge {
    background: rgba(255, 199, 0, 0.05);
    border: 1px solid rgba(255, 199, 0, 0.12);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.special-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px;
    border-radius: var(--border-radius-md);
}

textarea.form-input {
    resize: none;
    font-family: var(--font-body);
}

/* SECTION 7: Document Security Guidelines Styles */
.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.security-card {
    border-color: rgba(255, 255, 255, 0.03);
    position: relative;
    padding-top: 40px;
}

.security-card .security-icon-wrapper {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), #ffb03a);
    color: var(--text-inverse);
    font-weight: 800;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.security-card h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 12px;
}

.security-card p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* SECTION 5: Places & Locations We Serve Styles */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.locations-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.locations-card ul {
    list-style: none;
}

.locations-card ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.route-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.route-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.route-tag:hover {
    border-color: var(--primary);
    background: var(--primary-glow);
    color: var(--primary);
}

/* Hubs Layout */
.hubs-container {
    margin-bottom: 30px;
    border: 1px solid rgba(255, 122, 0, 0.1);
    background: linear-gradient(145deg, rgba(18, 20, 26, 0.7) 0%, rgba(25, 22, 18, 0.7) 100%);
}

.hubs-container h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.hubs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.hub-branch {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.hub-branch:hover {
    border-color: var(--primary);
    background: rgba(255, 122, 0, 0.03);
}

.hub-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.badge-mysore {
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.badge-bengaluru {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.hub-branch p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hubs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


/* SECTION 6: Why Choose MS CABS Styles */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.why-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: var(--primary-glow);
    color: var(--primary);
    margin-bottom: 20px;
}

.why-icon {
    width: 22px;
    height: 22px;
}

.why-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.85rem;
}

/* Fuel Volatility Disclaimer Card */
.fuel-warning-card {
    background: rgba(255, 199, 0, 0.04);
    border: 1px dashed rgba(255, 199, 0, 0.3);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.fuel-warning-card .warning-icon {
    font-size: 1.5rem;
}

.fuel-warning-card .warning-text {
    font-size: 0.85rem;
    color: var(--accent-gold);
    line-height: 1.5;
}

/* SECTION 7: Fleet Showroom (REDESIGNED 7 VEHICLES GRID) */
.fleet-grid-seven {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.fleet-card-new {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--bg-card-border);
    transition: var(--transition-bounce);
    position: relative;
    height: 100%;
}

.fleet-card-new.active-fleet-card {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.1);
}

.best-choice-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent-gold), #ff8a00);
    color: var(--text-inverse);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
}

.fleet-img-wrapper-new {
    background: rgba(255, 255, 255, 0.01);
    height: 200px;
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.fleet-img-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: var(--transition-smooth);
}

.fleet-card-new:hover .fleet-img-new {
    transform: scale(1.08);
}

/* ── Per-vehicle image tuning ──────────────────────────────────────────────
   object-position: frames the car correctly inside the 200px crop zone
   filter: non-destructive brightness / contrast / saturation polish
   No image files are modified – pure CSS presentation layer
   ───────────────────────────────────────────────────────────────────────── */

/* cab3.jpeg – Honda Amaze 1086×1448px (portrait/head-on shot)
   With object-fit:cover in a ~300×200px landscape container, the browser
   scales width to fill → rendered height ≈ 400px → 200px is cropped away.
   object-position: center 55% puts the viewport window over the
   Honda chrome grille + MS CABS plate — the most brand-relevant zone. */
#fleet-card-sedan .fleet-img-wrapper-new {
    background: #0a0b0d;
}
#fleet-card-sedan .fleet-img-new {
    object-fit: cover;
    object-position: center 55%;
    filter: contrast(1.2) brightness(1.08) saturate(1.12);
}

/* cab1.jpeg – Suzuki Ertiga (professional motion-blur shot, landscape)
   Default center is perfect. Subtle saturation pop to match dark card. */
#fleet-card-suv .fleet-img-new {
    object-position: center 50%;
    filter: contrast(1.1) brightness(1.04) saturate(1.12);
}

/* cab4.jpeg – Innova Crysta at temple (landscape, real on-location shot)
   Position slightly up so the car body + foreground stays in frame.
   Saturation boost to bring out the warm sandy tones against card background. */
#fleet-card-oldinnova .fleet-img-new {
    object-position: center 40%;
    filter: contrast(1.15) brightness(1.05) saturate(1.15);
}

/* cab5.jpeg – Innova Crysta white studio shot (landscape, clean)
   Already pristine. Slight contrast to make white pop on dark card.
   Position at 45% to capture the full 3/4 profile angle. */
#fleet-card-crysta .fleet-img-new {
    object-position: center 45%;
    filter: contrast(1.1) brightness(1.02) saturate(1.08);
}

/* innova_crysta.png – Hycross card (existing PNG asset)
   Bring up brightness a touch since PNG tends to be flatter. */
#fleet-card-hycross .fleet-img-new {
    object-position: center 50%;
    filter: contrast(1.08) brightness(1.05) saturate(1.1);
}

/* cab2.jpeg – Force Traveller (landscape, mountain backdrop, crisp shot)
   No crop adjustment needed — car fills frame perfectly.
   Slight contrast punch to make the white body stand out against dark card. */
#fleet-card-tt-nonac .fleet-img-new,
#fleet-card-tt-ac .fleet-img-new {
    object-position: center 45%;
    filter: contrast(1.12) brightness(1.03) saturate(1.08);
}

/* Hover: reset filter to let full vibrancy show when enlarged */
#fleet-card-sedan:hover .fleet-img-new       { filter: contrast(1.22) brightness(1.1) saturate(1.18); }
#fleet-card-suv:hover .fleet-img-new         { filter: contrast(1.14) brightness(1.07) saturate(1.18); }
#fleet-card-oldinnova:hover .fleet-img-new   { filter: contrast(1.2) brightness(1.1) saturate(1.22); }
#fleet-card-crysta:hover .fleet-img-new      { filter: contrast(1.14) brightness(1.06) saturate(1.12); }
#fleet-card-hycross:hover .fleet-img-new     { filter: contrast(1.12) brightness(1.08) saturate(1.15); }
#fleet-card-tt-nonac:hover .fleet-img-new,
#fleet-card-tt-ac:hover .fleet-img-new       { filter: contrast(1.16) brightness(1.06) saturate(1.12); }


.fleet-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-card-content h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2px;
    text-align: center;
}

.fleet-model-label {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.fleet-meta-row {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
}

.fleet-meta-row .meta-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-main);
}

.fleet-price-row {
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 10px 0;
    margin-bottom: 15px;
}

.price-single {
    text-align: center;
    width: 100%;
}

.price-single .price-val {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.price-single .price-lbl {
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.amenities-box {
    margin-bottom: 20px;
    flex-grow: 1;
}

.amenity-list-header {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.amenities-list {
    list-style: none;
    margin-bottom: 12px;
}

.amenities-list li {
    font-size: 0.75rem;
    margin-bottom: 4px;
    position: relative;
    padding-left: 14px;
}

.amenities-list.inc li {
    color: var(--text-main);
}

.amenities-list.inc li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--success);
}

.amenities-list.exc li {
    color: var(--text-muted);
}

.amenities-list.exc li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: bold;
}

/* SECTION 10: MS Cabs recommendations */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.recommend-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    background: linear-gradient(145deg, rgba(16, 18, 23, 0.8) 0%, rgba(10, 11, 14, 0.9) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.recommend-card:nth-child(1) {
    border-color: rgba(255, 122, 0, 0.25);
}
.recommend-card:nth-child(2) {
    border-color: rgba(255, 199, 0, 0.25);
}
.recommend-card:nth-child(3) {
    border-color: rgba(255, 255, 255, 0.12);
}
.recommend-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.2) !important;
    border-color: var(--primary) !important;
}

.recommend-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 122, 0, 0.2);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.recommend-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 8px;
    padding-right: 70px;
}

.recommend-route {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.recommend-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    margin-bottom: 15px;
}

.recommend-meta span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.recommend-text {
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* SECTION 8: Pricing Matrix Styles */
.pricing-table-wrapper {
    overflow-x: auto;
    border-color: rgba(255, 255, 255, 0.04);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

.pricing-table th {
    padding: 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

.pricing-table td {
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
    color: #fff;
}

.price-val {
    font-weight: 700;
    color: #fff !important;
}

.pricing-notes {
    margin-top: 25px;
    padding: 20px 24px;
    background: rgba(255, 122, 0, 0.03);
    border: 1px dashed rgba(255, 122, 0, 0.25);
    border-radius: var(--border-radius-md);
    width: 100%;
}

.pricing-notes p {
    font-size: 0.82rem;
    line-height: 1.6;
    text-align: justify;
    color: var(--text-muted);
}

/* SECTION 9: About the Founders Styles */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.about-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.about-story {
    margin-bottom: 18px;
}

.founder-names-block {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.founder-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.founder-item h4 {
    font-size: 1.1rem;
    color: #fff;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.about-brand-logo {
    width: 80%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 122, 0, 0.15);
    box-shadow: var(--shadow-premium);
}

.brand-legacy-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--accent-gold), #ff8a00);
    color: var(--text-inverse);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 20px rgba(255, 199, 0, 0.25);
    text-align: center;
    transform: rotate(-5deg);
}

.brand-legacy-badge .years-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.brand-legacy-badge .years-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* SECTION 10: Client Stories & Testimonials Styles */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.side-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-left: 14px;
}

.side-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--primary);
}

.review-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    border-color: rgba(255, 255, 255, 0.03);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.review-header h4 {
    font-size: 0.95rem;
    color: #fff;
}

.review-source {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.star-rating {
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.85rem;
    font-style: italic;
}

/* WhatsApp message bubble aesthetic */
.wa-bubble-wrapper {
    display: flex;
    justify-content: flex-end;
}

.wa-bubble {
    max-width: 85%;
    background: rgba(37, 211, 102, 0.05);
    border-color: rgba(37, 211, 102, 0.15);
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 var(--border-radius-md);
    position: relative;
}

.wa-bubble-sender {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.wa-bubble-text {
    font-size: 0.85rem;
    color: #fff;
    line-height: 1.5;
}

.wa-bubble-time {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 6px;
}

.blog-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-card {
    display: block;
    border-color: rgba(255, 255, 255, 0.03);
}

.blog-card:hover {
    border-color: var(--primary);
}

.blog-tag {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent-gold);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

.blog-card:hover h4 {
    color: var(--primary);
}

.blog-card p {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.blog-readmore {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

/* SECTION 11: Image Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 3/2;
    height: auto;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.01);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

/* SECTION 12: Frequently Asked Questions Styles */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: var(--transition-bounce);
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-answer p {
    padding-bottom: 22px;
    font-size: 0.9rem;
}

.faq-item.expanded {
    border-color: rgba(255, 122, 0, 0.2);
}

.faq-item.expanded .faq-icon {
    transform: rotate(45deg);
}

.faq-item.expanded .faq-answer {
    max-height: 150px; /* Safe default */
}

/* SECTION 13: Footer Styles */
.footer {
    background: #060709;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 20px;
}

.footer-about-text {
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.footer-gst-text {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--text-inverse);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-col p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-contact-col a {
    color: var(--primary);
}

.footer-contact-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 25px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.75rem;
}

/* INTERACTIVE DETAIL OVERLAY MODAL WINDOW STYLES */
.detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(9, 10, 12, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.detail-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    border-color: rgba(255, 122, 0, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.detail-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    padding-top: 10px;
}

.modal-body h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-glow);
    padding-bottom: 10px;
}

.modal-body h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.modal-body ul li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.modal-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* MOBILE STICKY ACTION BAR STYLES */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: rgba(9, 10, 12, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    grid-template-columns: 1fr 1fr;
    z-index: 999;
}

.sticky-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}

.sticky-call {
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sticky-wa {
    background: var(--success);
    color: #fff;
}

/* ==========================================================
   RESPONSIVE DESIGN & MEDIA QUERIES (MOBILE FIRST COMPLIANCE)
   ========================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-trust-row {
        justify-content: center;
    }
    
    .identity-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .recommendations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Desktop compact: 1025px – 1200px — shrink gap/font only, NO drawer */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 10px;
    }
    .nav-link {
        font-size: 0.78rem;
    }
    .header-ctas {
        gap: 8px;
    }
    .btn-text {
        display: none;
    }
    .header-btn {
        padding: 10px;
        border-radius: 50%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .mobile-sticky-bar {
        display: grid;
    }
    
    body {
        margin-bottom: 65px;
    }
    
    /* Hero */
    .hero-section {
        padding-top: 150px;
        padding-bottom: 60px;
    }
    
    body:has(#transit-banner) .hero-section {
        padding-top: 190px;
    }
    
    .hero-headline {
        font-size: 2.4rem;
    }
    
    /* Service Identity Grid */
    .identity-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    /* Tour Packages */
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    /* Special Arrangements */
    .special-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    /* Why Grid */
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-visual {
        order: -1;
    }
    
    /* Testimonials layout */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Recommendations */
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
    
    /* Document guidelines */
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-headline {
        font-size: 1.9rem;
    }

    /* On very small screens, keep image visible with tighter overlay */
    .hero-section {
        background-position: 65% top;
        padding-top: 130px;
    }

    .hero-bg-overlay {
        background: linear-gradient(
            180deg,
            rgba(9, 10, 12, 0.6) 0%,
            rgba(9, 10, 12, 0.5) 30%,
            rgba(9, 10, 12, 0.9) 70%,
            rgba(9, 10, 12, 0.99) 100%
        );
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .booking-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .brand-legacy-badge {
        padding: 10px 16px;
    }
    
    .brand-legacy-badge .years-number {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   INTERACTIVE ROUTE EXPLORER MAP SECTION
   ========================================================== */
.map-explorer-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

/* Filter capsule row */
.map-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
}

.map-filter-cap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    color: var(--text-muted);
    padding: 9px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}
.map-filter-cap:hover {
    border-color: rgba(255,122,0,0.3);
    color: #fff;
}
.map-filter-cap.active {
    background: linear-gradient(135deg, var(--primary), #ff9100);
    border-color: transparent;
    color: var(--text-inverse);
    box-shadow: 0 4px 14px rgba(255,122,0,0.3);
}

/* Desktop: side by side map + drawer */
.map-drawer-layout {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

/* Map viewport box */
.map-viewport-box {
    flex: 1;
    min-width: 0;
    height: 480px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    background: #060709;
}
#leaflet-route-map {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: block;
    position: relative;
}

/* Leaflet customisations */
.leaflet-container { font-family: var(--font-body) !important; background: #060709 !important; }
.leaflet-bar { border: none !important; }
.leaflet-control-zoom { border: 1px solid rgba(255,255,255,0.08) !important; border-radius: 8px !important; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important; }
.leaflet-control-zoom-in, .leaflet-control-zoom-out { background: rgba(18,20,26,0.9) !important; color: #fff !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important; transition: all 0.2s; }
.leaflet-control-zoom-in:hover, .leaflet-control-zoom-out:hover { background: var(--primary) !important; color: #000 !important; }
.leaflet-control-attribution { background: rgba(6,7,9,0.8) !important; color: var(--text-muted) !important; font-size: 9px !important; }
.leaflet-control-attribution a { color: var(--primary) !important; }

/* Dark/Satellite toggle inside map */
.map-layer-switcher {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 500;
    display: flex;
    gap: 4px;
    background: rgba(9,10,14,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 4px;
    border-radius: 100px;
}
.layer-sw-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    padding: 5px 11px;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.layer-sw-btn.active {
    background: linear-gradient(135deg, var(--primary), #ff9100);
    color: #000;
}
.layer-sw-btn:hover:not(.active) { color: #fff; }

/* Bottom controls overlay inside map */
.map-bottom-controls {
    position: absolute;
    bottom: 16px;
    left: 14px;
    right: 14px;
    z-index: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}
.surprise-me-btn {
    background: rgba(255,199,0,0.12);
    border: 1px solid rgba(255,199,0,0.28);
    color: var(--accent-gold);
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(8px);
    transition: var(--transition-bounce);
    font-family: var(--font-heading);
}
.surprise-me-btn:hover { background: rgba(255,199,0,0.22); transform: scale(1.04); }
.map-legend-pill {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 5px 11px;
    border-radius: 6px;
    font-size: 0.68rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: auto;
}
.legend-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    flex-shrink: 0;
}

/* Leaflet default divIcon reset — prevents white background / border offset */
.leaflet-div-icon {
    background: transparent !important;
    border: none !important;
}

/* Leaflet custom marker CSS */
/* Zero-size container: Leaflet positions the icon at (lat,lng) relative to iconAnchor.
   We set iconSize[0,0] + iconAnchor[0,0] so the origin IS the map coordinate.
   The dot and ring are then absolutely centered with transform: translate(-50%,-50%) */
.lf-hub-marker, .lf-dest-marker {
    position: relative;
    width: 0 !important;
    height: 0 !important;
    overflow: visible;
}
.hub-dot-inner {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 12px var(--primary);
    z-index: 2;
}
.hub-pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    animation: hub-ring-pulse 2s infinite ease-out;
    opacity: 0;
    pointer-events: none;
}
.lf-hub-marker.blr-hub .hub-dot-inner {
    background: #00d4ff;
    box-shadow: 0 0 12px #00d4ff;
}
.lf-hub-marker.blr-hub .hub-pulse-ring {
    border-color: #00d4ff;
}
.lf-hub-tip.blr-tip {
    border-color: #00d4ff !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15) !important;
}
@keyframes hub-ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.4); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}
.dest-dot-inner {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background: var(--accent-gold);
    border-radius: 50%;
    border: 1.5px solid #fff;
    box-shadow: 0 0 8px rgba(255,199,0,0.5);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}
.dest-pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    animation: dest-ping 1.8s infinite ease-out;
    opacity: 0;
    pointer-events: none;
}
@keyframes dest-ping {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}
.lf-dest-marker.selected .dest-dot-inner {
    background: var(--primary);
    width: 13px;
    height: 13px;
    box-shadow: 0 0 16px var(--primary);
}
.lf-dest-marker.selected .dest-pulse-ring {
    border-color: var(--primary);
    animation-duration: 1.2s;
}
.lf-dest-marker.faded { opacity: 0.12; pointer-events: none; }
/* Animated route polylines */
.lf-route-path {
    stroke-dasharray: 8, 8;
    animation: route-flow 18s linear infinite;
    stroke-linecap: round;
}
@keyframes route-flow { to { stroke-dashoffset: -200; } }

/* Custom leaflet tooltip */
.lf-hub-tip { background: rgba(6,7,9,0.9) !important; border: 1px solid var(--primary) !important; color: #fff !important; font-weight: 800 !important; font-family: var(--font-heading) !important; font-size: 10px !important; padding: 3px 8px !important; border-radius: 4px !important; box-shadow: 0 0 20px rgba(255,122,0,0.15) !important; }
.lf-dest-tip { background: rgba(9,10,14,0.92) !important; border: 1px solid rgba(255,255,255,0.08) !important; color: #fff !important; font-weight: 700 !important; font-family: var(--font-heading) !important; font-size: 10px !important; padding: 2px 6px !important; border-radius: 4px !important; }

/* ---- INFO DRAWER ---- */
/* Desktop: side panel (always visible, fades in on selection) */
.route-info-drawer {
    width: 360px;
    flex-shrink: 0;
    height: 480px;
    background: rgba(18,20,26,0.97);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0.35;
    transition: opacity 0.4s ease;
    position: relative;
}
.route-info-drawer.drawer-active { opacity: 1; }

.drawer-drag-handle { display: none; } /* hidden on desktop */
.drawer-x-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.drawer-x-close:hover { background: rgba(255,255,255,0.1); transform: scale(1.08); }

.rdrawer-banner {
    position: relative;
    width: 100%;
    height: 130px;
    overflow: hidden;
    flex-shrink: 0;
}
.rdrawer-banner-img { width: 100%; height: 100%; object-fit: cover; }
.rdrawer-banner-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18,20,26,0) 30%, rgba(18,20,26,1) 100%);
}

.rdrawer-title-block { padding: 10px 18px 6px; flex-shrink: 0; }
.rdrawer-badge {
    display: inline-block;
    background: rgba(255,122,0,0.1);
    border: 1px solid rgba(255,122,0,0.22);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 4px;
    letter-spacing: 0.06em;
}
.rdrawer-title-block h3 {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.2;
}

/* Tabs */
.rdrawer-tabs {
    display: flex;
    gap: 12px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.rdrawer-tab {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 2px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}
.rdrawer-tab.active { color: var(--primary); }
.rdrawer-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #ff9100);
}

/* Content scroll area */
.rdrawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 12px 18px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.08) transparent;
}
.rdrawer-pane { display: none; }
.rdrawer-pane.active {
    display: block;
    animation: rdFadeIn 0.3s ease;
}
@keyframes rdFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* Overview stats */
.rstat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.rstat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius-sm);
    padding: 12px;
}
.rstat-card span {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.rstat-card strong {
    font-size: 0.9rem;
    color: #fff;
    font-family: var(--font-heading);
}
.rd-highlights-block h4 {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}
.rd-highlights-block p { font-size: 0.82rem; line-height: 1.55; }

/* Vehicle card */
.rdrawer-vehicle-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(10,12,16,0.95) 100%);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}
.rdrawer-vehicle-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,122,0,0.3);
}
.rdv-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.rdv-info { 
    padding: 20px; 
    flex: 1; 
    border-top: 1px solid rgba(255,255,255,0.03);
}
.rdv-info h4 { font-size: 1.1rem; color: #fff; margin-bottom: 5px; font-weight: 700; }
.rdv-class {
    display: inline-block;
    background: rgba(255,199,0,0.1);
    border: 1px solid rgba(255,199,0,0.18);
    color: var(--accent-gold);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 5px;
}
.rdv-info p { font-size: 0.75rem; line-height: 1.4; }
.rdv-fare-row {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.rdv-fare { text-align: center; flex: 1; }
.rdv-fare span { display: block; font-size: 0.6rem; color: var(--text-muted); margin-bottom: 2px; }
.rdv-fare strong { font-size: 0.82rem; color: var(--primary); font-family: var(--font-heading); }

/* Driver card */
.rdrawer-driver-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius-md);
    padding: 14px;
}
.rd-driver-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rd-driver-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #ff8a00);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rd-driver-header h4 { font-size: 0.95rem; color: #fff; }
.rd-driver-stars { font-size: 0.72rem; color: var(--accent-gold); }
.rd-driver-stars span { color: var(--text-muted); font-size: 0.68rem; }
.rd-driver-facts { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.rd-fact { display: flex; justify-content: space-between; font-size: 0.78rem; }
.rd-fact strong { color: var(--text-muted); }
.rd-fact span { color: #fff; font-weight: 500; }
.rd-driver-quote {
    font-style: italic;
    color: var(--accent-gold);
    background: rgba(255,199,0,0.04);
    border-left: 3px solid var(--accent-gold);
    padding: 7px 11px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-size: 0.78rem;
    line-height: 1.45;
}

/* CTA at bottom */
.rdrawer-cta {
    padding: 12px 18px 16px;
    flex-shrink: 0;
}

/* Mobile backdrop overlay */
.map-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.map-drawer-backdrop.active { display: block; opacity: 1; }

/* ====== MOBILE: bottom sheet ====== */
@media (max-width: 900px) {
    .map-drawer-layout { flex-direction: column; }

    .map-viewport-box { flex: none; width: 100%; height: 380px; }

    /* Drawer becomes fixed bottom sheet on mobile */
    .route-info-drawer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: 85vh;
        border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 1200;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
        opacity: 1;
    }
    .route-info-drawer.drawer-active { transform: translateY(0); }

    .drawer-drag-handle {
        display: block;
        width: 38px;
        height: 4px;
        background: rgba(255,255,255,0.18);
        border-radius: 10px;
        margin: 10px auto 2px;
        flex-shrink: 0;
    }

    .rdrawer-banner { height: 120px; }
    .rdrawer-title-block h3 { font-size: 1.1rem; }
    .rdrawer-content { max-height: 40vh; }
}

@media (max-width: 480px) {
    .map-filter-row { gap: 7px; padding: 0; }
    .map-filter-cap { padding: 7px 13px; font-size: 0.75rem; }
    .map-viewport-box { flex: none; height: 300px; border-radius: var(--border-radius-lg); }
}

/* ==========================================================
   GENERIC BLOG SECTION STYLING (6 BLOGS: 4 FIRST ROW, 2 SECOND ROW)
   ========================================================== */
.blogs-section-new {
    padding: 80px 0;
    position: relative;
}

.blogs-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}

.blog-card-new {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--bg-card-border);
}

.blog-card-new:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.blog-card-new.span-2 {
    grid-column: span 2;
}

.blog-cover-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: rgba(255,255,255,0.01);
}

.blog-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card-new:hover .blog-cover-img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-card-body h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.blog-card-new:hover h3 {
    color: var(--primary);
}

.blog-card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    margin-top: auto;
}

.blog-rating {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-link {
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.blog-link:hover {
    color: #fff;
}

/* Responsive adjustment for 4-column layout */
@media (max-width: 1024px) {
    .blogs-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-card-new.span-2 {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .blogs-grid-new {
        grid-template-columns: 1fr;
    }
    .blog-card-new.span-2 {
        grid-column: span 1;
    }
}

.blog-badge-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(9, 10, 12, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
    letter-spacing: 0.05em;
}

/* ==========================================================
   INPUT FIELDS WITH INLINE ICONS
   ========================================================== */
.input-icon-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.input-icon-svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    min-width: 16px;
    max-width: 16px;
    min-height: 16px;
    max-height: 16px;
    fill: rgba(156, 163, 175, 0.7);
    pointer-events: none;
    z-index: 2;
    transition: fill 0.25s ease;
    display: block;
    flex-shrink: 0;
}

.input-icon-wrapper .form-input {
    padding-left: 44px;
}

.input-icon-wrapper:focus-within .input-icon-svg {
    fill: var(--primary);
}

/* ==========================================================
   DEVELOPER CREDIT HOVER POPOVER MODAL
   ========================================================== */
.developer-credit {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 5px 0;
}

.credit-company {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: inline-block;
    transition: var(--transition-smooth);
}

.credit-company:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.developer-popup {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #101217;
    border: 1px solid var(--primary);
    padding: 14px 18px;
    border-radius: var(--border-radius-md);
    width: 240px;
    box-shadow: var(--shadow-premium);
    z-index: 1005;
    text-align: left;
    color: var(--text-main);
    font-size: 0.8rem;
    line-height: 1.5;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.developer-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #101217 transparent transparent transparent;
}

.credit-company:hover .developer-popup {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dev-link {
    color: var(--primary) !important;
    font-weight: 700;
    text-decoration: underline !important;
}

.dev-link:hover {
    color: var(--accent-gold) !important;
}

/* Hide Redundant Sticky Bottom Actions */
.mobile-sticky-bar {
    display: none !important;
}

/* ==========================================================
   ADDITIONAL RESPONSIVE OVERRIDES
   ========================================================== */
@media (max-width: 768px) {
    /* Spacings and visible borders */
    section {
        padding: 70px 0;
    }

    /* Make cards visually distinct from the dark page background on mobile */
    .glass-card {
        background: rgba(24, 28, 37, 0.95) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5) !important;
    }

    .identity-card, 
    .package-card, 
    .why-card, 
    .fleet-card-new, 
    .recommend-card, 
    .blog-card-new {
        margin-bottom: 16px;
    }

    /* Booking card — give it proper breathing room, NOT compressed */
    .booking-card {
        padding: 24px 20px;
    }

    /* Hide 4th blog onwards */
    .blog-card-new:nth-child(n+4) {
        display: none !important;
    }

    /* Hero section on mobile — show the background image with lighter overlay */
    .hero-section {
        background-position: 60% center;
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 40px;
    }

    .hero-bg-overlay {
        background: linear-gradient(
            180deg,
            rgba(9, 10, 12, 0.65) 0%,
            rgba(9, 10, 12, 0.55) 35%,
            rgba(9, 10, 12, 0.88) 75%,
            rgba(9, 10, 12, 0.98) 100%
        );
    }

    /* Hero text — readable over lighter bg */
    .hero-headline {
        font-size: 2.2rem;
        text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    }

    .hero-subheadline {
        font-size: 0.95rem;
        text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    }
    
    /* Transit Banner styling & header offset */
    .hub-pickup-banner {
        padding: 8px 14px !important;
        font-size: 0.74rem !important;
        line-height: 1.45 !important;
        white-space: normal !important;
    }
    
    body:has(#transit-banner) .header {
        top: 44px !important;
    }
    
    body:has(#transit-banner) .header.scrolled {
        top: 0 !important;
    }
    
    body:has(#transit-banner) .hero-section {
        padding-top: 150px !important;
    }

    /* Warning disclaimer card — compact Android-style */
    .fuel-warning-card {
        padding: 10px 14px !important;
        gap: 10px !important;
        margin-bottom: 25px !important;
        border-radius: var(--border-radius-sm) !important;
    }
    
    .fuel-warning-card .warning-icon {
        font-size: 1.1rem !important;
        flex-shrink: 0;
    }
    
    .fuel-warning-card .warning-text {
        font-size: 0.78rem !important;
        margin: 0 !important;
    }

    /* Fleet card labels — slightly more readable */
    .fleet-model-label {
        font-size: 0.82rem !important;
    }
    
    .fleet-meta-row .meta-tag {
        font-size: 0.76rem !important;
        padding: 5px 10px !important;
    }
    
    body {
        margin-bottom: 0 !important;
    }

    /* Form input icon constraints — prevent icon blowup */
    .input-icon-svg {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        max-width: 16px !important;
        min-height: 16px !important;
        max-height: 16px !important;
        left: 14px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .input-icon-wrapper .form-input {
        padding-left: 44px !important;
    }
}

/* 4K and Large Display Screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px !important;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2200px !important;
    }
    html {
        font-size: 18px !important;
    }
}


/* ─── MERGED EXTRA STYLES FOR FOUNDERS & STORIES FROM ROOT ─── */

/* Founder Cards & Profile Styles */
.founders-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 50px;
    align-items: center;
}

.founder-profile-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 320px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
}

.founder-profile-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 122, 0, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.founder-photo-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 4px 0;
}

.founder-info p {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.founder-metadata-list {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.founder-metadata-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
}

.founder-metadata-list li strong {
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.founder-metadata-list li span {
    color: #fff;
    font-weight: 500;
}

/* Founder Modal Story Styles */
.modal-intro-text {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.modal-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.modal-stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-stat-box .stat-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.modal-stat-box .stat-lbl {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .founders-cards-stack {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 60px;
    }

    .founder-profile-card {
        max-width: 280px;
    }
}

@media (max-width: 600px) {
    .founders-cards-stack {
        flex-direction: column;
    }

    .founder-metadata-list {
        grid-template-columns: 1fr;
    }

    .modal-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION 10: Client Stories & Testimonials Styles */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.side-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-left: 14px;
}

.side-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--primary);
}

.review-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    border-color: rgba(255, 255, 255, 0.03);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.review-header h4 {
    font-size: 0.95rem;
    color: #fff;
}

.review-source {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.star-rating {
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.85rem;
    font-style: italic;
}

/* WhatsApp message bubble aesthetic */
.wa-bubble-wrapper {
    display: flex;
    justify-content: flex-end;
}

.wa-bubble {
    max-width: 85%;
    background: rgba(37, 211, 102, 0.05);
    border-color: rgba(37, 211, 102, 0.15);
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 var(--border-radius-md);
    position: relative;
}

.wa-bubble-sender {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.wa-bubble-text {
    font-size: 0.85rem;
    color: #fff;
    line-height: 1.5;
}

.wa-bubble-time {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 6px;
}

.blog-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-card {
    display: block;
    border-color: rgba(255, 255, 255, 0.03);
}

.blog-card:hover {
    border-color: var(--primary);
}

.blog-tag {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent-gold);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

.blog-card:hover h4 {
    color: var(--primary);
}

.blog-card p {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.blog-readmore {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

/* SECTION 11: Image Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 3/2;
    height: auto;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.01);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

/* SECTION 12: Frequently Asked Questions Styles */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: var(--transition-bounce);
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-answer p {
    padding-bottom: 22px;
    font-size: 0.9rem;
}

.faq-item.expanded {
    border-color: rgba(255, 122, 0, 0.2);
}

.faq-item.expanded .faq-icon {
    transform: rotate(45deg);
}

.faq-item.expanded .faq-answer {
    max-height: 150px;
    /* Safe default */
}

/* SECTION 13: Footer Styles */
.footer {
    background: #060709;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 20px;
}

.footer-about-text {
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.footer-gst-text {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.footer-socials a[href*="facebook"] {
    background: #1877F2;
    border: 1px solid #1877F2;
}

.footer-socials a[href*="instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border: none;
}

.footer-socials a[href*="linkedin"] {
    background: #0A66C2;
    border: 1px solid #0A66C2;
}

.footer-socials a[href*="youtube"] {
    background: #FF0000;
    border: 1px solid #FF0000;
}

.footer-socials a:hover {
    transform: translateY(-4px) scale(1.12);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    filter: brightness(1.15);
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-col p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-contact-col a {
    color: var(--primary);
}

.footer-contact-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 25px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.75rem;
}

/* INTERACTIVE DETAIL OVERLAY MODAL WINDOW STYLES */
.detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(9, 10, 12, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.detail-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    border-color: rgba(255, 122, 0, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.detail-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    padding-top: 10px;
}

.modal-body h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-glow);
    padding-bottom: 10px;
}

.modal-body h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.modal-body ul li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.modal-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* MOBILE STICKY ACTION BAR STYLES */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: rgba(9, 10, 12, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    grid-template-columns: 1fr 1fr;
    z-index: 999;
}

.sticky-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}

.sticky-call {
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sticky-wa {
    background: var(--success);
    color: #fff;
}

/* ==========================================================
   RESPONSIVE DESIGN & MEDIA QUERIES (MOBILE FIRST COMPLIANCE)
   ========================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-trust-row {
        justify-content: center;
    }

    .identity-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .recommendations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .mobile-sticky-bar {
        display: grid;
    }

    body {
        margin-bottom: 65px;
    }
    /* =========================
       MOBILE NAVIGATION
       ========================= */

    /* nav-menu is INSIDE the fixed header, so position absolute
       at top:100% places the drawer flush below the header
       regardless of whether header is 80px or 70px (scrolled). */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        padding: 16px 0 20px;
        gap: 4px;

        background: var(--bg-main);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);

        /* Use transform — no layout reflow, GPU-accelerated */
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        /* Height: auto allows it to size to content
           max-height: prevents giant menu on short phones */
        height: auto;
        max-height: calc(100dvh - var(--header-h, 80px));
        overflow-y: auto;

        z-index: 997;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        padding: 12px 20px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-ctas {
        gap: 8px;
    }

    .btn-text {
        display: none;
    }

    .header-btn {
        padding: 10px;
        border-radius: 50%;
    }

    /* ── Hamburger / X toggle ──
       Three spans are absolutely positioned within a fixed 28×22 box.
       This guarantees predictable geometry regardless of inherited styles. */
    .menu-toggle {
        position: relative;
        display: flex;
        width: 28px;
        height: 22px;
        padding: 0;
        margin: 0;
        min-height: 0 !important;
        background: transparent;
        border: none;
        cursor: pointer;
        flex-shrink: 0;
        box-sizing: content-box;
    }

    .menu-toggle span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transform-origin: center;
        transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, bottom 0.3s ease;
    }

    .menu-toggle span:nth-child(1) { top: 0; }
    .menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .menu-toggle span:nth-child(3) { bottom: 0; }

    .menu-toggle.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
    }

    .menu-toggle.active span:nth-child(3) {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }

    /* Hero */
    .hero-section {
        padding-top: 150px;
        padding-bottom: 60px;
    }

    body:has(#transit-banner) .hero-section {
        padding-top: 190px;
    }

    .hero-headline {
        font-size: 2.4rem;
    }

    /* Service Identity Grid */
    .identity-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    /* Tour Packages */
    .packages-grid {
        grid-template-columns: 1fr;
    }

    /* Special Arrangements */
    .special-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
    }

    /* Why Grid */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-visual {
        order: -1;
    }

    /* Testimonials layout */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Recommendations */
    .recommendations-grid {
        grid-template-columns: 1fr;
    }

    /* Document guidelines */
    .security-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .hero-headline {
        font-size: 1.9rem;
    }

    /* On very small screens, keep image visible with tighter overlay */
    .hero-section {
        background-position: 65% top;
        padding-top: 130px;
    }

    .hero-bg-overlay {
        background: linear-gradient(180deg,
                rgba(9, 10, 12, 0.6) 0%,
                rgba(9, 10, 12, 0.5) 30%,
                rgba(9, 10, 12, 0.9) 70%,
                rgba(9, 10, 12, 0.99) 100%);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .brand-legacy-badge {
        padding: 10px 16px;
    }

    .brand-legacy-badge .years-number {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   GENERIC BLOG SECTION STYLING (6 BLOGS: 4 FIRST ROW, 2 SECOND ROW)
   ========================================================== */
.blogs-section-new {
    padding: 80px 0;
    position: relative;
}

.blogs-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.blog-card-new {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--bg-card-border);
}

.blog-card-new:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.blog-card-new.span-2 {
    grid-column: span 2;
}

.blog-cover-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
}

.blog-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card-new:hover .blog-cover-img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-card-body h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.blog-card-new:hover h3 {
    color: var(--primary);
}

.blog-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    margin-top: auto;
}

.blog-rating {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-link {
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.blog-link:hover {
    color: #fff;
}

/* Responsive adjustment for 4-column layout */
@media (max-width: 1024px) {
    .blogs-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card-new.span-2 {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .blogs-grid-new {
        grid-template-columns: 1fr;
    }

    .blog-card-new.span-2 {
        grid-column: span 1;
    }
}

.blog-badge-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(9, 10, 12, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
    letter-spacing: 0.05em;
}

/* ==========================================================
   INPUT FIELDS WITH INLINE ICONS
   ========================================================== */
.input-icon-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.input-icon-svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    min-width: 16px;
    max-width: 16px;
    min-height: 16px;
    max-height: 16px;
    fill: rgba(156, 163, 175, 0.7);
    pointer-events: none;
    z-index: 2;
    transition: fill 0.25s ease;
    display: block;
    flex-shrink: 0;
}

.input-icon-wrapper .form-input {
    padding-left: 44px;
}

.input-icon-wrapper:focus-within .input-icon-svg {
    fill: var(--primary);
}

/* ==========================================================
   DEVELOPER CREDIT HOVER POPOVER MODAL
   ========================================================== */
.developer-credit {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 5px 0;
}

.credit-company {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: inline-block;
    transition: var(--transition-smooth);
}

.credit-company:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.developer-popup {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #101217;
    border: 1px solid var(--primary);
    padding: 14px 18px;
    border-radius: var(--border-radius-md);
    width: 240px;
    box-shadow: var(--shadow-premium);
    z-index: 1005;
    text-align: left;
    color: var(--text-main);
    font-size: 0.8rem;
    line-height: 1.5;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.developer-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #101217 transparent transparent transparent;
}

.credit-company:hover .developer-popup {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dev-link {
    color: var(--primary) !important;
    font-weight: 700;
    text-decoration: underline !important;
}

.dev-link:hover {
    color: var(--accent-gold) !important;
}

/* Hide Redundant Sticky Bottom Actions */
.mobile-sticky-bar {
    display: none !important;
}

/* ==========================================================
   ADDITIONAL RESPONSIVE OVERRIDES
   ========================================================== */
@media (max-width: 768px) {

    /* Spacings and visible borders */
    section {
        padding: 70px 0;
    }

    /* Make cards visually distinct from the dark page background on mobile */
    .glass-card {
        background: rgba(24, 28, 37, 0.95) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5) !important;
    }

    .identity-card,
    .package-card,
    .why-card,
    .fleet-card-new,
    .recommend-card,
    .blog-card-new {
        margin-bottom: 16px;
    }

    /* Booking card — give it proper breathing room, NOT compressed */
    .booking-card {
        padding: 24px 20px;
    }

    /* Hide 4th blog onwards */
    .blog-card-new:nth-child(n+4) {
        display: none !important;
    }

    /* Hero section on mobile — show the background image with lighter overlay */
    .hero-section {
        background-position: 60% center;
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 40px;
    }

    .hero-bg-overlay {
        background: linear-gradient(180deg,
                rgba(9, 10, 12, 0.65) 0%,
                rgba(9, 10, 12, 0.55) 35%,
                rgba(9, 10, 12, 0.88) 75%,
                rgba(9, 10, 12, 0.98) 100%);
    }

    /* Hero text — readable over lighter bg */
    .hero-headline {
        font-size: 2.2rem;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    }

    .hero-subheadline {
        font-size: 0.95rem;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    }

    /* Transit Banner styling & header offset */
    .hub-pickup-banner {
        padding: 8px 14px !important;
        font-size: 0.74rem !important;
        line-height: 1.45 !important;
        white-space: normal !important;
    }

    body:has(#transit-banner) .header {
        top: 44px !important;
    }

    body:has(#transit-banner) .header.scrolled {
        top: 0 !important;
    }

    body:has(#transit-banner) .hero-section {
        padding-top: 150px !important;
    }

    /* Warning disclaimer card — compact Android-style */
    .fuel-warning-card {
        padding: 10px 14px !important;
        gap: 10px !important;
        margin-bottom: 25px !important;
        border-radius: var(--border-radius-sm) !important;
    }

    .fuel-warning-card .warning-icon {
        font-size: 1.1rem !important;
        flex-shrink: 0;
    }

    .fuel-warning-card .warning-text {
        font-size: 0.78rem !important;
        margin: 0 !important;
    }

    /* Fleet card labels — slightly more readable */
    .fleet-model-label {
        font-size: 0.82rem !important;
    }

    .fleet-meta-row .meta-tag {
        font-size: 0.76rem !important;
        padding: 5px 10px !important;
    }

    body {
        margin-bottom: 0 !important;
    }

    /* Form input icon constraints — prevent icon blowup */
    .input-icon-svg {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        max-width: 16px !important;
        min-height: 16px !important;
        max-height: 16px !important;
        left: 14px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .input-icon-wrapper .form-input {
        padding-left: 44px !important;
    }
}

/* 4K and Large Display Screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px !important;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2200px !important;
    }

    html {
        font-size: 18px !important;
    }
}

/* ==========================================================
   STORIES & BLOGS SECTION STYLING
   ========================================================== */

/* Spacing and layout for stories main container */
.stories-hero {
    padding: 160px 0 80px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.05) 0%, rgba(7, 8, 10, 0) 100%);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stories-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stories-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.stories-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    padding: 80px 0;
}

@media (max-width: 1024px) {
    .stories-layout-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Search and Filters */
.search-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-box {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 20px 12px 45px;
    border-radius: 100px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    outline: none;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.15);
}

.search-box .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--primary), #ff9100);
    color: var(--text-inverse);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.25);
}

/* Featured Story layout */
.featured-story {
    margin-bottom: 50px;
}

.featured-story-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: rgba(18, 20, 26, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .featured-story-card {
        grid-template-columns: 1fr;
    }
}

.featured-img-wrapper {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.featured-story-card:hover .featured-img {
    transform: scale(1.04);
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tag {
    align-self: flex-start;
    background: rgba(255, 122, 0, 0.12);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.featured-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-content h2 a {
    color: #fff;
    transition: var(--transition-smooth);
}

.featured-content h2 a:hover {
    color: var(--primary);
}

.featured-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

/* Grid of regular articles */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 600px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

.story-card {
    background: rgba(18, 20, 26, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.story-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.story-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.story-card:hover .story-img {
    transform: scale(1.05);
}

.story-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--text-inverse);
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.story-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.story-body h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.story-body h3 a {
    color: #fff;
    transition: var(--transition-smooth);
}

.story-body h3 a:hover {
    color: var(--primary);
}

.story-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    font-size: 0.8rem;
}

.story-author {
    color: #fff;
    font-weight: 600;
}

.read-more-link {
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-link:hover {
    color: #ff9100;
    gap: 8px;
}

/* Sidebar Styling */
.sidebar-widget {
    background: rgba(18, 20, 26, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary);
    padding-left: 12px;
    font-family: var(--font-heading);
}

/* Categories widget list */
.sidebar-categories {
    list-style: none;
}

.sidebar-categories li {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 8px;
}

.sidebar-categories li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.sidebar-categories a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Recent Posts widget */
.recent-posts-list {
    list-style: none;
}

.recent-posts-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
}

.recent-post-thumb {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 5px;
    font-weight: 600;
}

.recent-post-info h4 a {
    color: #fff;
    transition: var(--transition-smooth);
}

.recent-post-info h4 a:hover {
    color: var(--primary);
}

.recent-post-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Newsletter subscription */
.newsletter-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 15px;
    border-radius: var(--border-radius-sm);
    color: #fff;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.newsletter-form button {
    width: 100%;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.page-num.active,
.page-num:hover {
    background: linear-gradient(135deg, var(--primary), #ff9100);
    color: var(--text-inverse);
    border-color: transparent;
}

/* ==========================================================
   INDIVIDUAL BLOG POST STYLING
   ========================================================== */
.blog-post-header {
    position: relative;
    padding-top: 140px;
    overflow: hidden;
}

.blog-post-banner {
    width: 100%;
    height: 450px;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .blog-post-banner {
        height: 300px;
    }
}

.blog-post-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-banner::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 8, 10, 0.1) 0%, rgba(7, 8, 10, 0.8) 100%);
}

.blog-post-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 20px 40px 20px;
}

.blog-post-header-content h1 {
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
}

@media (max-width: 768px) {
    .blog-post-header-content h1 {
        font-size: 2rem;
    }
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.blog-post-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
}

/* Content blocks */
.blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
}

.blog-content p {
    margin-bottom: 25px;
    color: var(--text-main);
}

.blog-content h2 {
    font-size: 1.8rem;
    color: #fff;
    margin: 45px 0 20px 0;
    font-family: var(--font-heading);
    font-weight: 700;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 35px 0 15px 0;
    font-family: var(--font-heading);
    font-weight: 600;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 10px;
}

/* Info Box / Highlighted cards in blog post */
.info-box-card {
    background: rgba(255, 122, 0, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 4px;
    padding: 25px;
    margin: 35px 0;
}

.info-box-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.info-box-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social sharing */
.social-share-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-share-row span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.share-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Prev / Next navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    gap: 20px;
}

.nav-link-prev,
.nav-link-next {
    display: flex;
    flex-direction: column;
    max-width: 48%;
    transition: var(--transition-smooth);
}

.nav-link-prev {
    align-items: flex-start;
}

.nav-link-next {
    align-items: flex-end;
    text-align: right;
}

.nav-link-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.nav-post-title {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.nav-link-prev:hover .nav-post-title,
.nav-link-next:hover .nav-post-title {
    color: var(--primary);
}

/* FAQs inside blog post */
.blog-faq-section {
    margin: 50px 0;
}

.blog-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.blog-faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.blog-faq-answer {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Related stories */
.related-posts-section {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 50px;
}

.related-posts-section h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 600px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Orange gradient button */
.btn-orange-grad {
    background: linear-gradient(135deg, var(--primary), #ff9100);
    color: var(--text-inverse) !important;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.35);
    border-radius: 100px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    padding: 14px 30px;
    text-align: center;
    font-size: 0.95rem;
}

.btn-orange-grad:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
    color: var(--text-inverse) !important;
}

/* ==========================================================
   PROFESSIONAL DRIVERS PAGE STYLING
   ========================================================== */

.drivers-hero {
    padding: 160px 0 80px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.04) 0%, rgba(7, 8, 10, 0) 100%);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.drivers-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.drivers-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.drivers-intro-section {
    padding: 80px 0;
    position: relative;
}

/* Drivers verification blocks */
.verification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .verification-grid {
        grid-template-columns: 1fr;
    }
}

.verification-card {
    background: rgba(18, 20, 26, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
}

.verification-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
}

.verification-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.verification-badge {
    background: rgba(255, 122, 0, 0.12);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.verification-card h3 {
    font-size: 1.4rem;
    color: #fff;
    font-family: var(--font-heading);
}

.verification-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Skills list styling */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

.skill-card {
    background: rgba(18, 20, 26, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
}

.skill-card:hover {
    border-color: rgba(255, 122, 0, 0.2);
    transform: translateY(-2px);
}

.skill-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 122, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.skill-card h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.skill-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-muted);
}

/* Safety & Training grid */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .safety-grid {
        grid-template-columns: 1fr;
    }
}

.safety-card {
    background: rgba(18, 20, 26, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
}

.safety-card:hover {
    border-color: var(--primary);
}

.safety-card h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.safety-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-muted);
}

/* Accordion FAQ styles */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(18, 20, 26, 0.3);
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    padding: 0 25px 20px 25px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MS CABS — MOBILE RESPONSIVE FIXES v2.0
   Applied: 2026-07-07
   Fixes: BUG-003 to BUG-020 (all issues from mobile audit)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── BUG-004 / BUG-005: Transit banner compact + hero trust pills fix ── */
@media (max-width: 480px) {
    /* BUG-004: Compact the transit banner on mobile to save vertical space */
    .hub-pickup-banner {
        font-size: 0.7rem;
        padding: 7px 12px;
        line-height: 1.4;
        letter-spacing: 0;
    }
    .hub-pickup-banner span {
        display: block;
        max-width: 100%;
    }

    /* BUG-005: Hero trust badge pills — stack all 3 cleanly on mobile */
    .hero-trust-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .trust-badge {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ── Hide Leaflet zoom controls on mobile devices (pinch-to-zoom is preferred) ── */
@media (max-width: 768px) {
    .leaflet-control-zoom {
        display: none !important;
    }
}

/* ── BUG-007: Booking form tabs — increase touch target + text readability ── */
@media (max-width: 480px) {
    .booking-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    .tab-btn {
        font-size: 0.82rem;
        padding: 12px 6px;
        min-height: 44px;
        line-height: 1.2;
    }
}

/* ── BUG-009: Services tab buttons — equal width on mobile ── */
@media (max-width: 600px) {
    .services-tab-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .service-tab-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
        min-height: 48px;
    }
}

/* ── BUG-010: Package card badges — limit to 2 visible on mobile ── */
@media (max-width: 768px) {
    .package-badges-overlay {
        max-height: 62px;
        overflow: hidden;
    }
    .badge-tag:nth-child(n+3) {
        display: none;
    }
}

/* ── BUG-011: Fleet/package card images — better object-position ── */
@media (max-width: 768px) {
    .package-img-wrapper img,
    .package-card img {
        object-fit: cover;
        object-position: center 40%;
    }
}

/* ── BUG-012: Custom concierge feature tags — consistent wrap layout ── */
@media (max-width: 600px) {
    /* Find concierge tag row and make them uniform width in 2 cols */
    .concierge-features-row,
    .concierge-tags-row,
    .special-features-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .concierge-feature-tag,
    .concierge-tag,
    .special-tag {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ── BUG-013: Route pill grid — fix uneven 2-col heights ── */
@media (max-width: 600px) {
    .route-tags {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .route-tag {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
        justify-content: center;
        font-size: 0.78rem;
        padding: 8px 10px;
    }
}

/* ── BUG-015: Footer social icons — ensure visible row on mobile ── */
@media (max-width: 768px) {
    .footer-social,
    .social-links,
    .footer-socials {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 16px;
        justify-content: flex-start;
    }
    .social-icon,
    .footer-social a,
    .social-links a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease;
        font-size: 1.1rem;
        text-decoration: none;
    }
    .social-icon:hover,
    .footer-social a:hover,
    .social-links a:hover {
        background: var(--primary);
        border-color: var(--primary);
    }
}

/* ── BUG-016: Excess blank gap before documents section ── */
@media (max-width: 768px) {
    .documents-section,
    .safety-docs-section,
    #security-docs {
        padding-top: 40px !important;
        margin-top: 0 !important;
    }
    /* Also tighten up concierge bottom spacing */
    .concierge-section,
    #concierge {
        padding-bottom: 40px !important;
    }
}

/* ── BUG-017: Mobile nav — add call CTA at bottom of nav overlay ── */
@media (max-width: 1200px) {
    .nav-menu.active::after {
        content: '📞 Call: +91 96865 41437';
        display: block;
        margin: 30px auto 20px auto;
        padding: 14px 28px;
        background: var(--primary);
        color: #000;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.9rem;
        border-radius: 100px;
        text-align: center;
        letter-spacing: 0.02em;
        width: fit-content;
        max-width: 260px;
    }
}

/* ── BUG-003 / BUG-020: Filter chips row — fade hint for scroll ── */
@media (max-width: 768px) {
    /* Packages filter row */
    .filter-chips-wrapper,
    .packages-filter-row,
    .filter-chips-row {
        position: relative;
        overflow: hidden;
    }
    .filter-chips-wrapper::after,
    .packages-filter-row::after,
    .filter-chips-row::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50px;
        background: linear-gradient(to left, var(--bg-main) 0%, transparent 100%);
        pointer-events: none;
        z-index: 2;
    }

    /* For tour filter row (index, all-packages) — wrap to 2 rows instead */
    .tours-filter-row,
    .package-filter-tabs {
        flex-wrap: wrap !important;
        gap: 8px !important;
        justify-content: flex-start !important;
    }
    .tours-filter-row .filter-btn,
    .package-filter-tabs .filter-btn {
        flex: 0 0 auto;
        font-size: 0.78rem;
        padding: 8px 14px;
        min-height: 36px;
    }
}

/* ── GENERAL: Map section wrap — enable tap-to-unlock ── */
@media (max-width: 768px) {
    .map-container-wrap {
        position: relative;
    }
}

/* ── GENERAL: Horizontal overflow guard ── */
@media (max-width: 480px) {
    /* Prevent any section from causing horizontal scroll */
    section,
    .section,
    [class*="-section"],
    [class*="-wrap"],
    [class*="-container"] {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* General font-size floor */
    p, li, label, a:not(.btn) {
        font-size: max(0.85rem, 13px);
    }

    /* General button touch-target floor */
    button, .btn, [role="button"] {
        min-height: 44px;
    }
}

/* Hide map section completely on mobile viewports (<= 768px) */
@media (max-width: 768px) {
    #route-explorer {
        display: none !important;
    }
}


/* =========================================
   CUSTOM MODALS (PHASE 3.2)
   ========================================= */

.mscabs-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 5, 6, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mscabs-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Success Modal (Zomato Style) */
.mscabs-success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mscabs-modal-overlay.active .mscabs-success-content {
    transform: scale(1);
}

.zomato-logo-anim {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    animation: bounceScale 1.5s infinite, pulseGlow 2s infinite;
    filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.5));
}

.mscabs-success-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.mscabs-success-content p {
    color: var(--gray-400);
    font-size: 1.1rem;
}

@keyframes bounceScale {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.1) translateY(-10px); }
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(230, 57, 70, 0.4)); }
    50% { filter: drop-shadow(0 0 30px rgba(230, 57, 70, 0.8)); }
}

/* Contact Capture Modal */
.mscabs-contact-card {
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.mscabs-modal-overlay.active .mscabs-contact-card {
    transform: translateY(0);
}

.mscabs-contact-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mscabs-contact-card p {
    color: var(--gray-400);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.mscabs-contact-card .form-group {
    margin-bottom: 20px;
}

/* Admin Panel Live Preview Highlighter */
[id^="field-"] {
}
