/* ==========================================================================
   CABS FROM MYSORE – PREMIUM HUMAN-DESIGNED STYLESHEET
   Handcrafted Luxury UI/UX Design System for Mysore Cab Agency
   Zero-Overflow Responsive Architecture (320px to 4K)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Royal Mysore Heritage Palette */
    --navy-950: #000c1a;
    --navy-900: #001830;
    --navy-850: #02203d;
    --navy-800: #072a4e;
    --navy-700: #0f3d6b;
    --navy-600: #1b538c;

    /* Imperial Warm Gold */
    --gold-600: #b5832a;
    --gold-500: #c8953d;
    --gold-400: #dfb25a;
    --gold-300: #edd28b;
    --gold-200: #f7e6b8;
    --gold-100: #fbf5e7;
    --gold-gradient: linear-gradient(135deg, #d4a24c 0%, #c08c35 50%, #ad7622 100%);
    --gold-gradient-hover: linear-gradient(135deg, #e4b562 0%, #d49c40 50%, #be842c 100%);

    /* Neutral & Surface Colors */
    --white: #ffffff;
    --ivory: #faf8f4;
    --ivory-dark: #f3efe6;
    --ink-primary: #0d1b2a;
    --ink-secondary: #334155;
    --ink-muted: #64748b;
    --border-light: #e8e2d5;
    --border-dark: rgba(255, 255, 255, 0.12);

    /* Functional Colors */
    --whatsapp: #1f9d55;
    --whatsapp-hover: #188647;
    --whatsapp-bg: #eafaf1;
    --star-gold: #f59e0b;
    --google-blue: #4285f4;

    /* Shadows & Glows */
    --shadow-sm: 0 4px 12px rgba(0, 24, 48, 0.05);
    --shadow-md: 0 10px 28px rgba(0, 24, 48, 0.08);
    --shadow-lg: 0 20px 45px rgba(0, 24, 48, 0.12);
    --shadow-xl: 0 28px 65px rgba(0, 24, 48, 0.16);
    --shadow-glow-gold: 0 8px 24px rgba(200, 149, 61, 0.28);
    --shadow-glow-whatsapp: 0 8px 24px rgba(31, 157, 85, 0.35);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Layout & Sizing */
    --container: 1240px;
    --header-height: 78px;
    --transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Zero-Overflow Foundation
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    color: var(--ink-primary);
    background: var(--ivory);
    font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15.5px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

/* Dedicated Mobile Drawer Backdrop */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 12, 26, 0.65);
    z-index: 995;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 250ms ease, visibility 250ms ease;
}

body.menu-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.drawer-header {
    display: none;
}

img,
picture {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

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

button,
input,
select,
textarea {
    font: inherit;
    font-size: 16px; /* Prevents iOS auto-zoom */
    max-width: 100%;
    box-sizing: border-box;
}

button,
select {
    cursor: pointer;
}

h1, h2, h3, h4, p {
    margin-top: 0;
    overflow-wrap: break-word;
}

h1, h2, h3, h4,
.button,
.section-kicker,
.eyebrow {
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.02em;
}

h1, h2, h3, h4 {
    color: var(--navy-900);
    line-height: 1.2;
}

h1 {
    font-size: clamp(1.85rem, 4.5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 16px;
    line-height: 1.18;
}

h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.22;
}

h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    max-width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
}

.section {
    position: relative;
    padding: 88px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Section Heading */
.section-heading {
    width: min(780px, 100%);
    max-width: 100%;
    margin: 0 auto 48px;
    text-align: center;
    box-sizing: border-box;
}

.section-heading > p:last-child {
    margin-bottom: 0;
    color: var(--ink-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--gold-600);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 12px auto 16px;
    color: var(--gold-500);
    font-size: 0.55rem;
}

.ornament-divider span {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.ornament-divider--light {
    color: var(--gold-400);
}

.ornament-divider--light span {
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.section-heading--light h2 {
    color: var(--white);
}

.section-heading--light > p:last-child {
    color: rgba(255, 255, 255, 0.75);
}

/* Accessibility Skip Link (Hidden from view; only appears on keyboard Tab navigation) */
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    z-index: 10000;
}

.skip-link:focus,
.skip-link:focus-visible {
    position: fixed;
    top: 14px;
    left: 14px;
    width: auto;
    height: auto;
    padding: 10px 18px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--navy-950);
    color: var(--gold-300);
    border: 2px solid var(--gold-500);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    outline: none;
    z-index: 10000;
}

:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   3. Buttons & Interactive Controls
   -------------------------------------------------------------------------- */
.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    transition: var(--transition);
    white-space: nowrap;
    touch-action: manipulation;
    max-width: 100%;
}

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

.button--small {
    min-height: 40px;
    padding: 9px 18px;
    font-size: 0.8rem;
    border-radius: 6px;
}

.button--full {
    width: 100%;
}

.button--gold {
    color: var(--navy-950);
    background: var(--gold-gradient);
    box-shadow: var(--shadow-glow-gold);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.button--gold:hover {
    background: var(--gold-gradient-hover);
    box-shadow: 0 12px 30px rgba(200, 149, 61, 0.4);
    color: var(--navy-950);
}

.button--navy {
    color: var(--white);
    background: var(--navy-900);
    border: 1px solid var(--navy-700);
}

.button--navy:hover {
    background: var(--navy-800);
    box-shadow: 0 8px 20px rgba(0, 24, 48, 0.25);
}

.button--outline-navy {
    border-color: rgba(0, 24, 48, 0.25);
    color: var(--navy-900);
    background: var(--white);
}

.button--outline-navy:hover {
    background: var(--ivory);
    border-color: var(--navy-900);
}

.button--outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.button--outline-light:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--white);
}

.button--whatsapp {
    color: var(--white);
    background: var(--whatsapp);
    box-shadow: var(--shadow-glow-whatsapp);
}

.button--whatsapp:hover {
    background: var(--whatsapp-hover);
}

.button--whatsapp-hero {
    color: var(--navy-900);
    background: var(--white);
    border: 1px solid rgba(0, 24, 48, 0.12);
    box-shadow: var(--shadow-sm);
}

.button--whatsapp-hero i {
    color: var(--whatsapp);
    font-size: 1.15rem;
}

.button--whatsapp-hero:hover {
    background: #f8faf9;
    border-color: var(--whatsapp);
    color: var(--whatsapp);
}

.button--whatsapp-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    color: var(--whatsapp);
    background: var(--whatsapp-bg);
    border: 1px solid rgba(31, 157, 85, 0.2);
}

.button--whatsapp-sm:hover {
    background: var(--whatsapp);
    color: var(--white);
}

.icon-button {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    touch-action: manipulation;
    flex-shrink: 0;
}

.icon-button:hover {
    background: var(--gold-500);
    color: var(--navy-950);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. Utility Top Bar & Header Navigation
   -------------------------------------------------------------------------- */
.utility-bar {
    min-height: 38px;
    color: rgba(255, 255, 255, 0.88);
    background: var(--navy-950);
    font-size: 0.75rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.utility-bar__inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
}

.utility-items,
.utility-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.utility-item,
.utility-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.utility-item i {
    color: var(--gold-400);
    font-size: 0.88rem;
}

.utility-action {
    color: rgba(255, 255, 255, 0.88);
}

.utility-action i {
    color: var(--gold-400);
}

.utility-action:hover {
    color: var(--gold-300);
}

.utility-action--whatsapp i {
    color: #25d366;
}

/* Main Sticky Header */
.site-header {
    position: -webkit-sticky;
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 24, 48, 0.08);
    box-shadow: 0 4px 18px rgba(0, 24, 48, 0.06);
    transition: box-shadow 200ms ease, background 200ms ease;
    width: 100%;
}

