/* ============================================================
   GRAND AZURE HOTEL — Main Stylesheet
   Aesthetic: Refined Luxury — Deep Navy, Champagne Gold, Ivory
   Font: Cormorant Garamond (Display) + Jost (Body)
   ============================================================ */

:root {
    --navy: #0a1628;
    --navy-mid: #122040;
    --navy-light: #1a3060;
    --gold: #c9a96e;
    --gold-light: #e0c89a;
    --gold-dark: #a07840;
    --ivory: #faf8f3;
    --ivory-dark: #f0ece2;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-mid: #3d3d5c;
    --text-light: #7a7a9a;
    --success: #2d9c6e;
    --error: #c0392b;
    --warning: #e67e22;
    --border: rgba(201,169,110,0.25);
    --shadow: 0 8px 40px rgba(10,22,40,0.12);
    --shadow-lg: 0 20px 80px rgba(10,22,40,0.2);
    --radius: 4px;
    --radius-lg: 12px;
    --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
    font-family: 'Jost', sans-serif;
    background: var(--ivory);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── Utilities ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.section-tag {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1rem; color: var(--text-light); max-width: 55ch; margin: 0 auto 3rem; }
.divider { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem auto; }

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.9rem 2.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none; cursor: pointer;
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: var(--transition);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.4); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: transparent;
    color: var(--gold);
    padding: 0.85rem 2.2rem;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    border: 1px solid var(--gold);
    cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

.btn-white {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--white); color: var(--navy);
    padding: 0.9rem 2.2rem;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    border: none; cursor: pointer; transition: var(--transition);
}
.btn-white:hover { background: var(--gold); color: var(--navy); }

/* ─── Top Bar ─── */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    padding: 0.6rem 0;
    position: relative; z-index: 1000;
}
.topbar-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 2rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
}
.topbar-left { display: flex; gap: 1.5rem; }
.topbar-left a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.topbar-left a:hover { color: var(--gold); }
.topbar-left i { margin-right: 0.4rem; color: var(--gold); font-size: 0.7rem; }
.topbar-right { display: flex; gap: 1rem; align-items: center; }

/* ─── Dropdown ─── */
.dropdown { position: relative; }
.dropdown-btn {
    background: none; border: none; color: rgba(255,255,255,0.7);
    font-size: 0.78rem; font-family: 'Jost', sans-serif;
    cursor: pointer; display: flex; align-items: center; gap: 0.4rem;
    padding: 0.3rem 0.6rem; border-radius: 3px;
    transition: color 0.2s;
}
.dropdown-btn:hover { color: var(--gold); }
.dropdown-btn i:last-child { font-size: 0.6rem; }
.dropdown-menu {
    display: none; position: absolute; top: 100%; right: 0;
    background: var(--white); min-width: 140px;
    box-shadow: var(--shadow); border-top: 2px solid var(--gold);
    z-index: 9999; border-radius: 0 0 4px 4px;
}
.dropdown-menu a {
    display: block; padding: 0.6rem 1rem; font-size: 0.82rem;
    color: var(--text-dark); transition: all 0.2s;
}
.dropdown-menu a:hover { background: var(--ivory-dark); color: var(--gold); padding-left: 1.3rem; }
.dropdown:hover .dropdown-menu { display: block; }

/* ─── Header / Nav ─── */
.site-header {
    position: fixed; top: 44px; left: 0; right: 0; z-index: 999;
    transition: all 0.4s ease;
}
.site-header.scrolled {
    top: 0;
    background: rgba(10,22,40,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.main-nav {
    max-width: 1280px; margin: 0 auto; padding: 1.2rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
}
.logo {
    display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0;
}
.logo-icon { color: var(--gold); font-size: 1.4rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600; color: var(--white);
    line-height: 1; letter-spacing: 0.05em;
}
.logo-sub {
    font-size: 0.6rem; font-weight: 400; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
}
.nav-links {
    display: flex; list-style: none; gap: 0.2rem; align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em;
    padding: 0.6rem 0.9rem; display: block;
    transition: color 0.2s; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }
.nav-links .has-dropdown .sub-menu {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--navy-mid);
    min-width: 200px; border-top: 2px solid var(--gold);
    box-shadow: var(--shadow-lg); z-index: 9998;
}
.nav-links .has-dropdown:hover .sub-menu { display: block; }
.sub-menu li a {
    display: block; padding: 0.7rem 1.2rem;
    color: rgba(255,255,255,0.75); font-size: 0.82rem;
    transition: all 0.2s;
}
.sub-menu li a:hover { color: var(--gold); padding-left: 1.6rem; background: rgba(201,169,110,0.08); }

.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.btn-ghost {
    color: rgba(255,255,255,0.8); font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.05em; padding: 0.5rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.2); border-radius: 3px;
    transition: var(--transition);
    display: flex; align-items: center; gap: 0.4rem;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-primary-nav {
    background: var(--gold); color: var(--navy);
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 0.65rem 1.5rem;
    transition: var(--transition); white-space: nowrap;
}
.btn-primary-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: var(--transition); }

