/* ============================================
   Mr Chai Van Service - Uber-inspired Design
   Modern, Clean, Minimalist
   ============================================ */

/* CSS Variables */
:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray-100: #F6F6F6;
    --color-gray-200: #EEEEEE;
    --color-gray-300: #E0E0E0;
    --color-gray-400: #BDBDBD;
    --color-gray-500: #9E9E9E;
    --color-gray-600: #757575;
    --color-gray-700: #616161;
    --color-gray-800: #424242;
    --color-gray-900: #212121;
    --color-green: #008000;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    --transition: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-black);
    background: var(--color-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4, h5, h6,
.section-title,
.package-heading,
.faq-container .faq-heading {
    line-height: 1.1;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-black);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-gray-800);
    transform: translateY(-1px);
}

/* Secondary: workhorse, pairs with primary – less prominent */
.btn-secondary {
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-gray-400);
}

.btn-secondary:hover {
    border-color: var(--color-black);
    background: var(--color-gray-100);
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--color-black);
    outline-offset: 2px;
}

/* Secondary on dark backgrounds */
.cta .btn-secondary,
.btn-secondary-dark {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.cta .btn-secondary:hover,
.btn-secondary-dark:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.cta .btn-secondary:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

/* Tertiary: subtle, text-like */
.btn-tertiary {
    background: transparent;
    color: var(--color-gray-700);
    border: none;
}

.btn-tertiary:hover {
    color: var(--color-black);
}

.btn-dark {
    background: var(--color-black);
    color: var(--color-white);
    padding: 16px 24px;
    font-size: 16px;
}

.btn-dark:hover {
    background: var(--color-gray-800);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-black);
    padding: 16px 32px;
    font-size: 16px;
}

.btn-light:hover {
    background: var(--color-gray-100);
}

.btn-text {
    background: transparent;
    color: var(--color-black);
    padding: 12px 16px;
}

.btn-text:hover {
    background: var(--color-gray-100);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

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

.phone-icon {
    width: 20px;
    height: 20px;
}

.checkmark {
  color: var(--color-green);
  font-size: 18px;
  font-weight: 700;
}
/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-black);
    z-index: 1000;
    height: 64px;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
}

.logo-icon {
    width: 28px;
    height: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-phone,
.nav-right .btn-text {
    color: var(--color-white);
}

.nav-phone:hover,
.nav-right .btn-text:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-book-desktop,
.nav-right .btn-primary {
    background: var(--color-white);
    color: var(--color-black);
}

.nav-book-desktop:hover,
.nav-right .btn-primary:hover {
    background: var(--color-gray-200);
}

/* Book Now inside mobile menu – hidden on desktop */
.nav-menu-cta {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* ============================================
   USP Banner Component
   ============================================ */
   .usp-banner {
    position: relative;
    top: 64px; /* Matches your navbar height */
    background: var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-200);
    height: 40px;
    z-index: 900;
}

.usp-container-fixed {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.usp-wrapper {
    /* 5 items = 20s total (4s per item) */
    animation: usp-slide 20s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.usp-item {
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-700);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Update Hero Padding to account for the new banner */
.hero {
    padding-top: 104px !important; /* Navbar (64px) + Banner (40px) */
}

@keyframes usp-slide {
    0%, 15% { transform: translateY(0); }
    20%, 35% { transform: translateY(-40px); }
    40%, 55% { transform: translateY(-80px); }
    60%, 75% { transform: translateY(-120px); }
    80%, 95% { transform: translateY(-160px); }
    100% { transform: translateY(-200px); }
}

/* Adjust for Mobile */
@media (max-width: 768px) {
    .usp-item {
        font-size: 11px;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding-top: 64px;
    min-height: 100vh;
    background: var(--color-white);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: calc(100vh - 64px);
}

.hero-content {
    max-width: 520px;
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-gray-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-subtitle .checkmark {
    color: var(--color-green);
}

.wrapper-subtitle {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.booking-form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
    border: 1px solid var(--color-gray-200);
}

.booking-form-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-note {
    font-size: 14px;
    color: var(--color-gray-500);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-height: 500px;
    object-fit: contain;
}

.hero-lottie {
    width: 100%;
    min-width: 280px;
    height: 320px;
    max-width: 500px;
    max-height: 500px;
}

.hero-lottie svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 96px 0;
    background: var(--color-gray-100);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
}

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

/* Minimal card treatment – Whitehurst: content focus, less container weight */
.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--color-gray-200);
}

.service-card:hover {
    border-color: var(--color-gray-300);
    box-shadow: var(--shadow);
}

.service-content {
    padding: 28px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.service-link:hover {
    border-bottom-color: var(--color-black);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 96px 0;
    background: var(--color-white);
}

.features-content {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-title-large {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-desc-large {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-black);
    flex-shrink: 0;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.stats-card {
    position: relative;
    background: var(--color-black);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 280px;
    overflow: hidden;
}

.stats-card-van {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    max-width: 45%;
    max-height: 120px;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
    pointer-events: none;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--color-gray-400);
}

/* ============================================
   Popular Destinations
   ============================================ */
.destinations {
    padding: 80px 0;
    background: var(--color-white);
}

.destinations .section-title {
    margin-bottom: 40px;
}

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

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    min-height: 220px;
}

.dest-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color-gray-200);
    transition: transform 0.4s ease;
}

.dest-card:hover .dest-card-bg {
    transform: scale(1.05);
}

/* Lighter overlay for content focus – Whitehurst: less visual weight on cards */
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    pointer-events: none;
}