.site-header.is-scrolled {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 24, 48, 0.1);
}

.header-inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    width: clamp(145px, 38vw, 195px);
    height: auto;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-nav li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 180ms ease;
}

.desktop-nav li a::after {
    position: absolute;
    right: 50%;
    bottom: 4px;
    left: 50%;
    height: 2px;
    background: var(--gold-500);
    border-radius: 2px;
    content: "";
    transition: inset 180ms ease;
}

.desktop-nav li a:hover,
.desktop-nav li a.is-active {
    color: var(--navy-900);
}

.desktop-nav li a:hover::after,
.desktop-nav li a.is-active::after {
    right: 0;
    left: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-drawer {
    display: none;
}

.menu-toggle {
    display: none;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--navy-900);
    background: var(--white);
    touch-action: manipulation;
}

.menu-toggle__label {
    font-size: 0.78rem;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   5. Hero Section (Clean Warm Ivory & Fleet Photography)
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    background: #faf8f4;
    min-height: 560px;
    overflow: hidden;
    padding-bottom: 75px;
    width: 100%;
}

.hero-visual,
.hero-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-visual {
    left: 36%;
}

.hero-visual picture,
.hero-visual img {
    width: 100%;
    height: 100%;
}

.hero-visual img {
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    background: linear-gradient(90deg, #faf8f4 0%, #faf8f4 38%, rgba(250, 248, 244, 0.94) 46%, rgba(250, 248, 244, 0.38) 58%, transparent 72%);
}

.hero-inner {
    position: relative;
    display: flex;
    min-height: 540px;
    align-items: center;
    padding-top: 36px;
    padding-bottom: 36px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 620px;
    width: 100%;
}

.eyebrow {
    display: inline-block;
    color: var(--gold-600);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: transparent;
    border: none;
    padding: 0;
}

.hero-copy h1 {
    color: var(--navy-950);
    font-size: clamp(2.1rem, 3.7vw, 3.2rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.hero-title-prefix {
    display: block;
    color: var(--navy-950);
    margin-bottom: 2px;
}

.typewriter-wrap {
    display: inline;
    position: relative;
    color: var(--navy-950);
}

.typewriter-text {
    display: inline;
    color: var(--navy-950);
}

.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 0.82em;
    background: var(--gold-500);
    margin-left: 4px;
    vertical-align: -0.04em;
    border-radius: 2px;
    animation: cursor-blink 0.8s infinite;
    box-shadow: 0 0 8px rgba(200, 149, 61, 0.6);
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-lead {
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.62;
    margin-bottom: 26px;
    max-width: 530px;
}

.hero-mobile-banner {
    display: none;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.hero-actions .button--gold {
    background: var(--gold-gradient);
    color: var(--navy-950);
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 8px;
    padding: 12px 26px;
    border: none;
    box-shadow: 0 4px 14px rgba(200, 149, 61, 0.25);
}

.hero-actions .button--whatsapp-hero {
    background: #ffffff;
    color: var(--navy-950);
    border: 1px solid rgba(0, 24, 48, 0.2);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.92rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.hero-actions .button--whatsapp-hero i {
    color: #25d366;
    font-size: 1.15rem;
}

/* --------------------------------------------------------------------------
   6. Hero Floating Fare Booking Engine
   -------------------------------------------------------------------------- */
.fare-enquiry-section {
    position: relative;
    z-index: 15;
    margin-top: -68px;
    margin-bottom: 36px;
    width: 100%;
    max-width: 100%;
}

.fare-card-wrapper {
    background: #ffffff;
    border: 1px solid rgba(0, 24, 48, 0.08);
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0, 24, 48, 0.08);
    padding: 16px 28px 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-error {
    margin: 16px 0 0;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Trip Tabs */
.trip-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 36px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
    margin-bottom: 18px;
    width: 100%;
    max-width: 100%;
}

.trip-tab {
    position: relative;
    border: 0;
    color: #64748b;
    background: transparent;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 0;
    transition: color 180ms ease;
    touch-action: manipulation;
}

.trip-tab::after {
    display: none;
}

.trip-tab.is-active {
    color: var(--navy-950);
}

.trip-tab.is-active::before {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    height: 3px;
    background: #c8953d;
    border-radius: 3px;
}

.trip-tab:hover {
    color: var(--navy-950);
}

/* Hero Fare Bar (1-Line Multi-Field Grid) */
.hero-fare-bar {
    display: grid;
    grid-template-columns: 1.25fr 1.25fr 1.25fr 1fr 1fr auto;
    gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.fare-field {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 8px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: var(--transition);
    min-width: 0;
    max-width: 100%;
}

.fare-field:focus-within {
    border-color: #c8953d;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 149, 61, 0.15);
}

.field-icon {
    color: #c8953d;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    flex-shrink: 0;
}

.field-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.field-content label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: capitalize;
    color: #64748b;
    line-height: 1;
    margin-bottom: 3px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.field-content input,
.field-content select {
    border: none;
    background: transparent;
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0;
    outline: none;
    width: 100%;
    line-height: 1.3;
    font-family: inherit;
}

.field-content input::placeholder {
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.85rem;
}

.field-content select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 18px;
}

.hero-fare-submit {
    min-height: 56px;
    padding: 0 32px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    background: #c8953d;
    background: linear-gradient(135deg, #d4a046 0%, #b88228 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(200, 149, 61, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease;
    flex-shrink: 0;
}

.hero-fare-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 149, 61, 0.38);
    color: #ffffff;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   7. Trust Stats Strip
   -------------------------------------------------------------------------- */
.trust-strip {
    padding: 10px 0 50px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 8px;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: var(--transition);
    min-width: 0;
    max-width: 100%;
}

.trust-icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #c8953d;
    background: transparent;
    font-size: 2.2rem;
    flex-shrink: 0;
}

.trust-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.trust-info strong {
    color: var(--navy-950);
    font-size: 1.25rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trust-info span {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --------------------------------------------------------------------------
   8. Taxi Services Section (6 Cards in 1 Row on Desktop)
   -------------------------------------------------------------------------- */
.services {
    background: var(--white);
    padding: 50px 0 70px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 14px 22px;
    background: #ffffff;
    border: 1px solid rgba(0, 24, 48, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 24, 48, 0.04);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    min-width: 0;
    max-width: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 149, 61, 0.4);
    box-shadow: 0 12px 30px rgba(0, 24, 48, 0.08);
}

.service-icon-box {
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(200, 149, 61, 0.12) 0%, rgba(200, 149, 61, 0.04) 100%);
    border: 1px solid rgba(200, 149, 61, 0.22);
    margin: 0 auto 16px;
    transition: transform 250ms ease, background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
    flex-shrink: 0;
}

.service-icon-box .material-symbols-rounded {
    font-family: 'Material Symbols Rounded', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 32px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: var(--gold-600);
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 40;
    transition: color 250ms ease, transform 250ms ease, font-variation-settings 250ms ease;
}

.service-card:hover .service-icon-box {
    background: linear-gradient(135deg, #072242 0%, #02172f 100%);
    border-color: var(--gold-500);
    box-shadow: 0 8px 22px rgba(0, 24, 48, 0.2);
    transform: translateY(-2px) scale(1.06);
}

.service-card:hover .service-icon-box .material-symbols-rounded {
    color: var(--gold-400);
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 40;
}

.service-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy-950);
    margin: 0 0 10px;
    line-height: 1.25;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-card p {
    color: #64748b;
    font-size: 0.76rem;
    line-height: 1.45;
    margin: 0 0 18px;
    flex: 1;
    text-align: center;
}

.service-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c8953d;
    font-size: 1.1rem;
    transition: transform 180ms ease;
    margin-top: auto;
}

.service-card:hover .service-arrow-btn {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   9. Tariff & Fleet Showcase (Luxury Dark Navy Section)
   -------------------------------------------------------------------------- */
.tariff {
    position: relative;
    background: #000f21;
    color: var(--white);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.tariff-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 42px;
    flex-wrap: wrap;
    max-width: 100%;
}

.tariff-tab {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.84rem;
    font-weight: 700;
    transition: var(--transition);
    touch-action: manipulation;
}

.tariff-tab:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.tariff-tab.is-active {
    background: var(--gold-gradient);
    color: var(--navy-950);
    border-color: transparent;
    box-shadow: var(--shadow-glow-gold);
}

.tariff-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 48px;
    width: 100%;
    max-width: 100%;
}

.tariff-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #072242 0%, #02172f 100%);
    border: 1px solid rgba(200, 149, 61, 0.22);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    min-width: 0;
    max-width: 100%;
}

.tariff-card.is-hidden {
    display: none;
}

.tariff-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 149, 61, 0.6);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55), 0 0 24px rgba(200, 149, 61, 0.15);
}

