/* 
   ══════════════════════════════════════
   BASSWOODS: MODERN MINIMALIST SYSTEM
   ══════════════════════════════════════
   Clean. Precise. Award-Winning.
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* ═══════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════ */
:root {
    font-size: 16px; /* Standardizing root for stable rem-calc at 1440p */
    --rich-black: #0a0a0a;
    --deep-charcoal: #141414;
    --surface: #1a1a1a;
    --gold: #d4af37;
    --gold-light: #f9e29a;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9e29a 50%, #c5a028 100%);
    --white: #ffffff;
    --white-muted: rgba(255,255,255,0.7);
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.08);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-impact: 'Impact', 'Arial Narrow Bold', sans-serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.6s var(--ease);

    --space-xs: 0.25rem;
    --space-s: 0.5rem;
    --space-m: 1rem;
    --space-l: clamp(1rem, 2vw, 1.5rem);
    
    /* Gaps & Containers Optimized for 375-1920 */
    --section-gap: clamp(2.5rem, 8vw, 6rem); 
    --component-gap: clamp(1rem, 2vw, 2rem); 
    --card-padding: clamp(1.25rem, 2.5vw, 2rem); 
    --container-width: 1400px; 
    --container-wide: 1600px;  
    --radius: 0.75rem;
    --r-lg:    32px; /* Masterclass Roundedness */
    
    /* ═══════════════════════════════
       LIQUID GLASS PRIMITIVES (ID #34)
       ═══════════════════════════════ */
    --liquid-bg: rgba(255, 255, 255, 0.04);
    --liquid-border: rgba(212, 175, 55, 0.25);
    --liquid-blur: blur(40px) saturate(200%);
    --m-shadow: 0 40px 100px rgba(0,0,0,0.6); /* Masterclass Depth */
    --hologram-glow: 0 0 30px rgba(212, 175, 55, 0.15);
    
    /* ═══════════════════════════════
       MINIMALIST PRIMITIVES (ID #84)
       ═══════════════════════════════ */
    --thin-gold: 1px solid rgba(212, 175, 55, 0.15);
    --minimal-glass: rgba(255, 255, 255, 0.01);
    --soft-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ═══════════════════════════════
   CONTAINER SYSTEM (NEW RULESET)
   ═══════════════════════════════ */
/* BASE = Mobile (320px - 767px) */
.container, .container-wide, .container-tight { 
    width: 100%; 
    padding: 0 clamp(1rem, 5vw, 4rem); 
    margin: 0 auto; 
    position: relative; 
}

/* TABLET (768px and up) */
@media (min-width: 768px) {
  .container, .container-wide, .container-tight { padding: 0 clamp(2rem, 4vw, 5rem); }
}

/* DESKTOP (1024px and up) */
@media (min-width: 1024px) {
  .container { max-width: var(--container-width); }
  .container-wide { max-width: var(--container-wide); }
  .container-tight { max-width: 800px; }
}

/* WIDE DESKTOP (1440px and up) */
@media (min-width: 1440px) {
  .container { max-width: 1400px; }
  .container-wide { max-width: 1600px; }
}

/* ═══════════════════════════════
   RESET & BASE
   ═══════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    background-color: var(--rich-black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

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

ul { list-style: none; }

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

/* ═══════════════════════════════
   TYPOGRAPHY HIERARCHY
   ═══════════════════════════════
   Following User Golden Scaling Rules
*/
h1 { font-size: clamp(2.5rem, 10vw, 6.5rem); line-height: 0.95; font-family: var(--font-impact); text-transform: uppercase; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 6vw, 3.5rem); line-height: 1.1; font-family: var(--font-heading); font-weight: 700; color: var(--white); }
h3 { font-size: clamp(1.2rem, 4vw, 2.2rem); line-height: 1.2; font-family: var(--font-impact); }
p  { font-size: clamp(0.9rem, 2vw, 1.05rem); line-height: 1.7; opacity: 0.85; }

/* Eyebrow Labels */
.section-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

