@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400;1,600;1,700&display=swap');

:root {
    --font-barlow: 'Barlow Condensed', sans-serif;
    --font-playfair: 'Playfair Display', Georgia, serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Theme Palette: Yellow & Black */
    --color-black-deep: #070709;
    --color-black-card: #111115;
    --color-black-card-hover: #17171d;
    --color-black-surface: #1e1e24;
    
    --color-yellow-primary: #F5B301;
    --color-yellow-hover: #FFC31E;
    --color-yellow-light: #FEF08A;
    --color-yellow-amber: #F59E0B;
    --color-yellow-gold: #D97706;
    --color-yellow-glow: rgba(245, 179, 1, 0.22);
    --color-yellow-subtle: rgba(245, 179, 1, 0.08);

    --color-white: #FFFFFF;
    --color-gray-100: #F3F4F6;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-600: #4B5563;
    --color-gray-800: #1F2937;

    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-yellow-glow: rgba(245, 179, 1, 0.35);
    
    --site-max-width: 1340px;
    --radius-pill: 9999px;
    --radius-xl: 20px;
    --radius-lg: 14px;
    --radius-md: 10px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-black-deep);
    color: var(--color-gray-100);
    font-family: var(--font-sans);
}

body {
    background-color: var(--color-black-deep);
    color: var(--color-gray-100);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Font Classes */
.font-sans { font-family: var(--font-sans); }
.font-playfair { font-family: var(--font-playfair); }
.font-barlow { font-family: var(--font-barlow); }

/* Heading Base & Typography Constraints */
h1, h2 {
    font-weight: 600;
}

h3, h4, h5, h6 {
    font-weight: 500 !important;
}

.hero-heading {
    font-size: 54px !important;
    line-height: 1.12;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
}

.section-heading {
    font-size: 42px !important;
    line-height: 1.2;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
}

/* Barlow Condensed Mini / Sub / Card Headings: Strict font-weight: 500 */
h3.font-barlow,
h4.font-barlow,
h5.font-barlow,
h6.font-barlow,
.font-barlow:not(h1):not(h2):not(.hero-heading):not(.section-heading):not(.banner-heading),
.loc-card-name,
.testi-headline,
.blog-card-title,
.package-title,
.pkg-card-title,
.fleet-card-name,
.fleet-title,
.feature-title,
.footer-col-heading,
.stage-title,
.stage-card-title,
.offbeat-title,
.card-title-barlow,
.mini-heading {
    font-weight: 500 !important;
}

.hero-heading span,
.section-heading span,
.heading-accent-playfair,
.font-playfair,
[style*="font-playfair"],
[style*="Playfair"] {
    font-family: var(--font-playfair) !important;
    font-style: italic !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: inherit !important;
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 32px !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }
    .section-heading {
        font-size: 26px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
}

/* Strict 1340px Container */
.site-container {
    max-width: var(--site-max-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

/* Header & Floating Scroll Pill */
.header-glass {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.header-glass .site-container {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: var(--radius-pill);
}

.header-glass.scrolled {
    top: 14px;
    padding: 0;
}

.header-glass.scrolled .site-container {
    max-width: 1280px;
    background: rgba(12, 12, 18, 0.65) !important;
    backdrop-filter: blur(28px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(190%) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: var(--radius-pill);
    padding: 6px 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 179, 1, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.25) !important;
}

.header-glass.scrolled .desktop-nav-container {
    gap: 16px !important;
}

.header-glass.scrolled .nav-clean-link {
    font-size: 13px !important;
}

.header-logo-img {
    height: 64px;
    max-height: 68px;
    width: auto;
    object-fit: contain;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-glass.scrolled .header-logo-img {
    height: 52px !important;
    max-height: 54px !important;
}

.header-glass.scrolled .header-phone-box .phone-number {
    font-size: 12px !important;
    font-weight: 600 !important;
    gap: 6px !important;
}

.header-glass.scrolled .header-phone-box .phone-number i {
    font-size: 11px !important;
}

.header-glass.scrolled .work-hours {
    display: none;
}

.nav-pill-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.nav-pill-item {
    color: #FFFFFF;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-pill-item:hover,
.nav-pill-item.active {
    background: rgba(255, 255, 255, 0.22);
    color: var(--color-yellow-primary);
}

.header-nav-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.05) 100%);
    margin: 0 20px;
}

/* Action Buttons */
.btn-pill-outline {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
    border-radius: var(--radius-pill);
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-pill-outline:hover {
    background: var(--color-yellow-primary);
    border-color: var(--color-yellow-primary);
    color: #070709;
    box-shadow: 0 0 20px var(--color-yellow-glow);
}

.btn-pill-solid {
    background: #FFFFFF;
    color: #070709;
    border-radius: var(--radius-pill);
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-pill-solid:hover {
    background: var(--color-yellow-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px var(--color-yellow-glow);
}

.btn-yellow {
    background: var(--color-yellow-primary);
    color: #070709;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-pill);
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

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

.btn-dark {
    background: #18181D;
    color: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 12px 26px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #23232A;
    border-color: var(--color-yellow-primary);
    color: var(--color-yellow-primary);
}

/* Hero Container & Video Background */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--color-black-deep);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 130px;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100vh - 40px);
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(7, 7, 9, 0.75) 0%,
        rgba(7, 7, 9, 0.35) 35%,
        rgba(7, 7, 9, 0.75) 70%,
        rgba(7, 7, 9, 0.98) 100%
    );
    z-index: 2;
}

/* Header Top Phone & Times */
.header-phone-box {
    text-align: right;
}

.header-phone-box .phone-number {
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    transition: color 0.2s ease;
}

.header-phone-box .phone-number:hover {
    color: var(--color-yellow-primary);
}

.header-phone-box .work-hours {
    font-size: 11px;
    color: #9CA3AF;
    letter-spacing: 0.02em;
}

/* Redesigned Hero Top Eyebrow Tag (Reference Match) */
.hero-top-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-pill);
    padding: 5px 16px 5px 10px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.hero-top-tag:hover {
    border-color: rgba(245, 179, 1, 0.5);
    background: rgba(245, 179, 1, 0.12);
}

.hero-top-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-yellow-primary);
    box-shadow: 0 0 10px var(--color-yellow-primary), 0 0 4px #FFFFFF;
    display: inline-block;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

/* Hero 4-Slide Headline Rotator */
.hero-slides-wrapper {
    position: relative;
    min-height: 230px;
    margin-bottom: 28px;
}

.hero-slide {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.hero-slide-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-slide-indicator {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-pill);
    padding: 4px 14px;
    font-size: 11.5px;
    font-weight: 700;
    font-family: var(--font-barlow);
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.hero-slide-indicator:hover {
    background: rgba(245, 179, 1, 0.2);
    color: #FFFFFF;
    border-color: rgba(245, 179, 1, 0.4);
}

.hero-slide-indicator.active {
    background: var(--color-yellow-primary);
    border-color: var(--color-yellow-primary);
    color: #070709;
    box-shadow: 0 2px 14px var(--color-yellow-glow);
}

/* Right Side Hero Badges: Cover Feature & 197k+ Satisfied Clients */
.hero-right-composite {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
    z-index: 10;
}

/* Badge 1: Cover Feature Pill Badge (Matching Image 1) */
.hero-cover-feature-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(14, 14, 20, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-pill, 9999px);
    padding: 7px 14px 7px 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-cover-feature-pill-badge:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(22, 22, 30, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55), 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-cover-arrow-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.hero-cover-arrow-ring {
    position: absolute;
    left: -4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.hero-cover-arrow-btn {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #070709;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    transition: transform 0.25s ease;
}

.hero-cover-feature-pill-badge:hover .hero-cover-arrow-btn {
    transform: rotate(45deg);
}

.hero-cover-pill-text {
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-pill, 9999px);
    padding: 5px 16px;
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.hero-cover-feature-pill-badge:hover .hero-cover-pill-text {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
}

/* Badge 2: 197k+ Satisfied Clients (Matching Image 2) */
.hero-satisfied-clients-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(14, 14, 20, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-pill, 9999px);
    padding: 8px 20px 8px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-satisfied-clients-badge:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
}

.hero-avatar-stack {
    display: flex;
    align-items: center;
}

.hero-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    margin-left: -10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-avatar-img:first-child {
    margin-left: 0;
}

.hero-social-info {
    display: flex;
    flex-direction: column;
}

.hero-social-count {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.hero-social-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    line-height: 1.2;
    margin-top: 1px;
}

@media (max-width: 992px) {
    .hero-right-composite {
        align-items: flex-start;
        margin-top: 12px;
    }
}

/* Social Proof Pill Badge */
.social-proof-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(17, 17, 21, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(245, 179, 1, 0.35);
    border-radius: var(--radius-pill);
    padding: 6px 16px 6px 8px;
    margin-left: 12px;
    vertical-align: middle;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-yellow-primary);
    margin-left: -10px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.social-proof-text {
    font-size: 13px;
    line-height: 1.2;
    color: #FFFFFF;
}

.social-proof-text strong {
    color: var(--color-yellow-primary);
    font-weight: 700;
    font-family: var(--font-barlow);
    font-size: 16px;
    letter-spacing: 0.05em;
}

/* Pill CTA Button with Icon Pill */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    color: #070709;
    border-radius: var(--radius-pill);
    padding: 8px 10px 8px 24px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-cta-btn:hover {
    background: var(--color-yellow-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--color-yellow-glow);
}

.hero-cta-icon {
    width: 38px;
    height: 38px;
    background: #070709;
    color: var(--color-yellow-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Bottom Right Hero Badges (Like in reference) */
.hero-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(17, 17, 21, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-pill);
    padding: 6px 18px 6px 8px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.hero-feature-pill:hover {
    border-color: var(--color-yellow-primary);
    background: rgba(245, 179, 1, 0.15);
}

.hero-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-yellow-primary);
}

/* Section Common Styling */
.section-padding {
    padding: 90px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-yellow-subtle);
    border: 1px solid var(--border-yellow-glow);
    color: var(--color-yellow-primary);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-family: var(--font-barlow);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

/* Cards & Surfaces */
.card-dark {
    background: var(--color-black-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.card-dark:hover {
    background: var(--color-black-card-hover);
    border-color: var(--border-yellow-glow);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 179, 1, 0.1);
}

.card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-yellow-primary), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.card-dark:hover::before {
    opacity: 1;
}

/* Booking Widget Card */
.booking-card {
    background: rgba(17, 17, 21, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 179, 1, 0.25);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 179, 1, 0.12);
    position: relative;
    margin-top: -60px;
    z-index: 20;
}

.trip-type-pill-nav {
    display: inline-flex;
    background: #09090C;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 6px;
    gap: 6px;
    flex-wrap: wrap;
}

.trip-type-btn {
    background: transparent;
    border: none;
    color: var(--color-gray-400);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trip-type-btn.active {
    background: var(--color-yellow-primary);
    color: #070709;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--color-yellow-glow);
}

.form-input-box {
    background: #0E0E12;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 12px 18px;
    transition: all 0.25s ease;
}

.form-input-box:focus-within {
    border-color: var(--color-yellow-primary);
    background: #14141A;
    box-shadow: 0 0 15px rgba(245, 179, 1, 0.2);
}

.form-input-box label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray-400);
    font-weight: 600;
    margin-bottom: 4px;
    font-family: var(--font-barlow);
}