.dest-card-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dest-card-subheading {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.dest-card-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
}

/* ============================================
   Rates Section
   ============================================ */
.rates-section {
    padding: 96px 0;
    background: var(--color-white);
}

.rates-section .section-title {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray-600);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.rates-selectors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    margin-bottom: 32px;
}

.rate-select-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rate-select-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
}

.rate-select {
    min-width: 180px;
    padding: 12px 14px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--color-black);
    background: var(--color-white);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.rate-select:hover,
.rate-select:focus {
    border-color: var(--color-black);
    outline: none;
}

.rate-single-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-radius: var(--radius);
    max-width: 400px;
    margin: 0 auto 24px;
    border: 2px solid transparent;
}

.rate-single-card:not(.hidden) .rate-info .destination {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.rate-single-card:not(.hidden) .rate-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.rate-single-card.highlighted {
    background: var(--color-green);
    color: var(--color-white);
}

.rate-single-card.highlighted .price-estimate {
    color: rgba(255, 255, 255, 0.85);
}

.hidden {
    display: none !important;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Lighter treatment – Whitehurst: focus on content, not backgrounds */
.rate-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--color-white);
    border-radius: var(--radius);
    border: 1px solid var(--color-gray-200);
    transition: var(--transition);
    cursor: default;
}

.rate-card-plane {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-52%, -50%);
    width: 58px;
    height: auto;
    pointer-events: none;
    opacity: 0.9;
}

.rate-card:hover {
    border-color: var(--color-gray-400);
}

.rate-card.highlighted {
    background: var(--color-green);
    color: var(--color-white);
}

.rate-card.highlighted .price-estimate {
    color: rgba(255, 255, 255, 0.85);
}

.rate-info {
    display: flex;
    flex-direction: column;
}

.rate-info .destination {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.rate-info .price-estimate {
    font-size: 0.85rem;
    color: var(--color-gray-600);
}

.rate-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.rates-section .rate-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin-top: 30px;
    margin-bottom: 0;
}

.rates-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.rates-cta .btn {
    min-width: 200px;
}

/* ============================================
   Unlimited Ride Section
   ============================================ */
.unlimited-section {
    padding: 96px 0;
    background: var(--color-gray-100);
}

.unlimited-section .section-title {
    text-align: center;
}

.unlimited-lottie-wrap {
    display: flex;
    justify-content: center;
}

.unlimited-lottie {
    width: 100%;
    max-width: 280px;
    height: 200px;
    display: block;
    margin: 0 auto;
}

.unlimited-lottie svg {
    width: 100%;
    height: 100%;
    display: block;
}

.unlimited-section .section-subtitle {
    margin-bottom: 32px;
}

.unlimited-card {
    max-width: 400px;
    margin: 0 auto;
    padding: 24px 28px;
    background: var(--color-white);
    border-radius: var(--radius);
    border: 2px solid var(--color-gray-300);
    box-shadow: var(--shadow);
}

.unlimited-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.unlimited-price-row:last-child {
    border-bottom: none;
}

.unlimited-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gray-800);
}

.unlimited-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-black);
}

/* ============================================
   Adventure Section – Package Cards (horizontal scroll + accordion)
   ============================================ */
.adventure-section {
    padding: 96px 0;
    background: var(--color-white);
}

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

.adventure-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.packages-scroll-wrap {
    margin: 0 -24px;
    padding: 0;
    overflow: hidden;
}

.packages-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    padding: 0 24px;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.packages-grid::-webkit-scrollbar {
    height: 8px;
}

.packages-grid::-webkit-scrollbar-track {
    background: var(--color-gray-100);
    border-radius: 4px;
}