/* Section Titles */
h3, .premium-font {
    font-family: var(--font-impact);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em; /* Refined for modern professional feel */
    line-height: 1.05;
    color: var(--white);
}

.premium-h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.85;
}

/* Card Titles */
h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ═══════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════ */
.bg-deep-charcoal { background-color: var(--deep-charcoal) !important; }
.bg-black { background-color: var(--rich-black) !important; }
.centered-layout { text-align: center !important; }

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    font-size: clamp(1.2rem, 7vw, 2.5rem); /* Refined for better mobile parity */
}

/* ═══════════════════════════════
   GLASS VISUAL SYSTEM
   ═══════════════════════════════ */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.4),
        inset 0 1px 1px rgba(255,255,255,0.05);
    transition: 0.5s var(--ease);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-10px);
}

/* ═══════════════════════════════
   BENTO BOX SYSTEM (ID #21)
   ═══════════════════════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
}

.bento-item {
    position: relative;
    overflow: hidden;
    grid-column: span 1;
    grid-row: span 1;
}

.bento-2x2 { grid-column: span 2; grid-row: span 2; }
.bento-2x1 { grid-column: span 2; grid-row: span 1; }
.bento-1x2 { grid-column: span 1; grid-row: span 2; }

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .bento-grid { display: flex; flex-direction: column; }
    .bento-item { height: 350px; }
}

/* ═══════════════════════════════
   LIQUID GLASS (ID #34)
   ═══════════════════════════════ */
.liquid-glass {
    background: var(--liquid-bg);
    backdrop-filter: var(--liquid-blur);
    -webkit-backdrop-filter: var(--liquid-blur);
    border: 1px solid var(--liquid-border);
    border-radius: var(--r-lg);
    box-shadow: var(--m-shadow);
    transition: 0.8s var(--ease);
}

.liquid-glass:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 50px 120px rgba(0,0,0,0.8), var(--hologram-glow);
}

/* ═══════════════════════════════
   MINIMALIST UTILITIES (ID #84)
   ═══════════════════════════════ */
.ghost-card {
    background: var(--minimal-glass);
    border: var(--thin-gold);
    border-radius: var(--radius);
    padding: var(--card-padding);
    transition: 0.8s var(--ease);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ghost-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
}

.ultra-thin {
    font-weight: 200;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-size: 0.65rem;
    color: var(--white-muted);
}

.massive-whitespace {
    padding: clamp(6rem, 15vw, 12rem) 0;
}

/* RESPONSIVE IMAGE ARCHITECTURE (ID #84) */
.img-responsive-lg {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.img-responsive-md {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .img-responsive-lg { height: 350px; }
    .img-responsive-md { height: 300px; }
    .flex-responsive { flex-direction: column !important; gap: 3rem !important; }
}

.radial-blur-accent {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -1; /* Always behind content */
}

.tours-listings-item, .vehicle-card {
    background: var(--deep-charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.tours-listings-item:hover, .vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--gold);
}

.tours-listings-media {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    background: #000;
}

.tours-listings-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.tours-listings-item:hover .tours-listings-media img, 
.vehicle-card:hover .tours-listings-media img {
    transform: scale(1.1);
}

.tours-listings-details {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: var(--space-m) 0;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}

.gold-glow { text-shadow: none; }

.section-padding, .section {
    padding: clamp(3rem, 8vw, var(--section-gap)) 0;
    position: relative;
    z-index: 10;
}

.spacer-large {
    height: clamp(4rem, 10vw, 12rem);
}

.spacer-medium {
    height: clamp(2rem, 5vw, 6rem);
}

/* Golden Rule Helpers */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.flex-row > * {
  flex: 1 1 280px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: var(--component-gap);
  width: 100%;
}

.vehicle-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.vehicle-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.1);
}

.card {
    padding: clamp(16px, 3vw, 32px);
    transition: var(--transition);
}

/* ═══════════════════════════════
   ALGORITHMIC GRID SYSTEM
   ═══════════════════════════════ */
.grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(var(--min-col-width, 320px), 100%), 1fr));
    gap: var(--space-l);
    width: 100%;
}

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

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

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

