/* ================================
   V68 Adventures — Editorial Luxury
   Archetype B: Warm Creams, Serif Headers, Refined Amber Accent
   DESIGN_VARIANCE: 8 | MOTION_INTENSITY: 6 | VISUAL_DENSITY: 4
   ================================ */

/* ================================
   CSS Variables — Design Tokens
   ================================ */
:root {
    /* Brand Palette — Editorial Luxury */
    --cream: #FDFBF7;
    --cream-dark: #F0EBE3;
    --espresso: #1A1A18;
    --espresso-light: #3D3A35;
    --amber: #C8965A;
    --amber-dark: #A67A42;
    --amber-light: #DDB07A;
    --warm-gray: #6B6860;
    --warm-gray-light: #9B958C;
    --surface: #FFFFFE;
    --border: #E8E4DE;
    --border-light: #F0ECE6;

    /* Typography */
    --font-heading: 'Instrument Serif', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;

    /* Motion — custom curves, no linear/ease-in-out */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out-custom: cubic-bezier(0.32, 0.72, 0, 1);
    --transition-fast: 0.3s var(--ease-out-expo);
    --transition-medium: 0.6s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
}

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

html {
    font-size: 16px;
    background-color: var(--espresso);
    overflow: hidden;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    color: var(--espresso-light);
    background-color: var(--espresso);
    overflow: hidden;
    height: 100%;
    margin: 0;
}

/* ================================
   Grain Overlay — Editorial Texture
   ================================ */
.grain-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ================================
   Full-Page Section System
   ================================ */
section {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s var(--ease-out-expo);
    z-index: 2;
    overflow-y: auto;
    overflow-x: hidden;
    background: transparent;
    padding: 100px 20px;
    box-sizing: border-box;
}

section > .container {
    width: 100%;
    max-width: var(--container-width);
    flex-shrink: 0;
}

section.hero {
    background: transparent;
    padding: 0;
    justify-content: center;
}

section.active-section {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 5 !important;
}

section#hero,
section#about,
section#transport,
section#villas,
section#contact {
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

section#hero.active-section,
section#about.active-section,
section#transport.active-section,
section#villas.active-section,
section#contact.active-section {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 5 !important;
}

section#about,
section#transport,
section#villas,
section#contact {
    overflow-y: auto;
    padding-top: 80px;
    padding-bottom: 40px;
    justify-content: center;
    align-items: center;
}

section#about .container,
section#transport .container,
section#villas .container,
section#contact .container {
    width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   Loading Screen — Minimal & Elegant
   ================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(200, 150, 90, 0.08) 0%, transparent 60%),
        var(--espresso);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s var(--ease-out-expo);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    position: relative;
}

.loading-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 32px;
    opacity: 0;
    animation: loadLogoIn 0.8s var(--ease-out-expo) 0.2s forwards;
    border-radius: 16px;
}

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

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--amber);
    border-radius: 1px;
    transition: width 0.15s linear;
}

.loading-subtext {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    opacity: 0;
    animation: loadLogoIn 0.6s var(--ease-out-expo) 0.5s forwards;
}

/* Legacy loading elements — hide gracefully */
.loading-spinner,
.loading-road,
.loading-van,
.loading-text {
    display: none;
}

/* ================================
   Video Background
   ================================ */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: var(--espresso);
    display: none;
}

#scrollVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
    pointer-events: none;
}

/* ================================
   Navigation — Glassmorphism Float
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    z-index: 1000;
    transition: all var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(26, 26, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(200, 150, 90, 0.1);
}

/* Nav adapts to light-background sections */
.navbar.on-light {
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.navbar.on-light .nav-link {
    color: var(--espresso-light);
}

.navbar.on-light .nav-link:hover,
.navbar.on-light .nav-link.active {
    color: var(--amber-dark);
}

.navbar.on-light .nav-link::after {
    background: var(--amber-dark);
}

.navbar.on-light .hamburger span {
    background: var(--espresso);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
}

.nav-logo {
    position: fixed;
    top: 10px;
    left: 30px;
    z-index: 1001;
}

.nav-logo img,
.nav-logo video {
    height: 80px;
    width: 80px;
    transition: transform var(--transition-fast);
    object-fit: contain;
    border-radius: 12px;
}

.nav-logo img:hover,
.nav-logo video:hover {
    transform: scale(1.04);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.3px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--amber-light);
}

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

.nav-link-cta {
    padding: 10px 24px;
    background: var(--amber);
    color: var(--espresso) !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.2px;
    transition: all var(--transition-fast);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--amber-light);
    color: var(--espresso) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 150, 90, 0.25);
}

.nav-link-cta.active {
    color: var(--espresso) !important;
    background: var(--amber-light);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1002;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-fast);
    border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ================================
   Hero Section
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    text-align: left;
    color: var(--surface);
    padding: 100px 20px;
    background: transparent !important;
    flex-direction: row;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 720px;
    text-align: left;
    margin: 0;
    padding-left: 8%;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--surface);
}

.hero-title em {
    font-style: italic;
    color: var(--amber-light);
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* ================================
   Hero Carousel
   ================================ */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s var(--ease-out-expo);
    transform: scale(1);
}

