/*
 * NARAYANA KARIMUNJAWA
 * Marriott-Inspired Clean Luxury Design System
 * ─────────────────────────────────────────────
 */

/* ═══════════════════════════════════════
   VARIABLES & RESET
   ═══════════════════════════════════════ */
:root {
    /* Marriott-inspired palette */
    --white: #ffffff;
    --black: #1c1c1c;
    --dark: #2d2926;
    --charcoal: #3d3935;
    --warm-gray: #6b6560;
    --mid-gray: #9b9690;
    --light-gray: #d5d0cb;
    --pale-gray: #f0eeeb;
    --cream: #f7f5f2;
    --bg: #fafaf8;
    
    /* Brand accent */
    --gold: #b4975a;
    --gold-light: #d4b87a;
    --gold-dark: #8a7340;
    
    /* Functional */
    --success: #2d8a4e;
    --warning: #c8860a;
    --error: #c0392b;
    --info: #2874a6;
    
    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    
    /* Spacing */
    --container: 1200px;
    --section-pad: 60px;
    --radius: 4px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    
    /* Shadows — Marriott uses very subtle shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 50px rgba(0,0,0,0.12);
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.25s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY — Clean Marriott style
   ═══════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    color: var(--warm-gray);
    font-size: 15px;
    line-height: 1.7;
    max-width: 600px;
}

.section-desc.center { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }

/* ═══════════════════════════════════════
   BUTTONS — Marriott flat, minimal radius
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn-primary:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}
.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--black);
}
.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}
.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--cream);
}

.btn-lg {
    padding: 13px 28px;
    font-size: 12px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 12px;
}

.btn-block { width: 100%; }

.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   NAVIGATION — Marriott-style clean top bar
   ═══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s var(--ease);
    height: 68px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    height: 60px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
    transition: color 0.4s var(--ease);
    white-space: nowrap;
    line-height: 1.15;
}

.brand-sub {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 1px;
    transition: color 0.4s var(--ease);
    line-height: 1;
}

.navbar.scrolled .brand-logo { color: var(--black); }
.navbar.scrolled .brand-sub { color: var(--mid-gray); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links li a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s var(--ease);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    transform: scaleX(1);
}

.navbar.scrolled .nav-links li a {
    color: var(--dark);
}

.nav-links li a:hover {
    color: var(--white);
}

.navbar.scrolled .nav-links li a:hover {
    color: var(--black);
}

.nav-book-btn {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    margin-left: 12px;
}

.nav-book-btn::after { display: none !important; }

.nav-book-btn:hover {
    background: var(--gold-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}

.navbar.scrolled .nav-toggle span {
    background: var(--black);
}

/* Mobile nav overlay backdrop */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ═══════════════════════════════════════
   HERO — Luxury Fullscreen with Room Cards
   ═══════════════════════════════════════ */
.luxury-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    background: linear-gradient(135deg, #0f1419 0%, #1a2a4a 50%, #2c4a6a 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content-luxury {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding: 2rem clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    max-width: 560px;
    text-align: center;
    animation: heroFadeUp 0.8s ease;
}

.hero-eyebrow {
    font-size: clamp(0.7rem, 1vw, 0.82rem);
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    margin: 0 0 0.8rem 0;
    font-weight: 400;
}

.hero-eyebrow::after { display: none; }

.hero-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.3px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0 auto 1.5rem;
    max-width: 400px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

/* --- Right: Room Cards --- */
.hero-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    animation: heroFadeRight 0.8s ease 0.2s both;
}

.hero-cards-row {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.hero-room-card {
    width: clamp(140px, 13vw, 180px);
    height: clamp(190px, 17vw, 240px);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.hero-room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.hero-room-card.active {
    width: clamp(150px, 14vw, 195px);
    height: clamp(200px, 18vw, 255px);
}

.hero-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5580 100%);
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-card-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    font-weight: 400;
}

.hero-card-title {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}

/* --- Hero Bottom Nav --- */
.hero-cards-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 4px;
}

.hero-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.hero-nav-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.hero-progress {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}

.hero-progress-bar {
    width: 33%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.hero-counter {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
    letter-spacing: 1px;
    min-width: 24px;
    text-align: right;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════
   BOOKING BAR — Marriott signature element
   ═══════════════════════════════════════ */
.booking-bar {
    position: relative;
    z-index: 10;
    margin-top: -36px;
    margin-bottom: 0;
}

.booking-bar-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 12px 18px;
}

.booking-bar-form {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.booking-bar-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.booking-bar-form .form-group-btn {
    flex: 0 0 auto;
}

.booking-bar-form label {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 4px;
    line-height: 1.2;
}

.booking-bar-form .form-group-btn label {
    visibility: hidden;
}

.booking-bar-form input,
.booking-bar-form select {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 12px;
    color: var(--black);
    background: var(--white);
    transition: border-color var(--duration) var(--ease);
    height: 34px;
    box-sizing: border-box;
}

.booking-bar-form input:focus,
.booking-bar-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.booking-bar-form .form-group-btn .btn {
    height: 34px;
    font-size: 11px;
    padding: 0 22px;
    border: 1px solid transparent;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
    width: 100%;
}

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.section {
    padding: var(--section-pad) 0;
}

.section-alt {
    background: var(--cream);
}

/* ═══════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════ */
.about-section {
    background: var(--cream);
    padding-top: 40px;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content .section-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--dark);
    margin: 6px 0 0;
}

.about-lead {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.about-lead strong {
    color: var(--gold-dark);
}

.about-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 18px;
}

.about-highlight {
    display: flex;
    gap: 14px;
    background: var(--white);
    padding: 18px 20px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

.about-highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.about-highlight strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.about-highlight p {
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--warm-gray);
    margin: 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 8px rgba(0,0,0,.04);
    transition: all 0.3s var(--ease);
}

.about-feature-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.about-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--pale-gray);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.3s var(--ease);
}

