@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-latin-wght-normal.woff2") format("woff2-variations");
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-green: #00673e;
    --brand-green-light: #058250;
    --brand-green-dark: #004d32;
    --brand-green-deep: #003622;
    --brand-navy: #073854;
    --brand-navy-dark: #032b44;
    --brand-amber: #f59e0b;
    --brand-amber-light: #fbbf24;
    --brand-amber-dark: #d97706;
    --brand-coffee: #5c3516;
    --surface: #ffffff;
    --surface-soft: #f8faf8;
    --surface-green: #eef7f2;
    --surface-tint: #f4f8f5;
    --text: #15241d;
    --text-muted: #53645b;
    --text-light: #7b8d84;
    --border: #dbe5df;
    --border-light: #e8efe9;
    --border-accent: #b9d8c6;
    --shadow-sm: 0 4px 14px rgba(0, 32, 20, .05), 0 1px 3px rgba(0,0,0,.03);
    --shadow-md: 0 12px 30px rgba(0, 32, 20, .08), 0 4px 10px rgba(0,0,0,.04);
    --shadow-lg: 0 20px 48px rgba(0, 32, 20, .13), 0 8px 18px rgba(0,0,0,.06);
    --shadow-glow: 0 8px 24px rgba(0, 103, 62, .24);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 26px;
    --header-height: 76px;
    --topbar-height: 38px;
    --container: 1180px;
    --font: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --transition: all .24s cubic-bezier(.16, 1, .3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--topbar-height) + 14px);
}

body {
    margin: 0;
    min-width: 0;
    overflow-x: hidden;
    background: var(--surface);
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    letter-spacing: -.025em;
    font-weight: 800;
}

h2 {
    margin-bottom: 12px;
    font-size: clamp(1.75rem, 2.4vw, 2.3rem);
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    transform: translateY(-160%);
    border-radius: 6px;
    background: #fff;
    color: var(--brand-green-dark);
    font-weight: 800;
    box-shadow: var(--shadow-md);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--brand-amber);
    outline-offset: 3px;
}

.status-toast {
    position: fixed;
    z-index: 1000;
    right: 24px;
    bottom: 24px;
    max-width: 380px;
    padding: 14px 18px;
    border-radius: 10px;
    background: var(--brand-navy-dark);
    color: #fff;
    box-shadow: var(--shadow-lg);
    font-weight: 700;
}

/* ==========================================================================
   Top Announcement & Quick Contact Bar
   ========================================================================== */
.top-bar {
    background: var(--brand-green-deep);
    color: #e5f2eb;
    font-size: .78rem;
    height: var(--topbar-height);
    line-height: var(--topbar-height);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #a7f3d0;
    font-weight: 700;
}

.top-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
}

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

@keyframes pulseGlow {
    0% { transform: scale(.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, .7); }
    70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
    100% { transform: scale(.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.top-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-weight: 700;
    transition: color .18s ease;
}

.top-link:hover {
    color: var(--brand-amber-light);
}

.top-link i {
    color: var(--brand-amber);
}

/* ==========================================================================
   Site Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(7, 56, 84, .1);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 4px 20px rgba(10, 36, 27, .05);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 24px;
}

.brand {
    display: flex;
    width: 172px;
    min-width: 172px;
    align-items: center;
    transition: transform .18s ease;
}

.brand:hover {
    transform: scale(1.02);
}

.brand img {
    width: 100%;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-left: auto;
}

.primary-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 24px 0 22px;
    color: #27362e;
    font-size: .86rem;
    font-weight: 750;
    white-space: nowrap;
    transition: color .2s ease;
}

.primary-nav a i {
    font-size: .82rem;
    color: var(--brand-green);
    opacity: .8;
    transition: transform .2s ease, opacity .2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    color: var(--brand-green);
}

.primary-nav a:hover i {
    opacity: 1;
    transform: translateY(-1px);
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 15px;
    left: 0;
    height: 2.5px;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 2px;
    background: var(--brand-green);
    content: "";
    transition: transform .22s cubic-bezier(.16, 1, .3, 1);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    transform: scaleX(1);
}

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

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #fff;
    color: var(--brand-green-dark);
    font-size: 1.25rem;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--surface-soft);
    border-color: var(--brand-green);
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */
.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1.5px solid transparent;
    border-radius: 8px;
    background: none;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: var(--transition);
}

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

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

.button-primary {
    border-color: var(--brand-green);
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 103, 62, .24);
}