.carousel-slide.active {
    opacity: 1;
    animation: kenBurns 8s var(--ease-out-expo) forwards;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 24, 0.75) 0%,
        rgba(26, 26, 24, 0.5) 40%,
        rgba(26, 26, 24, 0.65) 100%
    );
    z-index: 1;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 130px;
    left: 8%;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    border: none;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
    background: var(--amber);
    width: 24px;
    border-radius: 4px;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.carousel-arrow:hover {
    background: rgba(200, 150, 90, 0.2);
    border-color: rgba(200, 150, 90, 0.3);
    color: var(--amber-light);
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.98);
}

.carousel-prev { left: 30px; }
.carousel-next { right: 30px; }

/* ================================
   Buttons — Refined, No Glow
   ================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    border: none;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--amber);
    color: var(--espresso);
    box-shadow: 0 2px 8px rgba(200, 150, 90, 0.2);
}

.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 150, 90, 0.3);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

/* Legacy glow — removed for refinement */
.btn-glow {
    animation: none;
}

.btn-large {
    padding: 16px 36px;
    font-size: 0.95rem;
}

/* ================================
   Scroll Indicator
   ================================ */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 8%;
    text-align: left;
    color: rgba(255, 255, 255, 0.4);
    animation: indicatorFloat 3s var(--ease-in-out-custom) infinite;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin: 0 0 8px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--amber);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s var(--ease-in-out-custom) infinite;
}

@keyframes wheelScroll {
    0%, 100% { opacity: 0; top: 8px; }
    50% { opacity: 1; top: 16px; }
}

@keyframes indicatorFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.scroll-indicator p {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* ================================
   Section Eyebrow & Titles
   ================================ */
.section-eyebrow {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber-dark);
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
    color: var(--espresso);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    color: var(--warm-gray);
    margin-bottom: 20px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
    margin: 30px 0 15px;
    color: var(--amber);
}

/* ================================
   Scroll Animations
   ================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[data-delay="100"].animated { transition-delay: 0.08s; }
.animate-on-scroll[data-delay="200"].animated { transition-delay: 0.16s; }
.animate-on-scroll[data-delay="300"].animated { transition-delay: 0.24s; }
.animate-on-scroll[data-delay="400"].animated { transition-delay: 0.32s; }

/* ================================
   About Section — Dark editorial for visual rhythm
   ================================ */
.about-section {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 150, 90, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 150, 90, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #1E1E1C 0%, var(--espresso) 100%);
}

.about-section .section-eyebrow {
    color: var(--amber-light);
}

.about-section .section-title {
    color: var(--cream);
}

.story-text {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 48px 56px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 780px;
    margin: 32px auto 0;
    text-align: left;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    position: relative;
}

.story-text::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    border-radius: 0 0 2px 2px;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 65ch;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* ================================
   Transport Section — Dark theme for visual rhythm
   ================================ */
.transport-section {
    background:
        radial-gradient(ellipse at 70% 20%, rgba(200, 150, 90, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(200, 150, 90, 0.04) 0%, transparent 40%),
        linear-gradient(160deg, #1E1E1C 0%, var(--espresso) 100%);
}

.transport-section .section-eyebrow {
    color: var(--amber-light);
}

.transport-section .section-title {
    color: var(--cream);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px auto 0;
    max-width: 960px;
    width: 100%;
    position: relative;
}

/* 3D Model Containers */
.fleet-3d-model {
    position: absolute;
    width: 320px;
    height: 320px;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transform: scale(0.5) translateY(50px);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.8s var(--ease-out-back);
}

.fleet-3d-model.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.fleet-3d-model model-viewer {
    width: 100%;
    height: 100%;
    background: transparent !important;
}

/* Fleet Card — Dark glass on dark bg */
.fleet-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s var(--ease-out-expo);
    opacity: 1;
    visibility: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.fleet-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

.fleet-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(200, 150, 90, 0.2);
    border-color: rgba(200, 150, 90, 0.25);
}

.fleet-card:hover::after {
    opacity: 1;
}

/* Fleet card text on dark bg */
.transport-section .fleet-content h3 {
    color: var(--cream);
    font-size: 1.5rem;
}

.transport-section .fleet-capacity {
    color: rgba(255, 255, 255, 0.45);
}

.transport-section .fleet-features li {
    color: rgba(255, 255, 255, 0.65);
}

.transport-section .fleet-content .btn {
    background: var(--amber);
    color: var(--espresso);
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 0.85rem;
}

.fleet-image {
    height: 85px;
    background: linear-gradient(135deg, var(--espresso), var(--espresso-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fleet-image svg {
    width: 70px;
    height: 70px;
    color: rgba(255, 255, 255, 0.15);
    transition: all var(--transition-medium);
}

.fleet-card:hover .fleet-image svg {
    color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.fleet-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    background: var(--amber);
    color: var(--espresso);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.fleet-content {
    padding: 20px;
}

.fleet-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--espresso);
    margin-bottom: 6px;
    font-weight: 400;
    line-height: 1.2;
}

.fleet-capacity {
    color: var(--warm-gray-light);
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-weight: 400;
}

.fleet-features {
    list-style: none;
    margin-bottom: 18px;
}

.fleet-features li {
    padding: 4px 0;
    color: var(--warm-gray);
    position: relative;
    padding-left: 18px;
    font-size: 0.82rem;
    font-weight: 400;
}

.fleet-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    opacity: 0.7;
}

.fleet-price {
    margin-bottom: 12px;
    padding: 12px;
    background: var(--cream);
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.price-label {
    display: block;
    color: var(--warm-gray-light);
    font-size: 0.7rem;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fleet-content .price-amount {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--espresso);
}

.fleet-content .btn {
    width: 100%;
    text-align: center;
    padding: 10px 12px;
    font-size: 0.8rem;
}

/* ================================
   Fleet Section — Editorial Card Grid (v-card)
   ================================ */
.fleet-section {
    background:
        radial-gradient(ellipse at 70% 20%, rgba(200, 150, 90, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(200, 150, 90, 0.04) 0%, transparent 40%),
        linear-gradient(160deg, #1E1E1C 0%, var(--espresso) 100%);
}

.fleet-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.fleet-header {
    text-align: center;
    margin-bottom: 56px;
}

.fleet-eyebrow {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 12px;
}

.fleet-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.fleet-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.v-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s var(--ease-out-expo),
                background 0.5s var(--ease-out-expo),
                border-color 0.5s var(--ease-out-expo),
                box-shadow 0.5s var(--ease-out-expo);
}

.v-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

.v-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 150, 90, 0.25);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(200, 150, 90, 0.2);
}

.v-card:hover::after {
    opacity: 1;
}

.v-card-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
}

.v-card-badge {
    background: var(--amber);
    color: var(--espresso);
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.v-card-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.v-card-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    flex-grow: 1;
}

.v-card-list li {
    position: relative;
    padding: 5px 0 5px 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 400;
}

.v-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    opacity: 0.75;
}