/* Hero Shell (Unified below) */

/* Section heading refined */
.section-heading-centered {
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* ═══════════════════════════════
   BUTTONS
   ═══════════════════════════════ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px; /* Reduced for sleekness */
    background: var(--gold-gradient);
    color: var(--rich-black);
    padding: 10px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-2px);
    background: var(--white);
    color: var(--rich-black);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Mobile button overrides consolidated at end of file */

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--rich-black);
    transform: translateY(-2px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 32px;
    background: var(--gold-gradient);
    color: var(--rich-black);
    border-radius: var(--radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-l);
    filter: brightness(1.1);
}

.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.card-btn:hover {
    background: var(--gold);
    color: var(--rich-black);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 44px;
    background: var(--gold-gradient);
    color: var(--rich-black);
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-hero:hover {
    transform: scale(1.05);
    background: var(--white);
}

.btn-enquire-v {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-enquire-v:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-book-v {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--rich-black);
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-book-v:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--white-muted);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--gold);
    color: var(--rich-black);
    border-color: var(--gold);
}

.tab-btn:hover:not(.active) {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
}

/* ═══════════════════════════════
   NAVIGATION
   ═══════════════════════════════ */
.nav-premium {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    text-decoration: none;
}

.nav-logo img {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 22px; /* Reduced from 28px to fit more links */
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.7rem; /* Slightly smaller for density */
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.nav-links a {
    opacity: 0.7;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.nav-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Burger Menu */
.nav-toggle { display: none; }

.nav-toggle-label {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 14px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--gold);
    height: 2px;
    width: 25px;
    position: relative;
    transition: var(--transition);
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before { bottom: 8px; }
.nav-toggle-label span::after { top: 8px; }

@media (max-width: 1023px) {
    .nav-toggle-label {
        display: block;
    }
    .destination-split {
        flex-direction: column;
        text-align: left;
        gap: 2rem;
    }
    .dest-cube-container, .dest-img-stack {
        max-width: 100%;
        width: 100%;
        min-height: auto !important;
    }
    .dest-cube-img, .dest-img-stack img {
        width: 150px !important;
        height: 150px !important;
        aspect-ratio: 1/1 !important;
        object-fit: cover !important;
        margin: 0;
    }
    .dest-content {
        padding-left: 0 !important;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--deep-charcoal);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
        padding: 40px;
    }
    .nav-toggle:checked ~ .nav-links { right: 0; }
    .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
    .nav-toggle:checked ~ .nav-toggle-label span::before { transform: rotate(45deg); bottom: 0; }
    .nav-toggle:checked ~ .nav-toggle-label span::after { transform: rotate(-45deg); top: 0; }
}

/* ═══════════════════════════════
   HERO SECTION
   ═══════════════════════════════ */
.hero-premium {
    min-height: 60vh;
    height: auto;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    padding: 60px 0; /* Reduced to fit laptop fold better */
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.35);
    transform: scale(1.05);
    transition: transform 12s linear;
}

@media (hover: hover) {
    .hero-premium:hover .hero-bg-img {
        transform: scale(1);
    }
}

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

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 25px;
    color: var(--gold);
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(2rem, 10vw, 6rem); /* Reduced minimum for phone screens */
    line-height: 0.95;
    margin-bottom: var(--space-m);
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.04em;
    font-family: var(--font-impact) !important;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-action {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: clamp(0.1em, 2vw, 0.5em); /* Fluid letter-spacing */
    font-size: 0.12em;
    color: var(--gold);
    opacity: 0.8;
}

.hero-title .gold-text {
    font-family: var(--font-impact) !important;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.mission-text {
    font-size: 1rem;
    opacity: 0.75;
    margin-bottom: var(--space-l);
    font-weight: 400;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-m);
    flex-wrap: wrap;
}

.hero-btns > * {
    flex: 0 1 auto !important; /* Stop stretching */
    width: auto !important;
    min-width: 150px;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto var(--space-l);
    opacity: 0.7;
}