.button-primary:hover {
    border-color: var(--brand-green-dark);
    background: linear-gradient(135deg, var(--brand-green-light) 0%, var(--brand-green) 100%);
    box-shadow: 0 10px 24px rgba(0, 103, 62, .35);
}

.button-outline {
    border-color: var(--brand-green);
    background: #fff;
    color: var(--brand-green-dark);
    box-shadow: 0 2px 8px rgba(0, 32, 20, .04);
}

.button-outline:hover {
    border-color: var(--brand-green-dark);
    background: var(--surface-green);
    color: var(--brand-green-deep);
}

.button-light-outline {
    border-color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    backdrop-filter: blur(6px);
}

.button-light-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .2);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
}

.button-large {
    min-height: 52px;
    padding: 14px 22px;
    font-size: .95rem;
    border-radius: 9px;
}

.button-small {
    min-height: 38px;
    padding: 8px 14px;
    font-size: .78rem;
    border-radius: 7px;
}

.button-block {
    width: 100%;
}

.button-glow {
    position: relative;
    overflow: hidden;
}

.button-glow::after {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, .2), transparent);
    transform: rotate(30deg);
    content: "";
    animation: buttonGlow 3.5s infinite;
}

@keyframes buttonGlow {
    0% { transform: translateX(-100%) rotate(30deg); }
    30%, 100% { transform: translateX(100%) rotate(30deg); }
}

/* ==========================================================================
   Hero Section & Fare Card
   ========================================================================== */
.hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: var(--brand-green-deep);
    color: #fff;
}

.hero-media,
.hero-media img,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img {
    object-fit: cover;
    object-position: 51% 58%;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(1, 29, 24, .95) 0%, rgba(2, 34, 27, .82) 40%, rgba(1, 27, 23, .38) 70%, rgba(0, 20, 22, .45) 100%),
        linear-gradient(0deg, rgba(1, 25, 20, .6), transparent 55%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 640px;
    align-items: center;
    grid-template-columns: minmax(0, 1.35fr) minmax(370px, .78fr);
    gap: 52px;
    padding-block: 40px;
}

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

.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 14px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 30px;
    background: rgba(0, 30, 20, .6);
    backdrop-filter: blur(8px);
    font-size: .8rem;
}

.hero-rating-badge .stars {
    color: #fbbf24;
    display: inline-flex;
    gap: 2px;
    font-size: .78rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    color: var(--brand-amber);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 640px;
    margin-bottom: 14px;
    font-size: clamp(2.55rem, 4vw, 4.1rem);
    font-weight: 800;
    letter-spacing: -.04em;
    text-shadow: 0 3px 20px rgba(0, 0, 0, .3);
}

.hero-price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}

.hero-price-badge .price-label {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    font-weight: 700;
}

.hero-price {
    margin-bottom: 0;
    color: var(--brand-amber-light);
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    text-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.hero-description {
    max-width: 600px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, .94);
    font-size: 1.02rem;
    line-height: 1.7;
}

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

.trust-points {
    display: flex;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.trust-points li {
    display: flex;
    min-width: 160px;
    align-items: center;
    gap: 12px;
    padding-right: 22px;
    color: rgba(255, 255, 255, .95);
    font-size: .78rem;
    font-weight: 750;
    line-height: 1.35;
}

.trust-points li + li {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, .26);
}

.trust-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border: 1.5px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 1.05rem;
    backdrop-filter: blur(4px);
}

/* Fare Card Widget */
.fare-card {
    width: 100%;
    max-width: 440px;
    justify-self: end;
    padding: 26px 28px 20px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .98);
    color: var(--text);
    box-shadow: 0 24px 60px rgba(0, 25, 18, .32);
    backdrop-filter: blur(10px);
}

.fare-card-header {
    text-align: center;
    margin-bottom: 18px;
}

.fare-card h2 {
    margin-bottom: 4px;
    font-size: 1.5rem;
    color: var(--brand-green-deep);
}

.fare-card-subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: .76rem;
    font-weight: 700;
}

.fare-card-subtitle i {
    color: var(--brand-amber-dark);
}

.field {
    position: relative;
    margin-bottom: 12px;
}

.field label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
    color: #24322b;
    font-size: .74rem;
    font-weight: 800;
}

.field label i {
    color: var(--brand-green);
    font-size: .75rem;
}