.tariff-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 0;
    width: 100%;
    gap: 8px;
    box-sizing: border-box;
}

.vehicle-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold-300);
    background: rgba(200, 149, 61, 0.12);
    padding: 3px 9px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(200, 149, 61, 0.25);
    white-space: nowrap;
    flex-shrink: 0;
}

.price-panel {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 12, 26, 0.75);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(200, 149, 61, 0.35);
    white-space: nowrap;
    flex-shrink: 0;
}

.price-label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold-400);
    font-weight: 800;
    line-height: 1;
}

.price-value {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    white-space: nowrap;
}

.vehicle-image-stage {
    position: relative;
    padding: 16px 20px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    width: 100%;
}

.vehicle-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.vehicle-image img {
    margin: 0 auto;
    max-height: 155px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.5));
    transition: transform 260ms ease;
}

.tariff-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.tariff-card__body {
    padding: 16px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    background: transparent;
}

.vehicle-name {
    color: var(--white);
    font-size: 1.22rem;
    font-weight: 800;
    margin: 0 0 12px;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.88);
}

.vehicle-specs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vehicle-specs i {
    color: var(--gold-400);
}

.recommended {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    line-height: 1.45;
}

.recommended strong {
    color: var(--white);
}

.charge-note {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.58);
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
    flex: 1;
    line-height: 1.4;
}

.charge-note i {
    color: var(--gold-400);
    margin-top: 2px;
    flex-shrink: 0;
}

.tariff-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    width: 100%;
}

.tariff-inclusions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    max-width: 100%;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.inclusion-item i {
    color: var(--gold-400);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.inclusion-item strong {
    display: block;
    font-size: 0.88rem;
}

.inclusion-item span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.76rem;
}

/* --------------------------------------------------------------------------
   10. Popular Tour Packages Section
   -------------------------------------------------------------------------- */
.packages {
    background: var(--ivory);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 100%;
}

.package-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-width: 0;
    max-width: 100%;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 149, 61, 0.4);
}

.package-image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    width: 100%;
}

.package-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

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

.package-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
    z-index: 2;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.badge--duration {
    background: rgba(0, 24, 48, 0.85);
    color: var(--white);
}

.badge--attractions {
    background: rgba(200, 149, 61, 0.95);
    color: var(--navy-950);
}

.package-card__body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.package-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.package-highlights {
    color: var(--ink-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 14px;
    flex: 1;
}

.package-vehicles {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-muted);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.package-vehicles i {
    color: var(--gold-600);
}

.package-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
    width: 100%;
}

.package-view-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy-900);
    font-size: 0.84rem;
    font-weight: 700;
}

.package-view-link:hover {
    color: var(--gold-600);
}

/* --------------------------------------------------------------------------
   11. Popular Destinations Section
   -------------------------------------------------------------------------- */
.destinations {
    background: var(--white);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.destination-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    min-width: 0;
    max-width: 100%;
}

.destination-card picture,
.destination-card img {
    width: 100%;
    height: 100%;
}

.destination-card img {
    object-fit: cover;
    transition: transform 350ms ease;
}

.destination-card:hover img {
    transform: scale(1.06);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 12, 26, 0.05) 0%, rgba(0, 12, 26, 0.85) 100%);
    transition: background 220ms ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(180deg, rgba(0, 12, 26, 0.15) 0%, rgba(0, 12, 26, 0.92) 100%);
}

.destination-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px;
    color: var(--white);
    z-index: 2;
}

.destination-content h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.destination-metrics {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--gold-200);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.destination-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 700;
}

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

/* --------------------------------------------------------------------------
   12. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-us {
    background: var(--navy-900);
    color: var(--white);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.reason-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    min-width: 0;
    max-width: 100%;
}

.reason-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 149, 61, 0.4);
}

.reason-icon-wrap {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--navy-950);
    background: var(--gold-gradient);
    font-size: 1.35rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.reason-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.reason-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------
   13. Guest Testimonials (Auto Slider Carousel)
   -------------------------------------------------------------------------- */
.testimonials {
    background: var(--ivory);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 88px 0;
}

.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.testimonials-track-container {
    width: 100%;
    overflow: hidden;
    padding: 8px 4px 16px;
}

.testimonials-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 4px;
    width: 100%;
    margin: 0;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3) !important;
    min-width: calc((100% - 48px) / 3) !important;
    max-width: calc((100% - 48px) / 3) !important;
    display: flex !important;
    flex-direction: column;
    padding: 28px 26px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 24, 48, 0.05);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
    scroll-snap-align: start;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 24, 48, 0.1);
    border-color: rgba(200, 149, 61, 0.4);
}

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.google-badge {
    display: flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--google-blue);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.star-rating {
    display: flex;
    gap: 3px;
    color: var(--star-gold);
    font-size: 0.92rem;
}

.testimonial-text {
    margin: 0 0 20px;
    color: var(--ink-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
}

.author-avatar {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--navy-900);
    background: var(--gold-200);
    font-size: 0.82rem;
    font-weight: 800;
    flex-shrink: 0;
}

.author-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.author-details strong {
    color: var(--navy-900);
    font-size: 0.88rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author-details span {
    color: var(--ink-muted);
    font-size: 0.74rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonials-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.testimonials-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonials-dots .dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: var(--radius-full);
    background: rgba(0, 24, 48, 0.18);
    transition: all 250ms ease;
    cursor: pointer;
}

.testimonials-dots .dot.is-active {
    width: 24px;
    background: var(--gold-500);
}

.review-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    touch-action: manipulation;
    cursor: pointer;
}

.review-btn:hover {
    background: var(--gold-500);
    color: var(--navy-950);
    border-color: var(--gold-500);
}

@media (max-width: 1100px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 20px) / 2) !important;
        min-width: calc((100% - 20px) / 2) !important;
        max-width: calc((100% - 20px) / 2) !important;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 56px 0;
    }
    .testimonial-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 22px 20px;
    }
}

/* --------------------------------------------------------------------------
   14. FAQ Section (Accordion & Help Hub)
   -------------------------------------------------------------------------- */
.faq {
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 88px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 36px;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #faf8f5;
    overflow: hidden;
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
    min-width: 0;
    max-width: 100%;
}

.faq-item:hover {
    border-color: rgba(200, 149, 61, 0.4);
    box-shadow: 0 8px 24px rgba(0, 24, 48, 0.06);
    transform: translateY(-2px);
}

.faq-item[open] {
    border-color: rgba(200, 149, 61, 0.55);
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(200, 149, 61, 0.1), 0 4px 16px rgba(0, 24, 48, 0.04);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    touch-action: manipulation;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-summary-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.faq-q-badge {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(200, 149, 61, 0.14) 0%, rgba(200, 149, 61, 0.05) 100%);
    border: 1px solid rgba(200, 149, 61, 0.25);
    color: var(--gold-600);
    flex-shrink: 0;
    transition: all 250ms ease;
}