/* ═══════════════════════════════
   STATS GRID
   ═══════════════════════════════ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-l);
    text-align: center;
}

.stat-item h2 {
    font-family: var(--font-impact) !important;
    font-size: clamp(2.5rem, 4vw, 4rem) !important; /* Responsive scaling for stats */
    letter-spacing: 0 !important;
    margin-bottom: 5px;
    color: var(--gold);
}

.stat-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ═══════════════════════════════
   ADVENTURE CARDS (CORE SERVICES)
   ═══════════════════════════════ */
.adventure-section { width: 100%; }

.adventure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--component-gap);
    margin-top: 30px;
}

.adventure-card {
    position: relative;
    width: 100%;
    min-height: 380px; 
    height: auto;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    background: var(--deep-charcoal);
    transition: var(--transition);
}

.adventure-card:hover {
    border-color: var(--gold);
}

/* ═══════════════════════════════
   TESTIMONIALS & QUOTES
   ═══════════════════════════════ */
.quote-ico {
    font-size: 1.2rem;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-m);
}

.quote-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--white-muted);
    margin-bottom: var(--space-l);
    font-style: italic;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: var(--space-m);
    border-top: 1px solid var(--glass-border);
    padding-top: var(--space-m);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--rich-black);
    font-size: 0.8rem;
}

.author-name {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.author-meta {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════
   TABLES & REPOSITORY
   ═══════════════════════════════ */
.table-container {
    overflow-x: auto;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    margin: var(--space-l) 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Reduced from 800px to avoid extreme scrolls */
}

th {
    text-align: left;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--gold);
}

td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--white-muted);
}


@media (hover: hover) {
    .adventure-card:hover .adventure-card-img {
        transform: scale(1.05);
        filter: brightness(0.75);
    }
}

.adventure-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.adventure-card-title {
    font-family: var(--font-impact) !important;
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.adventure-card-text {
    opacity: 0.7;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.adventure-card-link {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
}

/* ═══════════════════════════════
   RITUAL PARALLAX
   ═══════════════════════════════ */
.ritual-parallax {
    height: 80vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ritual-parallax::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.ritual-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}


/* ═══════════════════════════════
   ADVANTAGE GRID
   ═══════════════════════════════ */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-l);
}

.advantage-card {
    padding: var(--space-l);
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.advantage-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.advantage-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.advantage-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.advantage-card p {
    opacity: 0.65;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ═══════════════════════════════
   DESTINATION SPLIT
   ═══════════════════════════════ */
.destination-split {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.dest-img-stack img {
    width: 65%;          /* Adjust width as needed */
    aspect-ratio: 1/1;   /* Forces the cube shape */
    object-fit: cover;   /* Ensures the image fills the cube without stretching */
}


.dest-img-stack img {
    position: absolute;
    width: 70%;
    height: 75%;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    transition: transform 0.6s ease;
}

@media (hover: hover) {
    .dest-img-stack img:hover {
        transform: scale(1.03);
        z-index: 10;
    }
}

.dest-img-1 { top: 0; left: 0; z-index: 1; }
.dest-img-2 { bottom: 0; right: 0; z-index: 2; transform: translate(15px, 15px); }

.dest-content { flex: 1; }

/* ═══════════════════════════════
   TECHNICAL GRID
   ═══════════════════════════════ */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.tech-item {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 25px;
    transition: var(--transition);
}

.tech-item:hover {
    border-color: var(--gold);
}

.tech-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.tech-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.tech-item p {
    font-size: 0.85rem;
    opacity: 0.65;
    line-height: 1.7;
}

/* ═══════════════════════════════
   CINEMATIC VIDEO
   ═══════════════════════════════ */
.cinematic-video-shell {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rich-black);
}

.cinematic-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.5;
    filter: contrast(1.1);
}

.cinematic-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

/* ═══════════════════════════════
   CATEGORY BUCKETS (ADVENTURE HUB)
   ═══════════════════════════════ */
.bucket-card {
    background: var(--surface);
    padding: var(--card-padding);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    cursor: pointer;
}

.bucket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212,175,55,0.05), transparent);
    pointer-events: none;
}