.field input,
.field select {
    width: 100%;
    height: 44px;
    padding: 9px 12px;
    border: 1.5px solid #d5dfd8;
    border-radius: 7px;
    background: #fff;
    color: var(--text);
    font-size: .83rem;
    transition: var(--transition);
}

.field input:hover,
.field select:hover {
    border-color: #9cb2a3;
}

.field input:focus,
.field select:focus {
    border-color: var(--brand-green);
    outline: 3px solid rgba(0, 103, 62, .18);
    box-shadow: 0 0 0 1px var(--brand-green);
}

.field.has-error input,
.field.has-error select {
    border-color: #dc2626;
    background: #fef2f2;
}

.field-error {
    display: block;
    min-height: 0;
    color: #b91c1c;
    font-size: .68rem;
    font-weight: 700;
}

.field.has-error .field-error {
    min-height: 16px;
    margin-top: 3px;
}

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

.fare-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 12px 0 0;
    color: var(--text-muted);
    font-size: .7rem;
    font-weight: 650;
    text-align: center;
}

.fare-note i {
    color: var(--brand-green);
}

/* ==========================================================================
   Starting Fares Strip
   ========================================================================== */
.fare-strip-wrap {
    position: relative;
    z-index: 5;
    margin-top: -24px;
}

.fare-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 5px solid #fff;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--brand-navy-dark) 0%, #064064 100%);
    box-shadow: var(--shadow-lg);
}

.fare-strip-item {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    color: #fff;
    transition: var(--transition);
}

.fare-strip-item:hover {
    background: rgba(255, 255, 255, .08);
}

.fare-strip-item + .fare-strip-item::before {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 0;
    width: 1px;
    background: rgba(255, 255, 255, .2);
    content: "";
}

.fare-strip-item picture {
    display: block;
    width: 80px;
    flex: 0 0 80px;
    transition: transform .2s ease;
}

.fare-strip-item:hover picture {
    transform: scale(1.06);
}

.fare-strip-item img {
    width: 100%;
    height: 56px;
    object-fit: contain;
}

.fare-strip-info {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.fare-tag {
    display: inline-block;
    padding: 2px 7px;
    margin-bottom: 3px;
    border-radius: 4px;
    background: rgba(245, 158, 11, .2);
    color: var(--brand-amber-light);
    font-size: .65rem;
    font-weight: 800;
    width: fit-content;
}

.fare-strip-info strong {
    font-size: .88rem;
    white-space: nowrap;
}

.fare-strip-info small {
    color: rgba(255, 255, 255, .7);
    font-size: .67rem;
    margin-bottom: 2px;
    white-space: nowrap;
}

.fare-strip-info b {
    color: var(--brand-amber);
    font-size: 1.25rem;
    line-height: 1.2;
    white-space: nowrap;
}

/* ==========================================================================
   Section Layouts & Headings
   ========================================================================== */
.section {
    padding-block: 52px;
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 28px;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: var(--brand-green);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 8px;
    color: var(--brand-green-deep);
}

.section-lead {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.6;
}

.compact-heading {
    margin-bottom: 24px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    background: var(--surface-soft);
    padding-top: 56px;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    padding: 26px 22px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md);
}

.service-icon-box {
    display: grid;
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--surface-green) 0%, #dcf0e4 100%);
    color: var(--brand-green);
    font-size: 1.6rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    color: #fff;
    transform: scale(1.08) rotate(3deg);
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--brand-green-deep);
    font-size: 1.05rem;
}

.service-card p {
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: .82rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text);
    font-size: .75rem;
    font-weight: 700;
}

.service-features i {
    color: var(--brand-green);
    font-size: .7rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-green);
    font-size: .8rem;
    font-weight: 800;
    transition: gap .18s ease;
}

.service-link:hover {
    gap: 10px;
    color: var(--brand-green-dark);
}

/* ==========================================================================
   AEO / Fare Answer Panel
   ========================================================================== */
.answer-section {
    padding: 16px 0 20px;
}