.faq-q-badge .material-symbols-rounded {
    font-size: 22px;
    line-height: 1;
}

.faq-item[open] .faq-q-badge {
    background: linear-gradient(135deg, #072242 0%, #02172f 100%);
    border-color: var(--gold-500);
    color: var(--gold-400);
    box-shadow: 0 4px 14px rgba(0, 24, 48, 0.18);
}

.faq-question-text {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1.4;
    transition: color 200ms ease;
}

.faq-item:hover .faq-question-text {
    color: var(--gold-700);
}

.faq-toggle-pill {
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--navy-800);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all 250ms ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.faq-chevron {
    transition: transform 260ms ease;
}

.faq-item:hover .faq-toggle-pill {
    border-color: var(--gold-400);
    color: var(--gold-600);
}

.faq-item[open] .faq-toggle-pill {
    background: var(--gold-500);
    color: var(--navy-950);
    border-color: var(--gold-500);
    box-shadow: 0 4px 12px rgba(200, 149, 61, 0.35);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 22px 22px 76px;
}

.faq-answer-inner {
    border-left: 2px solid var(--gold-400);
    padding-left: 16px;
}

.faq-answer p {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.68;
}

/* FAQ Help Card at bottom */
.faq-help-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 32px;
    background: linear-gradient(135deg, #072242 0%, #02172f 100%);
    border: 1px solid rgba(200, 149, 61, 0.3);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 24, 48, 0.2);
    color: var(--white);
    margin-top: 36px;
}

.faq-help-card__left {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.faq-help-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(200, 149, 61, 0.15);
    border: 1px solid rgba(200, 149, 61, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    flex-shrink: 0;
}

.faq-help-card__icon .material-symbols-rounded {
    font-size: 28px;
}

.faq-help-card h3 {
    color: var(--white);
    font-size: 1.12rem;
    font-weight: 800;
    margin: 0 0 4px;
}

.faq-help-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    margin: 0;
    line-height: 1.45;
}

.faq-help-card__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.faq-help-card__actions .button {
    min-height: 46px;
    padding: 0 20px;
    font-size: 0.88rem;
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .faq-help-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 24px;
        gap: 18px;
    }

    .faq-help-card__actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .faq-help-card__actions .button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 56px 0;
    }

    .faq-item summary {
        padding: 16px 18px;
        gap: 12px;
    }

    .faq-q-badge {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }

    .faq-q-badge .material-symbols-rounded {
        font-size: 18px;
    }

    .faq-question-text {
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 18px 18px 18px;
    }

    .faq-answer-inner {
        padding-left: 12px;
    }
}

/* --------------------------------------------------------------------------
   15. Contact Hub Section
   -------------------------------------------------------------------------- */
.contact {
    background: var(--ivory);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.85fr) minmax(260px, 0.75fr);
    gap: 24px;
    padding: 36px;
    background: var(--navy-900);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    color: var(--white);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-form-panel h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.contact-form-panel p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    margin-bottom: 22px;
}

.contact-fare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.fare-form--contact .fare-field {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.fare-form--contact .fare-field:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold-400);
}

.fare-form--contact .field-content label {
    color: var(--gold-300);
}

.fare-form--contact .field-content input,
.fare-form--contact .field-content select {
    color: var(--white);
}

.fare-form--contact .field-content select option {
    background: var(--navy-900);
    color: var(--white);
}

.fare-field--submit {
    grid-column: 1 / -1;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    min-width: 0;
}

.contact-direct__icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--navy-950);
    background: var(--gold-gradient);
    font-size: 1.3rem;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.contact-direct h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.contact-direct p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition);
    touch-action: manipulation;
    max-width: 100%;
}

.contact-link--phone {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-link--phone:hover {
    background: var(--gold-500);
    color: var(--navy-950);
    border-color: var(--gold-500);
}

.contact-link--whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: var(--shadow-glow-whatsapp);
}

.contact-link--whatsapp:hover {
    background: var(--whatsapp-hover);
}

.contact-badge-247 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.35);
    animation: pulse 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.map-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-width: 0;
}

.map-art {
    position: relative;
    height: 140px;
    background: #021a36;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Crucial: stops rotated road elements from extending past the container */
    width: 100%;
}

.map-road {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
}

.map-road--one {
    width: 120%;
    height: 14px;
    transform: rotate(-15deg);
}

.map-road--two {
    width: 14px;
    height: 100%;
    left: 40%;
}

.map-road--three {
    width: 100%;
    height: 10px;
    bottom: 25px;
}

.map-pin-pulse {
    position: relative;
    z-index: 2;
    color: #ef4444;
    font-size: 2.2rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.map-card__content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.map-card__content h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.map-card__content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    margin-bottom: 16px;
    flex: 1;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-400);
    font-size: 0.82rem;
    font-weight: 700;
}

.map-link:hover {
    color: var(--white);
}

/* --------------------------------------------------------------------------
   16. Footer & Floating Elements
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 100%;
}

.site-footer .container {
    width: min(calc(100% - 64px), 1200px);
    max-width: 1200px;
    margin-inline: auto;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
    gap: 44px;
    margin-bottom: 48px;
    width: 100%;
    max-width: 100%;
}

.footer-about p {
    font-size: 0.86rem;
    line-height: 1.65;
    margin: 18px 0 22px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social-icons a:hover {
    background: var(--gold-500);
    color: var(--navy-950);
    transform: translateY(-2px);
}

.footer-links h2 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--gold-400);
    transform: translateX(3px);
}

.footer-highlight-contact {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    background: rgba(200, 149, 61, 0.15);
    color: var(--gold-300) !important;
    border: 1px solid rgba(200, 149, 61, 0.3);
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    width: 100%;
}

.footer-bottom p {
    margin: 0;
}

.developer-link {
    color: var(--gold-400);
    text-decoration: none;
    font-weight: 700;
    transition: color 200ms ease, text-shadow 200ms ease;
}

.developer-link:hover {
    color: var(--gold-300);
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(200, 149, 61, 0.4);
}

/* Floating 24x7 WhatsApp Widget (Desktop / Tablet) */
.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 99;
}

.floating-whatsapp__btn {
    position: relative;
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--whatsapp);
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 10px 28px rgba(31, 157, 85, 0.45);
    transition: var(--transition);
}

.floating-whatsapp__btn:hover {
    transform: scale(1.08);
    color: var(--white);
}

.floating-whatsapp__pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--whatsapp);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.9); opacity: 0.8; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(0.9); opacity: 0; }
}

.floating-whatsapp__tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy-900);
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.floating-whatsapp:hover .floating-whatsapp__tooltip {
    opacity: 1;
}

/* Sticky Mobile Bottom Conversion Bar */
.mobile-conversion-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    z-index: 999;
    background: rgba(0, 12, 26, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: 8px;
}

.mobile-conversion-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    touch-action: manipulation;
}

