/* -------------------------------------------------------------
 * Design System: Luxury Sumba Haven Theme
 * ------------------------------------------------------------- */

:root {
    /* Color Palette (HSL Tailored) */
    --color-primary: #0B1320;       /* Deep Navy Slate (Ocean) */
    --color-primary-light: #16243A; /* Lighter Deep Navy */
    --color-accent: #D4AF37;        /* Luxury Gold Sand */
    --color-accent-hover: #C5A02E;  /* Darker Gold */
    --color-bg-light: #FAF7F2;      /* Soft Ivory Champagne */
    --color-bg-white: #FFFFFF;      /* Clean White */
    --color-text-dark: #1E2530;     /* Obsidian Dark */
    --color-text-light: #5A6475;    /* Muted Slate Text */
    --color-text-white: #FFFFFF;    /* Clean White Text */
    
    /* Layout Constants */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease-in-out;
    --box-shadow-luxury: 0 15px 35px rgba(11, 19, 32, 0.08);
    --box-shadow-hover: 0 25px 50px rgba(212, 175, 55, 0.15);
    --glass-background: rgba(11, 19, 32, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* -------------------------------------------------------------
 * Reset & Base Settings
 * ------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-bg-light);
}

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

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

ul {
    list-style: none;
}

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

.text-gold {
    color: var(--color-accent) !important;
}

/* -------------------------------------------------------------
 * Buttons & Global Utilities
 * ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-light);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

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

/* -------------------------------------------------------------
 * Header & Navigation
 * ------------------------------------------------------------- */
.top-bar {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info, .top-widgets {
    display: flex;
    align-items: center;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item svg.icon {
    width: 14px;
    height: 14px;
    fill: var(--color-accent);
}

.info-item a:hover {
    color: var(--color-accent);
}

.weather-widget {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent);
}

.lang-selector select {
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
}

.lang-selector select option {
    background-color: var(--color-primary);
    color: #fff;
}

/* Main Header */
.main-header {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    top: 0;
    background-color: var(--glass-background);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-bg-light);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.55rem;
    letter-spacing: 4px;
    color: rgba(250, 247, 242, 0.7);
    margin-top: 4px;
    font-weight: 500;
}

.main-header.scrolled .logo-title {
    color: var(--color-bg-white);
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: rgba(250, 247, 242, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 8px 0;
}

.main-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

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

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

.nav-link:hover, .nav-link.active {
    color: var(--color-accent) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Sound Toggle */
.sound-toggle-btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgba(250, 247, 242, 0.8);
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid rgba(250, 247, 242, 0.2);
    transition: var(--transition-fast);
}

.main-header.scrolled .sound-toggle-btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.sound-toggle-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent) !important;
}

.sound-wave {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 12px;
    width: 16px;
}

.sound-wave span {
    display: block;
    width: 2px;
    background-color: currentColor;
    height: 3px;
    transition: height 0.1s ease;
}

.sound-toggle-btn.playing .sound-wave span {
    animation: wave-anim 1.2s ease infinite alternate;
}

.sound-toggle-btn.playing .sound-wave span:nth-child(1) { animation-delay: 0.1s; }
.sound-toggle-btn.playing .sound-wave span:nth-child(2) { animation-delay: 0.3s; }
.sound-toggle-btn.playing .sound-wave span:nth-child(3) { animation-delay: 0.6s; }
.sound-toggle-btn.playing .sound-wave span:nth-child(4) { animation-delay: 0.2s; }

@keyframes wave-anim {
    0% { height: 3px; }
    100% { height: 12px; }
}

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

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-bg-light);
    transition: var(--transition-fast);
}

.main-header.scrolled .mobile-menu-toggle span {
    background-color: #fff;
}