.answer-panel {
    display: grid;
    align-items: center;
    grid-template-columns: 88px 1fr auto;
    gap: 28px;
    padding: 28px 36px;
    border: 1px solid #d4e7da;
    border-radius: var(--radius-lg);
    background: linear-gradient(110deg, #eaf4eb 0%, #f7faf2 100%);
    box-shadow: var(--shadow-sm);
}

.answer-icon {
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    color: #fff;
    font-size: 2.3rem;
    box-shadow: 0 10px 24px rgba(0, 103, 62, .22);
}

.answer-content h2 {
    margin-bottom: 8px;
    color: var(--brand-green-deep);
    font-size: 1.55rem;
}

.answer-content p {
    margin-bottom: 12px;
    color: var(--text);
    font-size: .95rem;
    line-height: 1.55;
}

.rate-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rate-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid rgba(0, 103, 62, .2);
    border-radius: 20px;
    background: #fff;
    color: var(--brand-green-dark);
    font-size: .74rem;
    font-weight: 750;
}

.rate-chip.highlight {
    background: var(--brand-green);
    color: #fff;
    border-color: var(--brand-green);
}

.answer-cta {
    white-space: nowrap;
}

/* ==========================================================================
   Popular Packages Section
   ========================================================================== */
.packages-section {
    padding-top: 48px;
    padding-bottom: 30px;
}

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

.package-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md);
}

.package-image {
    position: relative;
    aspect-ratio: 4 / 2.7;
    overflow: hidden;
}

.package-image picture,
.package-image img {
    width: 100%;
    height: 100%;
}

.package-image img {
    object-fit: cover;
    transition: transform .45s ease;
}

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

.duration-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 6px;
    background: rgba(3, 43, 68, .92);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    backdrop-filter: blur(4px);
}

.package-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 18px 16px 16px;
}

.package-body h3 {
    min-height: 44px;
    margin-bottom: 12px;
    font-size: 1.02rem;
    color: var(--brand-green-deep);
}

.package-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.price-box {
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
    border-radius: 7px;
    background: var(--surface-soft);
    border: 1px solid var(--border-light);
}

.price-box small {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: .67rem;
    font-weight: 700;
}

.price-box small i {
    color: var(--brand-green);
}

.price-box strong {
    color: var(--brand-green-deep);
    font-size: 1.05rem;
    font-weight: 800;
    margin-top: 2px;
}

.package-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8px;
    margin-top: auto;
}

.disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 22px 0 0;
    color: var(--text-muted);
    font-size: .78rem;
    text-align: center;
}

.disclaimer i {
    color: var(--brand-green);
}

/* ==========================================================================
   Routes Table Section
   ========================================================================== */
.routes-section {
    background: var(--surface-soft);
    padding-top: 36px;
    padding-bottom: 40px;
}