.about-feature-item:hover .about-feature-icon {
    background: var(--gold);
    color: var(--white);
}

.about-feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--dark);
    margin: 0 0 4px;
}

.about-feature-item p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--warm-gray);
    margin: 0;
}

/* ── About Features Compact (2-col grid) ── */
.about-features-compact {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.about-features-compact .about-feature-item {
    padding: 14px 16px;
}
.about-features-compact .about-feature-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
}
.about-features-compact .about-feature-item h4 {
    font-size: 0.9rem;
}
.about-features-compact .about-feature-item p {
    font-size: 0.78rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════
   ACTIVITIES SLIDESHOW — Right side of About
   ═══════════════════════════════════════ */
.act-slideshow {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--dark);
    aspect-ratio: 4 / 5;
    max-height: 420px;
    width: 100%;
}
.act-slideshow-viewport {
    position: relative;
    width: 100%;
    height: 100%;
}
.act-ss-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s var(--ease);
    pointer-events: none;
}
.act-ss-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}
.act-ss-img {
    position: absolute;
    inset: 0;
}
.act-ss-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.act-ss-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.2) 40%,
        rgba(0,0,0,0) 70%
    );
}
.act-ss-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 24px 28px 56px;
    color: var(--white);
}
.act-ss-eyebrow {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 6px;
}
.act-ss-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: var(--white);
}
.act-ss-controls {
    position: absolute;
    bottom: 16px;
    left: 28px;
    right: 28px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.act-ss-dots {
    display: flex;
    gap: 5px;
    align-items: center;
}
.act-ss-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: none;
    padding: 0;
}
.act-ss-dot.active {
    background: var(--gold-light);
    width: 18px;
    border-radius: 3px;
}
.act-ss-link {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.act-ss-link:hover {
    color: var(--gold-light);
}
.act-ss-link i {
    font-size: 0.6rem;
}

/* ── Services Row (below about) ── */
.services-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.service-item {
    text-align: center;
    padding: 8px 4px;
}
.service-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--cream);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 8px;
}
.service-item h4 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 3px;
}
.service-item p {
    font-size: 0.68rem;
    line-height: 1.45;
    color: var(--charcoal);
    margin: 0;
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-header {
    margin-bottom: 48px;
}

.divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 16px 0;
}

.divider.center { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════
   ROOM CARDS — Marriott clean card layout
   ═══════════════════════════════════════ */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

.room-card {
    background: var(--white);
    border: 1px solid var(--pale-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.room-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.room-card-image {
    height: 220px;
    background: linear-gradient(135deg, #1a3a5c, #2d5a7b);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Room gallery slides */
.room-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.room-slide.active {
    opacity: 1;
}

/* Navigation arrows */
.room-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    font-size: 12px;
    backdrop-filter: blur(4px);
}
.room-nav:hover {
    background: rgba(0,0,0,0.6);
}
.room-nav-prev { left: 10px; }
.room-nav-next { right: 10px; }
.room-card-image:hover .room-nav { opacity: 1; }

/* Dots */
.room-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}
.room-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}
.room-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.room-card-image .room-visual {
    font-size: 4rem;
    opacity: 0.2;
}

.room-type-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    color: var(--black);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
}

.room-card-body {
    padding: 24px;
}

.room-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.room-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.room-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--warm-gray);
}

.room-meta-item i {
    font-size: 12px;
    color: var(--mid-gray);
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}

.room-amenities span {
    padding: 3px 8px;
    background: var(--cream);
    color: var(--warm-gray);
    font-size: 10px;
    font-weight: 500;
    border-radius: 2px;
}

.room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--pale-gray);
}

.room-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--black);
}

.room-price small {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--mid-gray);
    font-weight: 400;
}

/* Availability badges */
.avail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 2px;
}

.avail-badge .avail-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.avail-badge.available {
    background: #e8f5e9;
    color: var(--success);
}
.avail-badge.available .avail-dot { background: var(--success); }

.avail-badge.limited {
    background: #fff8e1;
    color: var(--warning);
}
.avail-badge.limited .avail-dot { background: var(--warning); }

.avail-badge.full {
    background: #fce4ec;
    color: var(--error);
}
.avail-badge.full .avail-dot { background: var(--error); }

.room-book-btn {
    margin-top: 14px;
}

/* ═══════════════════════════════════════
   FEATURES GRID — Marriott icon + text
   ═══════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 20px;
    border: 1px solid var(--pale-gray);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
    background: var(--white);
}

.feature-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--light-gray);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.feature-card h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--black);
}

.feature-card p {
    font-size: 12px;
    color: var(--warm-gray);
    line-height: 1.5;
}

/* ═══════════════════════════════════════
   STATS BAR — Marriott-style counters
   ═══════════════════════════════════════ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════
   TESTIMONIALS — Marriott clean cards
   ═══════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--pale-gray);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: box-shadow 0.3s var(--ease);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--warm-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
}

.testimonial-origin {
    font-size: 12px;
    color: var(--mid-gray);
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 56px 0;
}

.cta-section .section-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.cta-section p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    font-size: 15px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════
   PAGE HERO — Interior pages
   ═══════════════════════════════════════ */
.page-hero {
    background: 
        linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%),
        linear-gradient(135deg, #1a3a5c, #2d5a7b);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 48px;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    max-width: 480px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════
   FORMS — Clean Marriott form style
   ═══════════════════════════════════════ */
.form-card {
    background: var(--white);
    border: 1px solid var(--pale-gray);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}

.form-card h3 {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    transition: border-color var(--duration) var(--ease);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(180, 151, 90, 0.1);
}

textarea.form-control { resize: vertical; }

/* ═══════════════════════════════════════
   BOOKING PAGE — Available rooms results
   ═══════════════════════════════════════ */
.search-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--cream);
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
}