/* ─── Hero Section ─── */
.hero {
    min-height: 100vh;
    position: relative; display: flex; align-items: center;
    overflow: hidden;
}
.hero-slider {
    position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
/* Gradient hero backgrounds (to be replaced with actual photos) */
.hero-slide:nth-child(1) { background: linear-gradient(135deg, #0a1628 0%, #1a3060 40%, #0d2245 70%, #0a1628 100%); }
.hero-slide:nth-child(2) { background: linear-gradient(135deg, #1a2a0a 0%, #2a4020 40%, #0a2a18 70%, #0a1628 100%); }
.hero-slide:nth-child(3) { background: linear-gradient(135deg, #28100a 0%, #402018 40%, #1a0a10 70%, #0a1628 100%); }

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.4) 60%, transparent 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto; padding: 0 2rem;
    padding-top: 120px;
}
.hero-tag {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem;
    animation: fadeUp 0.8s ease 0.2s both;
}
.hero-tag::before { content: ''; display: inline-block; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    color: var(--white); font-weight: 300;
    line-height: 1.05; margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease 0.4s both;
    max-width: 14ch;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
    color: rgba(255,255,255,0.75); font-size: 1rem;
    max-width: 45ch; margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease 0.6s both;
}
.hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.8s both;
}
.hero-stats {
    position: absolute; bottom: 3rem; right: 2rem; z-index: 2;
    display: flex; gap: 2rem;
    animation: fadeUp 0.8s ease 1s both;
}
.hero-stat { text-align: center; color: var(--white); }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }

.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase; animation: pulse 2s infinite;
}
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--gold)); }

/* Hero Slider Dots */
.hero-dots {
    position: absolute; bottom: 2.5rem; left: 2rem; z-index: 2;
    display: flex; gap: 0.5rem;
}
.hero-dot {
    width: 24px; height: 2px; background: rgba(255,255,255,0.35);
    cursor: pointer; transition: all 0.3s; border: none;
}
.hero-dot.active { background: var(--gold); width: 48px; }

/* ─── Quick Search / Booking Bar ─── */
.booking-bar-wrap {
    position: relative; z-index: 10;
    margin-top: -60px; padding: 0 2rem;
}
.booking-bar {
    max-width: 1100px; margin: 0 auto;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--gold);
}
.booking-bar-tabs { display: flex; border-bottom: 1px solid var(--ivory-dark); }
.booking-tab {
    padding: 1rem 1.8rem; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    background: none; border: none; cursor: pointer;
    color: var(--text-light); border-bottom: 2px solid transparent;
    margin-bottom: -1px; transition: var(--transition);
}
.booking-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.booking-form {
    display: grid; grid-template-columns: 1fr 1fr 1fr auto auto 180px;
    gap: 0; align-items: stretch;
}
.booking-field {
    padding: 1.2rem 1.5rem; border-right: 1px solid var(--ivory-dark);
}
.booking-field label {
    display: block; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.4rem;
}
.booking-field input,
.booking-field select {
    width: 100%; border: none; outline: none;
    font-family: 'Jost', sans-serif; font-size: 0.92rem;
    color: var(--navy); background: transparent;
    cursor: pointer;
}
.booking-field input::placeholder { color: var(--text-light); }
.booking-field .guest-display {
    font-size: 0.92rem; color: var(--navy); cursor: pointer;
}
.booking-submit {
    background: var(--gold); color: var(--navy);
    border: none; cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 0 2rem;
    display: flex; align-items: center; gap: 0.5rem;
    transition: background 0.3s; white-space: nowrap;
}
.booking-submit:hover { background: var(--gold-dark); }