.routes-table-wrap {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.routes-table {
    width: 100%;
    border-collapse: collapse;
}

.routes-table th,
.routes-table td {
    padding: 15px 22px;
    border-bottom: 1px solid var(--border-light);
    font-size: .86rem;
    text-align: left;
}

.routes-table thead th {
    background: var(--brand-green-deep);
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.routes-table tbody th {
    font-weight: 700;
}

.route-name {
    display: block;
    color: var(--brand-green-deep);
    font-size: .92rem;
    font-weight: 800;
}

.route-name i {
    color: var(--brand-green);
}

.route-note {
    display: block;
    color: var(--text-muted);
    font-size: .72rem;
    font-weight: 600;
    margin-top: 2px;
}

.fare-highlight {
    color: var(--brand-amber-dark);
    font-size: 1.05rem;
    font-weight: 800;
}

.routes-table tbody tr:last-child > * {
    border-bottom: 0;
}

.routes-table tbody tr:hover {
    background: var(--surface-green);
}

.routes-table th:last-child,
.routes-table td:last-child {
    text-align: center;
}

.button-table {
    min-width: 120px;
    min-height: 38px;
    padding: 7px 14px;
    font-size: .76rem;
}

/* ==========================================================================
   Fleet Section
   ========================================================================== */
.fleet-section {
    padding-top: 36px;
    padding-bottom: 36px;
}

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

.fleet-card {
    display: flex;
    flex-direction: column;
    padding: 16px 16px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff 0%, #fafcfa 100%);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.fleet-media {
    aspect-ratio: 3 / 1.9;
    margin-bottom: 10px;
}

.fleet-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .25s ease;
}

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

.fleet-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-card h3 {
    margin: 4px 0 2px;
    font-size: 1.1rem;
    color: var(--brand-green-deep);
}

.fleet-model {
    display: inline-block;
    color: var(--text-muted);
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.fleet-model i {
    color: var(--brand-green);
}

.capacity {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: .74rem;
    font-weight: 750;
}

.capacity span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.capacity i {
    color: var(--brand-navy);
}

.fleet-features {
    margin: 0 0 14px;
    color: var(--brand-green-dark);
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.4;
}

.fleet-rate {
    display: block;
    margin-bottom: 12px;
    color: var(--brand-amber-dark);
    font-size: 1.25rem;
    font-weight: 800;
}

/* ==========================================================================
   Sightseeing Spotlight Section
   ========================================================================== */
.sightseeing-section {
    padding-top: 24px;
    padding-bottom: 36px;
}

.sightseeing-card {
    display: grid;
    min-height: 380px;
    grid-template-columns: 1.1fr .9fr;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.sightseeing-image,
.sightseeing-image img {
    width: 100%;
    height: 100%;
}

.sightseeing-image img {
    object-fit: cover;
}

.sightseeing-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 42px;
    background: linear-gradient(135deg, #fff 0%, var(--surface-soft) 100%);
}

.sightseeing-copy h2 {
    margin-bottom: 10px;
    font-size: 1.7rem;
    color: var(--brand-green-deep);
}

.sightseeing-intro {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.circuit-list {
    display: grid;
    gap: 14px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.circuit-list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    align-items: flex-start;
}

.circuit-icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 8px;
    background: var(--surface-green);
    color: var(--brand-green);
    font-size: .95rem;
}

.circuit-list span {
    display: flex;
    flex-direction: column;
    color: var(--text-muted);
    font-size: .78rem;
}

.circuit-list strong {
    color: var(--text);
    font-size: .86rem;
    margin-bottom: 2px;
}

.sightseeing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-section {
    background: var(--surface-soft);
    padding-top: 36px;
    padding-bottom: 40px;
}

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

.why-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-3px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md);
}

.why-icon-box {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 6px;
    place-items: center;
    border-radius: 12px;
    background: var(--surface-green);
    color: var(--brand-green);
    font-size: 1.4rem;
    transition: var(--transition);
}

.why-item:hover .why-icon-box {
    background: var(--brand-green);
    color: #fff;
    transform: scale(1.08);
}

.why-item strong {
    color: var(--brand-green-deep);
    font-size: .92rem;
    line-height: 1.35;
}

.why-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: .78rem;
    line-height: 1.55;
}

/* ==========================================================================
   3-Step Booking Roadmap
   ========================================================================== */
.steps-section {
    padding-top: 36px;
    padding-bottom: 42px;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 0;
    padding: 0 10px;
    list-style: none;
}

.steps-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.steps-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.steps-list li:not(:last-child)::after {
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);
    width: 36px;
    border-top: 3px dashed #729184;
    content: "";
}

.step-number {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(0, 103, 62, .25);
}

.steps-list li > span:last-child {
    display: flex;
    flex-direction: column;
}

.steps-list strong {
    font-size: .92rem;
    color: var(--brand-green-deep);
    margin-bottom: 3px;
}

.steps-list small {
    color: var(--text-muted);
    font-size: .74rem;
    line-height: 1.5;
}

/* ==========================================================================
   Customer Reviews / Testimonials
   ========================================================================== */
.reviews-section {
    background: var(--surface-soft);
    padding-top: 40px;
    padding-bottom: 44px;
}

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

.review-card {
    display: flex;
    flex-direction: column;
    padding: 24px 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.review-stars {
    display: flex;
    gap: 3px;
    color: var(--brand-amber);
    font-size: .85rem;
    margin-bottom: 12px;
}

.review-text {
    color: var(--text);
    font-size: .84rem;
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
    font-style: italic;
}

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

.reviewer-avatar {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-green);
    color: var(--brand-green);
    font-size: .95rem;
}

.reviewer-info strong {
    display: block;
    font-size: .84rem;
    color: var(--brand-green-deep);
}

.reviewer-info small {
    display: block;
    color: var(--text-muted);
    font-size: .7rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding-top: 36px;
    padding-bottom: 46px;
}

.faq-container {
    max-width: 960px;
}

.faq-list {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.faq-item + .faq-item {
    border-top: 1px solid var(--border-light);
}

.faq-item h3 {
    margin: 0;
}

.faq-question {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 22px;
    border: 0;
    background: #fff;
    color: var(--text);
    font-size: .86rem;
    font-weight: 750;
    text-align: left;
    transition: background .18s ease;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question span i {
    color: var(--brand-green);
    font-size: .9rem;
}

.faq-question:hover {
    background: var(--surface-soft);
}

.faq-question > i {
    color: var(--brand-green);
    font-size: .82rem;
    transition: transform .24s ease;
}

.faq-question[aria-expanded="true"] {
    background: var(--surface-green);
    color: var(--brand-green-deep);
}

.faq-question[aria-expanded="true"] > i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 4px 24px 20px 48px;
    background: var(--surface-green);
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted);
    font-size: .84rem;
    line-height: 1.65;
}