.v-card-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: var(--amber);
    color: var(--espresso);
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    transition: background 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
}

.v-card-btn:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
}

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

@media (max-width: 560px) {
    .fleet-cards { grid-template-columns: 1fr; max-width: 360px; gap: 16px; }
    .fleet-header { margin-bottom: 36px; }
}

/* ================================
   Bus Section
   ================================ */
.bus-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(200, 150, 90, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--espresso) 0%, #1E1E1C 100%);
}

.bus-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 24px auto 0;
    position: relative;
}

.bus-3d-model {
    position: absolute;
    width: 320px;
    height: 320px;
    top: -280px;
    left: 50%;
    transform: translateX(-50%) scale(0.5) translateY(50px);
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo), transform 0.8s var(--ease-out-back);
}

.bus-3d-model.active {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
}

.bus-3d-model model-viewer {
    width: 100%;
    height: 100%;
    background: transparent !important;
}

.bus-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s var(--ease-out-expo);
    width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bus-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

.bus-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(200, 150, 90, 0.2);
    border-color: rgba(200, 150, 90, 0.25);
}

.bus-card:hover::after {
    opacity: 1;
}

/* Bus card text on dark bg */
.bus-card .fleet-content h3 {
    color: var(--cream);
}

.bus-card .fleet-capacity {
    color: rgba(255, 255, 255, 0.5);
}

.bus-card .fleet-features li {
    color: rgba(255, 255, 255, 0.7);
}

.bus-card .fleet-content .btn {
    background: var(--amber);
    color: var(--espresso);
}

/* ================================
   Destinations — Scroll-Controlled Video
   ================================ */
.dest-video-section {
    background: var(--espresso) !important;
    padding: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: block !important;
}

.dest-video-section.active-section {
    overflow-y: auto !important;
    display: block !important;
}

/* Video Background — sticky within scrollable section */
.dest-video-bg {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.dest-video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-video-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.dest-video-dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 24, 0.3);
    pointer-events: none;
    z-index: 2;
}

/* Progress Bar — fixed overlay within section */
.dest-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 30;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dest-video-section.active-section .dest-progress {
    opacity: 1;
}

.dest-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--amber);
    transition: width 0.15s linear;
}

/* Counter — fixed overlay within section */
.dest-counter {
    position: fixed;
    top: 20px;
    right: 32px;
    z-index: 30;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dest-video-section.active-section .dest-counter {
    opacity: 1;
}

.dest-counter-current {
    color: var(--amber-light);
    font-weight: 600;
}

.dest-counter-sep {
    margin: 0 4px;
    opacity: 0.4;
}

/* Scroll Content — tall container to drive video scrub */
.dest-scroll {
    position: relative;
    z-index: 10;
    margin-top: -100vh;
}

/* Each slide = 100vh tall, content centered */
.dest-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 8% 80px;
    position: relative;
}