/* Guest Picker Popup */
.guest-picker {
    display: none; position: absolute;
    background: var(--white); box-shadow: var(--shadow);
    border: 1px solid var(--border); padding: 1.5rem;
    min-width: 240px; z-index: 100;
}
.guest-picker.open { display: block; }
.guest-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.8rem 0; border-bottom: 1px solid var(--ivory-dark);
}
.guest-row:last-child { border-bottom: none; }
.guest-label { font-size: 0.85rem; }
.guest-label span { display: block; font-size: 0.7rem; color: var(--text-light); }
.guest-counter { display: flex; align-items: center; gap: 0.8rem; }
.counter-btn {
    width: 28px; height: 28px; border: 1px solid var(--border);
    background: none; cursor: pointer; font-size: 1rem; color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.counter-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.counter-val { min-width: 20px; text-align: center; font-weight: 600; }

/* ─── Rooms Grid ─── */
.rooms-section { padding: 6rem 0; }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2px; }
.room-card {
    position: relative; overflow: hidden; cursor: pointer;
    aspect-ratio: 4/3;
}
.room-card-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
/* Gradient placeholder when no image */
.room-card-bg {
    position: absolute; inset: 0;
    transition: transform 0.6s ease;
}
.room-card:nth-child(1) .room-card-bg { background: linear-gradient(135deg, #1a2a4a 0%, #2a4070 100%); }
.room-card:nth-child(2) .room-card-bg { background: linear-gradient(135deg, #2a1a0a 0%, #604030 100%); }
.room-card:nth-child(3) .room-card-bg { background: linear-gradient(135deg, #1a0a2a 0%, #402060 100%); }
.room-card:nth-child(4) .room-card-bg { background: linear-gradient(135deg, #0a2a1a 0%, #204030 100%); }

.room-card:hover .room-card-bg,
.room-card:hover .room-card-img { transform: scale(1.08); }

.room-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.2) 50%, transparent 100%);
    transition: var(--transition);
}
.room-card:hover .room-card-overlay { background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.4) 60%, transparent 100%); }

.room-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2rem;
}
.room-type-badge {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 0.4rem;
}
.room-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; color: var(--white); margin-bottom: 0.5rem;
}
.room-card-meta {
    display: flex; gap: 1.2rem;
    font-size: 0.78rem; color: rgba(255,255,255,0.65);
    margin-bottom: 1rem;
}
.room-card-meta span { display: flex; align-items: center; gap: 0.3rem; }
.room-card-meta i { color: var(--gold); font-size: 0.7rem; }
.room-card-price {
    display: flex; align-items: baseline; gap: 0.4rem;
    color: var(--white);
}
.room-price-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; }
.room-price-per { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.room-card-actions {
    display: flex; gap: 0.8rem; margin-top: 1.2rem;
    opacity: 0; transform: translateY(10px);
    transition: var(--transition);
}
.room-card:hover .room-card-actions { opacity: 1; transform: translateY(0); }

/* ─── Feature Sections ─── */
.features-section { padding: 6rem 0; background: var(--navy); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feature-card {
    padding: 3rem 2.5rem; background: var(--navy-mid);
    border: 1px solid rgba(201,169,110,0.1);
    transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width 0.5s ease;
}
.feature-card:hover { background: var(--navy-light); }
.feature-card:hover::before { width: 100%; }
.feature-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1.2rem; }
.feature-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 0.8rem; }
.feature-text { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.8; }

/* ─── Testimonials ─── */
.testimonials-section { padding: 6rem 0; background: var(--ivory-dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
    background: var(--white); padding: 2.5rem;
    border-left: 3px solid var(--gold);
    box-shadow: 0 4px 20px rgba(10,22,40,0.06);
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-style: italic;
    color: var(--navy); line-height: 1.7; margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gold); display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--navy); font-weight: 600;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.88rem; }
