/* ============================================================
   ELARC ELLA – DARK HOTEL THEME
   Color palette from reference image:
     Background:  #111111   (near-black)
     Surface:     #1a1a1a   (card base)
     Surface-2:   #222222   (elevated card)
     Gold accent: #c8936a   (warm amber/copper)
     Gold light:  #d4a574   (hover/highlight)
     Cream CTA:   #e8cca8   (sand/peach button)
     Text-primary:#f0f0f0
     Text-muted:  #999999
     Border:      #2a2a2a
   ============================================================ */

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

:root {
    --bg: #000000;
    --surface: #000000;
    --surface-2: #000000;
    --surface-3: #2a2a2a;
    --border: #2e2e2e;
    --gold: #c8936a;
    --gold-light: #d4a574;
    --gold-dark: #a8723d;
    --cream: #e8cca8;
    --cream-dark: #d4b48a;
    --text: #f0f0f0;
    --text-muted: #999999;
    --text-subtle: #666666;
    --red-badge: #c0392b;
    --green-badge: #27ae60;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
}

/* ── Splash Screen ────────────────────────────────────────── */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-container {
    position: relative;
    text-align: center;
}

.rainbow-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 180px;
    background: conic-gradient(from 0deg,
            #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8b00ff, #ff0000);
    filter: blur(50px);
    opacity: 0.35;
    animation: rotateGlow 5s linear infinite;
    z-index: -1;
}

@keyframes rotateGlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.splash-logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.splash-name {
    font-size: clamp(2rem, 8vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}

.splash-accent {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.splash-line {
    width: 0;
    height: 1.5px;
    background: var(--gold);
    animation: lineWidth 1.5s 0.3s ease-out forwards;
}

@keyframes lineWidth {
    to {
        width: 180px;
    }
}

.splash-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold-dark);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInTag 1s 0.8s ease-out forwards;
}