.packages-grid::-webkit-scrollbar-thumb {
    background: var(--color-gray-400);
    border-radius: 4px;
}

/* Content-first cards – Whitehurst: minimal container, focus on content */
.package-card {
    position: relative;
    flex: 0 0 auto;
    width: 320px;
    min-height: 180px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.package-card:hover {
    border-color: var(--color-gray-300);
}

.package-card.is-open {
    box-shadow: var(--shadow-lg);
}

.package-card--green.is-open { box-shadow: var(--shadow-lg), 0 0 0 2px rgba(34, 197, 94, 0.3); }
.package-card--blue.is-open { box-shadow: var(--shadow-lg), 0 0 0 2px rgba(59, 130, 246, 0.3); }
.package-card--orange.is-open { box-shadow: var(--shadow-lg), 0 0 0 2px rgba(249, 115, 22, 0.3); }
.package-card--red.is-open { box-shadow: var(--shadow-lg), 0 0 0 2px rgba(239, 68, 68, 0.3); }

.package-header {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    color: inherit;
    transition: background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.package-header:hover {
    background: var(--color-gray-100);
}

.package-header:focus-visible {
    outline: 2px solid var(--color-black);
    outline-offset: 2px;
}

/* Image is direct child of card – no button padding/margin, truly edge-to-edge */
.package-card > .package-subheading-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    margin: 0;
    padding: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    object-fit: cover;
    object-position: center;
    background: var(--color-gray-200);
    cursor: pointer;
}

.package-header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
}

.package-header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.package-subheading {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gray-600);
}

.package-heading {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.package-duration-inline {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
    font-weight: 500;
    margin-top: 2px;
}

.package-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-gray-500);
    transition: transform 0.25s ease;
}

.package-card.is-open .package-chevron {
    transform: rotate(180deg);
}

.package-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.package-card.is-open .package-body {
    max-height: 600px;
}

.package-body-inner {
    border-top: 1px solid transparent;
}

.package-card.is-open .package-body-inner {
    overflow: visible;
}

.package-card--green.is-open .package-body-inner { border-top-color: rgba(34, 197, 94, 0.2); }
.package-card--blue.is-open .package-body-inner { border-top-color: rgba(59, 130, 246, 0.2); }
.package-card--orange.is-open .package-body-inner { border-top-color: rgba(249, 115, 22, 0.2); }
.package-card--red.is-open .package-body-inner { border-top-color: rgba(239, 68, 68, 0.2); }

.package-body-inner {
    padding: 16px 20px 20px;
}

.package-desc {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.55;
    margin-bottom: 12px;
}

.package-highlights {
    list-style: none;
    margin: 0 0 14px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.package-highlights li {
    font-size: 0.875rem;
    color: var(--color-gray-700);
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}

.package-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gray-400);
}