.search-summary strong {
    color: var(--black);
}

.room-result-card {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--pale-gray);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    transition: all 0.25s var(--ease);
}

.room-result-card:hover {
    border-color: var(--light-gray);
    box-shadow: var(--shadow);
}

.room-result-card.selected {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

.room-result-img {
    height: 120px;
    background: linear-gradient(135deg, #1a3a5c, #2d5a7b);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    opacity: 0.3;
}

.room-result-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.room-result-info .room-number {
    font-size: 13px;
    color: var(--mid-gray);
    margin-bottom: 10px;
}

.room-result-price {
    text-align: right;
    min-width: 180px;
}

.room-result-price .per-night {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--black);
}

.room-result-price .total {
    font-size: 12px;
    color: var(--mid-gray);
    margin-bottom: 12px;
}

/* Selected room summary */
.selected-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--cream);
    border-radius: var(--radius);
    margin-bottom: 28px;
    border-left: 3px solid var(--gold);
}

/* ═══════════════════════════════════════
   ROOM DETAIL — Alternating layout
   ═══════════════════════════════════════ */
.room-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
}

.room-detail.reverse {
    direction: rtl;
}

.room-detail.reverse > * {
    direction: ltr;
}

.room-detail-image {
    height: 300px;
    background: linear-gradient(135deg, #1a3a5c, #2d5a7b);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.room-detail-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    z-index: 1;
    pointer-events: none;
}

.room-detail-image .room-emoji {
    font-size: 3.5rem;
    opacity: 0.15;
}

.room-detail-info h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    margin-bottom: 4px;
}

.room-detail-info .section-eyebrow {
    font-size: 10px;
    margin-bottom: 6px;
}

.room-detail-info .divider {
    width: 28px;
    height: 1.5px;
    margin: 8px 0;
}

.room-detail-info p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.room-detail-info .room-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 12px 0;
}

.room-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--warm-gray);
}

.room-spec i {
    width: 14px;
    color: var(--mid-gray);
    font-size: 11px;
}

/* Room status grid */
.room-status-grid {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin: 8px 0;
}

.room-status-box {
    width: 40px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    border-radius: 3px;
}

.room-status-box.available {
    background: #e8f5e9;
    color: var(--success);
    border: 1px solid #c8e6c9;
}

.room-status-box.occupied {
    background: #fce4ec;
    color: var(--error);
    border: 1px solid #f8bbd0;
}

.room-status-box.cleaning {
    background: #fff8e1;
    color: var(--warning);
    border: 1px solid #ffe082;
}

.room-status-box.maintenance {
    background: var(--pale-gray);
    color: var(--mid-gray);
    border: 1px solid var(--light-gray);
}

.status-legend {
    display: flex;
    gap: 12px;
    font-size: 10px;
    color: var(--mid-gray);
    margin-top: 4px;
}

.status-legend span::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 4px;
}

.legend-available::before { background: var(--success) !important; }
.legend-occupied::before { background: var(--error) !important; }
.legend-cleaning::before { background: var(--warning) !important; }

/* Room detail footer */
.room-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--pale-gray);
    margin-top: 16px;
}

.room-detail-footer .room-price {
    font-size: 1.1rem;
}

.room-detail-footer .btn {
    padding: 8px 20px;
    font-size: 12px;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    padding: 24px;
    border: 1px solid var(--pale-gray);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
    background: var(--white);
}

.contact-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--light-gray);
}

.contact-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-card h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.6;
}