.dest-slide-inner {
    max-width: 420px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
    will-change: opacity, transform;
    /* Dark scrim behind text for readability on any video frame */
    background: linear-gradient(135deg, rgba(26, 26, 24, 0.75) 0%, rgba(26, 26, 24, 0.55) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dest-slide.is-visible .dest-slide-inner {
    opacity: 1;
    transform: translateY(0);
}

/* Intro Slide */
.dest-slide--intro {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dest-slide--intro .dest-slide-inner {
    max-width: 480px;
}

.dest-eyebrow {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 12px;
}

.dest-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--surface);
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.dest-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.dest-scroll-hint {
    animation: indicatorFloat 3s var(--ease-in-out-custom) infinite;
    color: rgba(255, 255, 255, 0.3);
}

/* Destination Slide Content */
.dest-region {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 8px;
    padding: 4px 12px;
    background: rgba(200, 150, 90, 0.12);
    border-radius: 4px;
    border: 1px solid rgba(200, 150, 90, 0.2);
}

.dest-name {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--surface);
    margin-bottom: 4px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.dest-loc {
    font-size: 0.78rem;
    color: var(--amber-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.dest-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 16px;
    font-weight: 300;
    max-width: 380px;
}

.dest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.dest-tags span {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.3px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.78rem;
}

/* Responsive — Destinations Video */
@media (max-width: 768px) {
    .dest-slide {
        padding: 60px 24px;
        align-items: flex-end;
        justify-content: flex-start;
    }

    .dest-slide-inner {
        max-width: 100%;
    }

    .dest-counter {
        margin-left: 24px;
    }

    .dest-name {
        font-size: 2rem;
    }

    .dest-heading {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .dest-slide {
        padding: 40px 16px 60px;
    }

    .dest-counter {
        margin-left: 16px;
        font-size: 0.65rem;
    }
}

/* ================================
   Villas Section (hidden)
   ================================ */
.villas-section {
    background: var(--cream);
}

.villas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 100px auto 20px;
    max-width: 900px;
    width: 100%;
}

.villa-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out-expo);
    opacity: 1;
    visibility: visible;
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.villa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 26, 24, 0.08);
    border-color: var(--amber-light);
}

.villa-image {
    height: 150px;
    background: linear-gradient(135deg, var(--espresso), var(--espresso-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.villa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.villa-card:hover .villa-image img {
    transform: scale(1.03);
}

.villa-image svg {
    width: 70px;
    height: 70px;
    color: rgba(255, 255, 255, 0.12);
}

.villa-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--amber);
    color: var(--espresso);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.villa-content {
    padding: 16px;
}

.villa-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--espresso);
    margin-bottom: 3px;
    font-weight: 400;
}

.villa-location {
    color: var(--warm-gray-light);
    margin-bottom: 6px;
    font-size: 0.78rem;
}

.villa-description {
    font-size: 0.75rem;
    margin-bottom: 10px;
    line-height: 1.45;
    color: var(--warm-gray);
    font-weight: 300;
}

.villa-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.villa-features span {
    padding: 4px 8px;
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--warm-gray);
}

.villa-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.villa-price-section .btn {
    padding: 8px 12px;
    font-size: 0.78rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--espresso);
}

.price-from, .price-per {
    font-size: 0.72rem;
    color: var(--warm-gray-light);
}

/* ================================
   Contact Section — Two Card Layout
   ================================ */
.contact-section {
    padding: 80px 0 30px;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(200, 150, 90, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(200, 150, 90, 0.03) 0%, transparent 40%),
        linear-gradient(160deg, #1E1E1C 0%, var(--espresso) 100%);
}

.contact-cards-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    max-width: 900px;
    margin: 80px auto 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 1;
    visibility: visible;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    border-radius: 0 0 2px 2px;
}

/* Message card — glass on dark */
.message-card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25) !important;
}

.message-card::before {
    background: linear-gradient(90deg, transparent, var(--amber-light), transparent) !important;
}

.message-card h3 {
    color: var(--cream) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.message-card .form-group label {
    color: rgba(255, 255, 255, 0.6);
}

.message-card .form-group input,
.message-card .form-group select,
.message-card .form-group textarea {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--cream);
}

.message-card .form-group input::placeholder,
.message-card .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.message-card .form-group input:focus,
.message-card .form-group select:focus,
.message-card .form-group textarea:focus {
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(200, 150, 90, 0.12);
}

.message-card .form-group select option {
    background: var(--espresso);
    color: var(--cream);
}

.message-card .btn {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    font-size: 0.88rem;
}

.message-card .developer-credit p {
    color: rgba(255, 255, 255, 0.3);
}

.message-card .developer-credit a {
    color: var(--amber-light);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.72rem;
    color: var(--espresso-light);
    margin-bottom: 5px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--espresso);
    background: var(--cream);
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-light);
    font-weight: 300;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(200, 150, 90, 0.08);
}

.contact-card .btn {
    padding: 10px 20px;
    font-size: 0.82rem;
    margin-top: 4px;
}

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.form-message.success {
    background: #ecf7ed;
    color: #2d6a2e;
    border: 1px solid #c6e7c7;
}

.form-message.error {
    background: #fdf0f0;
    color: #923131;
    border: 1px solid #eac8c8;
}