.package-card--green .package-highlights li::before { background: #22c55e; }
.package-card--blue .package-highlights li::before { background: #3b82f6; }
.package-card--orange .package-highlights li::before { background: #f97316; }
.package-card--red .package-highlights li::before { background: #ef4444; }

.package-highlight-label {
    font-weight: 700;
    color: var(--color-gray-900);
}

.package-card--green .package-highlight-label { color: #166534; }
.package-card--blue .package-highlight-label { color: #1e40af; }
.package-card--orange .package-highlight-label { color: #c2410c; }
.package-card--red .package-highlight-label { color: #b91c1c; }

.package-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--color-gray-200);
}

.package-duration,
.package-cost {
    font-weight: 500;
}

.package-cta {
    width: 100%;
}

@media (max-width: 768px) {
    .adventure-section {
        padding: 48px 0;
    }

    .adventure-subtitle {
        margin-bottom: 32px;
    }

    .packages-scroll-wrap {
        margin: 0 -16px;
        padding: 0;
    }

    .packages-grid {
        padding: 0 16px;
    }

    .package-card {
        width: 280px;
        min-height: 160px;
    }

    .package-heading {
        font-size: 1.15rem;
    }

    .package-body-inner {
        padding: 16px 16px 16px;
    }
}

/* Unlimited section – mobile (fix layout on iPhone/narrow viewports) */
@media (max-width: 768px) {
    .unlimited-section {
        padding: 48px 0;
        overflow-x: hidden;
    }

    .unlimited-card {
        width: 100%;
        max-width: 100%;
        padding: 20px 16px;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    .unlimited-price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 14px 0;
        min-height: 48px;
    }

    .unlimited-label {
        font-size: 1rem;
        font-weight: 600;
        flex: 1 1 auto;
        min-width: 0;
    }

    .unlimited-value {
        font-size: 1.2rem;
        font-weight: 700;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .unlimited-section .rates-cta .btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .unlimited-card {
        padding: 16px 12px;
    }

    .unlimited-label {
        font-size: 0.9375rem;
    }

    .unlimited-value {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .rates-section .rates-grid {
        grid-template-columns: 1fr;
    }

    .rates-selectors {
        flex-direction: column;
        gap: 20px;
    }

    .rate-select-wrap {
        width: 100%;
    }

    .rate-select {
        width: 100%;
        min-width: 0;
        padding: 16px 18px;
        min-height: 48px;
    }

    .rates-cta .btn {
        min-width: 100%;
    }
}

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

@media (max-width: 560px) {
    .destinations-grid {
        display: flex;
        grid-template-columns: unset;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
        margin-left: 24px;
    }

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

    .dest-card {
        flex: 0 0 280px;
        min-width: 280px;
        min-height: 200px;
        aspect-ratio: 4 / 3;
        scroll-snap-align: start;
    }

    .dest-card-content {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .dest-card-title {
        font-size: 1.1rem;
    }

    .dest-card-subheading {
        font-size: 0.65rem;
    }
}

/* ============================================
   SEO Content & FAQ Section
   ============================================ */
.seo-content {
    padding: 60px 0;
    background: #f9f9f9;
}

.seo-content-grid {
    display: grid;
    gap: 32px;
    align-items: start;
}

.seo-content-image {
    grid-area: seo-image;
}

.seo-content-text {
    grid-area: seo-text;
    align-self: start;
}

/* Desktop: image left (2 rows), text right (2 rows) – content top-aligned */
@media (min-width: 769px) {
    .seo-content-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "seo-image seo-text"
            "seo-image seo-text";
    }
}

/* Mobile: image → text */
@media (max-width: 768px) {
    .seo-content-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "seo-image"
            "seo-text";
    }
}

.seo-content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-gray-200);
}

.seo-content-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.seo-content .section-title {
    margin-bottom: 0;
}

.content-block {
    max-width: 800px;
    line-height: 1.6;
}

.seo-content-text.content-block {
    max-width: none;
}

.content-block-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-black);
}

.content-block-p {
    margin-top: 15px;
}

/* FAQ Section (bottom, before footer) */
.faq-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container .faq-heading {
    font-size: 2rem;
    margin-bottom: 24px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-300);
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    padding: 18px 0;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-black);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-gray-700);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-gray-600);
    transition: transform 0.25s ease;
}

.faq-item.is-open .faq-question .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
}

.faq-item.is-open .faq-answer p {
    padding-top: 4px;
}

.faq-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--color-gray-800);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    padding: 100px 24px;
    background: var(--color-black);
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: var(--color-gray-400);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Primary WhatsApp (when it’s the main CTA, e.g. alternate hero) */
.btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
    padding: 18px 40px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

/* Secondary WhatsApp (rates / unlimited – grey, not prominent) */
.btn-whatsapp-dark {
    background: var(--color-gray-200);
    color: var(--color-gray-800);
    padding: 16px 24px;
    font-size: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--color-gray-300);
}

.btn-whatsapp-dark:hover {
    background: var(--color-gray-300);
    color: var(--color-gray-900);
    border-color: var(--color-gray-400);
}

.btn-whatsapp-dark.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 64px 0 32px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-gray-800);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-gray-400);
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--color-white);
    padding: 8px 0;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-gray-400);
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--color-gray-500);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        order: 1;
    }
    
    .hero-image {
        order: 0;
    }
    
    .hero-image img {
        max-height: 350px;
    }
    
    .hero-lottie {
        height: 320px;
        max-height: 350px;
    }
    
    .booking-form {
        max-width: 400px;
        margin: 0 auto 16px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-visual {
        order: -1;
    }
    
    .stats-card {
        flex-direction: row;
        justify-content: space-around;
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--color-black);
        flex-direction: column;
        padding: 20px 24px 24px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.25s ease, opacity 0.2s ease, visibility 0.25s;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 14px 0;
        font-size: 15px;
    }
    
    .nav-menu-cta {
        display: block;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--color-gray-800);
    }
    
    .nav-menu-cta .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-book-desktop {
        display: none;
    }
    
    .nav-phone {
        padding: 10px 14px;
        font-size: 15px;
        font-weight: 500;
    }
    
    .hero-container {
        padding: 40px 24px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .feature-title-large {
        font-size: 28px;
    }
    
    .stats-card {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .cta {
        padding: 60px 24px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }
    
    .booking-form {
        padding: 16px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