.contact-card a {
    color: var(--black);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-card .text-sm {
    font-size: 12px;
    color: var(--mid-gray);
    margin-top: 4px;
}

.map-container {
    margin-top: 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ═══════════════════════════════════════
   FOOTER — Marriott-style clean footer
   ═══════════════════════════════════════ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.5);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 13px;
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════
   CONFIRMATION PAGE
   ═══════════════════════════════════════ */
.confirmation-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--pale-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.confirmation-header {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 48px 40px;
}

.confirmation-icon {
    width: 64px;
    height: 64px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.confirmation-header h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.booking-code {
    font-size: 14px;
}

.booking-code strong {
    color: var(--gold-light);
    letter-spacing: 2px;
    font-size: 16px;
}

.confirmation-note {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

.confirmation-details {
    padding: 36px;
}

.detail-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--pale-gray);
}

.detail-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-section h3 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 16px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-label {
    font-size: 11px;
    color: var(--mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.pricing-breakdown {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

.price-line.total {
    border-top: 2px solid var(--black);
    margin-top: 10px;
    padding-top: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.price-line.discount { color: var(--success); }

.payment-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    background: #fff3cd;
    color: #856404;
    margin-top: 12px;
}

.confirmation-actions {
    padding: 0 36px 36px;
}

.important-info {
    background: var(--cream);
    border-left: 3px solid var(--gold);
    padding: 20px 24px;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin-bottom: 28px;
}

.important-info h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.important-info li {
    padding: 4px 0 4px 16px;
    position: relative;
    font-size: 13px;
    color: var(--warm-gray);
}

.important-info li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.action-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ═══════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 24px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-xl);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    border-left: 3px solid var(--success);
}

.toast.error {
    border-left: 3px solid var(--error);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* ── Large tablets & small desktops ── */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .room-detail {
        gap: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 4.5vw, 3.2rem);
    }

    /* Hero cards responsive */
    .luxury-hero {
        height: auto;
        min-height: 100vh;
        max-height: none;
    }
    .hero-content-luxury {
        flex-direction: column;
        text-align: center;
        padding: 5rem 1.5rem 2.5rem;
        gap: 1.5rem;
    }
    .hero-left { max-width: 520px; margin: 0 auto; }
    .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-right { align-items: center; }
    .hero-room-card { width: 155px; height: 210px; }
    .hero-room-card.active { width: 165px; height: 220px; }
    .hero-cards-row { gap: 12px; }
    .hero-cards-nav { gap: 8px; }

    .about-layout {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .about-content .section-title {
        font-size: 1.7rem;
    }
}

/* ── Tablets & Mobile ── */
@media (max-width: 768px) {
    :root {
        --section-pad: 48px;
    }
    
    /* ─── Mobile Navigation ─── */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 72px 28px 28px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s var(--ease);
        gap: 0;
        z-index: 1001;
    }
    .nav-links.open { right: 0; }
    .nav-links li a {
        color: var(--dark) !important;
        padding: 12px 0;
        border-bottom: 1px solid var(--pale-gray);
        font-size: 14px;
        letter-spacing: 0.3px;
    }
    .nav-links li a::after { display: none; }
    .nav-book-btn {
        margin-left: 0 !important;
        margin-top: 12px;
        text-align: center;
        display: block !important;
        padding: 12px 20px !important;
    }
    .nav-toggle { display: flex; }
    
    /* ─── Navbar compact ─── */
    .navbar { height: 56px; }
    .navbar.scrolled { height: 50px; }
    .brand-logo { font-size: 1.2rem; letter-spacing: 0.5px; }
    .brand-sub { font-size: 8px; letter-spacing: 2px; }
    .navbar-brand { gap: 8px; }
    .brand-img { width: 52px; height: 52px; padding: 3px; }
    .navbar.scrolled .brand-img { width: 44px; height: 44px; padding: 2px; }
    
    /* ─── HERO — Luxury compact with cards ─── */
    .luxury-hero { background-attachment: scroll; }
    .hero-content-luxury {
        padding: 4.5rem 1rem 2rem;
        gap: 1.5rem;
    }
    .hero-title { font-size: 1.8rem; }
    .hero-eyebrow { font-size: 0.7rem; margin-bottom: 0.5rem; }
    .hero-subtitle { font-size: 0.8rem; margin-bottom: 1rem; }
    .hero-cards-row { gap: 8px; }
    .hero-room-card { width: 120px; height: 165px; border-radius: 10px; }
    .hero-room-card.active { width: 130px; height: 175px; }
    .hero-card-overlay { padding: 12px 10px; }
    .hero-card-sub { font-size: 0.6rem; }
    .hero-card-title { font-size: 0.75rem; }
    .hero-nav-btn { width: 28px; height: 28px; }
    .hero-nav-btn svg { width: 12px; height: 12px; }
    .hero-counter { font-size: 0.9rem; }
    .hero-cards-nav { padding: 0; gap: 8px; }
    
    /* ─── Booking Bar — Compact single-row ─── */
    .booking-bar { margin-top: -32px; }
    .booking-bar-inner {
        padding: 16px 18px;
        border-radius: var(--radius-lg);
    }
    .booking-bar-form {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }
    .booking-bar-form .form-group { margin-bottom: 0; }
    .booking-bar-form .form-group-btn {
        grid-column: 1 / -1;
    }
    .booking-bar-form .form-group-btn label {
        display: none;
    }
    .booking-bar-form label { 
        font-size: 9px; 
        margin-bottom: 3px;
        letter-spacing: 0.8px;
        text-align: center;
    }
    .booking-bar-form input,
    .booking-bar-form select {
        padding: 8px 6px;
        font-size: 12px;
        text-align: center;
    }
    .booking-bar-form .form-group-btn .btn {
        grid-column: 1 / -1;
        width: 100%;
        height: auto;
        padding: 11px 20px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    /* ─── Section headers — Tight & elegant ─── */
    .section-header { margin-bottom: 28px; }
    .section-eyebrow { font-size: 10px; letter-spacing: 1.5px; margin-bottom: 8px; }
    .section-title { font-size: 1.4rem; margin-bottom: 10px; }
    .section-desc { font-size: 13px; line-height: 1.6; }
    .divider { width: 28px; height: 1.5px; margin: 10px 0; }
    .divider.center { margin: 10px auto; }
    
    /* ─── Room Cards — Clean single column ─── */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .room-card { border-radius: var(--radius-lg); }
    .room-card:hover { transform: none; }
    .room-card-image { height: 200px; }
    .room-card-image .room-nav { opacity: 0.85; }
    .room-nav { 
        width: 30px; 
        height: 30px; 
        font-size: 11px;
        background: rgba(0,0,0,0.35);
    }
    .room-nav-prev { left: 8px; }
    .room-nav-next { right: 8px; }
    .room-dots { bottom: 8px; gap: 5px; }
    .room-dot { width: 6px; height: 6px; }
    .room-type-badge {
        top: 10px; left: 10px;
        padding: 3px 8px;
        font-size: 9px;
        letter-spacing: 0.8px;
    }
    .room-card-body { padding: 16px 18px; }
    .room-card-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
    .room-meta { gap: 12px; margin-bottom: 10px; }
    .room-meta-item { font-size: 12px; gap: 4px; }
    .room-meta-item i { font-size: 10px; }
    .room-amenities { gap: 4px; margin-bottom: 14px; }
    .room-amenities span { 
        padding: 3px 8px; 
        font-size: 10px;
    }
    .room-card-footer { padding-top: 12px; }
    .room-price { font-size: 1.15rem; }
    .room-price small { font-size: 11px; }
    .avail-badge { 
        padding: 3px 8px; 
        font-size: 10px;
        gap: 4px;
    }
    .avail-badge .avail-dot { width: 5px; height: 5px; }
    .room-card-body .btn-primary { 
        padding: 10px 16px; 
        font-size: 11px;
    }
    .room-book-btn { margin-top: 10px; }
    
    /* ─── Features — 2×2 compact grid ─── */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .feature-card {
        padding: 18px 16px;
        text-align: center;
    }
    .feature-icon {
        width: 40px; height: 40px;
        margin: 0 auto 10px;
        font-size: 1.1rem;
    }
    .feature-card h4 { font-size: 13px; margin-bottom: 4px; }
    .feature-card p { font-size: 12px; line-height: 1.5; color: var(--mid-gray); }

    /* ─── About Section — single column on mobile ─── */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-content .section-title {
        font-size: 1.5rem;
    }
    .about-lead {
        font-size: 0.9rem;
    }
    .about-text {
        font-size: 0.84rem;
    }
    .about-highlight {
        padding: 16px;
    }
    .about-highlight-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .about-feature-item {
        padding: 16px;
    }
    .about-feature-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    .about-feature-item h4 { font-size: 0.9rem; }
    .about-feature-item p { font-size: 0.8rem; }
    .about-features-compact { grid-template-columns: 1fr; }

    /* ─── Activities Slideshow — Mobile ─── */
    .act-slideshow {
        aspect-ratio: 3 / 4;
        max-height: 300px;
        margin: 0 auto;
        width: 80%;
    }
    .act-ss-title { font-size: 0.95rem; }
    .act-ss-eyebrow { font-size: 0.55rem; letter-spacing: 1.5px; }
    .act-ss-caption { padding: 14px 16px 44px; }
    .act-ss-controls { left: 16px; right: 16px; bottom: 10px; }
    .act-ss-dot { width: 5px; height: 5px; }
    .act-ss-dot.active { width: 14px; }
    .act-ss-link { font-size: 0.6rem; }

    /* ─── Services Row — Mobile ─── */
    .services-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 28px;
        padding-top: 24px;
    }
    .service-icon { width: 32px; height: 32px; font-size: 0.75rem; margin-bottom: 6px; }
    .service-item h4 { font-size: 0.72rem; }
    .service-item p { font-size: 0.62rem; line-height: 1.4; }
    
    /* ─── Stats — 4 inline compact ─── */
    .section-dark { padding: 0; }
    .stats-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    .stat-item {
        padding: 24px 8px;
        border-right: 1px solid rgba(255,255,255,0.08);
        border-bottom: none;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.08); }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) { border-bottom: none; }
    .stat-value { font-size: 1.5rem; margin-bottom: 2px; }
    .stat-label { font-size: 8px; letter-spacing: 1px; }
    
    /* ─── Testimonials — compact cards ─── */
    .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
    .testimonial-card { padding: 18px 20px; }
    .testimonial-stars { font-size: 12px; letter-spacing: 1px; margin-bottom: 10px; }
    .testimonial-card blockquote { 
        font-size: 13px; 
        line-height: 1.6; 
        margin-bottom: 14px;
    }
    .testimonial-avatar { width: 34px; height: 34px; font-size: 11px; }
    .testimonial-name { font-size: 13px; }
    .testimonial-origin { font-size: 11px; }
    .testimonial-author { gap: 10px; }
    
    /* ─── CTA — Tight elegant ─── */
    .cta-section { padding: 48px 0; }
    .cta-section .section-eyebrow { font-size: 9px; letter-spacing: 3px; margin-bottom: 10px; }
    .cta-section h2 { font-size: 1.4rem; margin-bottom: 8px; }
    .cta-section p { font-size: 13px; margin-bottom: 20px; }
    .cta-section .btn-group { 
        flex-direction: column; 
        align-items: center;
        gap: 10px;
    }
    .cta-section .btn-lg,
    .cta-section .btn { 
        padding: 12px 28px; 
        font-size: 11px; 
        width: 220px;
        text-align: center;
    }
    
    /* ─── Footer — 2-col compact ─── */
    .footer { padding: 36px 0 0; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .footer-about { grid-column: 1 / -1; }
    .footer-about p { font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
    .footer h5 { font-size: 10px; letter-spacing: 1.2px; margin-bottom: 12px; }
    .footer-links a { font-size: 13px; }
    .footer-links li { margin-bottom: 6px; }
    .footer-social a { width: 32px; height: 32px; font-size: 13px; }
    .footer-contact li { font-size: 12px; margin-bottom: 8px; gap: 8px; }
    .footer-contact i { font-size: 11px; }
    .footer-bottom {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding: 14px 0;
        font-size: 11px;
    }
    
    /* ─── Forms ─── */
    .form-row { grid-template-columns: 1fr; }
    
    /* ─── Room detail ─── */
    .room-detail,
    .room-detail.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 20px;
        margin-bottom: 40px;
    }
    .room-detail-image { height: 200px; }
    
    /* ─── Room results ─── */
    .room-result-card { grid-template-columns: 1fr; gap: 12px; padding: 16px; }
    .room-result-img { height: 140px; }
    .room-result-price { text-align: left; min-width: auto; }
    
    /* ─── Contact ─── */
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    
    /* ─── Confirmation ─── */
    .confirmation-header { padding: 28px 20px; }
    .confirmation-details { padding: 20px; }
    .confirmation-actions { padding: 0 20px 20px; }
    .detail-grid { grid-template-columns: 1fr; }
    .action-buttons { flex-direction: column; }
    
    /* ─── Page hero (interior) ─── */
    .page-hero { padding: 100px 0 36px; }
    .page-hero h1 { font-size: 1.4rem; }
    .page-hero p { font-size: 13px; }
}