@keyframes fadeInTag {
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Content protection */
html,
body {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input,
textarea,
select,
[contenteditable="true"] {
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar {
    display: none;
    /* Hide for Chrome, Safari, etc. */
}

* {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* ── Header ───────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: transparent;
    /* Invisible wrapper */
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
}

.header-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.5);
    /* Slightly darker */
    -webkit-backdrop-filter: blur(25px);
    /* Stronger blur */
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* More visible border */
    border-radius: 999px;
    /* Capsule shape */
    padding: 12px 14px 12px 32px;
    /* Increased vertical padding for more height */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    max-width: 1400px;
    margin: 0 auto;
    width: 95%;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    gap: 2px;
}

.brand-name {
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    font-size: 1.6rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-name .accent {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(200, 147, 106, 0.25));
}

.brand-tagline {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--gold-dark);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.logo-image {
    height: 48px;
    /* Increased logo size */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Navigation */
.nav {
    display: flex;
    gap: clamp(0.2rem, 1vw, 0.8rem);
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.8px;
    padding: 8px 12px;
    transition: var(--transition);
    text-transform: uppercase;
}

.nav-item:hover,
.nav-item.active {
    color: var(--gold);
}

/* Utility Area */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-call {
    background: linear-gradient(135deg, #f05a28, #d34e21);
    /* Vibrant orange matching image */
    color: #fff !important;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(240, 90, 40, 0.3);
    transition: var(--transition);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 90, 40, 0.45);
}

/* Header CTA */
.btn-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #111 !important;
    font-weight: 700;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(200, 147, 106, 0.3);
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(200, 147, 106, 0.45);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
    /* Perfect spacing between lines */
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
}

.line {
    width: 20px;
    height: 2px;
    background: var(--gold);
    display: block;
    border-radius: 2px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Transform to X when menu is active */
.menu-toggle.active .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* Responsive Header */
@media (max-width: 992px) {
    .nav {
        display: none;
        /* Hide main nav items */
    }

    .menu-toggle {
        display: flex;
        /* Use flex for centering on mobile */
    }

    .header-pill {
        margin: 0 auto;
        padding: 8px 12px 8px 18px;
        width: 95%;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .lang-switcher {
        display: none;
        /* Hide on small screens or move to menu */
    }

    .nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(20px);
        padding: 30px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transform: none;
        z-index: 999;
    }

    .nav.open .nav-item {
        font-size: 1rem;
        width: 100%;
        text-align: center;
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .btn-call span {
        display: none;
        /* Hide 'CALL US' text */
    }

    .btn-call {
        padding: 10px;
        width: 38px;
        height: 38px;
        justify-content: center;
    }

    .brand-name {
        font-size: 1.75rem;
    }

    .brand-tagline {
        font-size: 0.75rem;
        letter-spacing: 1.2px;
    }

    .logo-image {
        height: 32px;
    }
}

@media (max-width: 350px) {
    .header-pill {
        margin: 0 auto;
        padding: 6px 10px 6px 14px;
        width: calc(100% - 20px);
    }

    .brand-name {
        font-size: 1.5rem;
        /* Increased from 0.85rem */
    }

    .brand {
        gap: 8px;
    }

    .header-right {
        gap: 8px;
    }
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Responsive Nav */
@media (max-width: 992px) {
    .header .container {
        gap: 12px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 12px 16px 16px;
        box-shadow: var(--shadow-md);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 12px;
        border-radius: var(--radius-sm);
        color: var(--text-muted);
    }

    .nav a:hover {
        background: rgba(200, 147, 106, 0.1);
        color: var(--gold-light);
    }

    .btn-cta {
        margin-top: 8px;
        justify-content: center;
    }
}

/* ── Hero Main Wrapper ───────────────────────────────────── */
.hero-main-wrapper {
    position: relative;
    overflow: hidden;
    background: #000000;
}

.hero-main-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 1) 100%),
        url('Image/section-1.jpg') center/cover no-repeat;
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    padding: 110px 0 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 147, 106, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Premium Badge */
.premium-badge-hero {
    background: rgba(200, 147, 106, 0.12);
    color: var(--gold-light);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(200, 147, 106, 0.25);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.premium-badge-hero i {
    color: var(--gold);
    font-size: 0.85rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: var(--text);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    color: var(--gold-light);
    font-size: clamp(1.8rem, 3vw, 3rem);
    display: block;
    margin-top: 0.4rem;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #111;
    box-shadow: 0 8px 24px rgba(200, 147, 106, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 147, 106, 0.5);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(200, 147, 106, 0.06);
}

/* Slider */
.hero-image {
    position: relative;
}

.slider {
    position: relative;
}

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

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide.active {
    opacity: 1;
}

.hero .image-container.slider {
    height: 480px;
    border-radius: var(--radius-xl);
}

@media (max-width: 768px) {
    .hero .image-container.slider {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero .image-container.slider {
        height: 240px;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: rgba(200, 147, 106, 0.5);
}

.slider-btn.prev {
    left: 12px;
}

.slider-btn.next {
    right: 12px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold-light);
    transform: scale(1.3);
}

.image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.15), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.live-badge {
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200, 147, 106, 0.25);
    color: var(--text);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-badge i {
    color: var(--gold);
}

/* ── Happy Travelers ──────────────────────────────────────── */
.travelers-rating {
    padding: 2.5rem 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.rating-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.rating-circles {
    display: flex;
    align-items: center;
}

.customer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--surface);
    object-fit: cover;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.customer-avatar:first-child {
    margin-left: 0;
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-label {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.rating-percentage {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-light);
}

.rating-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars {
    color: var(--gold);
    margin-bottom: 4px;
}

.rating-score {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ── Brands ───────────────────────────────────────────────── */
.brands {
    padding: 2.5rem 0 1.5rem;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.brand-logos {
    max-width: 100%;
    margin: 0 auto;
}

.brand-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.brand-track {
    display: flex;
    align-items: center;
    width: max-content;
}

.brand-set {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
    /* Gap between sets for seamlessness */
}

/* Hide clones on desktop if needed, or keep slider for everyone */
@media (min-width: 601px) {
    .brand-logos .brand-track {
        width: 100%;
        justify-content: space-around;
        animation: none;
        flex-wrap: nowrap;
    }

    /* Hide the second duplicated set on desktop */
    .brand-track .brand-set:nth-child(2) {
        display: none;
    }

    .brand-set {
        padding-right: 0;
        width: 100%;
        justify-content: space-around;
    }
}

@media (max-width: 600px) {
    .brand-track {
        animation: scrollBrands 15s linear infinite;
    }
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    max-height: clamp(48px, 8vw, 75px);
    /* Increased size as requested */
    width: auto;
    filter: none;
    transition: var(--transition);
    opacity: 0.85;
    object-fit: contain;
}

.brand-logo:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.1);
}

/* ── Destinations (Features) ──────────────────────────────── */
.destinations {
    padding: 5rem 0 3rem;
    background: var(--bg);
}

.section-header {
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.3px;
}

.view-all-btn {
    background: rgba(200, 147, 106, 0.12);
    color: var(--gold-light);
    border: 1px solid rgba(200, 147, 106, 0.25);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.view-all-btn:hover {
    background: rgba(200, 147, 106, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Room Features Grid */
.room-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

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

@media (max-width: 600px) {
    .room-features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 147, 106, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(200, 147, 106, 0.25);
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 1.5rem;
    color: #111;
}

/* ── Packages ──────────────────────────────────────────────── */
.packages {
    background: var(--bg);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
    line-height: 1.3;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.92rem;
    flex-grow: 1;
}

/* ── Global Section Styles ─────────────────────────────────── */
section {
    padding: 3rem 0;
    /* Reduced from 5rem */
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-label {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}

.section-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

/* ── Accommodations ───────────────────────────────────────── */
.accommodations {
    background: var(--surface);
    padding: 2rem 0 0rem;
}

:root {
    --slider-gap: 1.5rem;
}

.rooms-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: var(--slider-gap);
    padding-bottom: 20px;
    padding-top: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    /* Suggest it's draggable */

    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
    /* Ensure cards fill the height */
}

.rooms-grid.active {
    cursor: grabbing;
    /* Show when dragging */
    scroll-snap-type: none;
    /* Disable snapping while dragging for smoothness */
}

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

.room-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 0;
    /* Removed radius */
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 520px;
    /* Force consistent minimum height on desktop */

    /* Exactly 3 cards visible on desktop */
    flex: 0 0 calc((100% - (var(--slider-gap) * 2)) / 3);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

@media (max-width: 1100px) {
    .room-card {
        flex: 0 0 calc((100% - var(--slider-gap)) / 2);
        /* 2 cards for mid-size screens */
        min-height: 480px;
    }
}

@media (max-width: 600px) {
    .room-card {
        flex: 0 0 85%;
        /* 85% width on mobile to show peek of next card */
        min-height: 460px;
        /* Consistent height for mobile cards */
    }
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 147, 106, 0.3);
}

/* ── Image on room card ────────────────────────────────────── */
.room-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 0;
    /* Removed radius */
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 0;
    /* Removed radius */
}

.room-card:hover .room-image img {
    transform: scale(1.06);
}

.room-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
}

/* ── Badges on image ───────────────────────────────────────── */
/* Top-left badge stack */
.room-badges-left {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.badge-type,
.badge-popular,
.badge-available {
    padding: 3px 10px;
    font-size: 0.65rem;
    /* Smaller text */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 0;
    /* Removed radius */
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Popular badge (red) */
.badge-popular {
    background: #c0392b;
    color: #fff;
    font-weight: 700;
}

/* Available badge (top-right) */
.badge-available {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: #27ae60;
    color: #fff;
    font-weight: 700;
}

/* ── Room info body ─────────────────────────────────────────── */
.room-info {
    padding: 0.8rem 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
}

.room-title {
    font-size: 1.05rem;
    /* Smaller text */
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin: 0;
}

.room-description {
    color: var(--text-subtle);
    font-size: 0.82rem;
    /* Smaller text */
    line-height: 1.4;
    margin: 0;
}

/* ── Inline stats row (guests / beds / sqm) ──────────────────── */
.room-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    /* Smaller text */
    color: var(--text-muted);
    padding: 8px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.room-stats i {
    color: var(--text-subtle);
    font-size: 0.78rem;
}

/* ── Amenities section ──────────────────────────────────────── */
.room-amenities {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
}

.amenities-label {
    display: block;
    font-size: 0.65rem;
    /* Smaller text */
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
}

.amenities-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.amenities-chips span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    /* Smaller text */
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 0;
    /* Removed radius */
    padding: 3px 8px;
    white-space: nowrap;
}

.amenities-chips i {
    font-size: 0.72rem;
    color: var(--text-subtle);
}

/* ── Room footer (price + rating + button) ───────────────────── */
.room-footer {
    margin-top: auto;
    padding: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Price + star rating row */
.room-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-block .amount {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.price-block .period {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.room-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.room-rating i {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Full-width cream CTA button matching the image */
.book-btn {
    width: 100%;
    background: var(--cream);
    color: #2a1500;
    border: none;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 10px rgba(232, 204, 168, 0.15);
}

.book-btn:hover {
    background: var(--cream-dark);
    box-shadow: 0 6px 20px rgba(232, 204, 168, 0.28);
    transform: translateY(-1px);
}

/* Padding for card bottom so button has breathing room */
.room-card .room-info {
    padding-bottom: 1.35rem;
}

/* ── Packages ──────────────────────────────────────────────── */
.packages {
    padding: 4rem 0 3rem;
    background: var(--bg);
}

.packages-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.packages-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 1rem;
}

.packages-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.packages-divider {
    width: 60px;
    height: 1px;
    background: var(--border);
    margin: 0 auto 2rem;
}

.packages-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.packages-description .highlight {
    color: var(--gold);
    font-weight: 600;
}

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

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

@media (max-width: 600px) {
    html {
        font-size: 14px;
        /* Global scale reduction */
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 1.3rem !important;
    }

    .hero-description {
        font-size: 0.9rem !important;
    }

    .section-title h2,
    .packages-title {
        font-size: 1.5rem !important;
    }

    .section-label,
    .packages-label {
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
    }

    .section-description,
    .packages-description {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .package-overlay {
        padding: 10px;
        /* Even more compact */
    }

    .package-name {
        font-size: 0.85rem;
        /* Slightly smaller to fit 2-col */
    }

    .package-meta {
        gap: 0.4rem;
        font-size: 0.65rem;
        margin-bottom: 0.6rem;
    }

    .package-location {
        font-size: 0.6rem;
    }

    .package-badge {
        top: 6px;
        left: 6px;
        padding: 2px 6px;
        font-size: 0.5rem;
    }

    .package-btn {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    /* Story overrides */
    .story-content {
        padding: 18px;
    }

    .story-image {
        height: 200px !important;
    }

    .story-content .story-title {
        font-size: 1.25rem !important;
    }

    .story-content .story-excerpt {
        font-size: 0.85rem !important;
        line-height: 1.6;
    }

    .story-content h4 {
        font-size: 0.9rem !important;
        margin: 15px 0 6px;
    }

    .story-item-title {
        font-size: 0.9rem !important;
    }

    .story-item-excerpt {
        font-size: 0.8rem !important;
    }
}

.package-card {
    position: relative;
    aspect-ratio: 1/1.2;
    /* Slightly more compact */
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.package-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.package-card:hover .package-bg {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--gold);
    color: #111;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.package-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.package-name {
    font-size: 1.1rem;
    /* Smaller for 4 columns */
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}

.package-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-meta i {
    color: var(--gold);
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.8rem;
}

.package-location {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: #111;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.package-card:hover .package-btn {
    transform: rotate(-45deg);
    background: var(--gold-light);
}

/* ── Stories ──────────────────────────────────────────────── */
.stories {
    background: var(--surface);
}

.stories .section-title {
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
}

.story-main {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.story-image {
    height: 380px;
    overflow: hidden;
    flex-shrink: 0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-content {
    padding: 28px;
    max-width: 760px;
    margin: 0 auto;
}

.story-content .story-author {
    color: var(--text-subtle);
    font-size: 0.88rem;
}

.story-content .story-title {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1.3;
    margin: 10px 0 14px;
    color: var(--text);
}

.story-content .story-excerpt {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 18px;
}

.story-content h4 {
    margin: 20px 0 8px;
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 700;
}

.story-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

.story-content ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 16px;
}

.story-content ul li {
    position: relative;
    padding-left: 22px;
    margin: 6px 0;
    color: var(--text-muted);
}

.story-content ul li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.story-content .article-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 147, 106, 0.25), transparent);
    margin: 18px 0;
}

.story-author {
    font-size: 0.88rem;
    color: var(--text-subtle);
    margin-bottom: 0.75rem;
    display: block;
}

.story-title {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.3;
}

.story-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    flex-grow: 1;
}

.story-date {
    font-size: 0.85rem;
    color: var(--text-subtle);
    margin-top: auto;
}

/* Sidebar stories */
.story-sidebar {
    display: grid;
    grid-auto-rows: minmax(min-content, max-content);
    gap: 1rem;
}

.story-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.story-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 147, 106, 0.25);
}

.story-category {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    display: inline-block;
    background: rgba(200, 147, 106, 0.1);
    border: 1px solid rgba(200, 147, 106, 0.2);
    padding: 4px 10px;
    border-radius: 999px;
}

.story-item-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text);
    line-height: 1.3;
}

.story-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.story-item-title a:hover {
    color: var(--gold-light);
}

.story-item-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.see-more {
    margin-top: 0.5rem;
}

.see-more-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.see-more-link:hover {
    color: var(--gold);
    gap: 10px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
    background: var(--surface);
    color: var(--text);
    padding: 3.5rem 0 1.5rem;
    border-top: 1px solid var(--border);
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
}

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-section ul li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-subtle);
    font-size: 0.85rem;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .premium-badge-hero {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        margin-bottom: 2.5rem;
        margin-top: 0;
    }

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

    .stories-grid .story-sidebar {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .section-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .rooms-grid {
        flex-direction: row;
        /* Ensure horizontal layout for side-scroll */
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .room-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rating-content {
        gap: 1.2rem;
    }

    .story-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .room-features-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .rating-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .package-name {
        font-size: 0.7rem;
    }

    .package-overlay {
        padding: 8px;
    }

    .room-card {
        flex: 0 0 100%;
    }
}

/* ── Utility Animations ───────────────────────────────────── */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeUp 0.7s ease forwards;
}

/* ── Price tag ────────────────────────────────────────────── */
.price-tag {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    align-self: flex-end;
    box-shadow: 0 4px 16px rgba(200, 147, 106, 0.3);
}

.price-tag .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
}

.duration {
    font-size: 0.9rem;
    color: rgba(17, 17, 17, 0.7);
}

/* Story image cover */
.story-image img,
.main-image,
.room-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}