.faq-footer-note {
    margin-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: .84rem;
}

.faq-footer-note a {
    color: var(--brand-green);
    font-weight: 750;
    text-decoration: underline;
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */
.final-cta {
    position: relative;
    display: grid;
    min-height: 260px;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(1, 36, 47, .76), rgba(2, 32, 43, .88)),
        image-set(url("../images/hero/footer-coorg-mountains.avif") type("image/avif"), url("../images/hero/footer-coorg-mountains.webp") type("image/webp"), url("../images/hero/footer-coorg-mountains.jpg") type("image/jpeg"));
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.final-cta-inner {
    padding-block: 46px;
}

.final-cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: var(--brand-amber);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.final-cta p {
    margin-bottom: 2px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .9);
}

.final-cta h2 {
    margin: 2px 0 10px;
    font-size: clamp(2rem, 3.5vw, 2.7rem);
}

.final-cta-sub {
    max-width: 600px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, .85);
    font-size: .92rem;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
    padding-top: 48px;
    background: var(--brand-navy-dark);
    color: rgba(255, 255, 255, .8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(4, 1fr);
    gap: 36px;
    padding-bottom: 32px;
}

.footer-logo-wrap {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .24);
    margin-bottom: 16px;
    transition: transform .2s ease;
}

.footer-logo-wrap:hover {
    transform: translateY(-2px);
}

.footer-brand img {
    width: 175px;
    height: auto;
    display: block;
}

.footer-brand p {
    max-width: 290px;
    margin: 0 0 16px;
    font-size: .77rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .82);
}

.footer-contact-card {
    display: grid;
    gap: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: rgba(255, 255, 255, .9);
    font-size: .76rem;
    font-weight: 650;
    transition: color .18s ease;
}

.footer-contact-item:hover {
    color: var(--brand-amber);
}

.footer-contact-item i {
    color: var(--brand-amber);
    margin-top: 3px;
    font-size: .8rem;
}

.footer-grid h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: .88rem;
    letter-spacing: 0;
}

.footer-grid ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .76rem;
    color: rgba(255, 255, 255, .78);
    transition: color .18s ease, transform .18s ease;
}

.footer-grid a i {
    font-size: .65rem;
    color: var(--brand-amber);
    transition: transform .18s ease;
}

.footer-grid a:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-bottom {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .74rem;
    flex-wrap: wrap;
    padding-block: 16px;
}

.footer-phone-link {
    color: var(--brand-amber);
    font-weight: 800;
}

.footer-credit {
    color: rgba(255, 255, 255, .88);
}

.designer-link {
    color: var(--brand-amber-light);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .18s ease;
}

.designer-link:hover {
    color: #ffffff;
}

/* ==========================================================================
   Floating Quick Action Buttons (Desktop & Tablet)
   ========================================================================== */
.floating-contact-bar {
    position: fixed;
    z-index: 95;
    right: 22px;
    bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    position: relative;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    transition: transform .22s ease, box-shadow .22s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.floating-whatsapp {
    background: #25d366;
}

.floating-phone {
    background: var(--brand-navy);
}

.floating-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;
    background: var(--brand-navy-dark);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   Mobile Sticky Action Bar
   ========================================================================== */
.mobile-sticky-bar {
    display: none;
}

/* ==========================================================================
   Itinerary Dialog
   ========================================================================== */
.itinerary-dialog {
    width: min(calc(100% - 36px), 540px);
    padding: 32px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 90px rgba(0, 22, 15, .36);
}

.itinerary-dialog::backdrop {
    background: rgba(1, 27, 20, .75);
    backdrop-filter: blur(4px);
}

.dialog-header {
    margin-bottom: 14px;
}

.dialog-header .section-kicker {
    margin-bottom: 4px;
}

.dialog-header h2 {
    padding-right: 36px;
    font-size: 1.6rem;
    color: var(--brand-green-deep);
}

.dialog-body p {
    color: var(--text);
    font-size: .88rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.dialog-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--brand-green-dark);
    font-size: 1.1rem;
    transition: var(--transition);
}