/* ── Small phones (≤ 420px) ── */
@media (max-width: 420px) {
    :root {
        --section-pad: 36px;
    }
    
    .container { padding: 0 16px; }
    
    /* Hero — ultra compact with cards */
    .luxury-hero { min-height: auto; }
    .hero-content-luxury { padding: 4rem 0.8rem 1.5rem; gap: 1.2rem; }
    .hero-title { font-size: 1.5rem; }
    .hero-eyebrow { font-size: 0.62rem; }
    .hero-subtitle { font-size: 0.75rem; line-height: 1.6; margin-bottom: 0.8rem; }
    .hero-actions .btn { padding: 10px 20px; font-size: 10px; }
    .hero-cards-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
        gap: 6px;
    }
    .hero-room-card,
    .hero-room-card.active {
        width: 110px;
        height: 150px;
        flex-shrink: 0;
        border-radius: 8px;
    }
    .hero-card-overlay { padding: 8px; gap: 2px; }
    .hero-card-sub { font-size: 0.5rem; }
    .hero-card-title { font-size: 0.65rem; }
    .hero-nav-btn { width: 24px; height: 24px; }
    .hero-nav-btn svg { width: 10px; height: 10px; }
    .hero-counter { font-size: 0.8rem; min-width: 20px; }
    
    /* Navbar */
    .navbar { height: 52px; }
    .navbar.scrolled { height: 48px; }
    .brand-logo { font-size: 1.05rem; }
    .brand-sub { font-size: 7px; letter-spacing: 1.5px; }
    
    /* Room cards */
    .room-card-image { height: 170px; }
    .room-card-body { padding: 14px 16px; }
    .room-card-body h3 { font-size: 1rem; }
    .room-price { font-size: 1.05rem; }
    .room-meta { flex-direction: column; gap: 4px; }
    .room-card-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
    
    /* Booking bar */
    .booking-bar { margin-top: -24px; }
    .booking-bar-inner { padding: 12px 14px; }
    .booking-bar-form { gap: 6px; }
    .booking-bar-form label { font-size: 8px; }
    .booking-bar-form input,
    .booking-bar-form select { padding: 7px 4px; font-size: 11px; }
    .booking-bar-form .btn { padding: 10px 16px; font-size: 10px; }
    
    /* Features single column */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .feature-card {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
        padding: 14px 16px;
    }
    .feature-icon {
        flex-shrink: 0;
        width: 36px; height: 36px;
        margin: 0;
        font-size: 1rem;
    }
    .feature-card h4 { font-size: 13px; margin-bottom: 2px; }
    .feature-card p { font-size: 11px; line-height: 1.4; }
    
    /* About section — ultra compact */
    .about-content .section-title { font-size: 1.2rem; }
    .about-content .section-eyebrow { font-size: 8px; }
    .about-lead { font-size: 0.82rem; line-height: 1.65; }
    .about-text { font-size: 0.78rem; margin-bottom: 14px; }
    .about-highlight { padding: 12px; gap: 10px; }
    .about-highlight-icon { width: 32px; height: 32px; font-size: 0.8rem; }
    .about-highlight strong { font-size: 0.82rem; }
    .about-highlight p { font-size: 0.72rem; }

    /* Activities slideshow — small phone */
    .act-slideshow {
        width: 100%;
        max-height: 260px;
    }
    .act-ss-caption { padding: 12px 14px 40px; }
    .act-ss-title { font-size: 0.88rem; }

    /* Services — 2 col on tiny screens */
    .services-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 20px;
        padding-top: 18px;
    }
    .service-icon { width: 28px; height: 28px; font-size: 0.7rem; }
    .service-item h4 { font-size: 0.68rem; }
    .service-item p { display: none; }
    .about-feature-item { padding: 14px; gap: 12px; }
    .about-feature-icon { width: 34px; height: 34px; font-size: 0.85rem; }
    .about-feature-item h4 { font-size: 0.82rem; }
    .about-feature-item p { font-size: 0.75rem; }
    
    /* Stats */
    .stat-item { padding: 18px 4px; }
    .stat-value { font-size: 1.25rem; }
    .stat-label { font-size: 7px; letter-spacing: 0.8px; }
    
    /* Testimonials */
    .testimonial-card { padding: 16px; }
    .testimonial-card blockquote { font-size: 12px; line-height: 1.55; }
    
    /* CTA */
    .cta-section { padding: 36px 0; }
    .cta-section h2 { font-size: 1.2rem; }
    .cta-section p { font-size: 12px; }
    .cta-section .btn-lg,
    .cta-section .btn { width: 200px; font-size: 10px; }
    
    /* Footer */
    .footer { padding: 28px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 16px; }
    .footer-about { grid-column: auto; }
    .footer-about p { font-size: 12px; }
    .footer h5 { font-size: 9px; margin-bottom: 8px; }
    .footer-links a { font-size: 12px; }
    .footer-contact li { font-size: 11px; }
    .footer-bottom { font-size: 10px; padding: 12px 0; }
    
    /* Section headers */
    .section-header { margin-bottom: 24px; }
    .section-title { font-size: 1.2rem; }
    .section-desc { font-size: 12px; }
    .divider { width: 24px; }
    
    .form-card { padding: 16px; }
    
    /* Page hero */
    .page-hero { padding: 88px 0 32px; }
    .page-hero h1 { font-size: 1.2rem; }
}