/* -------------------------------------------------------------
 * Hero Section
 * ------------------------------------------------------------- */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-text-white);
    background-color: var(--color-primary);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-desc {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-btns .btn-secondary {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}

.hero-btns .btn-secondary:hover {
    background-color: #fff;
    color: var(--color-primary);
}

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.hero-scroll-down a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-scroll-down a:hover {
    color: var(--color-accent);
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 1px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.5s infinite;
}

@keyframes scroll-wheel-anim {
    0% { top: 8px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

.scroll-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* -------------------------------------------------------------
 * Booking Section
 * ------------------------------------------------------------- */
.booking-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding-bottom: 80px;
}

.live-info-container {
    background-color: rgba(11, 19, 32, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: none;
    padding: 16px 30px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #fff;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.live-info-item {
    font-size: 0.85rem;
    display: flex;
    gap: 8px;
    align-items: center;
}

.live-label {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-value {
    font-weight: 600;
}

.booking-engine-box {
    background-color: var(--color-bg-white);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 35px 40px;
    box-shadow: var(--box-shadow-luxury);
    position: relative;
    transition: var(--transition-smooth);
}

.booking-engine-box.glow-highlight {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    border: 1px solid var(--color-accent);
}

.booking-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 180px;
    gap: 20px;
    align-items: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

.form-group input, .form-group select {
    padding: 14px;
    border: 1px solid #E1E6EB;
    border-radius: 4px;
    background-color: #FAFBFD;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
    width: 100%;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--color-accent);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Booking Result Sheet */
.booking-result-sheet {
    position: absolute;
    top: 100%;
    left: 40px;
    right: 40px;
    margin-top: 10px;
    background-color: var(--color-bg-white);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #E1E6EB;
    z-index: 100;
    padding: 24px;
    display: none;
    animation: fade-in-up 0.3s ease-out;
}

.booking-result-sheet.active {
    display: block;
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #E1E6EB;
    padding-bottom: 12px;
}

.result-header h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
}

.close-result {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-text-light);
}

.close-result:hover {
    color: var(--color-text-dark);
}

.result-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.result-row span {
    color: var(--color-text-light);
}

.result-row strong, .result-row span#res-subtotal, .result-row span#res-tax {
    font-weight: 500;
}

.total-row {
    font-size: 1.2rem;
    border-top: 1px dashed #E1E6EB;
    padding-top: 15px;
    margin-top: 5px;
}

.total-row strong {
    font-size: 1.3rem;
}

/* -------------------------------------------------------------
 * About Section
 * ------------------------------------------------------------- */
.about-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: 4px;
    box-shadow: var(--box-shadow-luxury);
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--color-primary);
    color: #fff;
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-num {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-text-content {
    display: flex;
    flex-direction: column;
}

.about-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.about-desc.highlight {
    font-size: 1.25rem;
    color: var(--color-primary);
    line-height: 1.4;
    font-family: var(--font-heading);
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    border-top: 1px solid #E1E6EB;
    padding-top: 30px;
}

.feat-item {
    flex: 1;
}

.feat-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.feat-item h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.feat-item p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* -------------------------------------------------------------
 * Rooms Section
 * ------------------------------------------------------------- */
.rooms-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.room-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #FAFBFD;
    border: 1px solid #E1E6EB;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.rooms-carousel-wrapper {
    overflow: visible;
}

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

.room-card {
    background-color: var(--color-bg-light);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--box-shadow-luxury);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 19, 32, 0.12);
}

.room-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.room-price-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--color-primary);
    color: var(--color-accent);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
}

.room-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.room-features-info {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.room-summary {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Room Animation Filter classes */
.room-card.filtered-out {
    display: none !important;
}

/* -------------------------------------------------------------
 * Experiences Section
 * ------------------------------------------------------------- */
.experiences-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.exp-interactive-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.exp-tabs-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exp-tab-btn {
    background-color: var(--color-bg-white);
    border: 1px solid #E1E6EB;
    border-left: 4px solid transparent;
    padding: 22px 30px;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
    outline: none;
}

.exp-tab-btn:hover {
    transform: translateX(5px);
    box-shadow: var(--box-shadow-luxury);
}

.exp-tab-btn.active {
    border-left-color: var(--color-accent);
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: var(--box-shadow-luxury);
}

.tab-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-accent);
    font-weight: 600;
}

.tab-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.exp-content-panel {
    background-color: var(--color-bg-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--box-shadow-luxury);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 400px;
    transition: var(--transition-smooth);
    animation: fade-in-panel 0.4s ease-out;
}

@keyframes fade-in-panel {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.exp-image-box {
    overflow: hidden;
    position: relative;
    min-height: 300px;
}

.exp-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.exp-content-panel:hover .exp-image-box img {
    transform: scale(1.05);
}

.exp-info-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-info-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.exp-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.exp-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    border-top: 1px solid #E1E6EB;
    padding-top: 20px;
}

/* -------------------------------------------------------------
 * Heritage Section (Spotlight)
 * ------------------------------------------------------------- */
.heritage-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.heritage-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.heritage-text p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border-bottom: 1px solid #E1E6EB;
    padding-bottom: 16px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 8px 0;
}

