/*
 * ════════════════════════════════════════════════
 *  One Side Taxi Service — Premium Design System
 *  Theme: Midnight Crimson + Champagne Gold (1st Class)
 * ════════════════════════════════════════════════
 */

/* ── Google Fonts ───────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ───────────────────────────── */
:root {
    /* Core Palette: Midnight Crimson & Champagne Gold */
    --accent: #991b1b;
    --accent-dark: #7f1d1d;
    --accent-light: #fef2f2;
    --accent-glow: rgba(153, 27, 27, 0.4);

    --gold: #e2c69c;
    --gold-light: #fef3c7;

    --brand-gold: #e2c69c;
    --brand-crimson: #881b1b;

    --bg: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-dark: #0F172A;
    --bg-dark-2: #1E293B;
    --text-dark: #0f172a;
    --text-body: #1E293B;
    --text-muted: #64748b;
    --border: #e2e8f0;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 35px 70px rgba(0, 0, 0, 0.08);
    --shadow-premium: 0 50px 100px rgba(0, 0, 0, 0.12), 0 15px 35px rgba(0, 0, 0, 0.05);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 45px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ── Premium Glassmorphism ── */
.glass-premium {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 86px;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

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

img {
    display: block;
    max-width: 100%;
    transition: var(--transition);
}

span {
    color: var(--accent);
}

/* ── 3D Effects ── */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-premium) !important;
}

.glow-hover:hover {
    box-shadow: 0 0 30px var(--accent-glow);
}


/* ── Layout ──────────────────────────────────── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-pad {
    padding: 100px 0;
}

.bg-white {
    background: var(--bg-white);
}

.bg-light {
    background: var(--bg);
}

.bg-dark-gradient {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

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

/* ── Custom Premium Grid System ── */
.premium-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="premium-col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.premium-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.premium-col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.premium-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.premium-col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.premium-col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.premium-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (max-width: 991px) {

    .premium-col-4,
    .premium-col-6,
    .premium-col-7,
    .premium-col-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}


/* ── Section Titles ──────────────────────────── */
.section-title {
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

/* ── Navigation ──────────────────────────────── */
.navbar {
    padding: 0.7rem 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 50px;
    width: auto;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
}

.nav-dropdown-toggle {
    border: none;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
}

.nav-dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle i,
.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%);
    width: min(760px, 92vw);
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 1200;
}

.nav-dropdown.open .mega-menu,
.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 12px);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.mega-menu.mega-menu-sm {
    width: max-content;
    min-width: 280px;
    max-width: 92vw;
}

.mega-menu.mega-menu-sm .mega-menu-grid {
    grid-template-columns: 1fr;
}

.mega-menu-col {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1rem;
}

.mega-menu-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.7rem;
}

.mega-link {
    display: block;
    text-decoration: none;
    color: #1f2937;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.45rem 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mega-link:hover {
    background: rgba(153, 27, 27, 0.08);
    color: var(--accent);
}