/* ========================================
   LOGO IN NAVBAR
======================================== */
.brand-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 4px;
    transition: all 0.4s var(--ease);
    flex-shrink: 0;
}
.navbar.scrolled .brand-img {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

/* ========================================
   DESTINATIONS PAGE
======================================== */

/* Page Hero */
.dest-page-hero {
    background: var(--dark);
    background-size: cover;
    background-position: center;
    padding: 120px 0 48px;
    text-align: center;
    position: relative;
}
.dest-page-hero-content .section-eyebrow {
    color: var(--gold);
}
.dest-page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--white);
    margin: 12px 0 14px;
}
.dest-page-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Featured Destination */
.dest-featured-section {
    padding: 48px 0;
    background: var(--cream);
}
.dest-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.dest-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.dest-featured-image {
    height: 320px;
    overflow: hidden;
}
.dest-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.dest-featured:hover .dest-featured-image img {
    transform: scale(1.05);
}
.dest-featured-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.dest-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    width: fit-content;
}
.dest-featured-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 8px;
}
.dest-featured-subtitle {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 12px;
}
.dest-featured-excerpt {
    color: var(--mid-gray);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Destination Cards Grid */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 0;
}
.dest-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.dest-card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.dest-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.dest-card:hover .dest-card-image img {
    transform: scale(1.08);
}
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.dest-card:hover .dest-card-overlay {
    opacity: 1;
}
.dest-card-overlay span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 8px 20px;
    border-radius: 4px;
}
.dest-card-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #ccc;
    font-size: 40px;
}
.dest-card-body {
    padding: 18px;
}
.dest-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 4px;
}
.dest-card-subtitle {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 8px;
}
.dest-card-excerpt {
    color: var(--mid-gray);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.dest-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--mid-gray);
}
.dest-card-meta i {
    color: var(--gold);
    margin-right: 4px;
}
.dest-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    backdrop-filter: blur(4px);
    z-index: 2;
}
.dest-read-more {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s var(--ease);
}
.dest-card:hover .dest-read-more,
.dest-featured:hover .dest-read-more {
    gap: 12px;
}