.mobile-conversion-bar__call {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-conversion-bar__wa {
    background: var(--whatsapp);
    color: var(--white);
}

.mobile-conversion-bar__fare {
    background: var(--gold-gradient);
    color: var(--navy-950);
}

/* --------------------------------------------------------------------------
   16. Inner Legal & Policy Pages (Privacy, Terms, Cancellation)
   -------------------------------------------------------------------------- */
.inner-hero {
    background: linear-gradient(180deg, #02172f 0%, #000c1a 100%);
    padding: 64px 0 52px;
    color: var(--white);
    border-bottom: 1px solid rgba(200, 149, 61, 0.25);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 149, 61, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.inner-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.inner-breadcrumbs a {
    color: var(--gold-400);
    text-decoration: none;
    transition: color 180ms ease;
}

.inner-breadcrumbs a:hover {
    color: var(--gold-300);
    text-decoration: underline;
}

.inner-hero h1 {
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.inner-hero__badge {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--gold-400);
    background: rgba(200, 149, 61, 0.12);
    border: 1px solid rgba(200, 149, 61, 0.25);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.policy-page {
    padding: 64px 0 96px;
    background: #f8fafc;
    min-height: 60vh;
}

.policy-container {
    width: min(calc(100% - 40px), 920px);
    margin: 0 auto;
}

.policy-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 52px;
    box-shadow: 0 4px 24px rgba(0, 24, 48, 0.05);
    border: 1px solid #e2e8f0;
}

.policy-card h2 {
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--navy-950);
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-card h2:first-of-type {
    margin-top: 0;
}

.policy-card h2 i {
    color: var(--gold-500);
    font-size: 1.1rem;
}

.policy-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-900);
    margin: 22px 0 8px;
}

.policy-card p,
.policy-card li {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 14px;
}

.policy-card ul,
.policy-card ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.policy-card li {
    margin-bottom: 8px;
}

.policy-highlight-box {
    background: linear-gradient(135deg, rgba(200, 149, 61, 0.08) 0%, rgba(200, 149, 61, 0.02) 100%);
    border-left: 4px solid var(--gold-500);
    border-radius: 0 12px 12px 0;
    padding: 18px 24px;
    margin: 24px 0;
}

.policy-highlight-box p {
    margin: 0;
    color: var(--navy-950);
    font-weight: 600;
}

.policy-support-box {
    margin-top: 48px;
    padding: 28px 36px;
    background: linear-gradient(135deg, #072242 0%, #02172f 100%);
    border-radius: 16px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(200, 149, 61, 0.3);
    box-shadow: 0 10px 30px rgba(0, 24, 48, 0.15);
}

.policy-support-box h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin: 0 0 4px;
}

.policy-support-box p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.88rem;
}

.policy-support-box__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .policy-card {
        padding: 28px 22px;
        border-radius: 14px;
    }

    .policy-support-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
    }

    .policy-support-box__actions {
        width: 100%;
        flex-direction: column;
    }

    .policy-support-box__actions .button {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   17. Ultra-Smooth Scroll Reveal & Rich Animation Suite
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered cascades for grid children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 40ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 110ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 250ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 390ms; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 460ms; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 530ms; }

/* Global Smooth Motion Enhancements */
html {
    scroll-behavior: smooth;
}

/* Ornament Diamond Shimmer */
.ornament-divider i {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    display: inline-block;
}

.section:hover .ornament-divider i {
    transform: scale(1.3) rotate(45deg);
    filter: drop-shadow(0 0 8px rgba(200, 149, 61, 0.7));
}

/* Enhanced Luxury Hover Transitions on All Interactive Cards */
.service-card {
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 320ms cubic-bezier(0.16, 1, 0.3, 1),
                background 320ms ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 24, 48, 0.12);
    border-color: rgba(200, 149, 61, 0.5);
}

.service-icon-box {
    transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1),
                background 350ms ease;
}

.service-card:hover .service-icon-box {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 24px rgba(200, 149, 61, 0.3);
}

.service-arrow-btn {
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
                background 260ms ease,
                color 260ms ease;
}

.service-card:hover .service-arrow-btn {
    transform: translateX(5px);
    background: var(--gold-500);
    color: var(--navy-950);
}

/* Vehicle Tariff Cards */
.tariff-card {
    transition: transform 340ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 340ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 340ms cubic-bezier(0.16, 1, 0.3, 1);
}

.tariff-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 149, 61, 0.55);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(200, 149, 61, 0.2);
}

.tariff-card .vehicle-image img {
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
                filter 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.tariff-card:hover .vehicle-image img {
    transform: scale(1.06) translateY(-4px);
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.7));
}

/* Tour Package Cards */
.package-card {
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 24, 48, 0.12);
    border-color: rgba(200, 149, 61, 0.45);
}

.package-image img {
    transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Destination Cards */
.destination-card {
    transition: transform 340ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 340ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 340ms cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 24, 48, 0.15);
    border-color: rgba(200, 149, 61, 0.5);
}

.destination-card img {
    transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.destination-link {
    transition: gap 240ms cubic-bezier(0.16, 1, 0.3, 1), color 240ms ease;
}

.destination-card:hover .destination-link {
    gap: 12px;
    color: var(--gold-400);
}

/* Why Choose Us Cards */
.reason-card {
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1),
                border-color 320ms cubic-bezier(0.16, 1, 0.3, 1),
                background 320ms ease;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(200, 149, 61, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.reason-icon-wrap {
    transition: transform 340ms cubic-bezier(0.16, 1, 0.3, 1),
                background 340ms ease,
                color 340ms ease,
                box-shadow 340ms ease;
}

.reason-card:hover .reason-icon-wrap {
    transform: scale(1.1) rotate(6deg);
    background: linear-gradient(135deg, #072242 0%, #02172f 100%);
    color: var(--gold-400);
    box-shadow: 0 8px 20px rgba(0, 24, 48, 0.2);
}

/* Trust Strip Items */
.trust-item {
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
                background 280ms ease,
                border-color 280ms ease,
                box-shadow 280ms ease;
}

.trust-item:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 149, 61, 0.4);
    box-shadow: 0 10px 25px rgba(0, 24, 48, 0.08);
}

.trust-item .trust-icon {
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-item:hover .trust-icon {
    transform: scale(1.12);
}

/* Floating Action WhatsApp Button Pulsing Glow */
.floating-whatsapp {
    animation: wa-glow-pulse 3s infinite ease-in-out;
}

@keyframes wa-glow-pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.15);
    }
}

/* Button Micro-Interactions */
.button {
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1),
                background 220ms ease,
                color 220ms ease;
}

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

.button:active {
    transform: translateY(0) scale(0.98);
}

.button--gold:hover {
    box-shadow: 0 10px 24px rgba(200, 149, 61, 0.38);
}

.button--whatsapp-hero:hover {
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --------------------------------------------------------------------------
   18. Granular Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Large Tablets & Small Laptops (<= 1180px) */
@media (max-width: 1180px) {
    .hero-fare-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-fare-submit {
        grid-column: 1 / -1;
    }

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

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 30px;
    }
}

