/* ==========================================================
   Adan Castle Resorts — "Clean Sanctuary" Design System (2026)
   Palette: White / Graphite Charcoal / Muted Gold / Soft Gray
   Font: Roboto
   ========================================================== */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
    --white: #FFFFFF;
    --surface: #F8F9FA;
    --charcoal: #2D2D2D;
    --charcoal-light: #6B6B6B;
    --gold: #C5A059;
    --gold-hover: #b08c44;
    --radius: 16px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Utilities ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section.surface { background: var(--surface); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-light { color: var(--charcoal-light); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: 22px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { margin-top: 12px; color: var(--charcoal-light); font-size: 18px; font-weight: 300; }

.overline {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

/* ── Primary Button (Pill) ──────────────────────────────── */
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.primary-btn:hover {
    background: var(--gold-hover);
    transform: scale(1.04);
}

/* ── Ghost / Outline Button ─────────────────────────────── */
.ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--charcoal);
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    border: 2px solid var(--charcoal);
    border-radius: 50px;
    padding: 12px 32px;
    cursor: pointer;
    transition: var(--transition);
}

.ghost-btn:hover {
    background: var(--charcoal);
    color: var(--white);
}

/* ── Header ─────────────────────────────────────────────── */

/* ── Header ─────────────────────────────────────────────── */
.modern-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-header.scrolled {
    top: 16px;
    width: 96%;
    max-width: 1200px;
}

.modern-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 60px;
    padding: 12px 14px 12px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-header.scrolled .modern-nav {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 10px 10px 24px;
}

.modern-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.modern-logo:hover .logo-img {
    transform: scale(1.04);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.modern-nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.modern-nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    padding: 10px 20px;
    border-radius: 40px;
    transition: all 0.2s ease;
}

.modern-nav-links a:hover,
.modern-nav-links a.active {
    background: rgba(0, 0, 0, 0.04);
    color: var(--gold);
}

.modern-nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.modern-book-btn {
    background: var(--charcoal);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.modern-book-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25);
    color: #fff;
}

.modern-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-right: 4px;
    border-radius: 50%;
    transition: background 0.3s;
}

.modern-mobile-toggle:hover { background: rgba(0,0,0,0.05); }

.modern-mobile-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--charcoal);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.modern-mobile-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.modern-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.modern-mobile-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


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

/* ── Footer ─────────────────────────────────────────────── */
footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-grid a:hover { color: var(--gold); }
.footer-grid p, .footer-grid li { font-size: 14px; margin-bottom: 8px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

/* ── Bento Grid (About) ────────────────────────────────── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 20px;
}

.bento-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.bento-item:hover { transform: scale(1.02); }
.bento-item.tall { grid-row: span 2; }
.bento-item.wide { grid-column: span 2; }

.bento-item.has-image {
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.bento-item.has-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    border-radius: var(--radius);
}

.bento-item.has-image > * { position: relative; z-index: 1; }

.bento-item i { font-size: 28px; color: var(--gold); margin-bottom: 12px; }
.bento-item h3 { margin-bottom: 8px; }
.bento-item p { font-size: 14px; color: var(--charcoal-light); line-height: 1.6; }
.bento-item.has-image p { color: rgba(255,255,255,0.85); }

/* ── Room Cards (Old) ─────────────────────────────────────────── */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.room-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; transition: var(--transition); }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.room-card-img {
    height: 240px;
    overflow: hidden;
}

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

.room-card-body { padding: 28px; }
.room-card-body h3 { margin-bottom: 4px; }

.room-price {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.room-amenities {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.room-amenities span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--charcoal-light);
}

.room-amenities i { color: var(--gold); font-size: 16px; }