/* Single Destination Hero */
.dest-hero {
    background: var(--dark);
    background-size: cover;
    background-position: center;
    padding: 120px 0 48px;
}
.dest-hero-content {
    max-width: 700px;
}
.dest-back-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    transition: color 0.3s;
}
.dest-back-link:hover { color: var(--gold); }
.dest-hero-eyebrow {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.dest-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--white);
}

/* Destination Detail Content */
.dest-detail-content {
    max-width: 800px;
    margin: 0 auto;
}
.dest-detail-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}
.dest-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}
.dest-detail-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--dark);
}
.dest-detail-text p {
    margin-bottom: 20px;
}
.dest-detail-text h2, .dest-detail-text h3 {
    font-family: var(--font-heading);
    margin: 32px 0 16px;
}

/* Destination CTA */
.dest-detail-cta {
    margin-top: 32px;
}
.dest-cta-box {
    background: var(--cream);
    border-radius: 10px;
    padding: 28px;
    text-align: center;
}
.dest-cta-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.dest-cta-box p {
    color: var(--mid-gray);
    font-size: 13px;
    margin-bottom: 20px;
}
.dest-cta-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}
.btn-primary-dest {
    background: var(--gold);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-primary-dest:hover {
    background: #9a7d45;
    transform: translateY(-2px);
}
.btn-outline-dest {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.btn-outline-dest:hover {
    background: var(--gold);
    color: var(--white);
}

/* CTA Section */
.dest-cta-section {
    background: var(--dark);
    padding: 56px 0;
}
.dest-cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--white);
    margin-bottom: 10px;
}
.dest-cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 24px;
}

/* Other Destinations */
.dest-other-section {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid #eee;
}
.dest-other-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 16px;
}

/* ========================================
   DESTINATIONS RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .dest-featured { grid-template-columns: 1fr 1fr; }
    .dest-featured-image { height: 280px; }
    .dest-featured-content { padding: 24px; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .dest-page-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    .dest-page-hero { padding: 100px 0 40px; }
    .dest-page-title { font-size: 1.6rem; }
    .dest-page-desc { font-size: 0.85rem; }
    .dest-featured { grid-template-columns: 1fr; }
    .dest-featured-image { height: 220px; }
    .dest-featured-content { padding: 24px 20px; }
    .dest-featured-content h2 { font-size: 1.3rem; }
    .dest-grid { grid-template-columns: 1fr; gap: 16px; }
    .dest-card-image { height: 170px; }
    .dest-hero { padding: 100px 0 40px; }
    .dest-hero-title { font-size: 1.6rem; }
    .dest-cta-buttons { flex-direction: column; }
    .btn-primary-dest, .btn-outline-dest { width: 100%; text-align: center; justify-content: center; padding: 10px 24px; font-size: 0.8rem; }
    .dest-cta-box { padding: 24px 16px; }
    .dest-cta-section h2 { font-size: 1.3rem; }
    .brand-img { width: 48px; height: 48px; padding: 3px; }
    .navbar.scrolled .brand-img { width: 40px; height: 40px; padding: 2px; }
}

@media (max-width: 420px) {
    .dest-page-hero { padding: 90px 0 32px; }
    .dest-page-title { font-size: 1.3rem; }
    .dest-featured-section { padding: 32px 0; }
    .dest-featured-image { height: 180px; }
    .dest-featured-content { padding: 20px 16px; }
    .dest-featured-content h2 { font-size: 1.15rem; }
    .dest-card-body { padding: 14px; }
    .dest-card-body h3 { font-size: 1rem; }
    .dest-hero-title { font-size: 1.3rem; }
    .dest-detail-text { font-size: 0.9rem; }
    .brand-img { width: 42px; height: 42px; padding: 2px; }
    .navbar.scrolled .brand-img { width: 36px; height: 36px; padding: 2px; }
    .brand-logo { font-size: 1.05rem; }
    .brand-sub { font-size: 7px; letter-spacing: 1.5px; }
    .navbar-brand { gap: 6px; }
}

/* ═══════════════════════════════════════
   ACTIVITIES PAGE — Elegant Island Experiences
   ═══════════════════════════════════════ */

/* Base hero for activities/subpages */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    min-height: 60vh;
    padding: 120px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-content .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.hero-text {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Activities Hero override */
.hero-activities {
    min-height: 40vh;
    padding: 0;
}

.hero-activities .hero-bg {
    background-position: center bottom;
}

.hero-activities .hero-bg::after {
    background: none;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

/* Activity Card — Elegant Marriott Style */
.activity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    border: 1px solid var(--pale-gray);
}
.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.activity-card-image {
    height: 220px;
    background: linear-gradient(135deg, #1a4a6e 0%, #2d6a8a 100%);
    position: relative;
    overflow: hidden;
}
.activity-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.activity-card:hover .activity-card-image img {
    transform: scale(1.08);
}
.activity-card-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.activity-card-icon i {
    font-size: 3rem;
    color: rgba(255,255,255,0.25);
}
.activity-duration {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--white);
    color: var(--dark);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.activity-duration i {
    font-size: 10px;
    color: var(--gold);
}

.activity-card-body {
    padding: 28px;
}
.activity-subtitle {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.activity-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.25;
}
.activity-desc {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.activity-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-bottom: 24px;
    padding: 0;
}
.activity-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--charcoal);
}
.activity-highlights li i {
    color: var(--success);
    font-size: 10px;
    flex-shrink: 0;
}