.mobile-routes-dropdown {
    display: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1202;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-only {
    display: none;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.support-link i {
    width: 42px;
    height: 42px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.support-link span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 2px;
}

.support-link strong {
    font-size: 1.05rem;
    color: var(--accent);
    font-weight: 800;
}

.support-link:hover {
    transform: translateY(-2px);
}

.support-info {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.support-info span {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 800;
    letter-spacing: 0.1em;
}

.support-info a {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
}

.support-info i {
    color: var(--accent);
    margin-right: 0.3rem;
}

.btn-book {
    padding: 0.8rem 1.75rem;
    background: #111827;
    color: white;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-book:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
    color: white;
}

.btn-book:active,
.btn-book:focus,
.btn-book:focus-visible,
button:active,
.btn-white:active,
.btn-hero-submit:active {
    background: var(--accent) !important;
    background-color: var(--accent) !important;
    color: white !important;
    transform: scale(0.96) !important;
    outline: none !important;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
}

/* ── Common Components ────────────────────────── */
.btn-white {
    background: white;
    color: #991b1b !important;
}

.btn-white:hover {
    background: #f8fafc;
    color: #7f1d1d !important;
}

.btn-white:active,
.btn-white:focus,
.btn-white:focus-visible {
    background: #e2e8f0 !important;
    color: #991b1b !important;
    transform: scale(0.96) !important;
    outline: none !important;
    box-shadow: none !important;
}

/* ══════════════════════════════════════════════
   HERO BANNER SLIDER
   Architecture: Swiper = background (absolute)
                 hero-foreground = content (normal flow grid)
   ══════════════════════════════════════════════ */

.hero {
    position: relative;
    background: #0a0404;
    overflow: hidden;
}

/* ── Background Swiper: fills section absolutely ── */
.hero-bg-swiper {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0;
}

.hero-bg-swiper .swiper-wrapper,
.hero-bg-swiper .swiper-slide {
    height: 100%;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(153, 27, 27, 0.15) 0%, transparent 50%),
        linear-gradient(to right, rgba(8, 2, 2, 0.95) 0%, rgba(10, 4, 4, 0.7) 40%, transparent 100%);
}

.hero-slide-bg.slide-1 {
    background-image: url('../../assets/img/hero_slide_1.png');
}

.hero-slide-bg.slide-2 {
    background-image: url('../../assets/img/hero_slide_2.png');
}

.hero-slide-bg.slide-3 {
    background-image: url('../../assets/img/hero_slide_3.png');
}

/* ── Hero Glow Orbs ── */
.hero-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: glowFloat 15s infinite alternate ease-in-out;
}

.glow-1 {
    background: var(--accent);
    top: -200px;
    right: -100px;
}

.glow-2 {
    background: var(--gold);
    bottom: -200px;
    left: -100px;
    animation-delay: -7s;
}

@keyframes glowFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

/* Dot-grid texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(153, 27, 27, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 3;
    pointer-events: none;
}


/* ── Foreground: in normal document flow ── */
.hero-foreground {
    position: relative;
    z-index: 10;
    padding: 120px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* ── Text Panel (left column) ── */
.hero-text-panel {
    position: relative;
}

/* Each slide's text block */
.hero-slide-text {
    display: none;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide-text.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: heroTextIn 0.7s ease forwards;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(234, 179, 8, 0.3);
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.slide-title {
    font-size: 4.8rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: white !important;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.slide-title span {
    background: linear-gradient(135deg, #fcd34d 0%, #d4af37 50%, #b45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.slide-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.82) !important;
    margin-bottom: 3rem;
    line-height: 1.65;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-stat h4 {
    font-size: 2.4rem;
    color: white;
    margin-bottom: 0.2rem;
    font-weight: 900;
    line-height: 1;
}

.hero-stat p {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* ── Form Panel (right column) ── */
.hero-form-panel {
    position: relative;
}

/* Pagination — centred at bottom of section */
.hero-pagination {
    bottom: 35px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    width: auto !important;
    z-index: 15 !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.35s;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 56px;
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(226, 198, 156, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(226, 198, 156, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(226, 198, 156, 0);
    }
}

.hero-badge {
    animation: pulseGold 3s infinite;
}


.hero .booking-card-header h2 {
    color: #0f172a;
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    font-weight: 800;
}

.hero .booking-card-header h2 span {
    color: var(--accent);
}

.hero .booking-card-header p {
    color: #64748b;
    margin-bottom: 1.75rem;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Keep Modal Header Light */
.modal-content .booking-card-header h2 {
    color: white;
}

.modal-content .booking-card-header p {
    color: rgba(255, 255, 255, 0.5);
}

.hero .booking-card .form-group label {
    color: #334155;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.hero .booking-card .form-control {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #0f172a !important;
    height: 52px;
    border-radius: 12px;
    padding: 0 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

/* Autocomplete Results Positioning */
.input-wrap {
    position: relative;
    width: 100%;
}

.hero .booking-card .input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    z-index: 5;
    font-size: 1.15rem;
}

.hero .booking-card .form-control {
    padding-left: 3.5rem;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 12px;
    margin-top: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    border: 1px solid #e1e5e9;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

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

.autocomplete-item:hover {
    background: #f0f4ff;
    color: var(--accent);
}

.booking-card .form-control::placeholder {
    color: #94a3b8;
}

.booking-card .form-control:focus {
    background: white;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(153, 27, 27, 0.1);
}

.route-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
}

.route-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.route-arrow {
    color: var(--gold);
    font-size: 0.9rem;
}

.btn-hero-submit {
    width: 100%;
    height: 62px;
    background: var(--accent);
    color: white;
    font-weight: 800;
    font-size: 1.15rem;
    border: none;
    border-radius: 14px;
    margin-top: 1.5rem;
    box-shadow: 0 12px 30px var(--accent-glow);
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-hero-submit:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 20px 45px var(--accent-glow);
}

.booking-trust-row {
    margin-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   PREMIUM HERO BOOKING CARD (hbc-*)
═══════════════════════════════════════════ */
.hbc-premium {
    padding: 0 !important;
    border-radius: 22px !important;
    box-shadow: 0 0 0 1px rgba(153, 27, 27, 0.25), 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(153, 27, 27, 0.15) !important;
    border: none !important;
}

/* Header band */
.hbc-header {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #b91c1c 100%);
    padding: 1.4rem 1.8rem 1.2rem;
    position: relative;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

.hbc-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hbc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hbc-header h2 {
    color: #ffffff !important;
    font-size: 1.55rem !important;
    font-weight: 900 !important;
    margin: 0 0 3px !important;
    line-height: 1.2;
}

.hbc-header h2 span {
    color: #fcd34d !important;
}

.hbc-header p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.8rem !important;
    margin: 0 !important;
}

/* Body */
.hbc-body {
    padding: 1.5rem 1.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 0 0 22px 22px;
}

.glass-premium .hbc-header {
    background: linear-gradient(135deg, rgba(153, 27, 27, 0.92) 0%, rgba(127, 29, 29, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Field groups */
.hbc-field-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.6rem;
}

/* Step bubbles */
.hbc-step {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0;
}

.hbc-step-green {
    background: #16a34a;
}

.hbc-step-red {
    background: #dc2626;
}

.hbc-step-gold {
    background: #d4af37;
}

/* Field wrap */
.hbc-field-wrap {
    flex: 1;
    position: relative;
}

.hbc-field-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    z-index: 2;
    transition: color 0.2s;
}

.hbc-input {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 38px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.hbc-input::placeholder {
    color: #94a3b8;
}

.hbc-input:hover {
    border-color: #cbd5e1;
}

.hbc-input:focus {
    border-color: #991b1b;
    background: #fff;
    box-shadow: 0 0 0 3.5px rgba(153, 27, 27, 0.1);
    outline: none;
}

.hbc-input:focus+.hbc-field-icon,
.hbc-field-wrap:focus-within .hbc-field-icon {
    color: #991b1b;
}

/* Connector */
.hbc-connector {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 4px 0 4px 42px;
}

.hbc-connector-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.hbc-connector-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fef2f2;
    border: 1.5px solid #fecaca;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #991b1b;
    font-size: 0.7rem;
}

/* Divider */
.hbc-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 0.9rem 0;
}

/* CTA Button */
.hbc-btn {
    width: 100%;
    height: 54px;
    margin-top: 1.1rem;
    background: linear-gradient(135deg, #7f1d1d, #991b1b, #b91c1c);
    background-size: 200% 200%;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s, background-position 0.4s;
    box-shadow: 0 8px 25px rgba(153, 27, 27, 0.35);
    position: relative;
    overflow: hidden;
}

.hbc-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.hbc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(153, 27, 27, 0.4);
    background-position: right center;
}

.hbc-btn:hover::after {
    transform: translateX(100%);
}

/* Trust row */
.hbc-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.77rem;
    color: #64748b;
    font-weight: 600;
    flex-wrap: wrap;
}

.hbc-trust-dot {
    color: #cbd5e1;
}

/* jQuery Validate errors in hero form */
#heroBookingForm span.error {
    color: #dc2626;
    font-size: 0.77rem;
    font-weight: 600;
    margin-top: 3px;
    display: block;
    padding-left: 42px;
}

/* ── Counting Strip ──────────────────────────── */
.counting-section {
    background: var(--bg-white);
    padding-bottom: 60px;
}

.counting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    margin: -60px auto 0;
    overflow: hidden;
    position: relative;
    z-index: 20;
    border: 1px solid #f1f5f9;
    max-width: 1140px;
}

.count-item {
    padding: 3rem 1.5rem;
    text-align: center;
    border-right: 1px solid #f1f5f9;
    transition: var(--transition);
}

.count-item:last-child {
    border-right: none;
}

.count-item i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.count-item h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 800;
}

.count-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* ── Why Choose Us ────────────────────────────── */
.section-pad {
    padding: 120px 0;
}

.bg-light {
    background: #f8fafc;
}

.bg-white {
    background: #ffffff;
}

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

.trust-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.trust-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-light);
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.trust-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── Car Fleet ────────────────────────────────── */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.fleet-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.fleet-card .btn-book {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

.fleet-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.fleet-img-wrap {
    height: 160px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-img-wrap img {
    max-width: 100%;
    height: auto;
    transition: var(--transition);
}

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

.fleet-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.fleet-rate {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    font-weight: 800;
    color: var(--text-dark);
    border: 1px dashed #e2e8f0;
}

/* ── Popular Routes ───────────────────────────── */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.route-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.route-card-img-wrap {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: #e2e8f0;
}

.route-city-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.route-card:hover .route-city-bg {
    transform: scale(1.1);
}

.route-card-content {
    padding: 2rem;
    text-align: center;
}

.route-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.route-km {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.price-box {
    padding: 0.75rem 0.25rem;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: #fcfdfe;
}

.price-box span {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-box strong {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 900;
}

.btn-book-now {
    width: 100%;
    height: 56px;
    padding: 0 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #111827;
    color: white;
    border-radius: 14px;
    border: none;
    font-weight: 800;
    transition: var(--transition);
    margin-bottom: 10px;
}

.btn-book-now:hover {
    background: var(--accent);
}

/* ── Testimonials ─────────────────────────────── */
.testimonials-section {
    background: #f8fafc;
    padding: 120px 0;
    overflow: hidden;
}

.testimonials-section .section-title h2 {
    color: var(--text-dark);
}

.testimonials-section .section-title p {
    color: var(--text-body);
}

.testimonials-section .section-eyebrow {
    background: rgba(153, 27, 27, 0.08);
    color: var(--accent);
}

.testimonials-scroller {
    margin-top: 4rem;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 60s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    width: 420px;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 3rem;
    border-radius: 24px;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.testimonial-text {
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-weight: 800;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.testimonial-route {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── CTA Strip ────────────────────────────────── */
.cta-strip {
    background: linear-gradient(135deg, #991b1b 0%, #1a0606 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(80px);
}

.cta-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 5;
}

.cta-strip-text h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-strip-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin: 0;
}

.cta-strip-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-call:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ── Scroll Indicator ─────────────────────────── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

/* ── Autocomplete ─────────────────────────────── */
.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-top: 0.5rem;
    z-index: 1000;
    box-shadow: var(--shadow-xl);
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.autocomplete-item {
    padding: 1rem 1.25rem;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-dark);
}

.autocomplete-item:hover {
    background: #f8fafc;
    color: var(--accent);
}

/* ── Footer ───────────────────────────────────── */
.footer-main {
    background: var(--bg-dark);
    padding: 120px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-logo {
    display: block;
    max-width: 200px;
    margin-bottom: 2rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}



.footer-contact {
    gap: 1.5rem !important;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.footer-contact i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-contact span,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.6;
}


.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-hover {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-hover:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin: 0;
}

.accent-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

/* ── Modal ────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 4, 4, 0.9);
    backdrop-filter: blur(16px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: #1a0606;
    border-radius: 28px;
    padding: 3.5rem;
    position: relative;
    width: 100%;
    max-width: 550px;
    border: 1px solid rgba(153, 27, 27, 0.2);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(153, 27, 27, 0.1);
    animation: modalScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #94a3b8;
    transition: var(--transition);
}

.close-modal:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-content .booking-card-header h2 {
    color: white;
}

.modal-content .booking-card-header p {
    color: #94a3b8;
}

.modal-content .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.modal-content .form-group label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-content .form-group label i {
    font-size: 0.75rem;
    color: var(--accent);
}

.modal-content .input-wrap {
    position: relative;
}

.modal-content .input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    z-index: 5;
}

.modal-content .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: white !important;
    height: 56px;
    padding: 0 1.25rem 0 3.2rem !important;
    border-radius: 14px;
    font-size: 1rem;
    width: 100%;
    transition: var(--transition);
}

.modal-content .form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(226, 198, 156, 0.2);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.modal-trust-badge {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
    text-align: center;
}

.modal-trust-badge p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.route-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
    width: 100%;
}

.route-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.route-arrow {
    color: var(--gold);
    font-size: 0.9rem;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(5px);
    }

    60% {
        transform: translateY(3px);
    }
}

.modal-content .btn-book {
    width: 100%;
    height: 60px;
    background: var(--accent);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    border-radius: 14px;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px var(--accent-glow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
}

.modal-content .btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--accent-glow);
    background: var(--accent-hover);
}

.modal-content .autocomplete-results {
    background: #2d0a0a;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-content .autocomplete-item {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.05);
}

.modal-content .autocomplete-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
}

/* ── Process Steps ────────────────────────────── */
.steps-section {
    background: #0a0404;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(153, 27, 27, 0.1) 0%, transparent 70%);
    filter: blur(80px);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    position: relative;
    z-index: 5;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-visual {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(226, 198, 156, 0.1);
    border-radius: 50%;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover .step-visual {
    border-color: var(--gold);
    background: rgba(226, 198, 156, 0.05);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(226, 198, 156, 0.1);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: #1a0606;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.step-visual i {
    font-size: 2.5rem;
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(226, 198, 156, 0.3));
}

.step-card h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.step-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 300px;
    margin: 0 auto;
}

.step-connector {
    position: absolute;
    top: 70px;
    left: calc(50% + 100px);
    width: calc(100% - 200px);
    height: 2px;
    border-top: 2px dashed rgba(226, 198, 156, 0.2);
    z-index: 1;
}

/* ── Extra Global Spans ───────────────────────── */
span {
    color: inherit;
}


/* ──────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.6rem;
    }

    .routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-pad {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 2.4rem;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: auto;
        height: auto;
    }

    .hero-swiper {
        height: 70vh;
        min-height: 500px;
    }

    .hero-slide-bg {
        position: absolute;
    }

    .hero-container {
        max-width: 100%;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 100px;
    }

    .hero-badge {
        margin: 0 auto 1.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .slide-title {
        font-size: 3.2rem;
    }

    .hero-overlay-form {
        position: relative;
        inset: auto;
        display: block;
    }

    .hero-overlay-form .container {
        justify-content: center;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 520px;
    }

    .counting-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 2rem;
    }

    .count-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .count-item:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

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

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

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

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .section-pad {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-foreground {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .hero-text-panel {
        order: 1;
    }

    .hero-form-panel {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .hero-badge {
        margin: 0 auto 1.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .slide-title {
        font-size: 3.2rem;
    }

    .slide-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 520px;
    }

    .pricing-grid,
    .fleet-grid,
    .routes-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2.5rem 1.5rem;
        margin: 1rem;
        border-radius: 20px;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .cta-strip-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-strip-actions button,
    .cta-strip-actions a {
        width: 100%;
        justify-content: center;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.25rem;
        z-index: 1200;
        padding: 5.5rem 2rem 2rem;
    }

    .nav-links.active {
        display: flex;
        animation: menuIn 0.35s ease forwards;
    }

    @keyframes menuIn {
        from {
            opacity: 0;
            transform: translateY(-15px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    .nav-link {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-dark);
    }

    .nav-dropdown {
        display: none;
    }

    .mobile-routes-dropdown {
        display: block;
        width: 100%;
        max-width: 360px;
    }

    .mobile-routes-dropdown summary {
        list-style: none;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--text-dark);
        text-align: center;
    }

    .mobile-routes-dropdown summary::-webkit-details-marker {
        display: none;
    }

    .mobile-routes-list {
        margin-top: 0.9rem;
        display: grid;
        gap: 0.5rem;
        max-height: 42vh;
        overflow-y: auto;
        padding-right: 0.2rem;
    }

    .mobile-submenu-link {
        text-decoration: none;
        color: #1f2937;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 0.55rem 0.7rem;
        text-align: center;
    }

    .mobile-submenu-link:hover {
        color: var(--accent);
        border-color: rgba(153, 27, 27, 0.35);
    }

    .header-actions {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
        text-align: center;
    }

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

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

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-actions {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 560px) {
    .slide-title {
        font-size: 2.4rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stat h4 {
        font-size: 1.8rem;
    }

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

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

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

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

    .count-item {
        border-right: none !important;
    }

    .cta-strip-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-call,
    .cta-strip-actions .btn-book {
        width: 100%;
        justify-content: center;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .step-visual {
        width: 120px;
        height: 120px;
    }

    .step-visual i {
        font-size: 2rem;
    }

    .booking-card {
        padding: 1.75rem 1.25rem;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatCar {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-15px, -8px) rotate(-0.5deg);
    }

    66% {
        transform: translate(-8px, 8px) rotate(0.5deg);
    }
}

/* ── Premium Breadcrumbs (Global) ────────────────── */
.premium-breadcrumb {
    display: flex !important;
    justify-content: center !important;
    padding: 0 !important;
    margin-bottom: 2.5rem !important;
    width: 100%;
}

.premium-breadcrumb ol.breadcrumb {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    list-style: none !important;
    /* Force NO numbers */
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    justify-content: center !important;
}

.premium-breadcrumb .breadcrumb-item {
    display: flex !important;
    align-items: center !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    font-weight: 800 !important;
    padding: 0 !important;
}

.premium-breadcrumb .breadcrumb-item+.breadcrumb-item {
    padding-left: 0 !important;
}

.premium-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "/" !important;
    padding: 0 1rem !important;
    color: rgba(255, 255, 255, 0.2) !important;
    font-weight: 400 !important;
    display: inline-block !important;
}

.premium-breadcrumb a {
    color: rgba(255, 255, 255, 0.4) !important;
    text-decoration: none !important;
    transition: 0.3s !important;
}

.premium-breadcrumb a:hover {
    color: var(--gold) !important;
}

.premium-breadcrumb .active {
    color: var(--gold) !important;
}

/* ── Validation Styles ─────────────────────────── */
.bm-error {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 5px;
    display: block;
    text-transform: none;
    letter-spacing: normal;
}

form[novalidate] button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ── FAQ Accordion ───────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-icon {
    margin-right: 15px;
    color: #991b1b;
    font-size: 0.9rem;
    opacity: 0.6;
}

.faq-toggle {
    margin-left: auto;
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active State */
.faq-item.active {
    border-color: #991b1b;
    background: #991b1b;
    box-shadow: 0 15px 30px rgba(153, 27, 27, 0.2);
}

.faq-item.active .faq-question {
    color: #fff;
}

.faq-item.active .faq-icon {
    color: #fff;
    opacity: 1;
}

.faq-item.active .faq-toggle {
    background: #fff;
    color: #991b1b;
    transform: rotate(0deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 60px;
    color: rgba(255, 255, 255, 0.9);
}

.faq-answer strong {
    color: #fff;
}

.faq-answer ul {
    margin-top: 10px;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 50px;
    }
}

/* ── Footer Refinement ────────────────────────── */
.footer-links h4 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #991b1b;
    border-radius: 4px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
    transition: var(--transition);
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: #991b1b;
    opacity: 0;
    transition: var(--transition);
    transform: translateX(-10px);
}

.footer-links li:hover {
    transform: translateX(8px);
}

.footer-links li:hover a {
    color: #fff;
}

.footer-links li:hover a::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: #991b1b;
    margin-top: 5px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: #fff;
}


.bks-card {
    --bks-gold: #d4af37;
    --bks-gold-deep: #b8941f;
    --bks-gold-soft: #fff7d6;
    --bks-gold-tint: #fef9e7;
    --bks-cream: #fffaf0;
    --bks-cream-deep: #fdf6e3;
    --bks-accent: #991b1b;
    --bks-accent-dark: #7f1d1d;
    --bks-accent-deep: #5e1414;
    --bks-accent-soft: #fef2f2;
    --bks-accent-tint: #fde8e8;
    --bks-text: #1a0a0a;
    --bks-text-soft: #44272a;
    --bks-muted: #6b5856;
    --bks-border: #ead9c0;
    --bks-border-soft: #f1e5cf;
    --bks-radius-lg: 18px;
    --bks-radius-md: 13px;
    --bks-transition: 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
    position: relative;
    border-radius: var(--bks-radius-lg);
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.35),
        0 35px 70px -20px rgba(94, 20, 20, 0.45),
        0 0 60px rgba(212, 175, 55, 0.1) !important;
}

.bks-card .hbc-header {
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(212, 175, 55, 0.18) 0%, transparent 55%),
        linear-gradient(135deg, #5e1414 0%, #991b1b 55%, #b91c1c 100%) !important;
    padding: 1.5rem 1.8rem 1.6rem !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.bks-card .hbc-eyebrow {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.15)) !important;
    color: #fef3c7 !important;
    border: 1px solid rgba(212, 175, 55, 0.5) !important;
}

.bks-card .hbc-body {
    background: linear-gradient(180deg, #ffffff 0%, var(--bks-cream-deep) 100%) !important;
    padding: 2rem 2.35rem 1.8rem !important;
}

.bks-tablist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 6px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, rgba(94, 20, 20, 0.06), rgba(94, 20, 20, 0.02));
    border: 1px solid var(--bks-border-soft);
    border-radius: 14px;
}

.bks-tab,
.bks-toggle-btn {
    appearance: none;
    border: 0;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--bks-transition);
}

.bks-tab {
    gap: 7px;
    padding: 11px 8px;
    color: var(--bks-text-soft);
    background: transparent;
    border-radius: 10px;
    font-size: 0.82rem;
}

.bks-tab i {
    color: var(--bks-accent);
    opacity: 0.75;
}

.bks-tab:hover:not(.is-active) {
    color: var(--bks-accent-dark);
    background: var(--bks-gold-tint);
}

.bks-tab.is-active {
    color: var(--bks-accent-deep);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 50%),
        linear-gradient(135deg, #ffcc00 0%, var(--bks-gold) 42%, var(--bks-gold-deep) 100%);
    box-shadow:
        0 0 0 1px rgba(168, 130, 18, 0.35),
        0 10px 22px -8px rgba(168, 130, 18, 0.55);
    transform: translateY(-1px);
}

.bks-panels {
    position: relative;
}

.bks-panel,
.bks-form {
    display: none;
}

.bks-panel.is-active,
.bks-form.is-active {
    display: block;
    animation: bksFadeIn 0.35s ease both;
}

@keyframes bksFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bks-toggle {
    display: flex;
    gap: 5px;
    padding: 5px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, var(--bks-accent-soft), #fff7f7);
    border: 1px solid var(--bks-accent-tint);
    border-radius: 999px;
}

.bks-toggle-btn {
    flex: 1;
    gap: 7px;
    padding: 9px 16px;
    color: var(--bks-accent-dark);
    background: transparent;
    border-radius: 999px;
    font-size: 0.8rem;
}

.bks-toggle-btn:hover:not(.is-active) {
    color: var(--bks-accent);
    background: rgba(255, 255, 255, 0.7);
}

.bks-toggle-btn.is-active {
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 50%),
        linear-gradient(135deg, var(--bks-accent), var(--bks-accent-dark));
    box-shadow: 0 8px 18px -6px rgba(153, 27, 27, 0.55);
}

.bks-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 9px;
    color: var(--bks-text-soft);
    font-size: 0.71rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bks-label i {
    width: 14px;
    color: var(--bks-accent);
    font-size: 0.85rem;
}

.bks-input,
.bks-card .select2-container--default .select2-selection--single {
    display: block;
    width: 100%;
    height: 48px;
    min-height: 48px;
    padding: 0 14px;
    color: var(--bks-text);
    background: linear-gradient(180deg, #ffffff 0%, var(--bks-cream) 100%);
    border: 1.5px solid var(--bks-border);
    border-radius: var(--bks-radius-md);
    box-shadow: inset 0 1px 2px rgba(94, 20, 20, 0.04);
    font-family: inherit;
    font-size: 0.93rem;
    font-weight: 500;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.bks-input::placeholder {
    color: #a89186;
}

.bks-input:focus,
.bks-card .select2-container--default.select2-container--focus .select2-selection--single,
.bks-card .select2-container--default.select2-container--open .select2-selection--single {
    outline: none;
    background: #ffffff;
    border-color: var(--bks-accent);
    box-shadow:
        0 0 0 4px rgba(153, 27, 27, 0.1),
        0 0 0 8px rgba(212, 175, 55, 0.1);
}

.bks-card .select2-container {
    width: 100% !important;
}

.bks-card .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px;
    padding-left: 0;
    padding-right: 34px;
    color: var(--bks-text);
}

.bks-card .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #a89186;
}

.bks-card .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    right: 9px;
}

.bks-card .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--bks-accent) transparent transparent transparent;
    border-width: 6px 5px 0 5px;
}

.bks-select2-dropdown {
    overflow: hidden;
    margin-top: 6px;
    background: #fffdf8;
    border: 1.5px solid var(--bks-border);
    border-radius: var(--bks-radius-md);
    box-shadow: 0 20px 50px -15px rgba(94, 20, 20, 0.25);
}

.bks-select2-dropdown .select2-results__option {
    padding: 10px 14px;
    color: var(--bks-text);
    font-size: 0.9rem;
}

.bks-select2-dropdown .select2-results__option--highlighted[aria-selected],
.bks-select2-dropdown .select2-results__option--highlighted {
    color: var(--bks-accent-dark);
    background: linear-gradient(90deg, var(--bks-gold-tint), var(--bks-accent-soft));
    font-weight: 800;
}

.bks-card .iti {
    width: 100%;
}

.bks-card .iti__selected-flag {
    padding: 0 8px 0 12px;
    border-radius: var(--bks-radius-md) 0 0 var(--bks-radius-md);
}

.bks-card .iti--separate-dial-code .iti__selected-flag {
    background: linear-gradient(180deg, #fff7e6, var(--bks-gold-tint));
    border-right: 1.5px solid var(--bks-border);
}

.bks-card .iti--separate-dial-code input.bks-tel {
    padding-left: 92px;
}

.bks-error-msg {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    color: #dc2626;
    font-size: 0.74rem;
    font-weight: 800;
}

.bks-submit-col {
    margin-top: 10px;
}

.bks-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 54px;
    overflow: hidden;
    color: var(--bks-accent-deep);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent 50%),
        linear-gradient(135deg, #ffcc00 0%, var(--bks-gold) 40%, var(--bks-gold-deep) 100%);
    border: 0;
    border-radius: var(--bks-radius-md);
    box-shadow:
        0 14px 28px -10px rgba(168, 130, 18, 0.55),
        0 4px 10px -2px rgba(168, 130, 18, 0.35);
    cursor: pointer;
    font-size: 0.94rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--bks-transition);
}