/* Contact Details Card — dark theme */
.details-card {
    background: var(--espresso) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

.details-card::before {
    background: linear-gradient(90deg, transparent, var(--amber-light), transparent) !important;
}

.details-card h3 {
    color: var(--cream) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.details-card .tagline {
    color: rgba(255, 255, 255, 0.5) !important;
}

.details-card .copyright {
    color: rgba(255, 255, 255, 0.3) !important;
    border-top-color: rgba(255, 255, 255, 0.06) !important;
}

.details-card .contact-info-row {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.details-card .contact-info-row strong {
    color: var(--amber-light);
}

.details-card .contact-info-row p {
    color: rgba(255, 255, 255, 0.85);
}

.details-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.details-card .details-top {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.card-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.tagline {
    font-size: 0.78rem;
    color: var(--warm-gray);
    margin: 0;
    line-height: 1.4;
    font-weight: 300;
}

.contact-info-list {
    margin-bottom: 16px;
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-info-row:last-child {
    border-bottom: none;
}

.contact-info-row strong {
    display: block;
    font-size: 0.65rem;
    color: var(--warm-gray-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-info-row p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--espresso);
    font-weight: 400;
}

.contact-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(200, 150, 90, 0.2);
}

.contact-icon svg {
    width: 16px;
    height: 16px;
    color: var(--surface);
    stroke: var(--surface);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    transition: all var(--transition-fast);
    letter-spacing: 0.2px;
}

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

.quick-btn.whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.quick-btn.phone {
    background: var(--amber);
    color: var(--espresso);
}

.quick-btn.phone:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 150, 90, 0.25);
}

.quick-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Copyright */
.copyright {
    font-size: 0.65rem;
    color: var(--warm-gray-light);
    text-align: center;
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

/* Developer Credit */
.developer-credit {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.developer-credit p {
    font-size: 0.72rem;
    color: var(--warm-gray-light);
    margin: 0;
}

.developer-credit a {
    color: var(--amber);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s var(--ease-out-expo);
}

.developer-credit a:hover {
    color: var(--amber-dark);
}

/* Social & Quick Links */
.social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.social-row span {
    font-size: 0.72rem;
    color: var(--espresso-light);
    font-weight: 500;
}

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

.social-icons a {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(200, 150, 90, 0.08);
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--amber);
    color: var(--surface);
    transform: translateY(-1px);
}

.quick-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    padding: 8px 0;
    border-top: 1px solid var(--border-light);
}

.quick-links-row a {
    padding: 4px 10px;
    background: var(--cream);
    color: var(--espresso-light);
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-light);
}

.quick-links-row a:hover {
    background: var(--amber);
    color: var(--espresso);
    border-color: var(--amber);
}

/* ================================
   Legacy Sections — Preserved Selectors
   ================================ */
.services-preview,
.why-choose-us,
.our-story,
.mission-vision,
.our-values,
.why-us-detailed,
.our-fleet,
.transport-services,
.why-transport,
.villa-collection,
.villa-showcase,
.villa-amenities,
.why-villas,
.why-villa,
.destinations-intro,
.destination-category,
.why-explore,
.tour-packages,
.quick-contact,
.cta-section {
    background: var(--cream);
}

/* Page Header */
.page-header {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, rgba(26, 26, 24, 0.85), rgba(26, 26, 24, 0.7));
    color: var(--surface);
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--surface);
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.7;
    font-weight: 300;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--surface);
    padding: 36px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 26, 24, 0.08);
    border-color: var(--amber-light);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: rgba(200, 150, 90, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--ease-out-expo);
}

.service-card:hover .service-icon {
    background: var(--amber);
    transform: scale(1.05);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--amber);
    transition: color 0.3s var(--ease-out-expo);
}

.service-card:hover .service-icon svg {
    color: var(--surface);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--espresso);
    margin-bottom: 12px;
    font-weight: 400;
}

.service-card p {
    color: var(--warm-gray);
    margin-bottom: 16px;
    line-height: 1.7;
    font-weight: 300;
}

.service-link {
    color: var(--amber);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    display: inline-block;
}

.service-link:hover {
    color: var(--amber-dark);
    transform: translateX(3px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-item {
    text-align: center;
    padding: 32px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 26, 24, 0.08);
    border-color: var(--amber-light);
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--amber);
    margin-bottom: 12px;
    opacity: 0.4;
    transition: all var(--transition-fast);
}

.feature-item:hover .feature-number {
    opacity: 1;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--espresso);
    font-weight: 400;
}

.feature-item p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-weight: 300;
}

/* Transport Services Grid */
.transport-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.transport-service-item {
    background: var(--surface);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.transport-service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 26, 24, 0.06);
    border-color: var(--amber-light);
}

.service-icon-large {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    background: rgba(200, 150, 90, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--ease-out-expo);
}

.transport-service-item:hover .service-icon-large {
    background: var(--amber);
}

.service-icon-large svg {
    width: 22px;
    height: 22px;
    color: var(--amber);
    transition: color 0.3s var(--ease-out-expo);
}

.transport-service-item:hover .service-icon-large svg {
    color: var(--surface);
}

.transport-service-item h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--espresso);
    margin-bottom: 5px;
    font-weight: 400;
}

.transport-service-item p {
    color: var(--warm-gray);
    line-height: 1.5;
    font-size: 0.75rem;
    font-weight: 300;
}

/* MV Cards */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.mv-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 26, 24, 0.08);
    border-color: var(--amber-light);
}

.mv-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: rgba(200, 150, 90, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--ease-out-expo);
}

.mv-card:hover .mv-icon {
    background: var(--amber);
}

.mv-icon svg {
    width: 28px;
    height: 28px;
    color: var(--amber);
    transition: color 0.3s var(--ease-out-expo);
}

.mv-card:hover .mv-icon svg {
    color: var(--surface);
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--espresso);
    font-weight: 400;
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--warm-gray);
    font-weight: 300;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.value-item {
    background: var(--surface);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 26, 24, 0.06);
    border-color: var(--amber-light);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    transition: all var(--transition-fast);
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-item h3 {
    font-family: var(--font-heading);
    color: var(--espresso);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 400;
}

.value-item p {
    color: var(--warm-gray);
    line-height: 1.65;
    font-weight: 300;
}

/* Why Us */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.why-us-item {
    padding: 28px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.why-us-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 26, 24, 0.06);
    border-color: var(--amber-light);
}