/* ── Gallery (Masonry Grid) ─────────────────────────────── */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-bottom: 24px;
}
@media (max-width: 1024px) {
    .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gallery-masonry { grid-template-columns: 1fr; }
}
.gallery-masonry .gallery-item {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.gallery-masonry .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.gallery-masonry .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-masonry .gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    pointer-events: none;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover .gallery-title { transform: translateY(0); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
}

/* ── Modern Contact Redesign ───────────────────────────────────── */
.contact-hero {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 80px;
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 0, 0, 0.51) 0%, rgba(10, 0, 0, 0.532) 100%);
    border-radius: 0 0 40px 40px;
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 220px;
    color: #fff;
}
.contact-hero h1 { font-size: clamp(48px, 6vw, 72px); font-weight: 500; }
.contact-hero p { font-size: 20px; font-weight: 300; margin-top: 12px; color: rgba(255, 255, 255, 0.85); }
.contact-hero-breadcrumb {
    position: absolute;
    bottom: 0;
    right: 80px;
    background: #fff;
    padding: 16px 36px;
    border-radius: 20px 20px 0 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    z-index: 3;
}

/* ── Modern Layout ────────────────────────────────────────── */
.contact-modern-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: start;
    margin-bottom: 60px;
}
.modern-overline { font-size: 13px; font-weight: 600; color: var(--charcoal-light); margin-bottom: 24px; text-transform: lowercase; display: block; }
.modern-heading { font-size: clamp(36px, 4vw, 56px); line-height: 1.1; font-weight: 500; margin-bottom: 28px; color: var(--charcoal); }
.modern-desc { font-size: 15px; line-height: 1.8; color: var(--charcoal-light); margin-bottom: 60px; max-width: 90%; }
.modern-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 20px; }
.info-block h4 { font-size: 16px; font-weight: 600; margin-bottom: 16px; color: var(--charcoal); }
.info-block p { font-size: 14px; color: var(--charcoal-light); line-height: 1.6; }
.social-icons { display: flex; gap: 16px; }
.social-icons a { color: var(--charcoal); font-size: 18px; transition: color 0.3s; }
.social-icons a:hover { color: var(--gold); }

/* Form Card */
.contact-modern-form-wrapper { background: var(--surface); border-radius: 24px; padding: 60px 40px; }
.modern-form-card h3 { font-size: 28px; font-weight: 500; margin-bottom: 16px; }
.modern-form-card p { font-size: 14px; color: var(--charcoal-light); margin-bottom: 40px; line-height: 1.6; }
.modern-contact-form { display: flex; flex-direction: column; gap: 28px; }
.modern-contact-form input, .modern-contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 12px 0;
    font-family: inherit;
    font-size: 14px;
    color: var(--charcoal);
    transition: border-color 0.3s;
}
.modern-contact-form input:focus, .modern-contact-form textarea:focus { outline: none; border-bottom-color: var(--charcoal); }
.modern-contact-form textarea { min-height: 80px; resize: vertical; }

.dark-pill-btn {
    align-self: flex-start;
    background: var(--charcoal);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 16px;
}
.dark-pill-btn:hover { background: var(--gold); }

/* Full Width Map */
.contact-map-full { width: 100%; height: 500px; overflow: hidden; }
.contact-map-full iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 900px) {
    .contact-modern-layout { grid-template-columns: 1fr; gap: 60px; }
    .contact-hero { height: 380px; border-radius: 0 0 24px 24px; }
    .contact-hero-overlay { border-radius: 0 0 24px 24px; }
    .contact-hero-breadcrumb { right: 20px; padding: 12px 24px; }
    .contact-modern-form-wrapper { padding: 40px 24px; }
    .contact-hero-content { padding-top: 160px; }
}

/* ── WhatsApp FAB ───────────────────────────────────────── */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); }

/* ── Page Banner (About/About) ───────────────────────────── */
.page-banner {
    padding: 220px 0 140px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(30,30,30,0.5) 100%);
    z-index: 1;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; }
.page-banner p { color: rgba(255,255,255,0.85); font-size: 18px; font-weight: 300; margin-top: 8px; }

/* ══════════════════════════════════════════════════════════
   HOME PAGE — idx-* Components (v5)
   ══════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────── */