.bks-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bks-accent), var(--bks-accent-dark));
    opacity: 0;
    transition: opacity var(--bks-transition);
}

.bks-submit>* {
    position: relative;
    z-index: 1;
}

.bks-submit:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 38px -12px rgba(153, 27, 27, 0.6);
}

.bks-submit:hover::before {
    opacity: 1;
}

.bks-submit.is-loading {
    pointer-events: none;
    opacity: 0.92;
}

.bks-submit.is-loading .bks-submit-text,
.bks-submit.is-loading .bks-submit-arrow {
    opacity: 0;
}

.bks-spinner {
    position: absolute;
    z-index: 2;
    width: 22px;
    height: 22px;
    border: 2.5px solid rgba(94, 20, 20, 0.25);
    border-top-color: var(--bks-accent-deep);
    border-radius: 50%;
    opacity: 0;
    animation: bksSpin 0.8s linear infinite;
}

.bks-submit.is-loading .bks-spinner {
    opacity: 1;
}

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

.bks-trust {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    color: var(--bks-muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-align: center;
}

.bks-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18%;
    right: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bks-gold), transparent);
}

.bks-trust span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bks-trust .fa-star {
    color: var(--bks-gold);
}

.bks-trust .fa-shield-halved {
    color: #22c55e;
}

.bks-trust .fa-indian-rupee-sign {
    color: var(--accent);
}

.flatpickr-calendar.bks-flatpickr {
    font-family: 'Outfit', sans-serif;
    background: #fffdf8;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 30px 70px -20px rgba(94, 20, 20, 0.3);
}

.flatpickr-calendar.bks-flatpickr .flatpickr-months {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 16px 16px 0 0;
}

.flatpickr-calendar.bks-flatpickr .flatpickr-month,
.flatpickr-calendar.bks-flatpickr .flatpickr-current-month,
.flatpickr-calendar.bks-flatpickr .flatpickr-current-month input.cur-year,
.flatpickr-calendar.bks-flatpickr .flatpickr-monthDropdown-months {
    color: #ffffff;
}

.flatpickr-calendar.bks-flatpickr .flatpickr-monthDropdown-months option {
    color: #0f172a !important;
    background: #ffffff !important;
}

.flatpickr-calendar.bks-flatpickr .flatpickr-day.selected {
    color: #ffffff;
    background: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 1024px) {
    .bks-card .hbc-body {
        padding: 1.85rem 1.9rem 1.7rem !important;
    }

    .bks-tab {
        gap: 5px;
        padding: 10px 6px;
        font-size: 0.78rem;
    }
}

@media (max-width: 768px) {
    .hero-form-panel {
        position: sticky;
        top: 12px;
        z-index: 5;
    }

    .bks-card .hbc-body {
        padding: 1.7rem 1.55rem 1.55rem !important;
    }
}

@media (max-width: 480px) {
    .bks-card .hbc-header {
        padding: 1.25rem 1.2rem !important;
    }

    .bks-card .hbc-header h2 {
        font-size: 1.35rem !important;
    }

    .bks-card .hbc-body {
        padding: 1.45rem 1.25rem 1.35rem !important;
    }

    .bks-tab span {
        font-size: 0.74rem;
    }

    .bks-toggle-btn {
        padding: 8px 10px;
        font-size: 0.74rem;
    }

    .bks-submit {
        height: 50px;
        font-size: 0.88rem;
    }

    .bks-trust {
        gap: 6px;
        font-size: 0.7rem;
    }
}

.float-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.float-buttons-left {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.call-btn {
    background: #007bff;
}

.call-btn:hover {
    background: #0056b3;
    color: #fff;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.call-btn {
    background: #007bff;
    color: #fff;
}

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {

    .float-buttons,
    .float-buttons-left {
        display: none;
    }

    body {
        padding-bottom: 84px;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 1200;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: center;
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
        border-top: 1px solid rgba(127, 29, 29, 0.18);
        box-shadow: 0 -10px 25px rgba(15, 23, 42, 0.12);
        padding: 8px 6px 9px;
    }

    .mobile-bottom-nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: #111827;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.7rem;
        line-height: 1.1;
        min-height: 50px;
        border-radius: 10px;
        transition: var(--transition);
    }

    .mobile-bottom-nav-link i {
        font-size: 1.2rem;
        color: #7f1d1d;
    }

    .mobile-bottom-nav-link:hover,
    .mobile-bottom-nav-link:focus-visible {
        background: rgba(255, 255, 255, 0.45);
        color: #7f1d1d;
    }

    .mobile-bottom-nav-link:active {
        transform: translateY(1px);
    }
}

@media (max-width: 991px) {
    .premium-booking-strip {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .fleet-features {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .booking-modal {
        width: calc(100% - 24px) !important;
        max-width: calc(100% - 24px) !important;
        max-height: calc(100vh - 24px) !important;
        overflow-y: auto !important;
    }

    .booking-modal .booking-modal-body {
        max-height: none !important;
    }

    .modal-car-badge {
        font-size: 0.72rem !important;
        padding: 6px 10px !important;
    }

    .about-content {
        margin-top: 24px !important;
    }

    .about-img-wrap img {
        height: auto !important;
        max-height: 320px !important;
    }
}

@media (max-width: 768px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    img,
    iframe,
    table,
    video,
    canvas {
        max-width: 100%;
    }

    iframe {
        display: block;
    }

    .premium-breadcrumb ol.breadcrumb {
        flex-wrap: wrap !important;
        row-gap: 0.5rem;
    }

    .premium-breadcrumb .breadcrumb-item {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .premium-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
        padding: 0 0.45rem !important;
    }

    .premium-title,
    .premium-hero-title,
    .slide-title,
    .section-title-premium,
    .section-title-alt,
    .cta-title {
        overflow-wrap: anywhere;
    }

    .page-hero,
    .premium-hero {
        padding: 80px 0 64px !important;
    }

    .section-pad,
    .about-section,
    .fleet-section,
    .faq-section {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    .premium-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    [class*="premium-col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .g-recaptcha {
        max-width: 100%;
        transform: scale(0.86) !important;
        transform-origin: left top !important;
    }

    .modal-overlay,
    .booking-overlay {
        padding: 12px;
        align-items: flex-start;
        overflow-y: auto;
    }

    .bm-card,
    .booking-modal,
    .modal-content {
        max-width: 100%;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }

    section[style*="padding: 180px 0 80px"] {
        padding: 120px 0 56px !important;
    }

    section[style*="padding: 80px 0"]>.container>div[style*="grid-template-columns: repeat(auto-fit, minmax(350px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    section[style*="padding: 100px 0"]>.container>div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem !important;
    }

    .contact-form-premium-wrapper {
        padding: 30px 20px !important;
    }

    .detail-card-premium {
        padding: 16px !important;
    }

    .btn-cfp-submit {
        height: 62px !important;
        font-size: 1.05rem !important;
        border-radius: 16px !important;
        gap: 10px !important;
    }

    .map-frame-v2 {
        height: 320px !important;
    }

    .map-overlay-card {
        margin: 16px !important;
        padding: 18px !important;
    }

    .policy-card {
        padding: 1.2rem !important;
        border-radius: 18px !important;
    }

    .contact-pill {
        flex-wrap: wrap;
        width: 100%;
        border-radius: 14px !important;
    }

    section[style*="padding: 120px 0"]>.container>div[style*="max-width: 900px"]>div[style*="display: grid; grid-template-columns: 1.5fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    div[style*="display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1.25rem !important;
    }

    div[style*="display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="display: grid; grid-template-columns: 1fr 1fr; gap: 2rem"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    button[style*="height: 70px"] {
        height: 56px !important;
        font-size: 1rem !important;
    }

    span[style*="font-size: 2.5rem"] {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {

    .premium-title,
    .premium-hero-title {
        font-size: clamp(2rem, 10vw, 2.6rem) !important;
    }

    .premium-subtitle {
        font-size: 1rem !important;
    }

    section[style*="padding: 100px 0"]>.container>div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* Fix intl-tel-input validation error override issue */
.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    z-index: 5 !important;
}

.bks-error-msg {
    display: block;
    width: 100%;
    margin-top: 5px;
}

/* ─────────────────────────────────────────────────────────────
   PREMIUM ONE-WAY LANDING PAGE DESIGN SYSTEM
   Tone: Luxury/Refined, Midnight Crimson & Champagne Gold
   ───────────────────────────────────────────────────────────── */
:root {
    --ow-primary: #991b1b;
    --ow-primary-dark: #7f1d1d;
    --ow-gold: #e2c69c;
    --ow-surface: #ffffff;
    --ow-bg: #f8fafc;
    --ow-text-main: #0f172a;
    --ow-text-body: #334155;
    --ow-text-muted: #64748b;
    --ow-border: #e2e8f0;
    --ow-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --ow-shadow-md: 0 12px 32px rgba(15, 23, 42, 0.06);
    --ow-shadow-lg: 0 24px 64px rgba(153, 27, 27, 0.08);
    --ow-radius: 24px;
    --ow-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 1. Hero Section ── */
.ow-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 20px 140px;
    overflow: hidden;
    color: white;
}

.ow-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(226, 198, 156, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(153, 27, 27, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.ow-hero-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 198, 156, 0.1);
    border: 1px solid rgba(226, 198, 156, 0.25);
    color: var(--ow-gold);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.ow-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: white;
}

.ow-hero-content h1 span {
    color: var(--ow-gold);
    background: linear-gradient(135deg, #fef3c7 0%, #e2c69c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ow-hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.6;
}

.ow-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 0;
}

.ow-hero-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.ow-hero-feat i {
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Hero Image Showcase */
.ow-hero-image-wrapper {
    position: relative;
    border-radius: var(--ow-radius);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--ow-transition);
}

.ow-hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-8px);
    border-color: rgba(226, 198, 156, 0.4);
}

.ow-hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.ow-hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.ow-img-caption {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ow-gold);
}

@media (max-width: 1024px) {
    .ow-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ow-hero-content p {
        margin: 0 auto 32px;
    }

    .ow-hero-features {
        justify-content: center;
        margin-bottom: 40px;
    }

    .ow-hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
        transform: none;
    }
}

@media (max-width: 640px) {
    .ow-hero {
        padding: 80px 15px 100px;
    }

    .ow-hero-content h1 {
        font-size: 2.3rem;
    }

    .ow-hero-img {
        height: 260px;
    }
}

/* ── 2. Master Booking Section ── */
.ow-booking-container {
    max-width: 1000px;
    margin: -80px auto 80px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

.ow-booking-card {
    background: var(--ow-surface);
    border-radius: var(--ow-radius);
    padding: 40px;
    box-shadow: var(--ow-shadow-lg);
    border: 1px solid var(--ow-border);
}

.ow-section-head {
    text-align: center;
    margin-bottom: 32px;
}

.ow-section-head h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ow-text-main);
    margin-bottom: 8px;
}

.ow-section-head p {
    color: var(--ow-text-muted);
    font-size: 1rem;
}

.ow-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ow-form-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ow-form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ow-form-group.full-width {
    grid-column: span 3;
}

.ow-form-group.span-2 {
    grid-column: span 2;
}

.ow-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ow-text-main);
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ow-label i {
    color: var(--ow-primary);
}

.ow-input,
.ow-select {
    width: 100%;
    height: 52px;
    background: var(--ow-bg);
    border: 1.5px solid var(--ow-border);
    border-radius: 14px;
    padding: 0 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ow-text-main);
    transition: var(--ow-transition);
    outline: none;
    font-family: inherit;
}