.why-us-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--amber);
    opacity: 0.25;
    margin-bottom: 8px;
    transition: all var(--transition-fast);
}

.why-us-item:hover .why-us-number {
    opacity: 0.8;
}

.why-us-item h3 {
    font-family: var(--font-heading);
    color: var(--espresso);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 400;
}

.why-us-item p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-weight: 300;
}

/* Why Transport */
.why-transport-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.why-transport-item {
    background: var(--surface);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.why-transport-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 26, 24, 0.06);
    border-color: var(--amber-light);
}

.why-transport-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--espresso);
    font-weight: 400;
}

.why-transport-item p {
    line-height: 1.7;
    color: var(--warm-gray);
    font-weight: 300;
}

/* CTA Section */
.cta-content {
    background: var(--surface);
    padding: 56px 48px;
    border-radius: 12px;
    max-width: 720px;
    margin: 0 auto;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--espresso);
    margin-bottom: 16px;
    font-weight: 400;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 32px;
    font-weight: 300;
}

/* Why Explore */
.why-explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-explore-item {
    background: var(--surface);
    padding: 28px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.why-explore-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 26, 24, 0.06);
    border-color: var(--amber-light);
}

.why-explore-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    transition: all var(--transition-fast);
}

.why-explore-item:hover .why-explore-icon {
    transform: scale(1.1);
}

.why-explore-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--espresso);
    margin-bottom: 8px;
    font-weight: 400;
}

.why-explore-item p {
    color: var(--warm-gray);
    line-height: 1.65;
    font-weight: 300;
}

/* Tour Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.package-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 26, 24, 0.08);
    border-color: var(--amber-light);
}

.package-header {
    background: var(--espresso);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-header.adventure-bg { background: #2d4a3d; }
.package-header.wellness-bg { background: #4a3d5b; }
.package-header.family-bg { background: #3d4a6b; }
.package-header.summer-bg { background: var(--amber-dark); }
.package-header.wonders-bg { background: #6b4a30; }

.package-duration {
    background: var(--surface);
    color: var(--espresso);
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.82rem;
}

.package-badge {
    background: var(--amber);
    color: var(--espresso);
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-content {
    padding: 24px;
}

.package-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--espresso);
    margin-bottom: 10px;
    font-weight: 400;
}

.package-description {
    color: var(--warm-gray);
    line-height: 1.65;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 300;
}

.package-itinerary {
    margin-bottom: 16px;
    padding: 16px;
    background: var(--cream);
    border-radius: 8px;
    border-left: 3px solid var(--amber);
}

.package-itinerary h4 {
    font-family: var(--font-heading);
    color: var(--espresso);
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.package-itinerary ul { list-style: none; }

.package-itinerary li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    color: var(--warm-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 300;
}

.package-itinerary li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--amber);
    opacity: 0.6;
}

.package-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.package-includes span {
    padding: 5px 10px;
    background: var(--cream);
    color: var(--warm-gray);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 400;
    border: 1px solid var(--border-light);
}

.package-content .btn {
    width: 100%;
    text-align: center;
}

.custom-package {
    margin-top: 48px;
    background: var(--surface);
    border-radius: 12px;
    padding: 48px 40px;
    text-align: center;
    border: 1px dashed var(--amber);
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.custom-package-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--espresso);
    margin-bottom: 12px;
    font-weight: 400;
}

.custom-package-content p {
    color: var(--warm-gray);
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Villa Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.amenity-item {
    text-align: center;
    padding: 28px;
    background: var(--surface);
    border-radius: 12px;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.amenity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 26, 24, 0.06);
    border-color: var(--amber-light);
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

/* Why Villas */
.why-villas-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-villa-card {
    padding: 28px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.why-villa-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 26, 24, 0.06);
    border-color: var(--amber-light);
}

.why-villa-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--amber);
    opacity: 0.15;
}

/* Quick Contact */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
    width: 100%;
}

.quick-contact-card {
    background: var(--surface);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(26, 26, 24, 0.04);
}

.quick-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 26, 24, 0.06);
    border-color: var(--amber-light);
}

.quick-contact-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--espresso);
    font-family: var(--font-heading);
    font-weight: 400;
}

.quick-contact-card p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--warm-gray);
    font-weight: 300;
}

.quick-contact-card .btn {
    padding: 8px 16px;
    font-size: 0.82rem;
}

.quick-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--espresso);
    color: var(--surface);
    padding: 40px 0 20px;
}

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

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    border-radius: 8px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--amber);
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 400;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 8px; }

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--amber-light);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-weight: 300;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(200, 150, 90, 0.12);
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--amber);
    color: var(--espresso);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
    font-weight: 300;
}