.activity-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--pale-gray);
}
.activity-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--black);
}

/* Activities Responsive */
@media (max-width: 1100px) {
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .activities-grid { grid-template-columns: 1fr; gap: 24px; }
    .activity-card-image { height: 200px; }
    .activity-card-body { padding: 24px; }
    .activity-highlights { grid-template-columns: 1fr; }
    .hero-activities { min-height: 70vh; }
}
@media (max-width: 480px) {
    .activity-card-body h3 { font-size: 1.2rem; }
    .activity-card-body { padding: 20px; }
    .activity-card-image { height: 180px; }
}

/* =========================================================
   ACTIVITIES INTRO SECTION
   ========================================================= */
.act-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: end;
}
.act-intro-meta {
    display: flex;
    gap: 32px;
    padding-bottom: 4px;
    flex-shrink: 0;
}
.act-intro-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.act-intro-stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1;
}
.act-intro-stat-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray);
}
@media (max-width: 700px) {
    .act-intro { grid-template-columns: 1fr; gap: 28px; }
    .act-intro-meta { justify-content: flex-start; gap: 24px; }
    .act-intro-stat-num { font-size: 1.5rem; }
}

/* =========================================================
   ACTIVITY STORY — Editorial Alternating Layout v2
   Elegant, mobile-first, no direction:rtl hacks
   ========================================================= */

.act-story {
    padding: 48px 0;
    position: relative;
}
.act-story + .act-story {
    border-top: 1px solid var(--pale-gray);
}
.act-story:nth-child(even) {
    background: var(--cream);
}

/* Two-column grid: image 42%, text 58% */
.act-story-inner {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 40px;
    align-items: start;
}

/* Reversed: swap columns visually using grid placement */
.act-story-reverse .act-story-inner {
    grid-template-columns: 1fr 42%;
}
.act-story-reverse .act-story-image {
    grid-column: 2;
    grid-row: 1;
}
.act-story-reverse .act-story-content {
    grid-column: 1;
    grid-row: 1;
}

/* ---- Photo ---- */
.act-story-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.act-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.act-story-image:hover img { transform: scale(1.03); }

/* Gradient overlay + label at bottom */
.act-story-image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 20px 16px;
    background: linear-gradient(to top, rgba(20,15,10,0.6) 0%, transparent 100%);
    color: rgba(255,255,255,0.85);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ---- Text Content ---- */
.act-story-content {
    padding: 8px 0;
}

/* Edition number — faint decorative counter */
.act-story-num {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--pale-gray);
    margin-bottom: 10px;
    user-select: none;
}

/* Eyebrow with leading gold line */
.act-story-content .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.act-story-content .section-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.act-story-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0;
    line-height: 1.2;
}

.act-story-content .divider {
    margin: 16px 0 18px;
}

.act-story-body {
    color: var(--warm-gray);
    font-size: 0.88rem;
    line-height: 1.85;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.act-story-body strong {
    color: var(--dark);
    font-weight: 600;
}

/* Details as horizontal pill tags */
.act-story-details {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.act-story-details li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--pale-gray);
    padding: 4px 12px 4px 8px;
    border-radius: 20px;
    white-space: nowrap;
}
.act-story:nth-child(even) .act-story-details li {
    background: var(--white);
}
.act-story-details li .fa-circle-dot {
    color: var(--gold);
    font-size: 0.52rem;
    flex-shrink: 0;
}

/* "Ask us" link */
.act-story-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 3px;
    transition: opacity 0.25s, gap 0.3s var(--ease);
}
.act-story-link:hover {
    opacity: 0.65;
    gap: 16px;
}

/* ---- Tablet (< 1000px) ---- */
@media (max-width: 1000px) {
    .act-story { padding: 36px 0; }
    .act-story-inner {
        gap: 28px;
    }
}

/* ---- Mobile (< 800px): stack vertically, image always on top ---- */
@media (max-width: 800px) {
    .hero-activities { min-height: 30vh; }
    .act-story { padding: 32px 0; }
    .act-story-inner {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    /* Reset grid placement for reverse */
    .act-story-reverse .act-story-image,
    .act-story-reverse .act-story-content {
        grid-column: auto;
        grid-row: auto;
    }
    /* Image always appears first (top) on mobile */
    .act-story-image { order: -1; }

    .act-story-image { aspect-ratio: 16 / 10; }
    .act-story-content { padding: 0; }
    .act-story-body { -webkit-line-clamp: 5; }
    .act-story-details li { white-space: normal; }
}

/* ---- Small phone (< 540px) ---- */
@media (max-width: 540px) {
    .hero-activities { min-height: 25vh; }
    .act-story { padding: 24px 0; }
    .act-story-inner { gap: 16px; }
    .act-story-image { aspect-ratio: 16 / 9; border-radius: 3px; }
    .act-story-image-label { padding: 32px 14px 12px; font-size: 0.55rem; }
    .act-story-content h2 { font-size: clamp(1.2rem, 5vw, 1.5rem); }
    .act-story-body { font-size: 0.84rem; line-height: 1.8; -webkit-line-clamp: 4; }
    .act-story-details { gap: 5px; }
    .act-story-details li { font-size: 0.65rem; padding: 3px 10px 3px 7px; }
    .act-story-link { font-size: 0.68rem; }
    .act-story-content .section-eyebrow::before { width: 18px; }
}