.bucket-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: var(--deep-charcoal);
}

.bucket-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.bucket-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.3));
}

.bucket-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: 0.1em;
}

.bucket-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--white-muted);
    max-width: 250px;
}

/* ═══════════════════════════════
   REGIONAL PORTFOLIO DECK
   ═══════════════════════════════ */
.region-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: var(--space-l);
}

.region-card {
    position: relative;
    min-height: 450px;
    height: auto;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--deep-charcoal);
}

.region-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease), opacity 0.8s ease;
    opacity: 0.75;
}

@media (hover: hover) {
    .region-card:hover .region-card-img {
        opacity: 1;
        transform: scale(1.05);
    }
}

.region-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-l);
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    z-index: 2;
}

.region-tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

/* ═══════════════════════════════
   GUIDE SPOTLIGHT
   ═══════════════════════════════ */
.guide-spotlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    align-items: center;
}

.guide-img {
    width: 100%;
    min-height: 400px;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}

/* ═══════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════ */
.testimonial-card {
    background: var(--surface);
    padding: var(--space-l);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    position: relative;
}

.testimonial-card i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    opacity: 0.85;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.testimonial-meta {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ═══════════════════════════════
   CTA SECTION
   ═══════════════════════════════ */
.cta-title {
    font-family: var(--font-impact) !important;
    font-size: clamp(2rem, 5vw, 4rem) !important;
    margin-bottom: var(--space-m);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.cta-title em {
    font-style: italic;
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: var(--space-m);
}

/* ═══════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════ */
.faq-container {
    max-width: 800px;
    margin: var(--space-l) auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 18px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
}

.faq-question i {
    transition: var(--transition);
    color: var(--gold);
    font-size: 1.1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    opacity: 0.65;
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active i { transform: rotate(45deg); }

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.footer-premium {
    padding: 3rem 5% 2rem;
    background: #050505;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-about {
    opacity: 0.55;
    margin-bottom: 25px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    opacity: 0.5;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

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

.footer-social a {
    font-size: 1.1rem;
    opacity: 0.5;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    opacity: 0.4;
    font-size: 0.8rem;
}

/* ═══════════════════════════════
   SCROLL REVEAL & VISIBILITY (Safe Mode)
   ═══════════════════════════════ */
.reveal, .rev, .rev-left, .rev-right {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    will-change: transform, opacity;
}

/* Fallback: if browser doesn't support IntersectionObserver or if we want better initial load */
@media (prefers-reduced-motion: reduce) {
    .reveal, .rev, .rev-left, .rev-right {
        opacity: 1 !important;
        transform: none !important;
    }
}

.rev-left { transform: translateX(-30px); }
.rev-right { transform: translateX(30px); }

.reveal.is-visible, 
.rev.is-visible, 
.rev-left.is-visible, 
.rev-right.is-visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Staggered Delay Utilities */
.delay-1 { transition-delay: 100ms !important; }
.delay-2 { transition-delay: 200ms !important; }
.delay-3 { transition-delay: 300ms !important; }
.delay-4 { transition-delay: 400ms !important; }
.delay-5 { transition-delay: 500ms !important; }
.delay-6 { transition-delay: 600ms !important; }
.delay-7 { transition-delay: 700ms !important; }
.delay-8 { transition-delay: 800ms !important; }

/* Text Fade Reveal */
.fade-up-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.fade-up-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tab System Visibility */
.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-panel.active {
    display: block !important;
}

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

/* ═══════════════════════════════
   FINAL RESPONSIVE CONSOLIDATION
   ═══════════════════════════════ */

/* TABLET (≤1300px) */
@media (max-width: 1300px) {
    .nav-toggle-label { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--deep-charcoal);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
        padding: 50px;
    }
    .nav-toggle:checked ~ .nav-links { right: 0; }
    .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
    .nav-toggle:checked ~ .nav-toggle-label span::before { transform: rotate(45deg); bottom: 0; }
    .nav-toggle:checked ~ .nav-toggle-label span::after { transform: rotate(-45deg); top: 0; }
    
    .region-deck { grid-template-columns: 1fr 1fr; }
}

/* SMARTPHONE & TABLET (≤768px) */
@media (max-width: 768px) {
    .section-padding { padding: var(--space-l) 5%; }
    
    /* Global Buttons: High-Density & Precise */
    .btn-gold, .btn-outline, .btn-primary, .btn-hero { 
        width: auto !important;
        display: inline-flex !important;
        padding: 8px 16px !important; 
        font-size: 0.8rem !important; 
        min-height: 40px !important;
    }

    .hero-title {
        font-size: clamp(1.8rem, 12vw, 3rem) !important;
        line-height: 0.95;
    }

    .hero-content { padding: 0 15px; }

    .hero-btns {
        flex-direction: row; /* Definitively side-by-side */
        gap: 6px !important; /* Tight gap for urban-tech look */
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-top: 1.2rem;
        flex-wrap: nowrap !important; /* Force single line density */
    }

    .hero-btns > * {
        width: auto !important;
        min-width: 0 !important; 
        flex: 0 0 auto !important;
    }

    .mission-text { font-size: 0.85rem; opacity: 0.7; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-item h2 { font-size: 2rem !important; }
    .adventure-grid { grid-template-columns: 1fr; }
    .adventure-card { height: 350px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
    .elev-card { padding: 1.2rem; }

    /* Curated Regions Mobile: High-Density Mini-Cube */
    .destination-split {
        flex-direction: column;
        text-align: left;
        gap: 2rem;
    }
    .dest-cube-container, .dest-img-stack {
        max-width: 100%;
        width: 100%;
        min-height: 200px !important;
    }
    .dest-cube-img, .dest-img-stack img {
        width: 220px !important;
        height: 220px !important;
        aspect-ratio: 1/1 !important;
        object-fit: cover !important;
        margin: 0;
    }
    .dest-img-1 { top: 0; left: 0; }
    .dest-img-2 { top: 40px; left: 40px; }
    .dest-content {
        padding-left: 0 !important;
    }

    /* Tours & Listings Mobile: Edge-to-Edge */
    .tours-listings-media img {
        object-fit: cover !important;
        height: 100% !important;
    }
    .tours-listings-details {
        padding: 1.5rem !important;
    }
}

/* ═══════════════════════════════
   PREMIUM MODAL & FORMS
   ═══════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

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

.modal-box {
    background: var(--deep-charcoal);
    border: 1px solid var(--gold);
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius);
    overflow: hidden;
    animation: modalSlide 0.6s var(--ease) forwards;
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-head {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-head-title {
    font-family: var(--font-impact);
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: var(--gold);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
}

.modal-close:hover { opacity: 1; }

.modal-body {
    padding: 2rem;
}

/* FORM ELEMENTS */
.f-grp {
    margin-bottom: 1.5rem;
}

.f-lbl {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 8px;
}

.f-ctrl {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    padding: 14px 18px;
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.f-ctrl:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.06);
}

.f-ctrl::placeholder {
    color: var(--white-muted);
    opacity: 0.3;
}

/* SMALL PHONE (≤480px) */
@media (max-width: 480px) {
    .modal-box { max-width: 100%; }
    .modal-body { padding: 1.5rem; }
    .hero-title { font-size: 2.2rem !important; }
}
/* ═══════════════════════════════
   RESPONSIVE ALIGNMENT HARDENING
   ═══════════════════════════════ */
@media (max-width: 768px) {
    .img-responsive-md, 
    .site-menu-images-item img,
    .hero-bg img,
    section img {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .grid, .container {
        text-align: center;
    }
    
    .section-title, .section-eyebrow, .ultra-thin {
        text-align: center !important;
    }

    /* Vehicle Card Button Centering */
    article div[style*="align-items: flex-end"] {
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    article .btn-gold {
        width: 100%;
        text-align: center;
        padding: 1.2rem 0 !important;
    }
}
