/* =====================================================
   Abraj Al Madina Hotel — Premium Dark Gold Theme
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Tajawal:wght@300;400;500;700&family=Inter:wght@300;400;500&display=swap');

/* === CSS Variables === */
:root {
    --gold-light: #e8c97e;
    --gold: #c9a84c;
    --gold-dark: #9a7a2e;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-glass: rgba(22, 22, 22, 0.85);
    --text-primary: #f5f0e8;
    --text-muted: #8a8078;
    --text-accent: #c9a84c;
    --border: rgba(201, 168, 76, 0.15);
    --border-hover: rgba(201, 168, 76, 0.5);
    --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.12);
    --nav-height: 76px;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', 'Tajawal', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

body[dir="rtl"] {
    font-family: 'Tajawal', 'Inter', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-logo img {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
    transition: transform var(--transition);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

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

body[dir="rtl"] .nav-links a::after {
    left: 0;
    right: 0;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.lang-toggle {
    background: none;
    border: 1px solid var(--border-hover);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.9rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.lang-toggle:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
    border-bottom: 1px solid var(--border);
}

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

.mobile-menu a {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.mobile-menu a:hover {
    color: var(--gold-light);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/GOPR4353.JPG');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    animation: fadeDown 0.8s 0.2s both;
}

.hero-title {
    font-family: 'Playfair Display', 'Tajawal', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.12;
    background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeDown 0.8s 0.4s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    animation: fadeDown 0.8s 0.6s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all var(--transition);
    animation: fadeDown 0.8s 0.8s both;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(201, 168, 76, 0.5);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite 1.5s;
    opacity: 0.7;
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
}

/* =====================================================
   SECTION COMMONS
   ===================================================== */
section {
    padding: 6rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', 'Tajawal', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.25rem 0 2rem;
}

body[dir="rtl"] .section-divider {
    background: linear-gradient(270deg, var(--gold), transparent);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gold card styles */
.gold-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about-section {
    background: var(--bg-secondary);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-badge-row {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-badge {
    border: 1px solid var(--border-hover);
    color: var(--gold-light);
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.75);
    margin-top: 1.25rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    letter-spacing: 0.05em;
}

/* =====================================================
   AMENITIES
   ===================================================== */
.amenities-section {
    background: var(--bg-primary);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.amenity-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}

.amenity-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.amenity-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}

.amenity-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

/* =====================================================
   ROOMS
   ===================================================== */
.rooms-section {
    background: var(--bg-secondary);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.room-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.room-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.room-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.room-img-wrap {
    overflow: hidden;
    position: relative;
}

.room-badge {
    position: absolute;
    top: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    border: 1px solid var(--border-hover);
}

/* ── Room Slider ────────────────── */
.room-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    direction: ltr !important; /* Force LTR for consistent slide math */
}
.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    direction: ltr !important;
}
.slider-item {
    min-width: 100%;
    object-fit: cover;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
    font-size: 0.8rem;
}
.slider-btn:hover { background: var(--gold); }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}
.dot.active {
    background: var(--gold);
    width: 12px;
    border-radius: 10px;
}

/* ── Guest Gallery ────────────────── */
.guests-section {
    background: var(--bg-primary);
    padding: 6rem 0;
}
.guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    perspective: 1200px;
}
.guest-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    transform-style: preserve-3d;
}
.guest-img-wrap {
    width: 100%;
    height: 100%;
}
.guest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.guest-card:hover {
    transform: translateY(-8px) rotateX(4deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-gold);
    z-index: 10;
}
.guest-card:hover .guest-img {
    transform: scale(1.1);
}
.guest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
    text-align: center;
}
.guest-card:hover .guest-overlay {
    opacity: 1;
}
.guest-name {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

/* ── Lightbox Modal ────────────────── */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.lightbox-modal.open {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s;
}
.lightbox-modal.open .lightbox-content {
    transform: scale(1);
}
.lightbox-container {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1002;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-nav:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}
.lightbox-nav.prev { left: 40px; }
.lightbox-nav.next { right: 40px; }

@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .lightbox-nav.prev { left: 15px; }
    .lightbox-nav.next { right: 15px; }
    .lightbox-close { top: 20px; right: 20px; font-size: 2rem; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    z-index: 1003;
    transition: color 0.3s;
}
.lightbox-close:hover { color: var(--gold); }

body[dir="ltr"] .room-badge {
    left: 1rem;
}

body[dir="rtl"] .room-badge {
    right: 1rem;
}

.room-body {
    padding: 1.75rem;
}

.room-name {
    font-family: 'Playfair Display', 'Tajawal', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.room-beds {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.room-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 0.3rem 0.7rem;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.room-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.room-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.room-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.room-price-side {
    text-align: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.room-price-side span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.room-price-side .green {
    color: #4caf91;
    background: rgba(76, 175, 145, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-size: 0.68rem;
}

.btn-book {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.btn-book:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
}

/* =====================================================
   BOOKING PLATFORMS
   ===================================================== */
.booking-section {
    background: var(--bg-primary);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.booking-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), transparent);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.booking-card:hover::before {
    opacity: 1;
}

.booking-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.booking-logo {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.booking-name {
    font-family: 'Playfair Display', 'Tajawal', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.booking-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.65rem 1.6rem;
    border-radius: 40px;
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}

.btn-outline:hover {
    background: var(--gold);
    color: #0a0a0a;
}

/* =====================================================
   CONTACT / MAP
   ===================================================== */
.contact-section {
    background: var(--bg-secondary);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: border-color var(--transition);
}

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

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.contact-value a {
    color: var(--gold-light);
    transition: color var(--transition);
}

.contact-value a:hover {
    color: var(--gold);
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 380px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.5) invert(0.9) hue-rotate(180deg);
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap var(--transition);
}

.map-link-btn:hover {
    gap: 0.8rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 44px;
    filter: brightness(0.85);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.25);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes bounce {

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

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .map-wrap {
        height: 280px;
    }
}

@media (max-width: 680px) {
    .navbar {
        padding: 0 1.25rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    section {
        padding: 4rem 0;
    }
}

@media (max-width: 420px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }

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

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