.idx-hero { position: relative; min-height: 80vh; display: flex; align-items: center; overflow: hidden; }
.idx-hero__slideshow { position: absolute; inset: 0; z-index: 0; }
.idx-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.4s ease, transform 7s ease;
}
.idx-hero__slide.active { opacity: 1; transform: scale(1); }
.idx-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(20,20,20,0.88) 0%, rgba(30,30,30,0.55) 55%, rgba(0,0,0,0.25) 100%);
}
.idx-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
    padding-top: 100px;
    padding-bottom: 60px;
}
.idx-hero__text { color: #fff; }
.idx-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(197, 160, 89, 0.35);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.idx-hero__rotating { 
    position: relative; 
    height: clamp(140px, 22vw, 200px); /* Increased height for mobile wrapping */
    margin-bottom: 20px; 
}

.idx-hero__heading {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    visibility: hidden; /* Prevent interaction with hidden headings */
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s;
    font-size: clamp(34px, 5vw, 60px); /* Slightly smaller base font-size for mobile fitting */
    line-height: 1.1;
    font-weight: 700;
}

.idx-hero__heading.active { 
    opacity: 1; 
    visibility: visible;
    transform: translateY(0); 
}
.idx-hero__sub { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 460px; margin-bottom: 32px; font-weight: 300; }
.idx-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.idx-hero__dots { display: flex; gap: 8px; }
.idx-dot {
    width: 28px;
    height: 3px;
    background: rgba(255,255,255,0.25);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}
.idx-dot.active { width: 44px; background: var(--gold); }
.idx-hero__cards { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.idx-float-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 28px;
    color: #fff;
    min-width: 280px;
    transition: var(--transition);
    animation: floatIn 0.8s ease-out both;
}
@keyframes floatIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
.idx-float-card:hover { background: rgba(255,255,255,0.14); transform: translateX(-6px); }
.idx-float-card__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.idx-float-card strong { display: block; font-size: 14px; margin-bottom: 2px; }
.idx-float-card span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* Marquee */
.idx-marquee { background: var(--charcoal); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.idx-marquee__track { display: inline-flex; gap: 32px; animation: marqueeScroll 20s linear infinite; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.45); }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── About Preview ──────────────────────────────────────── */
.idx-about { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.idx-about__images { position: relative; height: 520px; }
.idx-about__img { border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow-lg); }
.idx-about__img--main { width: 75%; height: 100%; position: relative; z-index: 1; }
.idx-about__img--float { position: absolute; bottom: -24px; right: 0; width: 55%; height: 260px; z-index: 2; border: 5px solid #fff; }
.idx-about__content h2 { margin-bottom: 20px; }
.idx-about__content > p { color: var(--charcoal-light); font-size: 16px; line-height: 1.8; margin-bottom: 28px; }
.idx-about__highlights { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.idx-highlight { display: flex; align-items: center; gap: 16px; }
.idx-highlight i { width: 44px; height: 44px; border-radius: 12px; background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold); flex-shrink: 0; }
.idx-highlight strong { display: block; font-size: 15px; margin-bottom: 2px; }
.idx-highlight span { font-size: 13px; color: var(--charcoal-light); }

/* ── Amenities Redesign (Split Layout) ─────────────────────── */
.amenities-redesign { padding: 120px 0; }
.amenities-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.amenity-hero-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 640px;
    box-shadow: var(--shadow-lg);
}

.amenity-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.amenity-hero-wrapper:hover .amenity-hero-img { transform: scale(1.05); }

.amenity-overlay-card {
    position: absolute;
    bottom: 32px;
    right: -32px;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    max-width: 360px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    z-index: 2;
}

.idx-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.idx-amenity-item {
    display: flex;
    gap: 20px;
}

.idx-amenity-item i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

.idx-amenity-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--charcoal); }
.idx-amenity-item p { font-size: 13.5px; color: var(--charcoal-light); line-height: 1.6; }

@media (max-width: 1000px) {
    .amenities-split { gap: 40px; }
    .amenity-overlay-card { display: none; }
}

@media (max-width: 992px) {
    .amenities-split { grid-template-columns: 1fr; }
    .amenity-hero-wrapper { height: 480px; }
    .idx-amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .idx-amenities-grid { grid-template-columns: 1fr; }
    .amenity-hero-wrapper { height: 320px; }
}