.testimonial-country { font-size: 0.75rem; color: var(--text-light); }
.verified-badge { margin-left: auto; color: var(--success); font-size: 0.75rem; }

/* ─── Offers Banner ─── */
.offers-section { padding: 5rem 0; background: var(--navy); position: relative; overflow: hidden; }
.offers-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.offers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.offer-card {
    background: var(--navy-mid); border: 1px solid var(--border);
    padding: 2.5rem; display: flex; justify-content: space-between;
    align-items: flex-start; gap: 1.5rem;
    transition: var(--transition); cursor: pointer;
}
.offer-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.offer-badge {
    background: var(--gold); color: var(--navy);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 0.3rem 0.7rem; margin-bottom: 1rem; display: inline-block;
}
.offer-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
.offer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; }
.offer-saving { font-size: 1.8rem; font-family: 'Cormorant Garamond', serif; color: var(--gold); white-space: nowrap; }
.offer-saving span { display: block; font-size: 0.7rem; font-family: 'Jost', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ─── Blog Section ─── */
.blog-section { padding: 6rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.blog-card { transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
    height: 240px; margin-bottom: 1.5rem; overflow: hidden;
    position: relative;
}
.blog-card-bg {
    width: 100%; height: 100%;
    transition: transform 0.5s ease;
}
.blog-card:nth-child(1) .blog-card-bg { background: linear-gradient(135deg, #1a3a5a 0%, #2a5a80 100%); }
.blog-card:nth-child(2) .blog-card-bg { background: linear-gradient(135deg, #3a1a0a 0%, #604030 100%); }
.blog-card:nth-child(3) .blog-card-bg { background: linear-gradient(135deg, #1a3a1a 0%, #2a5a2a 100%); }
.blog-card:hover .blog-card-bg { transform: scale(1.05); }
.blog-card-cat {
    position: absolute; bottom: 1rem; left: 1rem;
    background: var(--gold); color: var(--navy);
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; padding: 0.25rem 0.6rem;
}
.blog-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--navy); }
.blog-card-excerpt { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }
.blog-read-more { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.4rem; }
.blog-read-more:hover gap { gap: 0.7rem; }

/* ─── Stats Strip ─── */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
    text-align: center; padding: 2rem;
    border-right: 1px solid rgba(201,169,110,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }

/* ─── Map & Contact ─── */
.contact-section { padding: 6rem 0; background: var(--ivory-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.contact-form { background: var(--white); padding: 3rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 0.9rem 1rem;
    border: 1px solid var(--ivory-dark);
    font-family: 'Jost', sans-serif; font-size: 0.9rem;
    color: var(--text-dark); background: var(--ivory);
    outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-list { list-style: none; }
.contact-info-list li {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem 0; border-bottom: 1px solid var(--border);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list i { color: var(--gold); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
.contact-info-text strong { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.2rem; }
.contact-info-text span { font-size: 0.95rem; color: var(--navy); }

/* ─── Footer ─── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem; }
.footer-brand .logo-main { font-size: 1.2rem; }
.footer-brand p { font-size: 0.87rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.8rem; margin-bottom: 1.5rem; }
.footer-social a {
    width: 36px; height: 36px; border: 1px solid rgba(201,169,110,0.3);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 0.8rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-awards { font-size: 0.72rem; display: flex; flex-direction: column; gap: 0.3rem; color: rgba(255,255,255,0.45); }
.footer-links h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 1.2rem; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: all 0.2s; display: flex; align-items: center; gap: 0; }
.footer-links ul li a:hover { color: var(--gold); padding-left: 0.3rem; }
.footer-contact h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 1.2rem; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 0.8rem; margin-bottom: 0.8rem; font-size: 0.84rem; align-items: flex-start; }
.contact-list i { color: var(--gold); font-size: 0.8rem; margin-top: 0.2rem; flex-shrink: 0; }
.contact-list a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.contact-list a:hover { color: var(--gold); }
.newsletter h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white); margin: 1.5rem 0 0.8rem; }
.newsletter-form { display: flex; }
.newsletter-form input {
    flex: 1; padding: 0.7rem 1rem; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(201,169,110,0.3); border-right: none;
    color: var(--white); font-family: 'Jost', sans-serif; font-size: 0.85rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
    background: var(--gold); color: var(--navy); border: none;
    padding: 0 1rem; cursor: pointer; font-size: 0.9rem; transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-map { height: 250px; }
.footer-map iframe { width: 100%; height: 100%; border: none; filter: invert(0.9) hue-rotate(180deg) brightness(0.6) contrast(1.2); }
.footer-bottom { border-top: 1px solid rgba(201,169,110,0.15); padding: 1.5rem 0; }
.footer-bottom-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem; font-size: 0.78rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }
.payment-badges { display: flex; align-items: center; gap: 0.8rem; }
.payment-badges img { opacity: 0.7; filter: brightness(0) invert(1); }
.payment-badges i { font-size: 1.5rem; color: rgba(255,255,255,0.5); }

/* ─── Cookie Banner ─── */
.cookie-banner {
    position: fixed; bottom: -100%; left: 0; right: 0; z-index: 9999;
    background: var(--navy-mid); border-top: 2px solid var(--gold);
    transition: bottom 0.5s ease; padding: 1.2rem 2rem;
}
.cookie-banner.show { bottom: 0; }
.cookie-content {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-content i { color: var(--gold); font-size: 1.5rem; flex-shrink: 0; }
.cookie-content p { flex: 1; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.cookie-content a { color: var(--gold); }
.cookie-actions { display: flex; gap: 0.8rem; }
.btn-accept-cookies {
    background: var(--gold); color: var(--navy); border: none;
    padding: 0.5rem 1.2rem; font-family: 'Jost', sans-serif;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; transition: var(--transition);
}
.btn-accept-cookies:hover { background: var(--gold-light); }
.btn-decline-cookies {
    background: none; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.25);
    padding: 0.5rem 1.2rem; font-family: 'Jost', sans-serif;
    font-size: 0.78rem; cursor: pointer; transition: var(--transition);
}
.btn-decline-cookies:hover { color: var(--white); border-color: var(--white); }

/* ─── Animations ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
    height: 380px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex; align-items: flex-end;
    padding-bottom: 4rem; position: relative;
    overflow: hidden; margin-top: 44px;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c9a96e' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-breadcrumb {
    font-size: 0.72rem; color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em; margin-bottom: 0.8rem;
}
.page-breadcrumb a { color: var(--gold); }
.page-breadcrumb span { margin: 0 0.5rem; }
.page-hero-title { font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--white); }

/* ─── Booking Page ─── */
.booking-page { padding: 4rem 0 6rem; }
.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.booking-steps { display: flex; gap: 0; margin-bottom: 3rem; border-bottom: 1px solid var(--ivory-dark); }
.step-tab {
    padding: 1rem 2rem; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-light); display: flex; align-items: center; gap: 0.6rem;
    border-bottom: 2px solid transparent; margin-bottom: -1px;
    transition: var(--transition); cursor: pointer;
}
.step-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.step-tab.completed { color: var(--success); border-bottom-color: var(--success); }
.step-num {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--ivory-dark); color: var(--text-light);
    font-size: 0.75rem; display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.step-tab.active .step-num { background: var(--gold); color: var(--navy); }
.step-tab.completed .step-num { background: var(--success); color: var(--white); }

.booking-panel { display: none; }
.booking-panel.active { display: block; }

.booking-summary-card {
    background: var(--white); box-shadow: var(--shadow);
    position: sticky; top: 120px; overflow: hidden;
}
.bsc-header { background: var(--navy); padding: 1.5rem; color: var(--white); }
.bsc-room-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; }
.bsc-body { padding: 1.5rem; }
.bsc-row { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 0; border-bottom: 1px solid var(--ivory-dark); font-size: 0.87rem; }
.bsc-row:last-child { border-bottom: none; }
.bsc-row .label { color: var(--text-light); }
.bsc-row .value { font-weight: 600; color: var(--navy); }
.bsc-total { background: var(--navy); padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.bsc-total-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.bsc-total-amount { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold); }

/* ─── Room Filter ─── */
.room-filters { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; padding: 1.5rem; background: var(--white); box-shadow: 0 2px 20px rgba(10,22,40,0.06); }
.filter-group { display: flex; flex-direction: column; gap: 0.3rem; flex: 1; min-width: 140px; }
.filter-group label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.filter-group select,
.filter-group input { border: 1px solid var(--ivory-dark); padding: 0.6rem 0.8rem; font-family: 'Jost', sans-serif; font-size: 0.87rem; color: var(--navy); background: var(--ivory); outline: none; }
.filter-group select:focus,
.filter-group input:focus { border-color: var(--gold); }

/* ─── Room List (booking) ─── */
.room-list-item {
    background: var(--white); box-shadow: 0 2px 20px rgba(10,22,40,0.06);
    margin-bottom: 1.5rem; overflow: hidden;
    display: grid; grid-template-columns: 280px 1fr;
    transition: box-shadow 0.3s;
}
.room-list-item:hover { box-shadow: var(--shadow); }
.room-list-img { 
    min-height: 220px; position: relative; overflow: hidden;
}
.room-list-img-bg {
    position: absolute; inset: 0;
    transition: transform 0.5s ease;
}
.room-list-item:nth-child(1) .room-list-img-bg { background: linear-gradient(135deg, #1a2a4a 0%, #3060a0 100%); }
.room-list-item:nth-child(2) .room-list-img-bg { background: linear-gradient(135deg, #3a1a0a 0%, #805040 100%); }
.room-list-item:nth-child(3) .room-list-img-bg { background: linear-gradient(135deg, #1a0a3a 0%, #604080 100%); }
.room-list-item:nth-child(4) .room-list-img-bg { background: linear-gradient(135deg, #0a3a1a 0%, #406040 100%); }
.room-list-item:hover .room-list-img-bg { transform: scale(1.05); }
.room-list-body { padding: 2rem; display: flex; flex-direction: column; }
.room-list-type { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.room-list-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 0.5rem; }
.room-list-meta { display: flex; gap: 1.5rem; font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; flex-wrap: wrap; }
.room-list-meta span { display: flex; align-items: center; gap: 0.3rem; }
.room-list-meta i { color: var(--gold); }
.room-list-desc { font-size: 0.87rem; color: var(--text-mid); margin-bottom: 1rem; flex: 1; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.amenity-tag { background: var(--ivory-dark); padding: 0.25rem 0.6rem; font-size: 0.72rem; color: var(--text-mid); }
.room-list-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.room-list-price { display: flex; flex-direction: column; }
.room-list-price .price-night { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--navy); }
.room-list-price .price-label { font-size: 0.7rem; color: var(--text-light); }
.room-list-price .price-total { font-size: 0.78rem; color: var(--gold); font-weight: 600; }

/* ─── Payment Section ─── */
.payment-gateways { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.gateway-option {
    border: 2px solid var(--ivory-dark); padding: 1.5rem;
    cursor: pointer; transition: var(--transition); text-align: center;
    position: relative;
}
.gateway-option.selected { border-color: var(--gold); background: rgba(201,169,110,0.05); }
.gateway-option input[type="radio"] { position: absolute; opacity: 0; }
.gateway-logo { font-size: 1.8rem; margin-bottom: 0.5rem; }
.gateway-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.gateway-desc { font-size: 0.75rem; color: var(--text-light); margin-top: 0.2rem; }
.paystack-color { color: #00C3F7; }
.flutterwave-color { color: #F5A623; }

/* ─── Admin Styles ─── */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: #f0f2f5; }
.admin-sidebar {
    background: var(--navy);
    position: sticky; top: 0; height: 100vh; overflow-y: auto;
    display: flex; flex-direction: column;
}
.admin-sidebar-logo { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-sidebar-logo .logo-main { font-size: 1.1rem; }
.admin-sidebar-logo .logo-sub { font-size: 0.55rem; }
.sidebar-nav { padding: 1rem 0; flex: 1; }
.sidebar-section { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 1rem 1.5rem 0.5rem; }
.sidebar-link {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.75rem 1.5rem; color: rgba(255,255,255,0.65);
    font-size: 0.85rem; transition: all 0.2s;
}
.sidebar-link:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.sidebar-link.active { background: rgba(201,169,110,0.15); color: var(--gold); border-right: 3px solid var(--gold); }
.sidebar-link i { width: 18px; text-align: center; font-size: 0.9rem; }
.admin-main { overflow: hidden; }
.admin-topbar {
    background: var(--white); padding: 1rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 100;
}
.admin-page-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--navy); }
.admin-content { padding: 2rem; }

/* Admin Cards / Stats */
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.admin-stat-card { background: var(--white); padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); position: relative; overflow: hidden; }
.admin-stat-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.admin-stat-card.green::after { background: var(--success); }
.admin-stat-card.blue::after { background: #3498db; }
.admin-stat-card.orange::after { background: var(--warning); }
.admin-stat-icon { font-size: 2rem; margin-bottom: 1rem; opacity: 0.2; }
.admin-stat-value { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--navy); line-height: 1; margin-bottom: 0.3rem; }
.admin-stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }
.admin-stat-change { font-size: 0.78rem; margin-top: 0.5rem; }
.admin-stat-change.up { color: var(--success); }
.admin-stat-change.down { color: var(--error); }

/* Admin Table */
.admin-table-wrap { background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.06); overflow: hidden; }
.admin-table-header { padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #f0f0f0; }
.admin-table-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--navy); }
table { width: 100%; border-collapse: collapse; }
th { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); padding: 0.8rem 1.2rem; text-align: left; background: #f8f9fa; border-bottom: 1px solid #eee; }
td { padding: 0.9rem 1.2rem; font-size: 0.87rem; color: var(--text-dark); border-bottom: 1px solid #f5f5f5; }
tr:hover td { background: #fafafa; }
.badge { display: inline-block; padding: 0.2rem 0.6rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 20px; }
.badge-success { background: rgba(45,156,110,0.1); color: var(--success); }
.badge-warning { background: rgba(230,126,34,0.15); color: var(--warning); }
.badge-danger { background: rgba(192,57,43,0.1); color: var(--error); }
.badge-info { background: rgba(52,152,219,0.1); color: #3498db; }
.badge-secondary { background: #f0f0f0; color: #666; }

/* ─── Alerts & Notices ─── */
.alert { padding: 1rem 1.2rem; margin-bottom: 1rem; font-size: 0.87rem; display: flex; align-items: center; gap: 0.7rem; }
.alert-success { background: rgba(45,156,110,0.1); color: var(--success); border-left: 3px solid var(--success); }
.alert-error { background: rgba(192,57,43,0.08); color: var(--error); border-left: 3px solid var(--error); }
.alert-info { background: rgba(52,152,219,0.08); color: #2980b9; border-left: 3px solid #3498db; }

/* ─── Upsells ─── */
.upsells-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.upsell-card {
    border: 1px solid var(--ivory-dark); padding: 1.2rem; cursor: pointer;
    transition: var(--transition); position: relative; text-align: center;
}
.upsell-card.selected { border-color: var(--gold); background: rgba(201,169,110,0.05); }
.upsell-card input { position: absolute; opacity: 0; }
.upsell-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.upsell-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.3rem; }
.upsell-price { font-size: 0.85rem; color: var(--gold); font-weight: 600; }
.upsell-unit { font-size: 0.7rem; color: var(--text-light); }

/* ─── Loading Spinner ─── */
.spinner { width: 40px; height: 40px; border: 3px solid var(--ivory-dark); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.7s linear infinite; margin: 2rem auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .booking-form { grid-template-columns: 1fr 1fr; }
    .booking-submit { grid-column: 1/-1; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-summary-card { position: static; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .site-header { top: 0; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.mobile-open {
        display: flex; flex-direction: column;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: var(--navy); padding: 5rem 2rem 2rem;
        z-index: 9998; gap: 0; overflow-y: auto;
    }
    .nav-links.mobile-open > li > a { font-size: 1.4rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .sub-menu { position: static; background: rgba(255,255,255,0.05); box-shadow: none; border-top: none; }
    .hero-stats { display: none; }
    .booking-form { grid-template-columns: 1fr; }
    .booking-field { border-right: none; border-bottom: 1px solid var(--ivory-dark); }
    .rooms-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .room-list-item { grid-template-columns: 1fr; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-content { padding-top: 80px; }
    .payment-gateways { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .booking-steps { overflow-x: auto; }
    .step-tab { white-space: nowrap; }
    .admin-stats { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