.ow-input:focus,
.ow-select:focus {
    border-color: var(--ow-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(153, 27, 27, 0.08);
}

.ow-btn-submit {
    height: 54px;
    background: var(--ow-primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ow-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(153, 27, 27, 0.25);
}

.ow-btn-submit:hover {
    background: var(--ow-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(153, 27, 27, 0.35);
}

@media (max-width: 768px) {
    .ow-booking-card {
        padding: 25px;
    }

    .ow-form-grid,
    .ow-form-grid-4 {
        grid-template-columns: 1fr;
    }

    .ow-form-group.full-width,
    .ow-form-group.span-2 {
        grid-column: span 1;
    }
}

/* ── 3. Fleet Pricing Showcase ── */
.ow-section {
    max-width: 1240px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.ow-fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.ow-fleet-card {
    background: white;
    border-radius: var(--ow-radius);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--ow-border);
    box-shadow: var(--ow-shadow-sm);
    transition: var(--ow-transition);
    position: relative;
    overflow: hidden;
}

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

.ow-fleet-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--ow-bg);
    color: var(--ow-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
}

.ow-fleet-img {
    height: 120px;
    object-fit: contain;
    margin: 20px auto;
    transition: transform 0.4s;
}

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

.ow-fleet-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ow-text-main);
    margin-bottom: 4px;
}

.ow-fleet-rate {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--ow-primary);
    margin: 12px 0 20px;
}

.ow-fleet-rate span {
    font-size: 0.85rem;
    color: var(--ow-text-muted);
    font-weight: 600;
}

.ow-btn-card {
    display: block;
    width: 100%;
    padding: 10px 0;
    background: var(--ow-bg);
    color: var(--ow-text-main);
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--ow-transition);
    border: 1px solid var(--ow-border);
    cursor: pointer;
}

.ow-fleet-card:hover .ow-btn-card {
    background: var(--ow-primary);
    color: white;
    border-color: var(--ow-primary);
}

@media (max-width: 1024px) {
    .ow-fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ── 4. Popular Routes Grid ── */
.ow-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.ow-route-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--ow-border);
    box-shadow: var(--ow-shadow-sm);
    transition: var(--ow-transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ow-route-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ow-shadow-md);
    border-color: rgba(153, 27, 27, 0.2);
}

.ow-route-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ow-route-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(153, 27, 27, 0.08);
    color: var(--ow-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ow-route-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ow-text-main);
    line-height: 1.3;
}

.ow-route-meta {
    display: flex;
    justify-content: space-between;
    background: var(--ow-bg);
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--ow-text-muted);
    font-weight: 600;
}

.ow-route-meta strong {
    color: var(--ow-text-main);
}

.ow-btn-route {
    background: transparent;
    color: var(--ow-primary);
    border: 1.5px solid var(--ow-primary);
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    transition: var(--ow-transition);
    width: 100%;
}

.ow-route-card:hover .ow-btn-route {
    background: var(--ow-primary);
    color: white;
}

@media (max-width: 991px) {
    .ow-routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ow-routes-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 5. Key Advantages Grid ── */
.ow-adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.ow-adv-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--ow-border);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--ow-transition);
}

.ow-adv-card:hover {
    background: var(--ow-bg);
    border-color: rgba(226, 198, 156, 0.5);
}

.ow-adv-icon {
    width: 48px;
    height: 48px;
    background: var(--ow-primary);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(153, 27, 27, 0.2);
}

.ow-adv-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ow-text-main);
    margin-bottom: 6px;
}

.ow-adv-content p {
    font-size: 0.9rem;
    color: var(--ow-text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .ow-adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ow-adv-grid {
        grid-template-columns: 1fr;
    }

    .ow-adv-card {
        padding: 20px;
    }
}

/* ── 6. Simple Booking Steps ── */
.ow-steps-wrapper {
    background: linear-gradient(to bottom, white, var(--ow-bg));
    border-radius: var(--ow-radius);
    padding: 60px 40px;
    border: 1px solid var(--ow-border);
    margin-top: 40px;
}

.ow-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.ow-step-item {
    text-align: center;
    position: relative;
}

.ow-step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(226, 198, 156, 0.2);
    color: var(--ow-primary);
    font-size: 1.2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid var(--ow-gold);
}

.ow-step-item h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ow-text-main);
    margin-bottom: 6px;
}

.ow-step-item p {
    font-size: 0.85rem;
    color: var(--ow-text-muted);
    margin: 0;
}

@media (max-width: 991px) {
    .ow-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 640px) {
    .ow-steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ow-steps-wrapper {
        padding: 40px 20px;
    }
}

/* ── 7. FAQ Accordion ── */
.ow-faq-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
}

.ow-faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--ow-border);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--ow-transition);
}

.ow-faq-btn {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ow-text-main);
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.ow-faq-btn i {
    color: var(--ow-primary);
    transition: transform 0.3s;
}