.accordion-header h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.accordion-icon {
    font-size: 1.4rem;
    color: var(--color-accent);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding-top: 12px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Active Accordion styling */
.accordion-item.active .accordion-header h4 {
    color: var(--color-accent);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

/* Image Stack */
.heritage-image {
    position: relative;
    height: 480px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-img {
    position: absolute;
    border-radius: 4px;
    box-shadow: var(--box-shadow-luxury);
    object-fit: cover;
    transition: var(--transition-smooth);
}

.bottom-img {
    width: 75%;
    height: 380px;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.top-img {
    width: 65%;
    height: 300px;
    top: 0;
    right: 0;
    z-index: 2;
    border: 8px solid var(--color-bg-white);
}

.image-stack:hover .bottom-img {
    transform: scale(0.98) translate(-10px, 10px);
}

.image-stack:hover .top-img {
    transform: scale(1.02) translate(10px, -10px);
}

/* -------------------------------------------------------------
 * Testimonials Section
 * ------------------------------------------------------------- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testi-card {
    background-color: var(--color-bg-white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--box-shadow-luxury);
    position: relative;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
}

.testi-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.user-avatar {
    width: 46px;
    height: 46px;
    background-color: var(--color-primary);
    color: var(--color-accent);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
}

.user-info span {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* -------------------------------------------------------------
 * Footer Section
 * ------------------------------------------------------------- */
.footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-desc {
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.7);
}

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

.social-links a:hover svg {
    fill: var(--color-primary);
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.address-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-links a {
    color: var(--color-accent);
}

.contact-links a:hover {
    color: #fff;
}

.newsletter-col p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    width: 100%;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--color-primary-light);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    outline: none;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--color-accent);
}

.newsletter-form button {
    padding: 0 24px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--color-accent-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.design-by {
    color: rgba(255, 255, 255, 0.3);
}

/* -------------------------------------------------------------
 * Chatbot Widget (Concierge)
 * ------------------------------------------------------------- */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
    outline: none;
}

.chat-toggle:hover {
    transform: scale(1.05) translateY(-3px);
}

.chat-toggle svg {
    width: 26px;
    height: 26px;
    fill: var(--color-primary);
    position: absolute;
    transition: var(--transition-smooth);
}

.chat-toggle .icon-close {
    opacity: 0;
    transform: rotate(-90deg);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #E05A47;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-accent);
}

/* Chatbox Open States */
.chat-widget.open .chat-toggle {
    background-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(11, 19, 32, 0.3);
}

.chat-widget.open .chat-toggle svg {
    fill: #fff;
}

.chat-widget.open .chat-toggle .icon-open {
    opacity: 0;
    transform: rotate(90deg);
}

.chat-widget.open .chat-toggle .icon-close {
    opacity: 1;
    transform: rotate(0);
}

.chat-widget.open .chat-badge {
    display: none;
}

.chat-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 380px;
    height: 500px;
    background-color: var(--color-bg-white);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid #E1E6EB;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.chat-widget.open .chat-box {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chat-header {
    background-color: var(--color-primary);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    font-size: 1.8rem;
}

.chat-title-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.chat-title-info span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.chat-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #FAFBFD;
}

.chat-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.4;
    position: relative;
    animation: msg-slide 0.3s ease-out;
}

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