/* ── Gallery Mosaic ─────────────────────────────────────── */
.idx-gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 16px; }
.idx-gallery__item { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.idx-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.idx-gallery__item:hover img { transform: scale(1.08); }
.idx-gallery__item--tall { grid-row: span 2; }
.idx-gallery__item--wide { grid-column: span 2; }

/* ── Testimonial ────────────────────────────────────────── */
.idx-testimonial { background: var(--surface); padding: 100px 0; }
.idx-testimonial__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.idx-testimonial__inner blockquote { font-size: clamp(20px, 2.5vw, 28px); font-weight: 300; line-height: 1.7; color: var(--charcoal); margin-bottom: 20px; }
.idx-testimonial__inner cite { font-style: normal; font-size: 14px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }

/* ── CTA Section ────────────────────────────────────────── */
.idx-cta { position: relative; padding: 120px 0; overflow: hidden; }
.idx-cta__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.idx-cta__overlay { position: absolute; inset: 0; background: rgba(20,20,20,0.85); }
.idx-cta__inner { position: relative; z-index: 1; text-align: center; color: #fff; max-width: 580px; margin: 0 auto; }
.idx-cta__inner h2 { margin-bottom: 16px; }
.idx-cta__inner p { color: rgba(255,255,255,0.65); margin-bottom: 36px; font-size: 17px; font-weight: 300; }
.wa-btn-inline { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; padding: 14px 32px; border-radius: 50px; font-weight: 500; font-size: 15px; transition: var(--transition); }
.wa-btn-inline:hover { transform: scale(1.04); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Landmarks Overlap Grid ─────────────────────────────── */
.landmarks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.landmark-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.landmark-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(0,0,0,0.12); }
.landmark-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--surface); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; transition: background 0.3s, color 0.3s; }
.landmark-card:hover .landmark-icon { background: var(--gold); color: var(--white); }
.landmark-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--charcoal); }
.landmark-dist { display: inline-block; padding: 6px 16px; background: rgba(0,0,0,0.03); border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--charcoal-light); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .idx-hero__grid { grid-template-columns: 1fr; text-align: center; padding-top: 140px; }
    .idx-hero__text { max-width: 100%; }
    .idx-hero__sub { margin-left: auto; margin-right: auto; }
    .idx-hero__btns { justify-content: center; }
    .idx-hero__dots { justify-content: center; }
    .idx-hero__cards { display: none; }
}

@media (max-width: 992px) {
    .bento-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
    .bento-item.wide { grid-column: span 2; }
    .rooms-grid { grid-template-columns: 1fr 1fr; }
    .contact-modern-layout { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .idx-about { grid-template-columns: 1fr; gap: 40px; }
    .idx-about__img--main { width: 100%; height: 360px; }
    .idx-about__img--float { display: none; }
    .idx-amenities { grid-template-columns: 1fr 1fr; }
    .idx-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .idx-gallery__item--wide { grid-column: span 2; }
    .landmarks-grid { grid-template-columns: repeat(2, 1fr); }

    /* Curved Floating Mobile Nav */
    .modern-nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        border-radius: 32px; /* Curved shape */
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        z-index: 1000;
        gap: 20px;
    }
    .modern-nav-links.active { display: flex; animation: fadeIn 0.4s ease forwards; }
    .modern-nav-links a { 
        font-size: 18px; 
        font-weight: 600; /* Premium weight */
        padding: 12px 30px; 
        color: var(--charcoal); 
        width: 100%; 
        text-align: center;
    }
    .modern-nav-links a:hover { color: var(--gold); }
    
    .modern-mobile-toggle { display: flex; z-index: 1100; }
    .modern-book-btn { display: none; }
}

@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .bento-item.wide { grid-column: span 1; }
    .rooms-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .idx-hero__heading { font-size: clamp(32px, 8vw, 44px); }
    .idx-amenities { grid-template-columns: 1fr; }
    .idx-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .idx-gallery__item--wide { grid-column: span 1; }
    .landmarks-grid { grid-template-columns: 1fr; }
}