/* ================================
   RESPONSIVE — 1024px
   ================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .container { padding: 0 30px; }

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

    .contact-cards-wrapper {
        grid-template-columns: 1fr;
    }

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

/* ================================
   RESPONSIVE — 768px (Tablet)
   ================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .container { padding: 0 20px; }

    /* Navigation — Full Screen Overlay */
    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background: rgba(26, 26, 24, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 120px 40px 40px;
        gap: 24px;
        transition: right var(--transition-fast);
        justify-content: flex-start;
        align-items: center;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.15rem;
        padding: 10px 0;
    }

    .nav-link-cta {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .nav-logo {
        left: 15px;
        top: 8px;
    }

    .nav-logo img,
    .nav-logo video {
        height: 56px;
        width: 56px;
    }

    /* Hero */
    .hero {
        padding: 80px 20px;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        padding-left: 0;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    /* Carousel */
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-prev { left: 10px; }
    .carousel-next { right: 10px; }

    .carousel-dots {
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
    }

    .carousel-dot { width: 6px; height: 6px; }
    .carousel-dot.active { width: 20px; }

    .scroll-indicator {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    /* Destinations */
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 280px;
    }

    .destination-image { height: 85px; }

    .destinations-title { font-size: 1.3rem; }

    /* Section Titles */
    .section-title { font-size: 1.8rem; }

    /* Grids — single column */
    .services-grid,
    .features-grid,
    .fleet-grid,
    .transport-services-grid,
    .why-transport-content,
    .villas-grid,
    .amenities-grid,
    .why-villas-content,
    .values-grid,
    .quick-contact-grid,
    .packages-grid,
    .why-explore-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Transport — Full Screen Mobile Cards */
    #transport {
        padding: 0;
        min-height: 100vh;
    }

    #transport .container {
        padding: 0;
        max-width: 100%;
        height: 100%;
    }

    .fleet-grid {
        display: block;
        margin-top: 0;
        padding: 0;
        position: relative;
        min-height: 100vh;
        width: 100%;
    }

    .fleet-card {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 24px;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s var(--ease-out-expo);
        background: var(--espresso);
        border-radius: 0;
        border: none;
    }

    .fleet-card.active-card {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

    /* 3D Models on Mobile */
    .fleet-3d-model {
        position: fixed !important;
        top: 10vh !important;
        left: 50% !important;
        transform: translateX(-50%) scale(1) !important;
        width: 35vw !important;
        height: 35vw !important;
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 280px !important;
        max-height: 280px !important;
        z-index: 99999 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        display: block !important;
        pointer-events: none;
    }

    .fleet-3d-model.active {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        transform: translateX(-50%) scale(1) !important;
    }

    /* Villas — Full Screen */
    #villas { padding: 0; min-height: 100vh; }
    #villas .container { padding: 0; max-width: 100%; height: 100%; }

    .villas-grid {
        display: block;
        margin-top: 0;
        padding: 0;
        position: relative;
        min-height: 100vh;
        width: 100%;
    }

    .villa-card {
        position: absolute;
        top: 0; left: 0; right: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 24px;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s var(--ease-out-expo);
        background: var(--cream);
        border-radius: 0;
        border: none;
    }

    .villa-card.active-card {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

    /* Contact — Full Screen */
    .contact-section { padding: 0; min-height: 100vh; }
    .contact-section .container { padding: 0; max-width: 100%; height: 100%; }

    .contact-cards-wrapper {
        display: block;
        margin-top: 0;
        padding: 0;
        position: relative;
        min-height: 100vh;
        width: 100%;
    }

    .contact-card {
        position: absolute;
        top: 0; left: 0; right: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 24px;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s var(--ease-out-expo);
        background: var(--espresso);
        border-radius: 0;
        border: none;
    }

    .contact-card.active-card {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

    /* Contact Details — Mobile */
    .details-card {
        padding: 24px !important;
        text-align: center;
    }

    .details-top {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .details-top .card-logo {
        width: 56px;
        height: 56px;
    }

    .details-top .tagline {
        font-size: 0.85rem;
        text-align: center;
        max-width: 280px;
    }

    .contact-info-list {
        margin-bottom: 20px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 12px;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        text-align: left !important;
    }

    .contact-info-row {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center;
        padding: 12px;
        gap: 12px;
        border-bottom: none;
        border-radius: 8px;
        margin-bottom: 6px;
        background: rgba(255, 255, 255, 0.05);
        text-align: left !important;
    }

    .contact-info-row > div:last-child {
        text-align: left !important;
        flex: 1;
    }

    .contact-info-row:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .contact-info-row strong {
        font-size: 0.68rem;
        color: var(--amber);
    }

    .contact-info-row p {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--espresso);
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: rgba(200, 150, 90, 0.1);
        border-radius: 10px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .quick-actions {
        gap: 10px;
        margin-bottom: 20px;
    }

    .quick-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .quick-links-row {
        justify-content: center;
        gap: 8px;
        padding: 12px 0;
        margin-bottom: 12px;
    }

    .quick-links-row a {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .social-row {
        justify-content: center;
        padding: 12px 0;
        margin-bottom: 8px;
        gap: 10px;
    }

    .social-row span { font-size: 0.82rem; }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.72rem;
    }

    .copyright { font-size: 0.72rem; margin-top: 8px; }

    /* Cards Padding */
    .service-card,
    .feature-item,
    .transport-service-item,
    .why-transport-item,
    .amenity-item,
    .why-villa-card,
    .value-item,
    .why-us-item,
    .mv-card,
    .quick-contact-card {
        padding: 24px 20px;
    }

    .story-text {
        padding: 28px 24px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Loading */
    .loading-bar { width: 160px; }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .footer-logo { margin: 0 auto 12px; }
    .social-links { justify-content: center; }

    /* Bus */
    .bus-grid {
        margin: 40px auto 0;
        max-width: 280px;
    }

    .bus-3d-model {
        width: 200px;
        height: 200px;
        top: -180px;
    }

    .bus-card { max-width: 280px; }

}

/* ================================
   RESPONSIVE — 576px (Mobile)
   ================================ */
@media (max-width: 576px) {
    :root {
        --section-padding: 50px 0;
    }

    .container { padding: 0 15px; }

    .nav-logo {
        left: 10px;
        top: 10px;
    }

    .nav-logo img,
    .nav-logo video {
        height: 48px;
        width: 48px;
    }

    .hamburger { margin-right: 10px; }

    .nav-menu { padding: 90px 25px 40px; }

    /* Hero */
    .hero {
        padding: 60px 15px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 28px;
        padding: 0 5px;
    }

    .hero-buttons .btn {
        max-width: 100%;
        font-size: 0.85rem;
    }

    /* Carousel */
    .carousel-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }

    .carousel-dots { bottom: 80px; gap: 8px; }
    .carousel-dot { width: 6px; height: 6px; }
    .carousel-dot.active { width: 16px; }

    /* Section Titles */
    .section-title { font-size: 1.5rem; }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    /* Cards */
    .service-card,
    .feature-item,
    .fleet-card,
    .transport-service-item,
    .why-transport-item,
    .villa-card,
    .amenity-item,
    .why-villa-card,
    .value-item,
    .why-us-item,
    .mv-card,
    .quick-contact-card {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .fleet-content { padding: 20px 16px; }
    .fleet-content h3 { font-size: 1.3rem; }

    .villa-image { height: 200px; }
    .villa-content { padding: 20px 16px; }
    .villa-content h3 { font-size: 1.3rem; }

    .villa-price-section {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .villa-price-section .btn {
        width: 100%;
        text-align: center;
    }

    .story-text {
        padding: 24px 18px;
        border-radius: 10px;
    }

    .story-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Form */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px;
        font-size: 0.9rem;
    }

    /* Page Header */
    .page-header { padding: 100px 15px 50px; }
    .page-title { font-size: 1.8rem; }
    .page-subtitle { font-size: 0.95rem; }

    .price-amount { font-size: 1.6rem; }

    .feature-number,
    .why-us-number,
    .why-villa-number {
        font-size: 2.2rem;
    }


    /* Legacy Loading */
    .loading-bar { width: 140px; }

    /* CTA */
    .cta-section { padding: 60px 15px; }

    .cta-content {
        padding: 28px 20px;
        border-radius: 10px;
    }

    .cta-content h2 { font-size: 1.5rem; }
    .cta-content p { font-size: 0.95rem; margin-bottom: 24px; }

    .custom-package {
        padding: 28px 18px;
    }

    .custom-package-content h3 { font-size: 1.2rem; }
    .custom-package-content p { font-size: 0.92rem; }

    /* Tour Packages */
    .package-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 16px 20px;
    }

    .package-content { padding: 20px; }
    .package-content h3 { font-size: 1.2rem; }
    .package-itinerary { padding: 12px; }

    .package-includes span {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .value-icon { font-size: 2rem; }
    .amenity-icon { font-size: 2rem; }
    .why-explore-icon { font-size: 2rem; }
    .quick-icon { font-size: 1.6rem; }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .footer { padding: 24px 0 12px; }

    .footer-col p,
    .footer-col li { font-size: 0.8rem; }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.72rem;
    }
}

/* ================================
   Responsive — Hero Legacy 1200px
   ================================ */

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-col h4 { font-size: 1rem; margin-bottom: 10px; }
    .footer-logo { height: 42px; }
}

/* ================================
   Consistent Section Title Styling
   ================================ */
.our-story .section-title,
.mission-vision .section-title,
.our-values .section-title,
.why-us-detailed .section-title,
.our-fleet .section-title,
.transport-services .section-title,
.why-transport .section-title,
.villa-collection .section-title,
.villa-showcase .section-title,
.villa-amenities .section-title,
.why-villa .section-title,
.why-villas .section-title,
.contact-section .section-title,
.quick-contact .section-title,
.services-preview .section-title,
.why-choose-us .section-title,
.destinations-intro .section-title,
.destination-category .section-title,
.why-explore .section-title,
.tour-packages .section-title {
    color: var(--espresso);
}

.our-story .section-subtitle,
.mission-vision .section-subtitle,
.our-values .section-subtitle,
.why-us-detailed .section-subtitle,
.our-fleet .section-subtitle,
.transport-services .section-subtitle,
.why-transport .section-subtitle,
.villa-collection .section-subtitle,
.villa-showcase .section-subtitle,
.villa-amenities .section-subtitle,
.why-villa .section-subtitle,
.why-villas .section-subtitle,
.contact-section .section-subtitle,
.quick-contact .section-subtitle,
.services-preview .section-subtitle,
.why-choose-us .section-subtitle,
.destinations-intro .section-subtitle,
.destination-category .section-subtitle,
.why-explore .section-subtitle,
.tour-packages .section-subtitle {
    color: var(--warm-gray);
}

/* ================================
   Focus States (Accessibility)
   ================================ */
.btn:focus-visible,
.nav-link:focus-visible,
.carousel-arrow:focus-visible,
.carousel-dot:focus-visible,
.quick-btn:focus-visible,
.social-icons a:focus-visible,
.social-links a:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 2px;
}

a:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 2px;
}