/* Tablets (<= 992px) */
@media (max-width: 992px) {
    :root {
        --header-height: 68px;
    }

    .section {
        padding: 68px 0;
    }

    .hero {
        min-height: auto;
        padding-bottom: 50px;
    }

    .hero-inner {
        min-height: auto;
        padding-top: 24px;
        padding-bottom: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-visual,
    .hero-overlay {
        display: none;
    }

    .hero-mobile-banner {
        display: block;
        width: 100%;
        margin: 18px 0 22px;
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(200, 149, 61, 0.28);
        box-shadow: 0 10px 25px rgba(0, 24, 48, 0.12);
        background: #ffffff;
    }

    .hero-mobile-banner img {
        width: 100%;
        height: auto;
        max-height: 230px;
        object-fit: cover;
        object-position: center;
        display: block;
    }

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

    .menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 1001;
    }

    /* Mobile Slide-Over Drawer */
    .mobile-drawer {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 86vw);
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 20px 20px 24px;
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), visibility 260ms;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 99999;
    }

    .mobile-drawer.is-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 16px;
        margin-bottom: 14px;
        border-bottom: 1px solid var(--border-light);
    }

    .drawer-brand img {
        width: 135px;
        height: auto;
    }

    .drawer-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid var(--border-light);
        background: var(--ivory);
        color: var(--navy-900);
        font-size: 1.1rem;
        cursor: pointer;
        transition: var(--transition);
    }

    .drawer-close:hover {
        background: var(--navy-900);
        color: var(--white);
    }

    .drawer-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 4px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .drawer-menu li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 11px 14px;
        font-size: 0.94rem;
        font-weight: 700;
        color: var(--navy-900);
        border-radius: 8px;
        background: transparent;
        transition: var(--transition);
    }

    .drawer-menu li a i {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 6px;
        background: var(--gold-100);
        color: var(--gold-600);
        font-size: 0.92rem;
        flex-shrink: 0;
    }

    .drawer-menu li a::after {
        display: none;
    }

    .drawer-menu li a:hover,
    .drawer-menu li a.is-active {
        background: var(--gold-100);
        color: var(--navy-950);
    }

    .drawer-menu li a.is-active i {
        background: var(--gold-500);
        color: var(--navy-950);
    }

    .drawer-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: auto;
        padding-top: 18px;
        border-top: 1px solid var(--border-light);
        gap: 10px;
    }

    .drawer-actions .button {
        width: 100%;
        min-height: 46px;
    }

    /* Grids to 2 Columns */
    .service-grid,
    .tariff-grid,
    .package-grid,
    .destination-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .reason-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .contact-panel {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }

    .tariff-inclusions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    body {
        padding-bottom: 68px; /* Room for sticky bottom conversion bar */
    }

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section {
        padding: 56px 0;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .utility-bar {
        display: none;
    }

    /* Hero */
    .hero {
        padding-bottom: 24px;
    }

    .hero-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-top-row .eyebrow {
        align-self: flex-start;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-actions .button {
        width: 100%;
    }

    /* Hero Floating Fare Bar */
    .fare-enquiry-section {
        margin-top: 0;
        margin-bottom: 30px;
    }

    .fare-card-wrapper {
        padding: 0 16px 18px;
        border-radius: var(--radius-md);
    }

    .trip-tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: 100%;
    }

    .trip-tabs::-webkit-scrollbar {
        display: none;
    }

    .trip-tab {
        flex: 1 0 auto;
        min-height: 48px;
        padding: 0 14px;
        font-size: 0.8rem;
    }

    .hero-fare-bar {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 14px;
    }

    .contact-fare-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fare-field {
        min-height: 52px;
        padding: 6px 12px;
    }

    /* Trust Stats */
    .trust-strip {
        padding: 0 0 40px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .trust-grid .trust-item:last-child {
        grid-column: 1 / -1;
    }

    .trust-item {
        padding: 12px 14px;
        gap: 10px;
    }

    .trust-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .trust-info strong {
        font-size: 1.05rem;
    }

    .trust-info span {
        font-size: 0.72rem;
    }

    .group-note {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 16px;
    }

    /* Grids to Single Column */
    .tariff-grid,
    .package-grid,
    .destination-grid,
    .reason-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    /* Tariff Section */
    .tariff {
        padding: 56px 0;
    }

    .tariff-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        margin-bottom: 24px;
        padding-bottom: 6px;
        max-width: 100%;
    }

    .tariff-tabs::-webkit-scrollbar {
        display: none;
    }

    .tariff-tab {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 0.78rem;
    }

    .tariff-card__top {
        padding: 14px 16px 0;
    }

    .vehicle-image-stage {
        min-height: 135px;
        padding: 10px 14px 0;
    }

    .vehicle-image img {
        max-height: 130px;
    }

    .tariff-card__body {
        padding: 14px 16px 18px;
    }

    .vehicle-name {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .tariff-actions {
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 8px;
    }

    /* Testimonials Horizontal Swipe */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 12px;
        scrollbar-width: none;
        max-width: 100%;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 calc(100% - 24px);
        scroll-snap-align: center;
        padding: 22px 18px;
    }

    .testimonials-nav {
        margin-top: 18px;
    }

    /* Contact Section */
    .contact-panel {
        padding: 24px 16px;
        border-radius: var(--radius-lg);
        gap: 18px;
    }

    .contact-direct {
        padding: 22px 16px;
    }

    .contact-link {
        justify-content: center;
        min-height: 48px;
    }

    .map-art {
        height: 110px;
        overflow: hidden;
    }

    .map-card__content {
        padding: 16px;
    }

    /* Footer */
    .site-footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }

    /* Floating WhatsApp hidden on mobile; conversion bar handles it */
    .floating-whatsapp {
        display: none !important;
    }

    /* Sticky Mobile Conversion Bar Active */
    .mobile-conversion-bar {
        display: grid;
    }
}