.chat-message.bot {
    background-color: #fff;
    color: var(--color-text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.chat-message.user {
    background-color: var(--color-primary);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-message p {
    white-space: pre-line;
}

.chat-message .time {
    display: block;
    font-size: 0.65rem;
    color: var(--color-text-light);
    margin-top: 6px;
    text-align: right;
}

.chat-message.user .time {
    color: rgba(255, 255, 255, 0.5);
}

.chat-footer {
    padding: 15px 20px;
    border-top: 1px solid #E1E6EB;
    background-color: var(--color-bg-white);
}

.chat-footer form {
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex-grow: 1;
    border: 1px solid #E1E6EB;
    padding: 10px 15px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition-fast);
}

.chat-footer input:focus {
    border-color: var(--color-accent);
}

.chat-footer button {
    background: var(--color-accent);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    outline: none;
    flex-shrink: 0;
}

.chat-footer button:hover {
    background-color: var(--color-accent-hover);
    transform: scale(1.05);
}

.chat-footer button svg {
    width: 18px;
    height: 18px;
    fill: var(--color-primary);
    transform: translateX(1px);
}

/* -------------------------------------------------------------
 * Scroll-reveal animations styling
 * ------------------------------------------------------------- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------
 * Responsive Design (Media Queries)
 * ------------------------------------------------------------- */

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .main-header {
        top: 0;
    }
    
    .top-bar {
        display: none; /* Hide topbar on smaller viewports to conserve space */
    }

    .booking-section {
        margin-top: -40px;
    }

    .booking-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-btn-group {
        grid-column: span 2;
    }

    .about-grid, .heritage-grid {
        gap: 40px;
    }

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

    .exp-interactive-container {
        grid-template-columns: 1fr;
    }

    .exp-tabs-menu {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .exp-tab-btn {
        flex: 1;
        min-width: 220px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-primary);
        z-index: 999;
        padding: 40px 20px;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .nav-link {
        font-size: 1.1rem;
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .about-grid, .heritage-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .heritage-image {
        height: 380px;
        max-width: 500px;
        margin: 40px auto 0;
    }

    .bottom-img {
        height: 280px;
    }
    
    .top-img {
        height: 220px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .room-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .exp-content-panel {
        grid-template-columns: 1fr;
    }

    .exp-image-box {
        height: 240px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .chat-box {
        width: 90vw;
        right: -10px;
        bottom: 75px;
    }
}

@media (max-width: 580px) {
    .booking-form-grid {
        grid-template-columns: 1fr;
    }

    .form-btn-group {
        grid-column: span 1;
    }

    .live-info-container {
        padding: 12px 15px;
    }
    
    .live-info-item {
        font-size: 0.75rem;
    }

    .about-badge {
        padding: 15px 20px;
        bottom: -15px;
        right: -15px;
    }
    
    .badge-num {
        font-size: 1.6rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* =============================================================
 * Premium Redesign Additions (Aesthetics & Modals)
 * ============================================================= */

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--color-accent), #FFD700);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Custom Cursor styling */
.custom-cursor-dot,
.custom-cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
}
.custom-cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
}

/* Hide custom cursor on touch-based pointer devices */
@media (pointer: coarse) {
    .custom-cursor-dot,
    .custom-cursor-outline {
        display: none !important;
    }
}

/* Ken Burns Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.hero-slideshow .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease-in-out, transform 6s linear;
}
.hero-slideshow .hero-slide.active {
    opacity: 1;
    transform: scale(1.12);
}

/* Sumba Destinations Explorer */
.destinations-section {
    padding: 100px 0;
    background-color: #FAF7F2;
}
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.destination-card {
    background-color: var(--color-bg-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid #E1E6EB;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-luxury);
    border-color: var(--color-accent);
}
.dest-img-box {
    height: 240px;
    overflow: hidden;
}
.dest-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.destination-card:hover .dest-img-box img {
    transform: scale(1.05);
}
.dest-info-box {
    padding: 30px;
}
.dest-meta {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}
.dest-info-box h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 500;
}
.dest-info-box p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Resort Photo Gallery */
.gallery-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid #E1E6EB;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 32, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-overlay span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-overlay span {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 32, 0.95);
    z-index: 11000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fade-in-fast 0.3s ease;
}
@keyframes fade-in-fast {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 11010;
    line-height: 1;
    transition: color 0.3s ease;
}
.lightbox-close:hover {
    color: var(--color-accent);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 11010;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.lightbox-nav:hover {
    color: var(--color-accent);
    background: rgba(0, 0, 0, 0.6);
}
.lightbox-nav.prev { left: 30px; }
.lightbox-nav.next { right: 30px; }
.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-radius: 4px;
}
.lightbox-caption {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Room Details Modal */
.room-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.room-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 32, 0.6);
    backdrop-filter: blur(5px);
}
.room-modal-card {
    position: relative;
    background-color: var(--color-bg-white);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid #E1E6EB;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    animation: zoom-in-modal 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes zoom-in-modal {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.room-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.2rem;
    color: #fff;
    background: rgba(11, 19, 32, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, color 0.3s ease;
}
.room-modal-close:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}
.room-modal-img-box {
    height: 100%;
    overflow: hidden;
}
.room-modal-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-modal-content {
    padding: 40px;
    overflow-y: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}
.rm-modal-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
    list-style: none;
    padding-left: 0 !important;
}
.rm-modal-amenities li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rm-modal-amenities li::before {
    content: "•";
    color: var(--color-accent);
    font-weight: bold;
}

/* =============================================================
 * Responsive Overrides for Gallery, Destinasi & Modals
 * ============================================================= */
@media (max-width: 991px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    .room-modal-card {
        grid-template-columns: 1fr;
        max-height: 85vh;
    }
    .room-modal-img-box {
        height: 250px;
    }
    .room-modal-content {
        padding: 30px;
        max-height: 60vh;
    }
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    .lightbox-nav {
        padding: 10px 15px;
        font-size: 1.8rem;
    }
    .lightbox-nav.prev { left: 10px; }
    .lightbox-nav.next { right: 10px; }
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2.2rem;
    }
}

.admin-footer-link:hover {
    color: var(--color-accent) !important;
}