.ow-faq-content {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    color: var(--ow-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ow-faq-item.active {
    border-color: rgba(153, 27, 27, 0.25);
    box-shadow: var(--ow-shadow-sm);
}

.ow-faq-item.active .ow-faq-btn i {
    transform: rotate(180deg);
}

.ow-faq-item.active .ow-faq-content {
    padding-bottom: 20px;
    max-height: 300px;
}

/* Utility Helpers to replace inline styles */
.ow-icon-emerald {
    color: #10b981;
}

.ow-alert {
    border-radius: 16px;
    margin-bottom: 24px;
}

.ow-form-group-submit {
    justify-content: flex-end;
}

/* ── Select2 Overrides for Premium Modules (.ow-select) ── */
.select2-container--default .select2-selection--single {
    height: 52px !important;
    background-color: var(--ow-bg, #f8fafc) !important;
    border: 1.5px solid var(--ow-border, #e2e8f0) !important;
    border-radius: 14px !important;
    padding: 0 16px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: var(--ow-text-main, #0f172a) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    align-items: center !important;
    outline: none !important;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default .select2-selection--single:focus {
    border-color: var(--ow-primary, #991b1b) !important;
    background-color: white !important;
    box-shadow: 0 0 0 4px rgba(153, 27, 27, 0.08) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
    padding-right: 20px !important;
    color: var(--ow-text-main, #0f172a) !important;
    line-height: normal !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px !important;
    right: 12px !important;
}

.select2-dropdown {
    border: 1.5px solid var(--ow-border, #e2e8f0) !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06) !important;
    overflow: hidden !important;
    z-index: 1050 !important;
}

.select2-search__field {
    border-radius: 8px !important;
    border: 1px solid var(--ow-border, #e2e8f0) !important;
    padding: 8px 12px !important;
    font-size: 0.9rem !important;
    outline: none !important;
}

.select2-search__field:focus {
    border-color: var(--ow-primary, #991b1b) !important;
}

.select2-results__option {
    padding: 10px 16px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: var(--ow-text-body, #334155) !important;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: var(--ow-primary, #991b1b) !important;
    color: white !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   MIGRATED CENTRALIZED STYLES FROM CORE PAGES (Home, Contact, About)
   Consistent with Midnight Crimson & Champagne Gold Brand Token Standards
───────────────────────────────────────────────────────────────────────────── */

/* ── SEO Section Extracted Styles ── */
.seo-premium-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.lead-para {
    font-size: 1.2rem;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.seo-rich-text p {
    color: #64748b;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.seo-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.highlight-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.highlight-item i {
    color: #991b1b;
    font-size: 1.25rem;
    margin-top: 3px;
}

.highlight-item strong {
    display: block;
    color: #0f172a;
    font-size: 0.95rem;
}

.highlight-item span {
    font-size: 0.8rem;
    color: #64748b;
}

.small-para {
    font-size: 0.95rem !important;
    font-style: italic;
}

.seo-visual-side {
    position: relative;
}

.seo-image-stack {
    position: relative;
    padding: 20px;
}

.image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.seo-image-stack:hover .image-main {
    transform: perspective(1000px) rotateY(0deg);
}

.image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.image-accent-box {
    position: absolute;
    bottom: -20px;
    left: -40px;
    padding: 1.5rem;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.accent-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accent-inner i {
    font-size: 2rem;
    color: #d4af37;
}

.accent-inner h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #991b1b;
}

.accent-inner p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
}

.floating-badge {
    position: absolute;
    top: 0;
    right: -20px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    z-index: 2;
}

.floating-badge img {
    height: 20px;
    width: auto;
}

.floating-badge span {
    font-size: 0.75rem;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Advantages Section Extracted Styles ── */
.advantages-section {
    position: relative;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(153, 27, 27, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.advantages-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.adv-premium-card {
    height: 100%;
}

.adv-card-inner {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.adv-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 0;
    user-select: none;
}

.adv-icon-box {
    width: 65px;
    height: 65px;
    background: #991b1b;
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(153, 27, 27, 0.2);
}

.adv-text-content {
    position: relative;
    z-index: 1;
}

.adv-text-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

.adv-text-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.adv-premium-card:hover .adv-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(153, 27, 27, 0.12);
    border-color: rgba(153, 27, 27, 0.1);
    background: #fff;
}

.adv-premium-card:hover .adv-number {
    color: rgba(153, 27, 27, 0.05);
    transform: scale(1.1);
}

.adv-premium-card:hover .adv-icon-box {
    background: #d4af37;
    transform: rotateY(180deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.adv-premium-card:hover h3 {
    color: #991b1b;
}

/* ── Generic Hero Banners & Layout Containers ── */
.page-hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #0f0505 0%, #2a0a0a 50%, #1a1a2e 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(226, 198, 156, 0.15);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(153, 27, 27, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.relative-z {
    position: relative;
    z-index: 5;
}

.premium-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    list-style: none;
    justify-content: center;
    margin-bottom: 2.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
}

.premium-breadcrumb a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: 0.3s;
}

.premium-breadcrumb a:hover {
    color: var(--gold, #e2c69c);
}

.premium-breadcrumb .active {
    color: var(--gold, #e2c69c);
}

.premium-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 400;
}

.premium-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.premium-title span {
    color: var(--gold, #e2c69c) !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.premium-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
    font-weight: 500;
}

.premium-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: 1px solid rgba(226, 198, 156, 0.4);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold, #e2c69c) !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 auto 2.5rem;
}

.premium-hero-badge i {
    color: var(--gold, #e2c69c) !important;
}

.premium-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.premium-col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 1.5rem;
}

.premium-col-5 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
    padding: 0 1.5rem;
}

.premium-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 1.5rem;
}

.premium-col-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
    padding: 0 1.5rem;
}

/* ── Info & Value Custom Cards ── */
.info-card-premium {
    background: white;
    padding: 4rem 2.5rem;
    border-radius: 35px;
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    display: block;
    text-decoration: none;
}

.info-card-premium:hover {
    transform: translateY(-15px);
    border-color: var(--gold, #e2c69c);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.icp-icon-wrap {
    width: 90px;
    height: 90px;
    background: #fff1f2;
    color: #991b1b;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 2.5rem;
    transition: 0.4s;
    border: 1px solid #fff1f2;
}

.info-card-premium:hover .icp-icon-wrap {
    background: #991b1b;
    color: white;
    transform: rotate(10deg);
}

.info-card-premium h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.info-card-premium .data-text {
    color: #991b1b;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: block;
}

.info-card-premium .sub-text {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ── Contact Master Page Layout & Dashboard ── */
.contact-master-section {
    position: relative;
    background: #ffffff;
    z-index: 10;
}

.cfp-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 900;
    color: #991b1b;
    margin-bottom: 1rem;
}

.cfp-title {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.cfp-title span {
    color: #991b1b;
}

.cfp-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Details Dashboard Left Column */
.contact-details-dashboard {
    padding-right: 2rem;
}

.details-list-premium {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-card-premium {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.detail-card-premium:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.dcp-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

/* Custom Accents for icons */
.detail-card-premium.accent-gold .dcp-icon {
    background: #fefce8;
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.detail-card-premium.accent-crimson .dcp-icon {
    background: #fff1f2;
    color: #991b1b;
    border: 1px solid rgba(153, 27, 27, 0.15);
}

.detail-card-premium.accent-whatsapp .dcp-icon {
    background: #ecfdf5;
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.detail-card-premium:hover .dcp-icon {
    transform: scale(1.1) rotate(5deg);
}

.detail-card-premium.accent-gold:hover .dcp-icon {
    background: #d4af37;
    color: #fff;
}

.detail-card-premium.accent-crimson:hover .dcp-icon {
    background: #991b1b;
    color: #fff;
}

.detail-card-premium.accent-whatsapp:hover .dcp-icon {
    background: #10b981;
    color: #fff;
}

.dcp-content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.dcp-content p {
    font-size: 1.05rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.dcp-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

/* Contact Form Right Column */
.contact-form-premium-wrapper {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 35px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    position: relative;
}

.cfp-header {
    margin-bottom: 2.5rem;
}

.cfp-success-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cfp-success-alert i {
    font-size: 1.25rem;
    color: #10b981;
}

.cfp-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.6rem;
}

.cfp-label span {
    color: #991b1b;
}

.cfp-label small {
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.8rem;
}

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

.cfp-input-wrap i {
    position: absolute;
    left: 1.25rem;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: color 0.3s;
    pointer-events: none;
    z-index: 2;
}

.cfp-input {
    width: 100%;
    height: 60px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 0 1.25rem 0 3.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.3s ease;
}

.cfp-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.cfp-input:focus {
    background: #ffffff;
    border-color: #991b1b;
    outline: none;
    box-shadow: 0 0 0 4px rgba(153, 27, 27, 0.08);
}

.cfp-input:focus~i,
.cfp-input-wrap:focus-within i {
    color: #991b1b;
}

textarea.cfp-input {
    height: 150px;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    resize: none;
}

.cfp-textarea~i {
    top: 1.4rem;
}

.btn-cfp-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 65px;
    background: #991b1b;
    color: #ffffff;
    border: none;
    border-radius: 18px;
    font-size: 1.15rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(153, 27, 27, 0.25);
}

.btn-cfp-submit:hover {
    background: #7f1d1d;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(153, 27, 27, 0.35);
}

.btn-cfp-submit:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ── Full Width Map Block ── */
.full-map-section {
    padding: 0;
    position: relative;
    margin-bottom: -1px;
}

.map-container-v4 {
    position: relative;
    width: 100%;
    filter: grayscale(0.2) contrast(1.1);
}

.map-overlay-card {
    position: absolute;
    top: 50px;
    left: 50px;
    background: white;
    padding: 40px;
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    border: 1px solid #f1f5f9;
    z-index: 10;
}

.moc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #991b1b;
}

.moc-header i {
    font-size: 1.5rem;
}

.moc-header span {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.map-overlay-card p {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.5;
}

.moc-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.85rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: map-pulse 2s infinite;
}

@keyframes map-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ── About Story Premium Block ── */
.about-story-premium {
    background: #ffffff;
    position: relative;
}

.about-story-premium::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(153, 27, 27, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.about-visual-container {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.about-image-main {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-visual-container:hover .about-image-main {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 50px 100px -25px rgba(0, 0, 0, 0.2);
}

.experience-card {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: #991b1b;
    padding: 25px 30px;
    border-radius: 24px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(153, 27, 27, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    animation: float-slow 4s ease-in-out infinite;
}

.ec-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 5px;
}

.ec-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    opacity: 0.9;
    display: block;
}

.story-lead {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    border-left: 4px solid #991b1b;
    padding-left: 20px;
}

.about-story-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.afg-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.afg-item:hover {
    background: #fff;
    border-color: #991b1b;
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.afg-icon {
    width: 40px;
    height: 40px;
    background: #991b1b;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.afg-item span {
    font-weight: 800;
    color: #0f172a;
    font-size: 0.95rem;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ── Philosophy Section ── */
.philosophy-premium {
    position: relative;
    padding: 120px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.philosophy-card {
    height: 100%;
    position: relative;
}

.philo-card-inner {
    background: #ffffff;
    padding: 60px 45px;
    border-radius: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 15px 45px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.philo-icon-box {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 35px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.mission-card .philo-icon-box {
    background: rgba(153, 27, 27, 0.05);
    color: #991b1b;
}

.vision-card .philo-icon-box {
    background: rgba(212, 175, 55, 0.05);
    color: #d4af37;
}

.philo-text h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
}

.philo-text p {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.philo-number {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    z-index: 0;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.philosophy-card:hover .philo-card-inner {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.mission-card:hover .philo-card-inner {
    border-color: rgba(153, 27, 27, 0.2);
}

.vision-card:hover .philo-card-inner {
    border-color: rgba(212, 175, 55, 0.2);
}

.philosophy-card:hover .philo-icon-box {
    transform: scale(1.1) rotate(10deg);
}

.mission-card:hover .philo-icon-box {
    background: #991b1b;
    color: #fff;
}

.vision-card:hover .philo-icon-box {
    background: #d4af37;
    color: #fff;
}

.philosophy-card:hover .philo-number {
    bottom: 0;
    opacity: 0.8;
}

.mission-card:hover .philo-number {
    color: rgba(153, 27, 27, 0.03);
}

.vision-card:hover .philo-number {
    color: rgba(212, 175, 55, 0.03);
}

/* ── Values Grid ── */
.values-premium {
    position: relative;
    z-index: 1;
}

.values-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-item-premium {
    height: 100%;
    perspective: 1000px;
}

.vip-inner {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 35px;
    height: 100%;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.vip-icon-outer {
    width: 100px;
    height: 100px;
    margin: 0 auto 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-icon-inner {
    width: 100%;
    height: 100%;
    background: #fff1f2;
    color: #991b1b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    border: 2px solid #fff;
    box-shadow: 0 10px 20px rgba(153, 27, 27, 0.05);
}

.vip-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(153, 27, 27, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
}

.vip-inner h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.vip-inner p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.vip-bottom-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #991b1b, #d4af37);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.value-item-premium:hover .vip-inner {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
    border-color: rgba(153, 27, 27, 0.1);
}

.value-item-premium:hover .vip-icon-inner {
    background: #991b1b;
    color: #ffffff;
    transform: rotateY(360deg);
}

.value-item-premium:hover .vip-glow {
    opacity: 1;
}

.value-item-premium:hover .vip-bottom-accent {
    transform: scaleX(1);
}

.value-item-premium:hover h3 {
    color: #991b1b;
}

/* ── Premium CTA Strip ── */
.premium-cta-section {
    padding: 140px 0;
    background: #0a0a0a;
    position: relative;
    border-top: 1px solid rgba(226, 198, 156, 0.1);
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(153, 27, 27, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(226, 198, 156, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.cta-eyebrow {
    display: block;
    color: #e2c69c;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.cta-title span {
    color: #e2c69c;
    background: linear-gradient(to right, #e2c69c, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

.btn-premium-cta {
    display: inline-flex;
    align-items: center;
    background: #991b1b;
    color: #fff;
    padding: 1.5rem 3.5rem;
    border-radius: 100px;
    text-decoration: none !important;
    font-weight: 900;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(153, 27, 27, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-premium-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(153, 27, 27, 0.6);
    background: #b91c1c;
    color: #fff;
}

.btn-icon {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-premium-cta:hover .btn-icon {
    transform: translateX(5px);
}

.cta-support-text {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-support-text i {
    color: #e2c69c;
}

/* ── Extra Detail Helpers & Cards ── */
.about-image-frame-v2 {
    position: relative;
    max-width: 520px;
    margin: 0;
}

.about-image-frame-v2::after {
    display: none;
}

.about-img-v2 {
    border-radius: 30px;
    width: 100%;
    height: auto;
    display: block;
    transition: 0.5s;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-image-frame-v2:hover .about-img-v2 {
    transform: scale(1.02);
}

.experience-badge-mini-v2 {
    position: absolute;
    bottom: 10px;
    right: -15px;
    background: #991b1b;
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(153, 27, 27, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
    z-index: 5;
}

.eb-num {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: #e2c69c;
}

.eb-txt {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    opacity: 0.9;
    letter-spacing: 0.1em;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 900;
    color: #991b1b;
    margin-bottom: 1.5rem;
}

.section-title-premium {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 2rem;
}

.section-title-premium span {
    color: #991b1b;
}

.lead-text-emphasis {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.premium-check-grid-refined {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pci-refined {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #334155;
    font-size: 1rem;
    transition: 0.3s;
}

.pci-refined i {
    width: 28px;
    height: 28px;
    background: #fff1f2;
    color: #991b1b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.premium-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 35px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.card-icon-wrap {
    width: 80px;
    height: 80px;
    background: #fff1f2;
    color: #991b1b;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.premium-card h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.premium-card p {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.value-card {
    background: #fff;
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: 0.4s;
}

.vc-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2.5rem;
    background: #fffafa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #991b1b;
}

.value-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
}

.value-card p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.btn-premium {
    background: #991b1b;
    color: #fff;
    padding: 1.4rem 3.5rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.15rem;
    transition: 0.3s;
    box-shadow: 0 15px 35px rgba(153, 27, 27, 0.3);
}

.btn-premium:hover {
    transform: translateY(-3px);
    background: #7f1d1d;
    color: #fff;
}

/* ── Responsive Mapping overrides ── */
@media (max-width: 1024px) {
    .seo-premium-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid-premium {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 991px) {
    .premium-title {
        font-size: 3rem;
    }

    .section-title-premium {
        font-size: 2.5rem;
    }

    .premium-col-4,
    .premium-col-5,
    .premium-col-6,
    .premium-col-7 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 2.5rem;
    }

    .premium-row {
        margin-left: 0;
        margin-right: 0;
    }

    .contact-form-glass {
        padding: 3rem 2rem;
    }

    .map-frame-v2 {
        height: 450px;
    }

    .contact-form-premium-wrapper {
        padding: 40px 25px;
    }

    .detail-card-premium {
        padding: 20px;
    }

    .about-visual-container {
        margin-bottom: 50px;
    }

    .about-image-main {
        transform: none !important;
    }

    .experience-card {
        right: 20px;
    }

    .philo-card-inner {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .advantages-premium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .adv-card-inner {
        padding: 30px;
    }

    .map-overlay-card {
        position: relative;
        top: 0;
        left: 0;
        margin: 30px;
        max-width: none;
        border-radius: 25px;
    }

    .values-grid-premium {
        grid-template-columns: 1fr;
    }

    .vip-inner {
        padding: 40px 30px;
    }

    .cta-title {
        font-size: 2.8rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .btn-premium-cta {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

/* ── Premium Stats Dashboard (Light Version) ── */
.counting-section-premium {
    position: relative;
    z-index: 25;
    padding-bottom: 80px;
}

.counting-grid-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    margin: -60px auto 0;
    padding: 10px 25px;
    position: relative;
    z-index: 25;
    border: 1px solid #f1f5f9;
    max-width: 1140px;
}

.count-item-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    flex: 1;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.count-icon-box {
    width: 65px;
    height: 65px;
    background: #fff1f2;
    color: #991b1b;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(153, 27, 27, 0.08);
}

.count-item-premium:hover .count-icon-box {
    background: #991b1b;
    color: #ffffff;
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 10px 20px rgba(153, 27, 27, 0.2);
}

.count-data {
    text-align: left;
}

.count-data h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 2px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.count-data p {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.08em;
    margin: 0;
}

.count-divider {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .counting-grid-premium {
        flex-wrap: wrap;
        padding: 20px;
        gap: 15px;
    }

    .count-item-premium {
        flex: 0 0 calc(50% - 15px);
        padding: 15px;
        justify-content: flex-start;
    }

    .count-divider {
        display: none;
    }
}

@media (max-width: 600px) {
    .count-item-premium {
        flex: 0 0 100%;
        justify-content: flex-start;
        padding: 15px 10px;
    }
}

/* ── Local Taxi Dedicated Page Styles ── */
.premium-page-header {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #0a0505 0%, #1e0a0a 50%, #111122 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(226, 198, 156, 0.15);
    overflow: hidden;
}

.premium-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(153, 27, 27, 0.25), transparent 70%);
    pointer-events: none;
}

.premium-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 5;
}

.premium-hero-title span {
    color: #e2c69c;
}

.premium-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* Tab controls */
.local-pkg-tabs {
    gap: 15px;
}

.local-pkg-tabs .nav-link {
    background: #f1f5f9;
    color: #475569;
    border-radius: 100px;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 1.05rem;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.local-pkg-tabs .nav-link:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: translateY(-2px);
}

.local-pkg-tabs .nav-link.active {
    background: #991b1b;
    color: #ffffff;
    border-color: #991b1b;
    box-shadow: 0 10px 20px rgba(153, 27, 27, 0.25);
}

/* Local Car Cards */
.local-car-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.local-car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(153, 27, 27, 0.15);
    border-color: rgba(153, 27, 27, 0.1);
}

.card-visual {
    position: relative;
    padding: 40px 20px 20px;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    text-align: center;
    overflow: hidden;
}

.card-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(226, 198, 156, 0.2), transparent 70%);
    border-radius: 50%;
}

.car-img {
    max-width: 90%;
    height: auto;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.12));
}

.local-car-card:hover .car-img {
    transform: scale(1.08) translateX(5px);
}

.car-title {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 500;
}

.car-title strong {
    font-size: 1.4rem;
    color: #0f172a;
    font-weight: 900;
    display: block;
    margin-top: 4px;
}

.price-wrap {
    background: #f8fafc;
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #f1f5f9;
}

.price-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
}

.price-amount {
    font-size: 1.35rem;
    color: #991b1b;
    font-weight: 900;
}

.btn-book-cab {
    background: #991b1b;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(153, 27, 27, 0.2);
}

.btn-book-cab:hover {
    background: #7f1d1d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(153, 27, 27, 0.3);
}

/* Terms Blocks */
.terms-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.custom-terms-tabs {
    border-bottom: 2px solid #f1f5f9;
    gap: 10px;
}

.custom-terms-tabs .nav-link {
    color: #64748b;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 12px 24px;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    background: transparent;
}

.custom-terms-tabs .nav-link:hover {
    color: #0f172a;
    border-color: #cbd5e1;
}

.custom-terms-tabs .nav-link.active {
    color: #991b1b;
    border-color: #991b1b;
    background: transparent;
}

.custom-terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-terms-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
}

.custom-terms-list li span {
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #991b1b;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #fee2e2;
}

/* Custom Interactive Booking Overlay Modal */
.local-booking-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.local-booking-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.local-booking-modal {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.local-booking-overlay.visible .local-booking-modal {
    transform: scale(1) translateY(0);
}

.local-modal-header {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    color: #ffffff;
    padding: 25px 30px;
    position: relative;
    text-align: center;
}

.local-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.local-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.local-modal-body {
    padding: 30px;
}

.selected-info {
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.selected-info p {
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #475569;
}

.selected-info p:last-child {
    margin-bottom: 0;
}

.selected-info span {
    color: #0f172a;
    font-weight: 800;
}

.local-booking-modal .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.local-booking-modal .form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 6px;
}

.local-booking-modal .form-group input {
    width: 100%;
    height: 52px;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 0 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.3s;
}

.local-booking-modal .form-group input:focus {
    background: #ffffff;
    border-color: #991b1b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(153, 27, 27, 0.1);
}

@media (max-width: 768px) {
    .premium-hero-title {
        font-size: 2.5rem;
    }

    .terms-container {
        padding: 25px;
    }

    .custom-terms-tabs .nav-link {
        padding: 10px 15px;
        font-size: 1rem;
    }
}

/* ── Airport Taxi Dedicated Page Styles ── */
:root {
    --apt-primary: #991b1b;
    --apt-gold: #e2c69c;
}

.apt-hero {
    position: relative;
    padding: 130px 0 90px;
    background: linear-gradient(135deg, #0f0505 0%, #2a0a0a 50%, #111122 100%);
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid rgba(226, 198, 156, 0.15);
    overflow: hidden;
}

.apt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(226, 198, 156, 0.15), transparent 60%);
    pointer-events: none;
}

.apt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(226, 198, 156, 0.3);
    color: var(--apt-gold);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.apt-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.apt-hero h1 span {
    color: var(--apt-gold);
}

.apt-breadcrumb {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.apt-breadcrumb a {
    color: var(--apt-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.apt-breadcrumb a:hover {
    color: #ffffff;
}

.apt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.apt-title-section {
    text-align: center;
    margin-bottom: 3.5rem;
}

.apt-badge {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    color: var(--apt-primary);
    margin-bottom: 10px;
}

.apt-title-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.apt-tabs {
    display: inline-flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    gap: 8px;
}

.apt-tab-btn {
    background: transparent;
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    color: #64748b;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.apt-tab-btn:hover {
    color: #0f172a;
}

.apt-tab-btn.active {
    background: var(--apt-primary);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(153, 27, 27, 0.25);
}

/* Fleet Cards Grid */
.apt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.apt-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.apt-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -15px rgba(153, 27, 27, 0.15);
    border-color: rgba(153, 27, 27, 0.15);
}

.apt-card-bg-shape {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(153, 27, 27, 0.05), transparent 70%);
    border-radius: 50%;
    transition: transform 0.5s;
}

.apt-card:hover .apt-card-bg-shape {
    transform: scale(1.5);
}

.apt-card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.apt-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 25px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apt-card-img {
    max-width: 90%;
    height: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.08));
    margin: 0 auto;
}

.apt-card:hover .apt-card-img {
    transform: scale(1.08) translateX(4px);
    filter: drop-shadow(0 18px 18px rgba(153, 27, 27, 0.15));
}

.apt-card-price-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #f1f5f9;
    position: relative;
    z-index: 2;
}

.apt-card-price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.apt-card-price-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--apt-primary);
    transition: all 0.3s ease;
}

.apt-btn-book {
    width: 100%;
    padding: 14px;
    background: var(--apt-primary);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-weight: 900;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(153, 27, 27, 0.2);
    position: relative;
    z-index: 2;
}

.apt-btn-book:hover {
    background: #7f1d1d;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(153, 27, 27, 0.35);
}

/* Info Section (Inclusions / Exclusions / T&C) */
.apt-info-section {
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    margin-bottom: 50px;
}

.apt-info-tabs {
    display: flex;
    border-bottom: 2px solid #f1f5f9;
    gap: 15px;
    margin-bottom: 30px;
}

.apt-info-tab {
    background: transparent;
    border: none;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #64748b;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.apt-info-tab:hover {
    color: #0f172a;
}

.apt-info-tab.active {
    color: var(--apt-primary);
    border-bottom-color: var(--apt-primary);
}

.apt-info-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.apt-info-content.active {
    display: block;
}

.apt-info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

.apt-info-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #334155;
    font-weight: 600;
    line-height: 1.5;
}

.apt-info-content.inclusions li i {
    color: #10b981;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.apt-info-content.exclusions li i {
    color: #ef4444;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.apt-info-content.tnc li i {
    color: #3b82f6;
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* Rich Desc Box */
.apt-desc-box {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    line-height: 1.8;
    color: #475569;
}

.apt-desc-box h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
}

/* Custom Interactive Booking Overlay Modal */
.apt-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

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

.apt-modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.apt-modal-overlay.active .apt-modal-card {
    transform: scale(1) translateY(0);
}

.apt-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.apt-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.apt-modal-header {
    background: linear-gradient(135deg, var(--apt-primary) 0%, #7f1d1d 100%);
    color: #ffffff;
    padding: 30px 30px 25px;
    text-align: center;
}

.apt-modal-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4px;
}

.apt-modal-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.apt-modal-car-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
}

.apt-modal-car-badge i {
    color: var(--apt-gold);
}

.apt-modal-card form {
    padding: 30px;
}

.apt-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.apt-form-label {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.apt-form-input {
    width: 100%;
    height: 54px;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.3s;
}

.apt-form-input:focus {
    background: #ffffff;
    border-color: var(--apt-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(153, 27, 27, 0.1);
}

.apt-modal-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 56px;
    background: var(--apt-primary);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(153, 27, 27, 0.25);
    margin-top: 10px;
}

.apt-modal-submit:hover {
    background: #7f1d1d;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(153, 27, 27, 0.35);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .apt-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apt-info-content ul {
        grid-template-columns: 1fr;
    }
}

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

    .apt-hero h1 {
        font-size: 2.5rem;
    }

    .apt-tabs {
        flex-direction: column;
        width: 100%;
    }

    .apt-tab-btn {
        width: 100%;
    }

    .apt-info-tabs {
        flex-direction: column;
        gap: 5px;
    }

    .apt-info-tab {
        width: 100%;
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: left;
        padding: 10px 15px;
    }

    .apt-info-tab.active {
        border-left-color: var(--apt-primary);
        background: #f8fafc;
    }

    .apt-info-section {
        padding: 25px;
    }

    .apt-desc-box {
        padding: 25px;
    }
}

/* ── Sightseeing Tours Dedicated Page Styles ── */
.ss-hero {
    position: relative;
    padding: 130px 0 90px;
    background: linear-gradient(135deg, #0f0505 0%, #2a0a0a 50%, #111122 100%);
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid rgba(226, 198, 156, 0.15);
    overflow: hidden;
}

.ss-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(226, 198, 156, 0.15), transparent 60%);
    pointer-events: none;
}

.ss-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    z-index: 5;
}

.ss-breadcrumb {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 5;
}

.ss-breadcrumb a {
    color: #e2c69c;
    text-decoration: none;
    transition: color 0.3s;
}

.ss-breadcrumb a:hover {
    color: #ffffff;
}

.ss-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.ss-title-section {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ss-badge {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    color: #991b1b;
    margin-bottom: 10px;
}

.ss-title-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.ss-tabs {
    display: inline-flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    gap: 8px;
}

.ss-tab-btn {
    background: transparent;
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    color: #64748b;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.ss-tab-btn:hover {
    color: #0f172a;
}

.ss-tab-btn.active {
    background: #991b1b;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(153, 27, 27, 0.25);
}

/* Sightseeing Cards Grid */
.ss-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.ss-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ss-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -15px rgba(153, 27, 27, 0.15);
    border-color: rgba(153, 27, 27, 0.15);
}

.ss-card-bg-shape {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(153, 27, 27, 0.05), transparent 70%);
    border-radius: 50%;
    transition: transform 0.5s;
}

.ss-card:hover .ss-card-bg-shape {
    transform: scale(1.5);
}

.ss-card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.ss-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 25px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-card-img {
    max-width: 90%;
    height: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.08));
    margin: 0 auto;
}

.ss-card:hover .ss-card-img {
    transform: scale(1.08) translateX(4px);
    filter: drop-shadow(0 18px 18px rgba(153, 27, 27, 0.15));
}

.ss-card-price-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #f1f5f9;
    position: relative;
    z-index: 2;
}

.ss-card-price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.ss-card-price-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: #991b1b;
    transition: all 0.3s ease;
}

.ss-btn-book {
    width: 100%;
    padding: 14px;
    background: #991b1b;
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-weight: 900;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(153, 27, 27, 0.2);
    position: relative;
    z-index: 2;
}

.ss-btn-book:hover {
    background: #7f1d1d;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(153, 27, 27, 0.35);
}

/* Info Section (Inclusions / Exclusions / T&C) */
.ss-info-section {
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.ss-info-tabs {
    display: flex;
    border-bottom: 2px solid #f1f5f9;
    gap: 15px;
    margin-bottom: 30px;
}

.ss-info-tab {
    background: transparent;
    border: none;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #64748b;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.ss-info-tab:hover {
    color: #0f172a;
}

.ss-info-tab.active {
    color: #991b1b;
    border-bottom-color: #991b1b;
}

.ss-info-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.ss-info-content.active {
    display: block;
}

.ss-info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

.ss-info-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #334155;
    font-weight: 600;
    line-height: 1.5;
}

.ss-info-content.inclusions li i {
    color: #10b981;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.ss-info-content.exclusions li i {
    color: #ef4444;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.ss-info-content.tnc li i {
    color: #3b82f6;
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* Custom Interactive Booking Overlay Modal */
.ss-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

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

.ss-modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ss-modal-overlay.active .ss-modal-card {
    transform: scale(1) translateY(0);
}

.ss-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.ss-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.ss-modal-header {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    color: #ffffff;
    padding: 30px 30px 25px;
    text-align: center;
}

.ss-modal-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4px;
}

.ss-modal-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
}

.ss-modal-car-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 18px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    color: #e2c69c;
}

.ss-modal-card form {
    padding: 30px;
}

.ss-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.ss-form-label {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.ss-form-label i {
    color: #991b1b;
    margin-right: 6px;
}

.ss-form-input {
    width: 100%;
    height: 54px;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.3s;
}

.ss-form-input:focus {
    background: #ffffff;
    border-color: #991b1b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(153, 27, 27, 0.1);
}

.ss-modal-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 56px;
    background: #991b1b;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(153, 27, 27, 0.25);
    margin-top: 10px;
}

.ss-modal-submit:hover {
    background: #7f1d1d;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(153, 27, 27, 0.35);
}

@media (max-width: 1024px) {
    .ss-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-info-content ul {
        grid-template-columns: 1fr;
    }
}

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

    .ss-hero h1 {
        font-size: 2.5rem;
    }

    .ss-tabs {
        flex-direction: column;
        width: 100%;
    }

    .ss-tab-btn {
        width: 100%;
    }

    .ss-info-tabs {
        flex-direction: column;
        gap: 5px;
    }

    .ss-info-tab {
        width: 100%;
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: left;
        padding: 10px 15px;
    }

    .ss-info-tab.active {
        border-left-color: #991b1b;
        background: #f8fafc;
    }

    .ss-info-section {
        padding: 25px;
    }
}

/* ── Thank You Page Dedicated Styles ── */
.thankyou-section {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #110505 0%, #2a0a0a 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.thankyou-orb-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(153, 27, 27, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 8s infinite alternate;
}

.thankyou-orb-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(226, 198, 156, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 12s infinite alternate-reverse;
}

.thankyou-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 198, 156, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.thankyou-icon-wrapper {
    width: 120px;
    height: 120px;
    background: rgba(226, 198, 156, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    position: relative;
    border: 1px solid rgba(226, 198, 156, 0.3);
}

.thankyou-spinner {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed rgba(226, 198, 156, 0.5);
    border-radius: 50%;
    animation: spin 15s linear infinite;
}

.thankyou-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.thankyou-title span {
    color: #e2c69c;
}

.thankyou-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    max-width: 550px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 400;
}

.thankyou-subtitle strong {
    color: #e2c69c;
    font-weight: 800;
}

.thankyou-subtitle span {
    color: #ffffff;
    font-weight: 800;
}

.thankyou-priority-box {
    background: linear-gradient(to right, rgba(153, 27, 27, 0.3), rgba(153, 27, 27, 0.1));
    border-left: 4px solid #e2c69c;
    border-radius: 16px;
    padding: 25px;
    width: 100%;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid rgba(226, 198, 156, 0.1);
}

.thankyou-priority-label {
    color: rgba(226, 198, 156, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 10px;
}

.thankyou-priority-phone {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #ffffff;
    transition: transform 0.3s;
}

.thankyou-priority-phone:hover {
    transform: scale(1.03);
}

.thankyou-priority-phone i {
    font-size: 1.8rem;
    color: #e2c69c;
}

.thankyou-priority-phone span {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
}

.btn-gold {
    background: #e2c69c;
    color: #1e0a0a !important;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(226, 198, 156, 0.25);
    border: none;
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 100px;
    min-width: 240px;
}

.btn-gold:hover {
    background: #ffffff;
    color: #991b1b !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.35);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    .thankyou-card {
        padding: 40px 20px;
    }

    .thankyou-title {
        font-size: 2.5rem;
    }

    .thankyou-priority-phone span {
        font-size: 1.6rem;
    }
}

/* ════════════════════════════════════════════════════════════
   BOOKING POPUP MODAL (MAIN PAGE QUICK RESERVATION)
   Tone: Luxury/Refined, Midnight Crimson & Champagne Gold
   ════════════════════════════════════════════════════════════ */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalOverlayFadeIn 0.3s ease-out forwards;
}

@keyframes modalOverlayFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.bm-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(226, 198, 156, 0.2);
    animation: bmCardScaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 40px);
}

@keyframes bmCardScaleUp {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.bm-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.bm-close:hover {
    background: #ffffff;
    color: #991b1b;
    transform: rotate(90deg);
}

.bm-header {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    padding: 32px 36px 28px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid #e2c69c;
}

.bm-eyebrow {
    display: inline-block;
    background: rgba(226, 198, 156, 0.2);
    color: #e2c69c;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 8px;
    border: 1px solid rgba(226, 198, 156, 0.3);
}

.bm-header h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.bm-header h2 span {
    color: #e2c69c;
}

.bm-route-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.bm-alert-err {
    background: #fef2f2;
    border-left: 4px solid #991b1b;
    color: #991b1b;
    padding: 12px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 36px 0;
    border-radius: 8px;
}

#modalBookingForm {
    padding: 24px 36px 32px;
    overflow-y: auto;
}

.bm-group {
    margin-bottom: 18px;
    text-align: left;
}

.bm-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.bm-label i {
    color: #991b1b;
    margin-right: 6px;
    width: 16px;
    text-align: center;
}

.bm-req {
    color: #991b1b;
    font-weight: 800;
}

input.bm-field,
select.bm-field,
textarea.bm-field {
    width: 100%;
    height: 50px;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.3s;
    outline: none;
    font-family: inherit;
}

input.bm-field::placeholder,
textarea.bm-field::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

input.bm-field:focus,
select.bm-field:focus,
textarea.bm-field:focus {
    background: #ffffff;
    border-color: #991b1b;
    box-shadow: 0 0 0 3px rgba(153, 27, 27, 0.1);
}

.bm-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23991b1b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Validation error label inside modal */
span.error {
    color: #991b1b;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

input.bm-field.error,
select.bm-field.error,
textarea.bm-field.error {
    border-color: #991b1b !important;
    background: #fef2f2 !important;
}

.bm-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    margin-top: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 50;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.autocomplete-item {
    padding: 10px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    color: #1e293b;
    display: flex;
    align-items: center;
}

.autocomplete-item:hover {
    background: #f8fafc;
    color: #991b1b;
}

.bm-recaptcha-wrap {
    margin: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bm-inline-err {
    color: #991b1b;
    font-size: 0.82rem;
    font-weight: 700;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bm-submit-btn {
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(153, 27, 27, 0.25);
}

.bm-submit-btn:hover {
    background: linear-gradient(135deg, #7f1d1d 0%, #661515 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(153, 27, 27, 0.35);
}

.bm-trust {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    margin: 16px 0 0;
}

.bm-trust i {
    color: #10b981;
    margin-right: 4px;
}

@media (max-width: 600px) {
    .bm-header {
        padding: 24px 24px 20px;
    }

    .bm-header h2 {
        font-size: 1.6rem;
    }

    #modalBookingForm {
        padding: 20px 24px 24px;
    }
}

/*
 * ══════════════════════════════════════════════════════════
 *  SOURCE TAXI SERVICE SPECIFIC STYLES (PREMIUM BENTO GLASS)
 * ══════════════════════════════════════════════════════════
 */

/* Premium Select2 & Flatpickr Overrides */
body span.select2-container .select2-selection--single,
body span.select2-container--default .select2-selection--single,
body span.select2-container--default.select2-container--open .select2-selection--single,
body span.select2-container--default.select2-container--focus .select2-selection--single {
    background-color: #1a0505 !important;
    background-image: none !important;
    background: #1a0505 !important;
    border: 1px solid rgba(226, 198, 156, 0.5) !important;
    border-radius: 14px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
}

body span.select2-container .select2-selection--single .select2-selection__rendered,
body span.select2-container--default .select2-selection--single .select2-selection__rendered,
body span.select2-container--default.select2-container--open .select2-selection--single .select2-selection__rendered,
body span.select2-container--default.select2-container--focus .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    padding-left: 18px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    line-height: normal !important;
}

body span.select2-container .select2-selection--single .select2-selection__placeholder,
body span.select2-container--default .select2-selection--single .select2-selection__placeholder,
body span.select2-container--default.select2-container--open .select2-selection--single .select2-selection__placeholder,
body span.select2-container--default.select2-container--focus .select2-selection--single .select2-selection__placeholder {
    color: #e2c69c !important;
    -webkit-text-fill-color: #e2c69c !important;
    font-weight: 500 !important;
}

body span.select2-container .select2-selection--single .select2-selection__arrow,
body span.select2-container--default .select2-selection--single .select2-selection__arrow,
body span.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow,
body span.select2-container--default.select2-container--focus .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
    right: 12px !important;
}

body span.select2-container .select2-selection--single .select2-selection__arrow b,
body span.select2-container--default .select2-selection--single .select2-selection__arrow b,
body span.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b,
body span.select2-container--default.select2-container--focus .select2-selection--single .select2-selection__arrow b {
    border-color: #e2c69c transparent transparent transparent !important;
}

.select2-dropdown {
    background-color: #1a0505 !important;
    border: 1px solid #e2c69c !important;
    border-radius: 14px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75) !important;
    overflow: hidden !important;
    z-index: 999999 !important;
}

/* Inner Dropdown Search Input Field Overrides */
.select2-search--dropdown {
    padding: 12px !important;
    background-color: #1a0505 !important;
}

.select2-search--dropdown .select2-search__field {
    background-color: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(226, 198, 156, 0.4) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    padding: 10px 14px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.95rem !important;
    outline: none !important;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #e2c69c !important;
    box-shadow: 0 0 12px rgba(226, 198, 156, 0.25) !important;
}

/* Option Items List */
.select2-container--default .select2-results__option {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 12px 18px !important;
    font-size: 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    transition: all 0.2s ease !important;
}

/* Clearly Display Currently Selected Place */
.select2-container--default .select2-results__option--selected {
    background-color: #e2c69c !important;
    color: #111111 !important;
    font-weight: 800 !important;
}

/* Hover/Focused Option State */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:not(.select2-results__option--selected) {
    background-color: #881b1b !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Highlighted state when actively hovering over the Selected Item */
.select2-container--default .select2-results__option--selected.select2-results__option--highlighted {
    background-color: #f6ebd8 !important;
    color: #881b1b !important;
}

/* High Z-Index Flatpickr Override */
.flatpickr-calendar {
    z-index: 2147483647 !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid #e2c69c !important;
    font-family: 'Outfit', sans-serif !important;
    background: #ffffff !important;
    max-width: calc(100vw - 20px) !important;
}

.flatpickr-time {
    max-height: 55px !important;
    line-height: 55px !important;
    overflow: visible !important;
    border-top: 1px solid rgba(226, 198, 156, 0.3) !important;
    background: #ffffff !important;
}

.flatpickr-time .numInputWrapper {
    background: transparent !important;
}

.flatpickr-time input,
.flatpickr-time .flatpickr-am-pm {
    color: #111111 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
    background: #f6ebd8 !important;
    color: #991b1b !important;
}

/* Completely replace native browser blue text selection highlight inside flatpickr */
.flatpickr-time input::selection {
    background-color: #e2c69c !important;
    color: #111111 !important;
}

.flatpickr-time input::-moz-selection {
    background-color: #e2c69c !important;
    color: #111111 !important;
}

/* Custom Premium Styling for Flatpickr Month Dropdown and Header */
.flatpickr-months .flatpickr-month {
    background: #991b1b !important;
    color: #ffffff !important;
    fill: #ffffff !important;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    height: 54px !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: #ffffff !important;
    fill: #ffffff !important;
    padding: 12px !important;
    z-index: 3 !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    color: #e2c69c !important;
    fill: #e2c69c !important;
}

.flatpickr-current-month {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    padding-top: 12px !important;
}

/* Beautiful custom month dropdown selection box */
.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: #991b1b !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    padding: 3px 8px !important;
    border: 1px solid rgba(226, 198, 156, 0.4) !important;
    outline: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover,
.flatpickr-current-month .flatpickr-monthDropdown-months:focus {
    background: #801313 !important;
    border-color: #e2c69c !important;
}

/* Style individual month option items inside the native dropdown */
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    background-color: #ffffff !important;
    color: #111111 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 500 !important;
    padding: 10px 12px !important;
    font-size: 1rem !important;
}

/* Override standard blue selection color for checked options */
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month:checked {
    background-color: #e2c69c !important;
    color: #991b1b !important;
    font-weight: 700 !important;
}

/* Style Year Input */
.flatpickr-current-month input.cur-year {
    background: transparent !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    padding: 0 4px !important;
    transition: all 0.2s ease !important;
}

.flatpickr-current-month input.cur-year:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.flatpickr-current-month input.cur-year:focus {
    background: #ffffff !important;
    color: #991b1b !important;
    outline: none !important;
}

/* Ambient Glow Backdrop Animation */
@keyframes ambientPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

@keyframes floatUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hero Section Wrapper */
.premium-route-hero {
    position: relative;
    background: linear-gradient(135deg, #0a0101 0%, #1a0505 100%);
    padding: 5rem 0 7rem;
    overflow: hidden;
}

/* Ambient Radial Lights */
.premium-route-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(136, 27, 27, 0.25) 0%, transparent 70%);
    animation: ambientPulse 12s infinite ease-in-out;
    z-index: 1;
}

.premium-route-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(226, 198, 156, 0.15) 0%, transparent 70%);
    animation: ambientPulse 10s infinite ease-in-out reverse;
    z-index: 1;
}

/* Premium Form Container Card */
.premium-glass-card {
    position: relative;
    z-index: 5;
    background: rgba(20, 5, 5, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(226, 198, 156, 0.25);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: floatUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.premium-glass-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(226, 198, 156, 0.15);
}

.premium-glass-card-header h3 {
    color: #ffffff;
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 6px;
}

.premium-glass-card-header h3 span {
    color: #e2c69c;
    background: linear-gradient(to right, #f6ebd8, #e2c69c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-glass-card-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* Dual Tab Navigation Switcher */
.premium-tabs-wrapper {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(226, 198, 156, 0.2);
    border-radius: 16px;
    padding: 6px;
    margin-bottom: 2rem;
    gap: 8px;
}

.premium-tab-btn {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.premium-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.premium-tab-btn.active {
    background: linear-gradient(135deg, #e2c69c 0%, #c5a059 100%);
    color: #111111;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

/* Form Controls */
.form-panel {
    display: none;
    animation: floatUp 0.4s ease-out forwards;
}

.form-panel.active {
    display: block;
}

.input-group-premium {
    position: relative;
    margin-bottom: 1.25rem;
}

.input-group-premium label {
    display: block;
    color: #f6ebd8;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group-premium label i {
    color: #e2c69c;
    margin-right: 4px;
}

.form-control-premium {
    width: 100%;
    background-color: #1a0505 !important;
    background-image: none !important;
    background: #1a0505 !important;
    border: 1px solid rgba(226, 198, 156, 0.5) !important;
    border-radius: 14px;
    padding: 14px 18px;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-control-premium:focus {
    outline: none !important;
    background-color: #1a0505 !important;
    background-image: none !important;
    background: #1a0505 !important;
    border-color: #e2c69c !important;
    box-shadow: 0 0 0 4px rgba(226, 198, 156, 0.25) !important;
}

.form-control-premium::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

select.form-control-premium option {
    background: #111111;
    color: #ffffff;
    padding: 10px;
}

.btn-premium-submit {
    width: 100%;
    background: linear-gradient(135deg, #a42020 0%, #881b1b 100%);
    color: #ffffff;
    border: 1px solid #e2c69c;
    border-radius: 14px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
    box-shadow: 0 8px 25px rgba(136, 27, 27, 0.35);
}

.btn-premium-submit:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #b82424 0%, #991b1b 100%);
    box-shadow: 0 12px 30px rgba(136, 27, 27, 0.5);
    border-color: #ffffff;
    color: #ffffff;
}

/* Fleet Section Overhaul - Premium Bento Layout */
.premium-fleet-section {
    padding: 6rem 0;
    background: #fcfaf6;
}

.fleet-bento-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(136, 27, 27, 0.08);
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fleet-bento-card:hover {
    transform: translateY(-8px);
    border-color: #c5a059;
    box-shadow: 0 20px 40px rgba(136, 27, 27, 0.08);
}

.fleet-img-canvas {
    background: linear-gradient(to bottom, #fcfaf6, #ffffff);
    border-radius: 18px;
    padding: 30px 15px;
    text-align: center;
    position: relative;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.fleet-img-canvas img {
    max-height: 130px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fleet-bento-card-meta {
    padding: 0 5px;
}

.fleet-cab-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
}

.fleet-pill-specs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.spec-pill {
    background: rgba(136, 27, 27, 0.05);
    color: #881b1b;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fleet-fare-block {
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    margin-bottom: 20px;
}

.fleet-fare-block .fare-amount {
    color: #881b1b;
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1.1;
}

.fleet-fare-block .fare-crossed {
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.btn-bento-select {
    width: 100%;
    background: #ffffff;
    color: #881b1b;
    border: 2px solid #881b1b;
    border-radius: 14px;
    padding: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-bento-card:hover .btn-bento-select {
    background: #881b1b;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(136, 27, 27, 0.2);
}

/* Description & Image Section */
.premium-about-section {
    padding: 5rem 0;
    background: #ffffff;
}

.about-image-masterpiece {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(226, 198, 156, 0.4);
}

.about-image-masterpiece::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 5, 5, 0.4), transparent);
    z-index: 1;
}

/* Premium FAQ System */
.premium-faq-section {
    padding: 6rem 0;
    background: #fcfaf6;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-faq-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 1rem;
}

.premium-faq-card:hover {
    border-color: rgba(136, 27, 27, 0.2);
    box-shadow: 0 8px 30px rgba(136, 27, 27, 0.06);
}

.premium-faq-card .faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.35rem 1.75rem;
    background: #ffffff !important;
    border: none;
    font-weight: 800;
    font-size: 1.1rem;
    color: #111111 !important;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-faq-card .faq-btn:hover {
    background: #fffcfc !important;
    color: #881b1b !important;
}

.premium-faq-card .faq-btn span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
}

.premium-faq-card .faq-btn span i {
    color: #881b1b !important;
    font-size: 0.75rem;
}

.premium-faq-card .faq-btn .faq-indicator {
    color: #881b1b !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-faq-card .faq-content-box {
    padding: 0 1.75rem 1.35rem;
    color: #555555;
    line-height: 1.7;
    border-top: 1px solid #f5f5f5;
    font-size: 0.98rem;
}

/* Custom Overlay Modal */
.custom-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 2, 2, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1rem;
}

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

.custom-popup-box {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(136, 27, 27, 0.1);
}

.custom-popup-overlay.active .custom-popup-box {
    transform: scale(1);
}

.custom-popup-header {
    background: linear-gradient(135deg, #1a0505 0%, #4a0a0a 100%);
    padding: 1.75rem;
    color: #ffffff;
    position: relative;
}

.custom-popup-header h4 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 4px;
}

.custom-popup-header p {
    color: #e2c69c;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 600;
}

.custom-popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.custom-popup-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.custom-popup-body {
    padding: 2rem;
}

.custom-popup-input-row {
    margin-bottom: 1.25rem;
}

.custom-popup-input-row label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.custom-popup-input-row input {
    width: 100%;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    color: #111;
    transition: border-color 0.3s;
}

.custom-popup-input-row input:focus {
    outline: none;
    border-color: #881b1b;
}

.btn-modal-submit {
    width: 100%;
    background: #881b1b;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.5rem;
}

.btn-modal-submit:hover {
    background: #9d2222;
}

/* Responsive Optimization */
@media (max-width: 991px) {
    .premium-route-hero {
        padding: 3rem 0 4rem;
    }

    .premium-glass-card {
        padding: 1.75rem;
    }

    .premium-glass-card-header h3 {
        font-size: 1.5rem;
    }
}

/*
 * ══════════════════════════════════════════════════════════
 *  UNIVERSAL PREMIUM FAQ HOVER MICRO-INTERACTIONS SITE-WIDE
 * ══════════════════════════════════════════════════════════
 */
.faq-item:not(.active):hover,
.ow-faq-item:not(.active):hover {
    border-color: rgba(136, 27, 27, 0.3) !important;
    box-shadow: 0 8px 25px rgba(136, 27, 27, 0.08) !important;
    transform: translateY(-2px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:not(.active) .faq-question:hover,
.ow-faq-item:not(.active) .ow-faq-btn:hover {
    background-color: #fffcfc !important;
    color: #881b1b !important;
}

.faq-item:not(.active) .faq-question:hover .faq-icon,
.ow-faq-item:not(.active) .ow-faq-btn:hover i {
    color: #881b1b !important;
    transform: scale(1.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:not(.active) .faq-question:hover .faq-toggle {
    background-color: rgba(136, 27, 27, 0.08) !important;
    color: #881b1b !important;
    transform: scale(1.05);
}

/*
 * ══════════════════════════════════════════════════════════
 *  PREMIUM INFINITE TRUST MARQUEE (HOME PAGE TICKER TAPE)
 * ══════════════════════════════════════════════════════════
 */
.premium-trust-marquee {
    position: relative;
    background: linear-gradient(90deg, #0a0202 0%, #1f0707 50%, #0a0202 100%);
    border-top: 1px solid rgba(226, 198, 156, 0.15);
    border-bottom: 1px solid rgba(226, 198, 156, 0.15);
    padding: 16px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    user-select: none;
    box-shadow: inset 0 2px 15px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.premium-trust-marquee::before,
.premium-trust-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.premium-trust-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #0a0202 0%, transparent 100%);
}

.premium-trust-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #0a0202 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 35s linear infinite;
}

.premium-trust-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    padding: 0 25px;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s ease;
}

.marquee-item i {
    color: #e2c69c;
    font-size: 1.15rem;
    filter: drop-shadow(0 0 5px rgba(226, 198, 156, 0.4));
}

.marquee-item:hover {
    color: #e2c69c;
}

.marquee-divider {
    color: #991b1b;
    font-size: 1.2rem;
    padding: 0 10px;
    animation: pulseStar 2s ease-in-out infinite;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulseStar {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
        color: #e2c69c;
    }
}

@media (max-width: 768px) {
    .premium-trust-marquee {
        padding: 12px 0;
    }

    .marquee-item {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .premium-trust-marquee::before,
    .premium-trust-marquee::after {
        width: 40px;
    }
}

/*
 * ══════════════════════════════════════════════════════════
 *  PREMIUM ROUTE PAGE COMPONENTS (Extracted from Blade)
 * ══════════════════════════════════════════════════════════
 */
.premium-hero-container {
    position: relative; 
    z-index: 3;
}

.premium-breadcrumb-nav {
    margin-bottom: 1.5rem;
}

.premium-breadcrumb-list {
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 1rem; 
    font-weight: 500;
}

.premium-breadcrumb-link {
    color: rgba(255,255,255,0.6); 
    text-decoration: none;
}

.premium-breadcrumb-link:hover {
    color: var(--brand-gold);
}

.premium-breadcrumb-separator {
    color: rgba(255,255,255,0.45);
}

.premium-breadcrumb-current {
    color: var(--brand-gold);
}

.premium-trust-pill {
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    background: rgba(226, 198, 156, 0.12); 
    border: 1px solid rgba(226, 198, 156, 0.25); 
    color: var(--brand-gold); 
    padding: 8px 18px; 
    border-radius: 30px; 
    font-weight: 700; 
    font-size: 0.85rem; 
    margin-bottom: 1.5rem;
}

.premium-hero-title-main {
    font-size: 3.25rem; 
    font-weight: 900; 
    color: #ffffff; 
    line-height: 1.15; 
    margin-bottom: 1.5rem;
}

.text-gold {
    color: var(--brand-gold) !important;
}

.premium-hero-desc {
    color: rgba(255,255,255,0.85); 
    font-size: 1.15rem; 
    line-height: 1.7; 
    margin-bottom: 2.5rem; 
    font-weight: 400;
}

.premium-hero-features-grid {
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1.5rem;
}

.premium-hero-feature-item {
    display: flex; 
    align-items: center; 
    gap: 14px;
}

.premium-hero-feature-icon-box {
    width: 48px; 
    height: 48px; 
    background: rgba(255,255,255,0.06); 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
}

.premium-hero-feature-icon {
    color: var(--brand-gold); 
    font-size: 1.25rem;
}

.premium-hero-feature-text {
    line-height: 1.2;
}

.premium-hero-feature-title {
    color: #fff; 
    font-weight: 700; 
    font-size: 1rem;
}

.premium-hero-feature-subtitle {
    color: rgba(255,255,255,0.55); 
    font-size: 0.8rem; 
    margin-top: 2px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.section-header-wrap {
    max-width: 700px; 
    margin: 0 auto 4rem;
}

.section-overline {
    color: var(--brand-crimson); 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    font-size: 0.85rem; 
    display: block; 
    margin-bottom: 8px;
}

.section-title-main {
    font-size: 2.75rem; 
    font-weight: 900; 
    color: #111111; 
    line-height: 1.15;
}

.section-desc {
    color: #666; 
    font-size: 1.05rem; 
    margin-top: 12px;
}

.about-masterpiece-img {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
    display: block;
}

.about-masterpiece-img-contain {
    width: 100%; 
    height: auto; 
    object-fit: contain; 
    display: block; 
    background: #111;
}

.about-masterpiece-img-fallback {
    width: 100%; 
    height: auto; 
    object-fit: contain; 
    display: block; 
    padding: 2rem; 
    background: linear-gradient(135deg, #1a0505, #000);
}

.about-content-wrap {
    padding-left: 1rem;
}

.about-description-text {
    color: #444; 
    line-height: 1.85; 
    font-size: 1.05rem;
}

.about-tag-pill {
    display: inline-block; 
    background: rgba(136, 27, 27, 0.08); 
    color: var(--brand-crimson); 
    padding: 6px 16px; 
    border-radius: 30px; 
    font-weight: 800; 
    font-size: 0.85rem; 
    margin-bottom: 12px;
}

.about-title {
    font-size: 2.35rem; 
    font-weight: 900; 
    color: #111; 
    margin-bottom: 1.25rem; 
    line-height: 1.2;
}

.about-features-list {
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem;
}

.about-feature-item {
    display: flex; 
    align-items: flex-start; 
    gap: 16px;
}

.about-feature-icon-box {
    width: 48px; 
    height: 48px; 
    background: rgba(136, 27, 27, 0.08); 
    color: var(--brand-crimson); 
    border-radius: 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.25rem; 
    flex-shrink: 0;
}

.about-feature-title {
    font-weight: 800; 
    font-size: 1.1rem; 
    color: #111;
}

.about-feature-desc {
    color: #666; 
    font-size: 0.95rem; 
    line-height: 1.5; 
    margin-top: 4px;
}

.premium-faq-section-wrap {
    padding: 6rem 0; 
    background: #fcfaf6; 
    border-top: 1px solid rgba(0,0,0,0.03);
}

.faq-header-wrap {
    margin-bottom: 3.5rem;
}

.faq-indicator-icon {
    transition: transform 0.3s ease;
}

/* 
 * Additional classes for source_to_destination_taxi
 */
.hero-text-center-wrap {
    position: relative; 
    z-index: 2;
}

.hero-desc-alt {
    color: rgba(255,255,255,0.85); 
    font-size: 1.15rem; 
    margin-top: 1rem; 
    line-height: 1.6;
}

.hero-desc-fallback {
    color: rgba(255,255,255,0.75); 
    font-size: 1.15rem; 
    margin-bottom: 0;
}

.about-img-wrap-gradient {
    background: linear-gradient(135deg, #1a0505 0%, #000 100%); 
    margin-bottom: 40px;
}

.round-trip-summary-box {
    background: linear-gradient(135deg, #fff8ef 0%, #ffffff 100%); 
    border: 1px solid rgba(153, 27, 27, 0.12); 
    border-radius: 24px; 
    padding: 2rem; 
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.summary-card {
    background: #fff; 
    border-radius: 18px; 
    padding: 1.25rem; 
    border: 1px solid rgba(226, 198, 156, 0.45); 
    height: 100%;
}

.summary-label {
    font-size: 0.85rem; 
    font-weight: 700; 
    color: #991b1b; 
    text-transform: uppercase; 
    letter-spacing: 0.08em;
}

.summary-value {
    font-size: 1.4rem; 
    font-weight: 800; 
    color: #0f172a; 
    margin-top: 0.4rem;
}

.fleet-card-premium {
    padding: 14px; 
    border-radius: 20px; 
    border: 1.5px solid #881b1b;
}

.fleet-img-canvas-premium {
    background: linear-gradient(to bottom, #fff5eb, #fffbfa); 
    border-radius: 14px; 
    padding: 25px 15px; 
    margin-bottom: 0;
}

.fleet-details-premium {
    padding: 20px 10px 10px;
}

.fleet-name-premium {
    font-weight: 800; 
    font-size: 1.25rem; 
    color: #1a1a1a;
}

.fleet-features-premium {
    display: flex;
    align-items: center; 
    gap: 18px; 
    margin-bottom: 20px;
}

.fleet-feature-pill {
    display:inline-flex; 
    align-items:center; 
    gap:6px; 
    text-align:left;
}

.fleet-feature-icon {
    font-size: 0.95rem; 
    color: #881b1b;
}

.fleet-feature-label-stack {
    display:flex; 
    flex-direction:column; 
    line-height:1;
}

.fleet-feature-count {
    color:#1a1a1a; 
    font-size: 0.8rem;
}

.fleet-feature-unit {
    font-size:0.7rem; 
    color:#777; 
    margin-top:2px;
}

.fleet-price-premium {
    color: #881b1b; 
    font-size: 1.85rem; 
    font-weight: 900; 
    margin-bottom: 20px;
}

.btn-select-premium {
    width: 100%;
    background: #881b1b; 
    border-radius: 12px; 
    padding: 14px; 
    font-weight: 800;
    color: white !important;
    border: none;
}

.btn-select-premium:hover {
    background: #9d2222;
}

/* Helper Utilities */
.me-2 { margin-right: 0.5rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.pb-0 { padding-bottom: 0 !important; }
.text-danger-crimson { color: #991b1b !important; }
.text-crimson { color: var(--brand-crimson) !important; }
.fare-unit { font-size: 1rem; color: inherit; }
.bm-recaptcha-wrapper {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    margin: 12px 0 16px;
}

/* Global Navbar & Layout Helpers */
.navbar-container {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}
.header-logo-img {
    height: 60px; 
    width: auto;
}
.mobile-support-box {
    margin-top: 2rem; 
    padding-top: 1.5rem; 
    border-top: 1px solid rgba(0,0,0,0.08);
}
.mobile-support-label {
    font-size: 0.72rem; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    font-weight: 700; 
    margin-bottom: 0.5rem;
}
.mobile-support-link {
    color: var(--accent); 
    font-size: 1.25rem; 
    font-weight: 800;
}

/* Footer Premium Helpers */
.footer-logo-link {
    background: #fff; 
    padding: 12px 20px; 
    border-radius: 16px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 25px; 
    box-shadow: var(--shadow-md);
}
.footer-logo-img {
    height: 60px; 
    width: auto; 
    object-fit: contain;
}

/* Services Page Premium Components */
.services-hero {
    padding: 180px 0 80px; 
    background: var(--primary-color);
}
.services-title {
    font-size: 3.5rem; 
    margin-bottom: 1.5rem;
}
.services-subtitle {
    color: var(--text-secondary); 
    max-width: 700px; 
    margin: 0 auto; 
    font-size: 1.2rem; 
    line-height: 1.8;
}
.services-grid-section {
    padding: 80px 0; 
    background: var(--secondary-color);
}
.services-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 3rem;
}
.service-card-premium {
    background: var(--primary-color); 
    border-radius: 30px; 
    overflow: hidden; 
    border: 1px solid var(--glass-border); 
    transition: var(--transition);
}
.service-card-img-wrap {
    height: 250px; 
    overflow: hidden;
}
.service-card-img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}
.service-card-body {
    padding: 2.5rem;
}
.service-card-icon-box {
    width: 60px; 
    height: 60px; 
    background: var(--accent-color); 
    border-radius: 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-top: -4.5rem; 
    position: relative; 
    z-index: 2; 
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}
.service-card-icon {
    color: white; 
    font-size: 1.5rem;
}
.service-card-title {
    font-size: 1.8rem; 
    margin: 1.5rem 0 1rem;
}
.service-card-text {
    color: var(--text-secondary); 
    margin-bottom: 2rem;
}
.service-card-list {
    list-style: none; 
    color: var(--text-secondary); 
    margin-bottom: 2.5rem;
}
.service-card-list-item {
    margin-bottom: 0.75rem;
}
.service-card-list-icon {
    color: var(--accent-color); 
    font-size: 0.8rem; 
    margin-right: 0.75rem;
}

/* Fleet Selection Compact */
.fleet-section-compact {
    padding: 100px 0; 
    background: var(--primary-color);
}
.fleet-header-compact {
    text-align: center; 
    margin-bottom: 5rem;
}
.fleet-title-compact {
    font-size: 2.8rem; 
    margin-bottom: 1rem;
}
.fleet-grid-compact {
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem;
}
.fleet-card-simple {
    background: var(--secondary-color); 
    padding: 2.5rem; 
    border-radius: 24px; 
    border: 1px solid var(--glass-border); 
    text-align: center; 
    box-shadow: var(--card-shadow);
}
.fleet-card-simple-img {
    width: 100%; 
    margin-bottom: 1.5rem;
}
.fleet-card-simple-title {
    font-size: 1.4rem; 
    margin-bottom: 0.5rem;
}
.fleet-card-simple-desc {
    color: var(--text-secondary); 
    font-size: 0.9rem;
}

/* Thank You Page Helpers */
.thankyou-container {
    position: relative; 
    z-index: 10;
}
.thankyou-icon {
    font-size: 3.5rem; 
    color: #e2c69c; 
    filter: drop-shadow(0 0 15px rgba(226, 198, 156, 0.5));
}
.thankyou-actions {
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    flex-wrap: wrap;
}
.thankyou-btn-icon {
    margin-right: 12px;
}

/* Home Page Specific Helpers */
.cursor-pointer { cursor: pointer; }
.tap-to-book {
    display: block; 
    font-size: 0.65rem; 
    color: #991b1b; 
    margin-top: 2px;
}
.seo-section-title {
    margin-bottom: 25px;
}
.seo-title-text {
    font-size: 2.5rem; 
    line-height: 1.2;
}
.text-gold {
    color: #d4af37 !important;
}
.text-white { color: white !important; }
.text-white-muted { color: rgba(255, 255, 255, 0.6) !important; }

/* Alert & Utility Helpers */
.alert-premium {
    border-radius: 16px; 
    margin-bottom: 30px;
}
.font-800 {
    font-weight: 800 !important;
}
.text-apt-primary {
    color: var(--apt-primary) !important;
}
.pos-relative { position: relative !important; }
.d-none { display: none !important; }
.premium-faq-container {
    max-width: 900px; 
    margin: 0 auto;
}
.breadcrumb-premium-nav {
    background: transparent !important; 
    padding: 0 !important; 
    justify-content: center !important;
}
.h2-premium {
    font-size: 2.5rem !important;
}
.error-text {
    color: #991b1b !important;
    font-size: 0.8rem !important;
    margin-top: 5px !important;
    display: block !important;
}

@media (max-width: 991px) {
    .fleet-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .fleet-grid-compact {
        grid-template-columns: 1fr;
    }
}