.dialog-close:hover {
    background: var(--surface-green);
    color: var(--brand-green-deep);
}

.dialog-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
    border-left: 3.5px solid var(--brand-amber);
    background: #fffbeb;
    color: #92400e;
    font-size: .78rem;
    border-radius: 0 6px 6px 0;
    margin-bottom: 20px;
}

.dialog-note i {
    margin-top: 2px;
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */
.legal-body {
    background: var(--surface-soft);
}

.legal-header {
    justify-content: space-between;
}

.legal-main {
    padding: 56px 0 72px;
}

.legal-card {
    max-width: 860px;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.legal-card > .section-kicker {
    margin-bottom: 8px;
    color: var(--brand-green);
}

.legal-card h1 {
    margin-bottom: 8px;
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--brand-green-deep);
}

.legal-updated {
    margin-bottom: 34px;
    color: var(--text-muted);
    font-size: .8rem;
}

.legal-card section + section {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
}

.legal-card section h2 {
    font-size: 1.35rem;
    color: var(--brand-green-dark);
}

.legal-card section p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    padding: 24px 0;
    background: var(--brand-navy-dark);
    color: rgba(255,255,255,.78);
    font-size: .76rem;
    text-align: center;
}

.noscript-message {
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 12px;
    border-radius: 8px;
    background: #fff4d6;
    color: #573a00;
    text-align: center;
    font-weight: 700;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1120px) {
    :root {
        --container: 960px;
    }

    .header-inner {
        gap: 16px;
    }

    .brand {
        width: 150px;
        min-width: 150px;
    }

    .primary-nav {
        gap: 16px;
    }

    .primary-nav a {
        font-size: .78rem;
    }

    .header-actions .button:first-child {
        display: none;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr);
        gap: 32px;
    }

    .hero h1 {
        font-size: 3.4rem;
    }

    .trust-points li {
        min-width: 0;
    }

    .fare-strip-item {
        padding-inline: 10px;
    }

    .fare-strip-item picture {
        width: 60px;
        flex-basis: 60px;
    }

    .packages-grid,
    .fleet-grid {
        gap: 14px;
    }

    .package-actions {
        grid-template-columns: 1fr;
    }

    .steps-list {
        gap: 46px;
        padding: 0;
    }

    .steps-list li:not(:last-child)::after {
        left: calc(100% + 8px);
        width: 30px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr repeat(4, 1fr);
        gap: 24px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 70px;
    }

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

    .top-bar-left .top-status {
        display: none;
    }

    .site-header {
        height: var(--header-height);
    }

    .brand {
        width: 156px;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 10px 16px 18px;
        border-bottom: 1px solid var(--border);
        background: #fff;
        box-shadow: var(--shadow-lg);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        min-height: 48px;
        padding: 13px 12px;
        font-size: .92rem;
        border-bottom: 1px solid var(--border-light);
    }

    .primary-nav a::after {
        display: none;
    }

    .header-actions .button:first-child {
        display: inline-flex;
    }

    .header-actions .button span {
        display: none;
    }

    .header-actions .button {
        width: 44px;
        min-width: 44px;
        padding: 0;
    }

    .hero,
    .hero-inner {
        min-height: 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-block: 48px 42px;
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(1, 29, 24, .95), rgba(1, 29, 24, .6)), linear-gradient(0deg, rgba(1, 25, 20, .78), transparent 70%);
    }

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

    .hero h1 {
        max-width: 600px;
        font-size: clamp(2.4rem, 7.5vw, 3.8rem);
    }

    .fare-card {
        max-width: 650px;
        justify-self: start;
    }

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

    .fare-strip-item:nth-child(3)::before {
        display: none;
    }

    .fare-strip-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .22);
    }

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

    .answer-panel {
        grid-template-columns: 80px 1fr;
        padding-inline: 28px;
    }

    .answer-cta {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .package-actions {
        grid-template-columns: 1fr 1.2fr;
    }

    .sightseeing-card {
        grid-template-columns: 1fr;
    }

    .sightseeing-image {
        height: 350px;
    }

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

    .steps-list {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
        margin-inline: auto;
    }

    .steps-list li:not(:last-child)::after {
        top: 100%;
        left: 48px;
        width: 0;
        height: 20px;
        border-top: 0;
        border-left: 3px dashed #729184;
    }

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

    .footer-brand {
        grid-row: span 2;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 64px;
        font-size: 14px;
    }

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

    .top-bar {
        font-size: .72rem;
    }

    .top-bar-left .top-badge {
        display: none;
    }

    .site-header {
        height: 64px;
    }

    .brand {
        width: 140px;
        min-width: 140px;
    }

    .header-actions {
        display: none;
    }

    .hero-inner {
        padding-block: 40px 34px;
    }

    .hero-media img {
        object-position: 59% 50%;
    }

    .hero-shade {
        background: linear-gradient(rgba(0, 30, 23, .9), rgba(0, 30, 23, .8));
    }

    .eyebrow {
        font-size: .7rem;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 10vw, 2.9rem);
    }

    .hero-description {
        font-size: .94rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .trust-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-points li,
    .trust-points li + li {
        padding: 0;
        border: 0;
    }

    .fare-card {
        padding: 22px 18px 16px;
    }

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

    .fare-strip-wrap {
        margin-top: 0;
        padding-top: 14px;
        background: #fff;
    }

    .fare-strip {
        min-height: 0;
        border-width: 4px;
    }

    .fare-strip-item {
        min-height: 96px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .fare-strip-item picture {
        width: 72px;
    }

    .fare-strip-item img {
        height: 46px;
    }

    .fare-strip-info strong {
        font-size: .78rem;
    }

    .fare-strip-info b {
        font-size: 1.05rem;
    }

    .section {
        padding-block: 44px;
    }

    .services-grid,
    .packages-grid,
    .fleet-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .answer-panel {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 20px;
        text-align: center;
    }

    .answer-icon {
        width: 68px;
        height: 68px;
        margin-inline: auto;
        font-size: 2rem;
    }

    .rate-chips {
        justify-content: center;
    }

    .answer-cta {
        width: 100%;
    }

    .package-actions {
        grid-template-columns: 1fr 1fr;
    }

    .routes-table-wrap {
        overflow: visible;
        border: 0;
        box-shadow: none;
    }

    .routes-table,
    .routes-table tbody,
    .routes-table tr,
    .routes-table th,
    .routes-table td {
        display: block;
        width: 100%;
    }

    .routes-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .routes-table tbody {
        display: grid;
        gap: 14px;
    }

    .routes-table tr {
        padding: 16px;
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
        background: #fff;
    }

    .routes-table th,
    .routes-table td,
    .routes-table th:last-child,
    .routes-table td:last-child {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 8px 0;
        border-bottom: 1px dashed var(--border-light);
        text-align: right;
    }

    .routes-table tr > *::before {
        color: var(--text-muted);
        content: attr(data-label);
        font-size: .72rem;
        font-weight: 700;
        text-align: left;
    }

    .routes-table tr > *:last-child {
        padding-top: 14px;
        border-bottom: 0;
    }

    .button-table {
        width: 130px;
    }

    .sightseeing-card {
        width: min(calc(100% - 28px), 520px);
    }

    .sightseeing-image {
        height: 260px;
    }

    .sightseeing-copy {
        padding: 26px 20px;
    }

    .sightseeing-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

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

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

    .steps-list li {
        padding-inline: 16px;
    }

    .faq-question {
        min-height: 52px;
        padding-inline: 16px;
        font-size: .8rem;
    }

    .faq-answer {
        padding: 4px 16px 16px 16px;
    }

    .final-cta {
        min-height: 260px;
    }

    .final-cta h2 {
        font-size: 1.95rem;
    }

    .final-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 16px;
    }

    .floating-contact-bar {
        display: none;
    }

    .mobile-sticky-bar {
        position: fixed;
        z-index: 99;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        height: 64px;
        grid-template-columns: 1fr 1.25fr;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: var(--brand-navy-dark);
        box-shadow: 0 -8px 24px rgba(0, 28, 21, .18);
    }

    .mobile-sticky-bar a {
        display: flex;
        min-width: 0;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #fff;
        font-weight: 800;
        font-size: .88rem;
    }

    .mobile-sticky-bar a + a {
        background: var(--brand-green);
    }

    .itinerary-dialog {
        padding: 26px 20px 20px;
    }

    .status-toast {
        right: 14px;
        bottom: 76px;
        left: 14px;
        max-width: none;
    }
}

@media (max-width: 380px) {
    .brand {
        width: 130px;
        min-width: 130px;
    }

    .package-actions {
        grid-template-columns: 1fr;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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