/* Very Small Devices (<= 380px, e.g. iPhone SE) */
@media (max-width: 380px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

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

    .trust-grid .trust-item:last-child {
        grid-column: auto;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    .mobile-conversion-bar {
        gap: 5px;
        padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-conversion-bar a {
        font-size: 0.76rem;
        gap: 4px;
    }
}

/* --------------------------------------------------------------------------
   19. Reduced Motion Query
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ========================================================================== 
   20. Reference-accurate desktop composition
   The supplied 1920px artwork uses a wide 1550px content frame and a more
   generous vertical rhythm than the first implementation. These rules keep
   the semantic/responsive foundation above while matching that composition.
   ========================================================================== */
@media (min-width: 1181px) {
    :root {
        --container: 1240px;
        --header-height: 96px;
    }

    body {
        position: relative;
        font-size: 16px;
    }

    html {
        scrollbar-width: none;
    }

    html::-webkit-scrollbar {
        display: none;
    }

    .utility-bar,
    .utility-bar__inner {
        min-height: 49px;
    }

    .utility-bar {
        font-size: 0.82rem;
    }

    .utility-items,
    .utility-actions {
        gap: 30px;
    }

    .brand img {
        width: 235px;
    }

    .site-header {
        position: relative;
    }

    .desktop-nav {
        gap: 28px;
    }

    .desktop-nav ul {
        gap: 26px;
    }

    .desktop-nav li a {
        min-height: 52px;
        font-size: 0.9rem;
    }

    .nav-actions {
        gap: 14px;
    }

    .nav-actions .button--small {
        min-height: 50px;
        padding-inline: 24px;
        font-size: 0.88rem;
    }

    .hero {
        min-height: 770px;
        padding-bottom: 92px;
    }

    .hero-inner {
        min-height: 700px;
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-copy .eyebrow {
        margin-bottom: 20px;
        font-size: 0.88rem;
    }

    .hero-copy h1 {
        max-width: 730px;
        margin-bottom: 26px;
        font-size: 4rem;
        line-height: 1.08;
        letter-spacing: -0.035em;
    }

    .hero-lead {
        max-width: 670px;
        margin-bottom: 32px;
        font-size: 1.08rem;
        line-height: 1.65;
    }

    .hero-actions {
        gap: 18px;
    }

    .hero-actions .button--gold,
    .hero-actions .button--whatsapp-hero {
        min-height: 62px;
        padding-inline: 34px;
        font-size: 1rem;
    }

    .operator-badge {
        top: 30px;
        right: 18px;
        gap: 14px;
        padding: 12px 20px;
        border-radius: 14px;
    }

    .operator-badge strong {
        font-size: 0.9rem;
    }

    .operator-badge span {
        font-size: 0.78rem;
    }

    .fare-enquiry-section {
        margin-top: -88px;
        margin-bottom: 46px;
    }

    .fare-card-wrapper {
        min-height: 250px;
        padding: 26px 36px 30px;
        border-radius: 20px;
        box-shadow: 0 20px 52px rgba(0, 24, 48, 0.1);
    }

    .trip-tabs {
        gap: 52px;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .trip-tab {
        font-size: 1rem;
    }

    .trip-tab.is-active::before {
        bottom: -17px;
    }

    .hero-fare-bar {
        gap: 14px;
    }

    .fare-field,
    .hero-fare-submit {
        min-height: 70px;
    }

    .fare-field {
        gap: 12px;
        padding: 10px 16px;
        border-radius: 10px;
    }

    .field-icon {
        width: 24px;
        font-size: 1.35rem;
    }

    .field-content label {
        margin-bottom: 5px;
        font-size: 0.78rem;
    }

    .field-content input,
    .field-content select {
        font-size: 0.96rem;
    }

    .hero-fare-submit {
        padding-inline: 42px;
        font-size: 1rem;
    }

    .form-note {
        margin-top: 10px;
        font-size: 0.88rem;
    }

    .trust-strip {
        min-height: 141px;
        padding: 14px 0 41px;
    }

    .trust-grid {
        gap: 32px;
    }

    .trust-item {
        gap: 18px;
        padding: 14px 16px;
    }

    .trust-icon {
        width: 58px;
        height: 58px;
    }

    .trust-info strong {
        font-size: 1.38rem;
    }

    .trust-info span {
        font-size: 0.88rem;
    }

    .section {
        padding: 110px 0;
    }

    .section-heading {
        width: min(900px, 100%);
        margin-bottom: 58px;
    }

    .section-heading h2 {
        font-size: 2.7rem;
    }

    .section-heading > p:last-child {
        font-size: 1.04rem;
    }

    .section-kicker {
        font-size: 0.78rem;
    }

    .services {
        min-height: 620px;
        padding: 70px 0 90px;
    }

    .services .section-heading {
        margin-bottom: 56px;
    }

    .service-grid {
        gap: 20px;
    }

    .service-card {
        min-height: 325px;
        padding: 38px 18px 28px;
        border-radius: 14px;
    }

    .service-icon-box {
        width: 78px;
        height: 68px;
        margin-bottom: 20px;
    }

    .service-svg {
        width: 72px;
        height: 62px;
    }

    .service-card h3 {
        margin-bottom: 14px;
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.8rem;
        line-height: 1.55;
    }

    .tariff {
        min-height: 1948px;
        padding: 95px 0 65px;
    }

    .tariff .section-heading {
        margin-bottom: 50px;
    }

    .tariff-tabs {
        margin-bottom: 50px;
    }

    .tariff-tab {
        padding: 12px 26px;
        font-size: 0.88rem;
    }

    .tariff-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
        margin-bottom: 56px;
    }

    .tariff-card {
        min-height: auto;
        border-radius: 16px;
    }

    .tariff-card__top {
        padding: 14px 14px 0;
        gap: 8px;
    }

    .vehicle-image-stage {
        min-height: 160px;
        padding: 14px 18px 4px;
    }

    .vehicle-image img {
        max-height: 145px;
    }

    .tariff-card__body {
        padding: 16px 18px 20px;
    }

    .vehicle-name {
        font-size: 1.15rem;
    }

    .vehicle-specs {
        gap: 10px;
        padding: 10px 0;
        font-size: 0.76rem;
    }

    .recommended,
    .charge-note {
        font-size: 0.84rem;
    }

    .tariff-inclusions {
        min-height: 100px;
        padding: 24px 30px;
    }

    .packages {
        min-height: 1988px;
        padding: 116px 0 106px;
    }

    .package-grid {
        gap: 32px;
    }

    .package-card {
        min-height: 690px;
        border-radius: 20px;
    }

    .package-card__body {
        padding: 26px 28px 28px;
    }

    .package-card h3 {
        font-size: 1.28rem;
    }

    .package-highlights {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .package-vehicles {
        margin: 20px 0;
        font-size: 0.84rem;
    }

    .package-actions {
        padding-top: 20px;
    }

    .destinations {
        min-height: 1204px;
        padding: 114px 0 106px;
        background: var(--ivory);
    }

    .destination-grid {
        gap: 28px;
    }

    .destination-card,
    .destination-card--featured {
        min-height: 350px;
        grid-column: auto;
        grid-row: auto;
    }

    .destination-content {
        padding: 30px;
    }

    .destination-content h3 {
        font-size: 1.4rem;
    }

    .why-us {
        min-height: 851px;
        padding: 120px 0;
    }

    .road-curve {
        display: none;
    }

    .reason-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 30px;
    }

    .reason-card {
        min-height: 280px;
        padding: 28px 30px;
        border-radius: 0 0 18px 18px;
    }

    .reason-icon-wrap {
        width: 64px;
        height: 64px;
        margin-bottom: 22px;
        font-size: 1.45rem;
    }

    .reason-card h3 {
        font-size: 1.15rem;
    }

    .reason-card p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .testimonials {
        min-height: 0;
        padding: 95px 0;
    }

    .testimonials-grid {
        gap: 24px;
    }

    .testimonial-card {
        min-height: 260px;
        padding: 28px 26px;
        border-radius: 18px;
    }

    .testimonial-text {
        min-height: 80px;
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .faq {
        min-height: 0;
        padding: 95px 0;
        background: #ffffff;
    }

    .faq-grid {
        gap: 20px;
    }

    .contact {
        padding: 0 0 145px;
    }

    .contact-panel {
        width: 100%;
        min-height: 660px;
        padding: 21px 46px;
        gap: 30px;
        border-radius: 0 0 34px 34px;
    }

    .contact-form-panel h2 {
        font-size: 2.35rem;
    }

    .contact-fare-grid {
        gap: 16px;
    }

    .fare-form--contact .fare-field {
        min-height: 70px;
    }

    .contact-direct {
        padding: 30px;
    }

    .map-art {
        height: 185px;
    }

    .map-card__content {
        padding: 30px;
    }

    .site-footer {
        min-height: 562px;
        padding: 74px 0 26px;
    }

    .footer-grid {
        gap: 52px;
        margin-bottom: 52px;
    }

    .footer-about p,
    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 32px;
    }

    .floating-whatsapp {
        position: absolute;
        top: auto;
        right: 24px;
        bottom: 24px;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ========================================================================== 
   22. Compact live desktop correction
   Keeps the reference styling without the oversized 1550px frame or forced
   full-page heights. Desktop sections now size naturally to their content.
   ========================================================================== */
@media (min-width: 1181px) {
    :root {
        --container: 1320px;
        --header-height: 78px;
    }

    body {
        font-size: 15.5px;
    }

    .utility-bar,
    .utility-bar__inner {
        min-height: 38px;
    }

    .utility-bar {
        font-size: 0.75rem;
    }

    .utility-items,
    .utility-actions {
        gap: 24px;
    }

    .brand img {
        width: 195px;
    }

    .desktop-nav {
        gap: 22px;
    }

    .desktop-nav ul {
        gap: 20px;
    }

    .desktop-nav li a {
        min-height: 42px;
        font-size: 0.82rem;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-actions .button--small {
        min-height: 40px;
        padding: 9px 18px;
        font-size: 0.8rem;
    }

    .hero {
        min-height: 580px;
        padding-bottom: 72px;
    }

    .hero-inner {
        min-height: 560px;
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .hero-copy {
        max-width: 630px;
    }

    .hero-copy .eyebrow {
        margin-bottom: 14px;
        font-size: 0.78rem;
    }

    .hero-copy h1 {
        max-width: 620px;
        margin-bottom: 18px;
        font-size: clamp(2.3rem, 3.5vw, 3.25rem);
        line-height: 1.13;
        letter-spacing: -0.025em;
    }

    .hero-lead {
        max-width: 540px;
        margin-bottom: 26px;
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-actions {
        gap: 14px;
    }

    .hero-actions .button--gold,
    .hero-actions .button--whatsapp-hero {
        min-height: 48px;
        padding-inline: 26px;
        font-size: 0.9rem;
    }

    .operator-badge {
        top: 24px;
        right: 20px;
        gap: 12px;
        padding: 8px 16px;
        border-radius: 14px;
    }

    .operator-badge strong {
        font-size: 0.82rem;
    }

    .operator-badge span {
        font-size: 0.72rem;
    }

    .fare-enquiry-section {
        margin-top: -68px;
        margin-bottom: 34px;
    }

    .fare-card-wrapper {
        min-height: 0;
        padding: 16px 28px 22px;
        border-radius: 16px;
        box-shadow: 0 14px 40px rgba(0, 24, 48, 0.08);
    }

    .trip-tabs {
        gap: 36px;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .trip-tab {
        font-size: 0.92rem;
    }

    .trip-tab.is-active::before {
        bottom: -13px;
    }

    .hero-fare-bar {
        gap: 12px;
    }

    .fare-field,
    .hero-fare-submit {
        min-height: 56px;
    }

    .fare-field {
        gap: 10px;
        padding: 8px 12px;
        border-radius: 8px;
    }

    .field-icon {
        width: 20px;
        font-size: 1.15rem;
    }

    .field-content label {
        margin-bottom: 3px;
        font-size: 0.72rem;
    }

    .field-content input,
    .field-content select {
        font-size: 0.88rem;
    }

    .hero-fare-submit {
        padding-inline: 32px;
        font-size: 0.95rem;
    }

    .form-note {
        margin-top: 8px;
        font-size: 0.8rem;
    }

    .trust-strip {
        min-height: 0;
        padding: 10px 0 44px;
    }

    .trust-grid {
        gap: 20px;
    }

    .trust-item {
        gap: 14px;
        padding: 10px 8px;
    }

    .trust-icon {
        width: 48px;
        height: 48px;
    }

    .trust-info strong {
        font-size: 1.18rem;
    }

    .trust-info span {
        font-size: 0.78rem;
    }

    .section {
        min-height: 0;
        padding: 76px 0;
    }

    .section-heading {
        width: min(780px, 100%);
        margin-bottom: 42px;
    }

    .section-heading h2 {
        font-size: 2.25rem;
    }

    .section-heading > p:last-child {
        font-size: 0.95rem;
    }

    .section-kicker {
        font-size: 0.72rem;
    }

    .services {
        min-height: 0;
        padding: 48px 0 68px;
    }

    .services .section-heading {
        margin-bottom: 42px;
    }

    .service-grid {
        gap: 14px;
    }

    .service-card {
        min-height: 270px;
        padding: 26px 12px 20px;
        border-radius: 12px;
    }

    .service-icon-box {
        width: 64px;
        height: 54px;
        margin-bottom: 12px;
    }

    .service-svg {
        width: 58px;
        height: 50px;
    }

    .service-card h3 {
        margin-bottom: 9px;
        font-size: 0.9rem;
    }

    .service-card p {
        font-size: 0.72rem;
        line-height: 1.45;
    }

    .tariff {
        min-height: 0;
        padding: 78px 0 84px;
    }

    .tariff .section-heading {
        margin-bottom: 36px;
    }

    .tariff-tabs {
        margin-bottom: 34px;
    }

    .tariff-tab {
        padding: 9px 20px;
        font-size: 0.8rem;
    }

    .tariff-grid {
        gap: 24px;
        margin-bottom: 38px;
    }

    .tariff-card {
        min-height: 0;
        border-radius: 16px;
    }

    .tariff-card__top {
        padding: 14px 18px 0;
    }

    .vehicle-image-stage {
        min-height: 160px;
        padding: 14px 18px 4px;
    }

    .vehicle-image img {
        max-height: 155px;
    }

    .tariff-card__body {
        padding: 14px 20px 20px;
    }

    .vehicle-name {
        font-size: 1.15rem;
    }

    .vehicle-specs {
        gap: 12px;
        padding: 9px 0;
        font-size: 0.74rem;
    }

    .recommended,
    .charge-note {
        font-size: 0.78rem;
    }

    .tariff-inclusions {
        min-height: 0;
        padding: 20px 24px;
    }

    .packages {
        min-height: 0;
        padding: 82px 0 90px;
    }

    .package-grid {
        gap: 24px;
    }

    .package-card {
        min-height: 0;
        border-radius: 16px;
    }

    .package-card__body {
        padding: 20px 22px 22px;
    }

    .package-card h3 {
        font-size: 1.08rem;
    }

    .package-highlights {
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .package-vehicles {
        margin: 14px 0;
        font-size: 0.78rem;
    }

    .package-actions {
        padding-top: 14px;
    }

    .destinations {
        min-height: 0;
        padding: 82px 0 90px;
        background: var(--white);
    }

    .destination-grid {
        gap: 20px;
    }

    .destination-card,
    .destination-card--featured {
        min-height: 275px;
    }

    .destination-content {
        padding: 22px;
    }

    .destination-content h3 {
        font-size: 1.2rem;
    }

    .why-us {
        min-height: 0;
        padding: 82px 0 88px;
    }

    .reason-grid {
        gap: 22px;
    }

    .reason-card {
        min-height: 0;
        padding: 24px 22px;
        border-radius: 14px;
    }

    .reason-icon-wrap {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
        font-size: 1.2rem;
    }

    .reason-card h3 {
        font-size: 1rem;
    }

    .reason-card p {
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .testimonials {
        min-height: 0;
        padding: 82px 0 92px;
    }

    .testimonials-grid {
        gap: 24px;
    }

    .testimonial-card {
        min-height: 250px;
        padding: 24px 26px;
        border-radius: 16px;
    }

    .testimonial-text {
        min-height: 90px;
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .faq {
        min-height: 0;
        padding: 82px 0 90px;
        background: var(--white);
    }

    .faq-grid {
        gap: 16px;
    }

    .faq-item summary {
        min-height: 60px;
        padding: 18px 20px;
        font-size: 0.86rem;
    }

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

    .contact {
        min-height: 0;
        padding: 0 0 76px;
    }

    .contact-panel {
        width: min(calc(100% - 40px), var(--container));
        min-height: 0;
        padding: 30px 32px;
        gap: 24px;
        border-radius: 18px;
    }

    .contact-form-panel h2 {
        font-size: 2rem;
    }

    .contact-fare-grid {
        gap: 12px;
    }

    .fare-form--contact .fare-field {
        min-height: 58px;
    }

    .contact-direct {
        padding: 24px;
    }

    .map-art {
        height: 150px;
    }

    .map-card__content {
        padding: 24px;
    }

    .site-footer {
        min-height: 0;
        padding: 62px 0 24px;
    }

    .footer-grid {
        gap: 34px;
        margin-bottom: 46px;
    }

    .footer-about p,
    .footer-links a {
        font-size: 0.82rem;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    .floating-whatsapp {
        position: fixed;
        right: 24px;
        bottom: 24px;
    }
}

/* ========================================================================== 
   23. Reference-matched desktop trust strip
   Restores the stronger fleet-stat treatment from the supplied close-up.
   ========================================================================== */
@media (min-width: 1181px) {
    .trust-strip {
        min-height: 147px;
        padding: 14px 0 26px;
    }

    .trust-strip > .container {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0, 24, 48, 0.1);
    }

    .trust-grid {
        width: 100%;
        grid-template-columns: minmax(0, 0.85fr) repeat(3, minmax(0, 1fr)) minmax(0, 1.15fr);
        gap: 32px;
    }

    .trust-item {
        position: relative;
        gap: 18px;
        padding: 14px 16px;
    }

    .trust-item:not(:last-child)::after {
        position: absolute;
        top: 14px;
        right: -16px;
        bottom: 14px;
        width: 1px;
        background: rgba(0, 24, 48, 0.1);
        content: "";
    }

    .trust-icon {
        width: 58px;
        height: 58px;
    }

    .trust-info strong {
        font-size: 1.38rem;
    }

    .trust-info span {
        font-size: 0.88rem;
    }
}