.form-input-box input,
.form-input-box select {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
}

.form-input-box select option {
    background: #17171D;
    color: #FFFFFF;
}

/* Badges & Tags */
.badge-yellow {
    background: var(--color-yellow-primary);
    color: #070709;
    font-weight: 700;
    font-family: var(--font-barlow);
    font-size: 13px;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-outline-yellow {
    border: 1px solid var(--color-yellow-primary);
    color: var(--color-yellow-primary);
    font-weight: 600;
    font-family: var(--font-barlow);
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(245, 179, 1, 0.06);
}

/* Car Fleet Card */
.fleet-card {
    background: var(--color-black-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.fleet-card:hover {
    border-color: var(--color-yellow-primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 179, 1, 0.15);
}

.fleet-image-wrap {
    height: 220px;
    width: 100%;
    background: radial-gradient(circle at center, #24242e 0%, #101014 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.fleet-image-wrap img {
    max-width: 95%;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.fleet-badge-floating {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

/* Route Cards */
.route-card {
    background: #111116;
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.route-card:hover {
    background: #16161D;
    border-color: var(--color-yellow-primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.route-arrow-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-yellow-subtle);
    color: var(--color-yellow-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Accordion */
.faq-item {
    background: #111115;
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item.active {
    border-color: var(--color-yellow-primary);
    background: #15151B;
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-body {
    padding: 0 24px 20px 24px;
    color: var(--color-gray-300);
    font-size: 15px;
    display: none;
}

.faq-item.active .faq-body {
    display: block;
}

/* Testimonial Card */
.review-card {
    background: #111115;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--color-yellow-primary);
    transform: translateY(-4px);
}

.stars-rating {
    color: var(--color-yellow-primary);
    font-size: 15px;
    letter-spacing: 2px;
}

/* Footer */
.footer-wrapper {
    background: #060608;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    color: #FFFFFF;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: #121217;
    border: 1px solid var(--color-yellow-primary);
    border-radius: 24px;
    max-width: 540px;
    width: 100%;
    padding: 36px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px var(--color-yellow-glow);
    animation: modalSlideUp 0.3s ease;
}

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

/* Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

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

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

@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===================================================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS (Smartphones & Tablets)
   =================================================================== */
@media (max-width: 768px) {
    /* Section Padding Compression for Mobile Viewports */
    .section-padding {
        padding: 48px 0 !important;
    }
    
    /* Container Side Spacing */
    .site-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* ---------------------------------------------------------------
       1. HERO SECTION MOBILE (Heading 32px, Text 15px, Centered)
       --------------------------------------------------------------- */
    .hero-wrapper {
        min-height: auto !important;
        padding-top: 85px !important;
        padding-bottom: 45px !important;
        text-align: center !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-top-tag {
        margin: 0 auto 12px auto !important;
        display: inline-flex !important;
    }

    .hero-heading {
        font-size: 32px !important;
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }

    .hero-slide p, .hero-content p {
        font-size: 15px !important;
        line-height: 1.55 !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-heading span {
        font-size: inherit !important;
    }

    /* Hero Buttons Centered */
    .hero-slide ~ div, 
    .hero-content div[style*="display: flex"] {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    #hero-cta-quote-btn, .btn-pill-outline {
        justify-content: center !important;
        text-align: center !important;
    }

    .hero-right-composite, .hero-satisfied-clients-badge {
        margin: 12px auto 0 auto !important;
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
    }

    /* ---------------------------------------------------------------
       2. ALL SECTION MAIN HEADINGS (Exactly 26px & Centered)
       --------------------------------------------------------------- */
    .section-heading, 
    .banner-heading,
    .faq-main-heading, 
    .blog-main-heading, 
    .promo-main-heading, 
    .locations-heading,
    .hidden-header-wrap .section-heading,
    .packages-header-row .section-heading,
    .fleet-header-row .section-heading,
    .why-content-col .section-heading,
    .gallery-header-wrap .section-heading,
    .testi-header-center .section-heading,
    .how-to-book-section .section-heading {
        font-size: 26px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* ---------------------------------------------------------------
       3. ALL SECTION HEADERS, PILLS & BUTTONS IN CENTER
       --------------------------------------------------------------- */
    .packages-header-row,
    .fleet-header-row,
    .hidden-header-wrap,
    .gallery-header-wrap,
    .promo-header-row,
    .faq-header-center,
    .blog-header-center,
    .testi-header-center,
    .why-content-col,
    .banner-content-grid,
    .banner-text-col,
    .locations-carousel-section > div > div:first-child,
    .how-to-book-section > div > div:first-child {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Section Subheadings Centered */
    .packages-header-row p,
    .fleet-header-row p,
    .hidden-header-sub,
    .gallery-header-desc,
    .promo-sub-text,
    .banner-sub-text,
    .faq-header-desc,
    .blog-header-desc,
    .testi-header-desc,
    .how-to-book-section p,
    .why-content-col p,
    .about-grid-wrapper p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Eyebrow Pills Centered & Compact Single-Line */
    .hero-top-tag,
    .why-eyebrow-pill,
    .hidden-eyebrow-pill,
    .gallery-eyebrow-pill,
    .banner-eyebrow-pill,
    .testi-eyebrow-pill,
    .blog-eyebrow-pill,
    .faq-eyebrow-pill,
    .packages-header-row div[style*="inline-flex"],
    .fleet-header-row div[style*="inline-flex"],
    .locations-carousel-section div[style*="inline-flex"],
    .how-to-book-section div[style*="inline-flex"],
    .about-grid-wrapper div[style*="inline-flex"],
    .packages-header-row div[style*="margin-bottom"],
    .fleet-header-row div[style*="margin-bottom"] {
        margin: 0 auto 12px auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 10px !important;
        letter-spacing: 0.08em !important;
        padding: 4px 12px 4px 8px !important;
        white-space: nowrap !important;
        max-width: 92vw !important;
        border-radius: var(--radius-pill) !important;
        text-align: center !important;
    }

    .hero-top-tag-dot,
    .eyebrow-dot,
    .gallery-eyebrow-dot,
    .banner-dot-gold,
    .faq-eyebrow-dot,
    .blog-eyebrow-dot,
    .pill-dot-amber,
    .packages-header-row span[style*="border-radius: 50%"],
    .fleet-header-row span[style*="border-radius: 50%"],
    .locations-carousel-section span[style*="border-radius: 50%"],
    .how-to-book-section span[style*="border-radius: 50%"],
    .about-grid-wrapper span[style*="border-radius: 50%"] {
        width: 6px !important;
        height: 6px !important;
        min-width: 6px !important;
        min-height: 6px !important;
        flex-shrink: 0 !important;
    }

    /* Header Action Buttons Centered */
    .hidden-header-actions,
    .gallery-slider-arrows,
    .banner-action-col,
    .testi-aggregate-badge {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        margin: 14px auto 0 auto !important;
        width: 100% !important;
        display: flex !important;
    }

    /* Floating Side Arrows on Slider Cards */
    .pkg-nav-edge-btn,
    .fleet-nav-edge-btn,
    .loc-nav-edge-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 13px !important;
        z-index: 15 !important;
    }
    .pkg-nav-edge-btn.left,
    .fleet-nav-edge-btn.left,
    .loc-nav-edge-btn.left {
        left: 6px !important;
    }
    .pkg-nav-edge-btn.right,
    .fleet-nav-edge-btn.right,
    .loc-nav-edge-btn.right {
        right: 6px !important;
    }

    /* 1 Card at a Time on Mobile View */
    .package-luxe-card,
    .fleet-luxe-card,
    .location-item-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        scroll-snap-align: center !important;
        box-sizing: border-box !important;
    }

    .packages-slider-track,
    .fleet-slider-track,
    .locations-track {
        gap: 0 !important;
        padding-bottom: 0 !important;
        scroll-snap-type: x mandatory !important;
    }

    .btn-custom-offbeat,
    .banner-ticket-pass {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* ---------------------------------------------------------------
       4. PREVENT ANY HORIZONTAL OVERFLOW & LAYOUT ISSUES
       --------------------------------------------------------------- */
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }

    /* Distinction Grid in About Section Stack on Mobile */
    .distinction-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        text-align: center !important;
    }
    .pillar-divider {
        border-left: none !important;
        border-top: 1px solid #E2E8F0 !important;
        padding-left: 0 !important;
        padding-top: 14px !important;
    }
    .about-glass-guarantee-bar {
        justify-content: center !important;
        text-align: center !important;
        flex-direction: column !important;
    }

    /* Form & Input Usability (Prevent iOS Zoom on focus) */
    input, select, textarea {
        font-size: 16px !important;
    }

    /* Modal Mobile Adaptability */
    .modal-card {
        padding: 24px 18px !important;
        border-radius: 20px !important;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* WhatsApp Floating Button Mobile Position */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Glow effects */
.glow-yellow {
    text-shadow: 0 0 20px rgba(245, 179, 1, 0.5);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #09090C;
}
::-webkit-scrollbar-thumb {
    background: #27272A;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-yellow-primary);
}
