/*
|--------------------------------------------------------------------------
| Ornate Hotel — Luxury Design System
|--------------------------------------------------------------------------
| Custom CSS for the Ornate Hotel website.
| Gold & Black luxury theme with glassmorphism, animations, premium effects.
|
| Google Fonts: Cormorant Garamond (headings), Poppins (body), Montserrat (buttons)
| Color Palette:
|   --gold:       #D4AF37  (Primary)
|   --black:      #0B0B0B  (Background)
|   --dark:       #1E1E1E  (Cards / Sections)
|   --white:      #FFFFFF  (Text)
|   --gold-light: #F0D060  (Hover / Glow)
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700&display=swap');

/* ==========================================
   CSS CUSTOM PROPERTIES
   ========================================== */
:root {
    --gold:          #D4AF37;
    --gold-light:    #F0D060;
    --gold-dark:     #A07820;
    --gold-glow:     rgba(212, 175, 55, 0.25);
    --black:         #0B0B0B;
    --dark:          #1E1E1E;
    --dark-2:        #2A2A2A;
    --dark-3:        #141414;
    --white:         #FFFFFF;
    --white-dim:     rgba(255,255,255,0.85);
    --white-muted:   rgba(255,255,255,0.55);
    --white-faint:   rgba(255,255,255,0.12);

    --font-heading:  'Cormorant Garamond', Georgia, serif;
    --font-body:     'Poppins', sans-serif;
    --font-button:   'Montserrat', sans-serif;

    --transition:    all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --shadow-gold:   0 8px 32px rgba(212, 175, 55, 0.3);
    --shadow-dark:   0 20px 60px rgba(0,0,0,0.5);
    --radius-card:   16px;
    --radius-sm:     8px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none; /* custom cursor */
    line-height: 1.7;
}

section, .container-fluid, .swiper {
    overflow-x: hidden;
    max-width: 100%;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* ==========================================
   CUSTOM GOLDEN CURSOR
   ========================================== */
#luxury-cursor {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

#luxury-cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: all 0.12s linear;
    opacity: 0.7;
}

body:hover #luxury-cursor { opacity: 1; }
a:hover ~ #luxury-cursor,
button:hover ~ #luxury-cursor { width: 20px; height: 20px; }

/* ==========================================
   LUXURY LOADING SCREEN
   ========================================== */
#loading-screen {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.loading-brand-container {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.loading-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.loading-brand-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0.5rem 0 0.2rem;
    line-height: 1.1;
}

.loading-brand-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--white);
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
}

.loading-bar-wrap {
    width: 200px;
    height: 2px;
    background: var(--dark-2);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    width: 0;
    animation: loadBar 2s ease forwards;
}

@keyframes loadBar {
    to { width: 100%; }
}

/* ==========================================
   SCROLL PROGRESS INDICATOR
   ========================================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--gold);
}

/* ==========================================
   FLOATING GOLD PARTICLES
   ========================================== */
#particles-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ==========================================
   NAVIGATION
   ========================================== */
#main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: top 0.3s ease, padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Shift navbar down when top announcement bar is visible */
.promo-topbar ~ #main-navbar {
    top: 38px;
}

#main-navbar .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

#main-navbar.scrolled {
    top: 0 !important;
    padding: 1rem 0;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(230, 162, 22, 0.15);
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}


.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    background: transparent;
    filter: none;
}

#main-navbar.scrolled .navbar-logo {
    height: 52px;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    transition: var(--transition);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.brand-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--white);
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin-top: 4px;
    width: 100%;
    text-align: center;
    transition: var(--transition);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

#main-navbar.scrolled .brand-name {
    font-size: 1.4rem;
    color: var(--gold) !important;
}

#main-navbar.scrolled .brand-tagline {
    font-size: 0.5rem;
    letter-spacing: 2px;
}

.nav-link {
    font-family: var(--font-button);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white-dim) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

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

.navbar-toggler {
    border: none !important;
    padding: 0;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 42px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.8em;
    height: 1.8em;
    display: block;
}

/* Book Now button in navbar */
.btn-nav-book {
    font-family: var(--font-button);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black) !important;
    background: var(--gold);
    border: none;
    padding: 0.6rem 1.6rem;
    border-radius: 0;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-nav-book:hover {
    background: var(--gold-light);
    color: var(--black) !important;
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-1px);
}

/* ==========================================
   BUTTONS
   ========================================== */

/* Primary Gold Button */
.btn-luxury {
    font-family: var(--font-button);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: none;
    padding: 1rem 2.4rem;
    border-radius: 0;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.btn-luxury:hover::before {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.btn-luxury:hover {
    background: var(--gold-light);
    color: var(--black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-luxury:active::before {
    width: 200px;
    height: 200px;
    opacity: 1;
    transition: width 0s, height 0s, opacity 0.4s;
}

/* Outline Gold Button */
.btn-luxury-outline {
    font-family: var(--font-button);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
    padding: 1rem 2.4rem;
    border-radius: 0;
    display: inline-block;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.btn-luxury-outline:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Ghost White Button */
.btn-luxury-ghost {
    font-family: var(--font-button);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 1rem 2.4rem;
    border-radius: 0;
    display: inline-block;
    transition: var(--transition);
    text-decoration: none;
}

.btn-luxury-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section-luxury {
    padding: 6rem 0;
    position: relative;
}

.section-luxury-dark {
    padding: 6rem 0;
    background: var(--dark-3);
    position: relative;
}

.section-luxury-light {
    padding: 6rem 0;
    background: #FAF8F5;
    color: #2b2b2b;
    position: relative;
}

.section-luxury-light .section-heading {
    color: #1a1a1a;
}

.section-luxury-light .section-subheading {
    color: #555555;
}

.section-luxury-light p {
    color: #444444;
}

.section-luxury-light .experience-title {
    color: #1a1a1a;
}

.section-luxury-light .experience-desc {
    color: #666666;
}

.section-luxury-light .stat-number {
    color: var(--gold);
}

.section-luxury-light .stat-label {
    color: #666666;
}

.section-luxury-light .stat-item {
    color: #1a1a1a;
}

.section-luxury-light .glass-card {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    color: #1a1a1a !important;
    backdrop-filter: blur(10px);
}

.section-luxury-light .glass-card p,
.section-luxury-light .glass-card div {
    color: #555555 !important;
}

.section-luxury-light .glass-card h3 {
    color: #1a1a1a !important;
}

.section-luxury-light .award-item {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(212, 175, 55, 0.22) !important;
    color: #1b355a !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(175, 141, 67, 0.06) !important;
    padding: 2.5rem 1.5rem !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.section-luxury-light .award-item:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(212, 175, 55, 0.6) !important;
    box-shadow: 0 15px 35px rgba(175, 141, 67, 0.12) !important;
    background: #ffffff !important;
}

.section-luxury-light .award-title {
    color: #1b355a !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    margin-top: 0.5rem !important;
}

.section-luxury-light .award-org {
    color: #5a6070 !important;
    font-size: 0.85rem !important;
    margin-top: 0.25rem !important;
}

/* Gold divider line */
.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto;
}

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

/* Section label (small text above heading) */
.section-label {
    font-family: var(--font-button);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}

/* Section headings */
.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-heading em {
    color: var(--gold);
    font-style: italic;
}

.section-subheading {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white-muted);
    line-height: 1.8;
    max-width: 560px;
}

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

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-wrap video,
.hero-video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11,11,11,0.15) 0%,
        rgba(11,11,11,0.35) 50%,
        rgba(11,11,11,0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
}

.hero-label {
    font-family: var(--font-button);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin: 1.5rem 0;
    opacity: 0;
    animation: fadeInUp 0.9s ease 0.8s forwards;
}

.hero-title em {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--white-dim);
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.9s ease 1.1s forwards;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 0.9s ease 1.4s forwards;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll-indicator span {
    font-family: var(--font-button);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white-muted);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.5); }
}

/* ==========================================
   BOOKING WIDGET
   ========================================== */
#booking-widget {
    position: relative;
    z-index: 10;
    margin-top: -5rem;
}

.booking-card {
    background: linear-gradient(135deg, rgba(15, 12, 7, 0.97) 0%, rgba(28, 22, 13, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-card);
    padding: 2.2rem 2.8rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 30px rgba(212, 175, 55, 0.08);
    transition: var(--transition);
}

.booking-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.15);
}

.booking-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.booking-form .form-label {
    font-family: var(--font-button);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.booking-form .form-control,
.booking-form .form-select {
    background: rgba(10, 8, 5, 0.7);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.booking-form .form-control:hover,
.booking-form .form-select:hover {
    border-color: rgba(212,175,55,0.6);
    background: rgba(10, 8, 5, 0.85);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    background: rgba(212,175,55,0.06);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    color: var(--white);
    outline: none;
}

.booking-form .form-control::placeholder { color: var(--white-muted); }

.booking-form .form-select option {
    background: var(--dark);
    color: var(--white);
}

/* ==========================================
   ROOM CARDS — TAJ STYLE (PIXEL PERFECT MATCH)
   ========================================== */
.room-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: transform 0.4s ease;
    position: relative;
    cursor: pointer;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    text-decoration: none;
}

.room-card:hover {
    transform: translateY(-8px);
}

/* Image — full width, clean professional card style */
.room-card-image {
    position: relative;
    overflow: hidden;
    height: 290px;
    display: block;
    z-index: 1;
    border-radius: 8px 8px 0 0 !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.room-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #af8d43;
    color: #ffffff;
    font-family: var(--font-button);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    z-index: 3;
    border-radius: 2px;
}

.room-card-overlay {
    display: none;
}

/* White card body overlaps the image at the bottom and is narrower */
.room-card-body {
    background: #ffffff;
    padding: 1.8rem 1.8rem 1.8rem;
    position: relative;
    z-index: 2;
    margin-top: -35px;
    margin-left: 15px;
    margin-right: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease;
    border: none;
    border-radius: 0 0 12px 12px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.room-card:hover .room-card-body {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.room-type-label {
    display: none;
}

/* Title: Serif Cormorant Garamond, dark navy/charcoal color, larger size */
.room-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: #1b355a;
    margin: 0 0 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Description: readable, muted gray-blue, larger text size, longer line limit */
.room-card-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #5a6070;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hide elements not in the screenshot */
.room-card-amenities, .amenity-pill {
    display: none;
}

/* Actions row — BOOK NOW left, MORE > right */
.room-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto !important;
    padding-top: 1.5rem !important;
    border-top: none;
}

/* BOOK NOW — solid goldish-brown button, matching screenshot exactly */
.btn-book-now {
    font-family: var(--font-button);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: #af8d43;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    border-radius: 0;
    line-height: 1;
}

.btn-book-now:hover {
    background: #967533;
    color: #ffffff;
    text-decoration: none;
}

/* MORE > — elegant gold-brown uppercase text */
.btn-more-link {
    font-family: var(--font-button);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #af8d43;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-more-link:hover {
    color: #967533;
    text-decoration: none;
}

.room-card-price, .room-card-price small {
    display: none;
}

/* ==========================================
   ROOMS SWIPER CAROUSEL
   ========================================== */
.rooms-swiper {
    position: relative;
    padding: 0 0 3rem 0;
    overflow: hidden;
}

.rooms-swiper .swiper-slide {
    height: auto;
}

.swiper-nav-btn {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.25s ease, transform 0.25s ease;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.swiper-nav-btn:hover {
    background: #D4AF37;
    transform: translateY(-50%) scale(1.05);
}

.rooms-swiper-prev {
    left: 10px;
}

.rooms-swiper-next {
    right: 10px;
}

.rooms-swiper-pagination .swiper-pagination-bullet {
    background: rgba(212,175,55,0.4);
    opacity: 1;
    width: 8px;
    height: 8px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.rooms-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 24px;
}

/* ==========================================
   GLASSMORPHISM CARDS
   ========================================== */
.glass-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-card);
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(212,175,55,0.06);
    border-color: rgba(212,175,55,0.3);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.glass-card-gold {
    background: rgba(212,175,55,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--radius-card);
    padding: 2rem;
}

/* ==========================================
   STATISTICS COUNTER SECTION
   ========================================== */
.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(212,175,55,0.3);
}

.stat-item:last-child::after { display: none; }

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-family: var(--font-button);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-top: 0.5rem;
    display: block;
}

/* ==========================================
   TESTIMONIAL CARDS
   ========================================== */
.testimonial-card {
    background: var(--dark);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: -1.5rem;
    left: 1.5rem;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(212,175,55,0.4);
    box-shadow: var(--shadow-gold);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--white-dim);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

.testimonial-country {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

/* ==========================================
   OFFER CARDS
   ========================================== */
.offer-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    height: 420px;
    cursor: pointer;
}

.offer-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.offer-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11,11,11,0.95) 0%,
        rgba(11,11,11,0.5) 50%,
        transparent 100%
    );
}

.offer-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
}

.offer-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-button);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.9rem;
    margin-bottom: 0.75rem;
}

.offer-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.offer-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ==========================================
   GALLERY GRID
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 8px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

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

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(212,175,55,0.2);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay i {
    color: var(--white);
    font-size: 1.5rem;
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
    border-top: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(212,175,55,0.15);
    padding: 5rem 0;
}

.newsletter-input-group {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    border: 1px solid rgba(212,175,55,0.3);
}

.newsletter-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: none;
    padding: 1rem 1.5rem;
    color: var(--white);
    font-family: var(--font-body);
    outline: none;
}

.newsletter-input::placeholder { color: var(--white-muted); }

.newsletter-btn {
    background: var(--gold);
    border: none;
    color: var(--black);
    font-family: var(--font-button);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover { background: var(--gold-light); }

/* ==========================================
   FOOTER
   ========================================== */
#luxury-footer {
    background: #04080c;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-family: var(--font-button);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--white-muted);
    display: block;
    margin-top: 4px;
}

.footer-heading {
    font-family: var(--font-button);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    padding-left: 0;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white-muted);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212,175,55,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--white-muted);
    margin: 0;
}

/* ==========================================
   EXPERIENCE / FEATURE SECTION
   ========================================== */
.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212,175,55,0.1);
    transition: var(--transition);
}

.experience-item:last-child { border-bottom: none; }

.experience-item:hover { padding-left: 8px; }

.experience-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.experience-item:hover .experience-icon {
    background: var(--gold);
    color: var(--black);
}

.experience-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.experience-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white-muted);
    line-height: 1.6;
}

/* ==========================================
   BLOG CARDS
   ========================================== */
.blog-card {
    background: var(--dark);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-dark);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-card-body { padding: 1.5rem; }

.blog-category {
    font-family: var(--font-button);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin: 0.5rem 0 0.8rem;
    line-height: 1.3;
    text-decoration: none;
    display: block;
}

.blog-title:hover { color: var(--gold); }

.blog-excerpt {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white-muted);
    line-height: 1.7;
}

/* ==========================================
   PROMO ANNOUNCEMENT TOP BAR
   ========================================== */
.promo-topbar {
    position: relative;
    z-index: 10001;
    width: 100%;
    background: linear-gradient(90deg, #e8003a 0%, #c0006e 25%, #2563eb 65%, #16a34a 100%);
    margin: 0;
    padding: 0;
}

.promo-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.5rem;
    gap: 1rem;
    max-width: 100%;
}

/* Left: bell + text */
.promo-topbar-text {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.promo-bell-icon {
    color: #fff;
    font-size: 0.95rem;
    flex-shrink: 0;
    opacity: 0.9;
}

/* Right: buttons area */
.promo-topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* "Close" text button */
.promo-btn-close-text {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-family: var(--font-button);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.28rem 0.75rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.promo-btn-close-text:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

/* ✕ dismiss button */
.promo-topbar-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
    flex-shrink: 0;
}
.promo-topbar-close:hover { opacity: 1; }

/* Moving / Marquee */
.promo-marquee {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}
.promo-marquee-text {
    display: inline-block;
    font-family: var(--font-button);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    animation: marqueeScroll 60s linear infinite;
    padding-right: 6rem;
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* Blinking */
.promo-blink-text {
    font-family: var(--font-button);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    animation: promoBlink 1.5s ease-in-out infinite;
}
@keyframes promoBlink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

/* Static */
.promo-static-text {
    font-family: var(--font-button);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
}

/* ==========================================
   OFFER POPUP MODAL
   ========================================== */
.offer-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popupFadeIn 0.4s ease;
}
@keyframes popupFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.offer-popup-card {
    position: relative;
    max-width: 520px;
    width: 90%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212,175,55,0.3);
    animation: popupSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes popupSlideUp {
    from { transform: translateY(40px) scale(0.95); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

.offer-popup-img {
    width: 100%;
    display: block;
}

.offer-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}
.offer-popup-close:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 9000;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 12px 35px rgba(37,211,102,0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 35px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* CALL FLOATING BUTTON */
.call-float {
    position: fixed;
    bottom: 7rem;
    right: 2.5rem;
    z-index: 9000;
    width: 58px;
    height: 58px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #12110e;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
    transition: var(--transition);
    animation: pulse-call 2.5s infinite;
}

.call-float:hover {
    transform: scale(1.1);
    color: #12110e;
    box-shadow: 0 12px 35px rgba(212,175,55,0.6);
}

@keyframes pulse-call {
    0%, 100% { box-shadow: 0 8px 25px rgba(212,175,55,0.4); }
    50% { box-shadow: 0 8px 35px rgba(212,175,55,0.7), 0 0 0 10px rgba(212,175,55,0.15); }
}

/* ==========================================
   PARALLAX IMAGE SECTIONS
   ========================================== */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 8rem 0;
}

.parallax-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,11,11,0.7);
}

.parallax-section .content {
    position: relative;
    z-index: 1;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* AOS custom styles */
[data-aos] { transition-property: transform, opacity !important; }

/* ==========================================
   SWIPER OVERRIDES
   ========================================== */
.swiper-pagination-bullet {
    background: var(--white-muted);
    opacity: 1;
    width: 6px;
    height: 6px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    width: 24px;
    border-radius: 3px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--gold);
    background: rgba(30,30,30,0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 0.9rem;
    font-weight: 700;
}

/* ==========================================
   FORM ELEMENTS (GLOBAL)
   ========================================== */
.luxury-form .form-label {
    font-family: var(--font-button);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.luxury-form .form-control,
.luxury-form .form-select,
.luxury-form textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: 0.85rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    resize: none;
}

.luxury-form .form-control:focus,
.luxury-form .form-select:focus,
.luxury-form textarea:focus {
    background: rgba(212,175,55,0.06);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
    color: var(--white);
    outline: none;
}

.luxury-form .form-control::placeholder,
.luxury-form textarea::placeholder { color: var(--white-muted); }

/* ==========================================
   LIGHT LUXURY FORM OVERRIDES
   ========================================== */
.luxury-form-light .form-label {
    color: #1a1a1a !important;
}

.luxury-form-light .form-control,
.luxury-form-light .form-select,
.luxury-form-light textarea {
    background: #fafaf8 !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    color: #1a1a1a !important;
}

.luxury-form-light .form-control:hover,
.luxury-form-light .form-select:hover,
.luxury-form-light textarea:hover {
    border-color: rgba(212,175,55,0.5) !important;
    background: #f7f7f4 !important;
}

.luxury-form-light .form-control:focus,
.luxury-form-light .form-select:focus,
.luxury-form-light textarea:focus {
    background: #ffffff !important;
    border-color: var(--gold) !important;
    color: #1a1a1a !important;
    box-shadow: 0 0 0 3px var(--gold-glow) !important;
}

.luxury-form-light .form-control::placeholder,
.luxury-form-light textarea::placeholder {
    color: #888888 !important;
    opacity: 1 !important;
}

/* Fix dropdown options display on light backgrounds */
.luxury-form-light .form-select option {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
}


/* ==========================================
   ALERTS & TOASTS
   ========================================== */
.luxury-alert {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    border-left: 3px solid var(--gold);
    color: var(--white-dim);
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.luxury-alert-success {
    background: rgba(34,197,94,0.1);
    border-color: rgba(34,197,94,0.4);
    border-left-color: #22c55e;
}

.luxury-alert-danger {
    background: rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.4);
    border-left-color: #ef4444;
}

/* ==========================================
   AWARDS SECTION
   ========================================== */
.award-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition);
}

.award-item:hover { transform: translateY(-5px); }

.award-icon {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gold);
    font-size: 1.6rem;
    transition: var(--transition);
}

.award-item:hover .award-icon {
    background: var(--gold);
    color: var(--black);
}

.award-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.award-org {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--gold);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991.98px) {
    .section-luxury, .section-luxury-dark { padding: 4rem 0; }

    .booking-card { padding: 1.5rem; }

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

    .gallery-item:first-child {
        grid-column: span 2;
        height: 280px;
    }

    .gallery-item { height: 180px; }

    #main-navbar.navbar-expanded {
        background: rgba(11,11,11,0.98) !important;
    }

    /* Mobile menu dropdown — dark solid background */
    #navbarMenu {
        background: rgba(10, 8, 2, 0.98);
        padding: 1rem 0.5rem 1.5rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(212,175,55,0.2);
    }

    #navbarMenu .nav-link {
        padding: 0.65rem 1rem !important;
        border-bottom: 1px solid rgba(212,175,55,0.08);
        color: rgba(255,255,255,0.85) !important;
        text-align: center;
    }

    #navbarMenu .nav-link:hover,
    #navbarMenu .nav-link.active {
        color: var(--gold) !important;
        background: rgba(212,175,55,0.06);
    }

    #navbarMenu .btn-nav-book {
        margin: 0.8rem 1rem 0;
        display: block;
        text-align: center;
    }

    .navbar-logo {
        height: 42px;
    }

    .brand-name {
        font-size: 1.05rem;
        letter-spacing: 1px;
    }

    .brand-tagline {
        display: none;
    }

    /* Hero height on tablet */
    #hero {
        height: 70vh;
        min-height: 480px;
    }

    body { cursor: auto; }
    #luxury-cursor, #luxury-cursor-follower { display: none; }
}

@media (max-width: 767.98px) {
    .hero-title { font-size: 2.2rem; }
    #hero { height: 60vh; min-height: 400px; }
    .section-heading { font-size: 2rem; }
    .stat-item::after { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(4) { grid-column: span 1; }
    .whatsapp-float { bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; font-size: 1.4rem; }
    .call-float { bottom: 5.2rem; right: 1.5rem; width: 50px; height: 50px; font-size: 1.3rem; }
    .booking-card { border-radius: 0; margin: 0 -12px; }
}

/* About Section Redesign Styling */
.about-image-wrap {
    position: relative;
    padding: 20px;
    height: 520px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 20px 20px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-dark);
}

.about-img-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid var(--gold);
    border-radius: 200px 200px 20px 20px;
    z-index: 1;
    pointer-events: none;
    transform: translate(20px, 20px);
    transition: var(--transition);
}

.about-image-wrap:hover .about-img-frame {
    transform: translate(10px, 10px);
}

.about-img-badge {
    position: absolute;
    bottom: 40px;
    right: 0px;
    background: var(--gold);
    color: var(--black);
    padding: 1.2rem;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-year {
    font-family: var(--font-button);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
}

/* Small Stats Badges in About text column */
.stat-badge {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 1rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-badge:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.stat-number-sm {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1.2;
}

.stat-label-sm {
    font-family: var(--font-button);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666666;
    display: block;
}

@media (max-width: 991.98px) {
    .about-image-wrap {
        height: 380px;
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 2.2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item, .gallery-item:first-child { grid-column: span 1; height: 200px; }
}

/* Attractions Section Gold Cards */
#attractions-section .glass-card {
    background: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    color: #0b0b0b !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

#attractions-section .glass-card h3 {
    color: #0b0b0b !important;
    font-weight: 600 !important;
}

#attractions-section .glass-card span {
    color: rgba(11, 11, 11, 0.8) !important;
    font-weight: 600 !important;
}

#attractions-section .glass-card p {
    color: rgba(11, 11, 11, 0.7) !important;
}

#attractions-section .glass-card i {
    color: #0b0b0b !important;
}

#attractions-section .glass-card:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(175, 141, 67, 0.2) !important;
}

#attractions-section .glass-card:hover h3,
#attractions-section .glass-card:hover i {
    color: #1b355a !important;
}

#attractions-section .glass-card:hover span {
    color: #af8d43 !important;
}

#attractions-section .glass-card:hover p {
    color: #5a6070 !important;
}

/* Premium Contact CTA Golden Card Styling */
.glass-card-gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(20, 16, 5, 0.6) 100%) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1.5px solid rgba(212, 175, 55, 0.28) !important;
    border-radius: 16px !important;
    padding: 2.5rem 2rem !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
}

.glass-card-gold .experience-icon {
    width: 54px !important;
    height: 54px !important;
    background: rgba(212, 175, 55, 0.1) !important;
    border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 50% !important; /* Circular icons look much cleaner and professional */
    color: var(--gold) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.25rem !important;
    transition: all 0.3s ease !important;
}

.glass-card-gold .experience-icon:hover {
    background: var(--gold) !important;
    color: #0b0b0b !important;
    transform: rotate(15deg) scale(1.1) !important;
}

.glass-card-gold a {
    transition: color 0.3s ease !important;
}

.glass-card-gold a:hover {
    color: var(--gold) !important;
}

/* Reusable Breadcrumb Banners for Subpages */
.luxury-breadcrumb {
    position: relative;
    padding: 10rem 0 6rem !important;
    background-color: #0b0b0b;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    overflow: hidden;
    border-bottom: 1px solid rgba(212,175,55,0.2) !important;
}

.luxury-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.35) 0%, rgba(11, 11, 11, 0.60) 100%) !important;
    z-index: 1;
}

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

/* Luxury Blog Cards Styling */
.blog-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-top: 3px solid var(--gold) !important; /* Elegant gold indicator on top */
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.4s ease !important;
    overflow: hidden;
    display: block;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(175, 141, 67, 0.12) !important;
}

.blog-card-body {
    padding: 2.2rem 2rem !important;
}

.blog-title {
    font-family: var(--font-heading) !important;
    font-size: 1.4rem !important;
    color: #1b355a !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin-bottom: 1rem !important;
    transition: color 0.3s ease !important;
}

.blog-card:hover .blog-title {
    color: var(--gold) !important;
}

.blog-excerpt {
    font-size: 0.88rem !important;
    color: #5a6070 !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
}

/* ==========================================
   PAGINATION STYLING
   ========================================== */
.pagination {
    margin: 2rem 0;
    gap: 8px;
}

.pagination .page-item {
    border: none;
}

.pagination .page-link {
    background-color: var(--dark) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    color: var(--white-dim) !important;
    padding: 0.6rem 1rem !important;
    font-family: var(--font-button) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    transition: var(--transition-fast) !important;
    box-shadow: none !important;
}

.pagination .page-link:hover {
    background-color: rgba(212, 175, 55, 0.1) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #E5C05B 0%, #D4AF37 100%) !important;
    border-color: var(--gold) !important;
    color: var(--black) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25) !important;
}

.pagination .page-item.disabled .page-link {
    background-color: var(--dark-3) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--white-muted) !important;
    opacity: 0.5 !important;
}

/* ==========================================
   AMENITIES PAGE CUSTOM STYLES
   ========================================== */
.luxury-amenity-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--white-dim);
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 500;
    font-family: var(--font-button);
    letter-spacing: 0.05em;
    transition: var(--transition);
    border-radius: 4px;
}
.luxury-amenity-pill i {
    color: var(--gold);
}
.luxury-amenity-pill:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-1px);
}
.amenity-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.38) !important;
    box-shadow: 0 15px 45px rgba(212,175,55,0.06) !important;
}
.amenity-card:hover .award-icon {
    background: rgba(212,175,55,0.15) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 18px rgba(212,175,55,0.25);
}

/* About Page Image Wrap */
.about-image-wrap {
    height: 480px;
    border-radius: var(--radius-card);
    border: 1.5px solid rgba(212,175,55,0.25);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Responsive Breadcrumb and About Image Heights */
@media (max-width: 991px) {
    .about-image-wrap {
        height: 300px;
    }
}
@media (max-width: 767px) {
    .luxury-breadcrumb {
        padding: 6.5rem 0 4.5rem !important;
    }
}

/* ==========================================
   COMING SOON CORNER WIDGET
   ========================================== */
.cs-widget {
    position: fixed;
    z-index: 9990;
    width: 220px;
    animation: csSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Corner positioning */
.cs-widget--bottom-right { bottom: 6rem; right: 1.5rem; }
.cs-widget--bottom-left  { bottom: 6rem; left: 1.5rem; }
.cs-widget--top-right    { top: 6rem; right: 1.5rem; }
.cs-widget--top-left     { top: 6rem; left: 1.5rem; }

/* Slide-in from right by default */
@keyframes csSlideIn {
    from { opacity: 0; transform: translateX(60px) scale(0.92); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
.cs-widget--bottom-left,
.cs-widget--top-left {
    animation-name: csSlideInLeft;
}
@keyframes csSlideInLeft {
    from { opacity: 0; transform: translateX(-60px) scale(0.92); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

.cs-widget--hidden { display: none !important; }

/* Inner card */
.cs-widget__inner {
    background: linear-gradient(160deg, #0f0c06 0%, #1c1508 60%, #0a0a0a 100%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 14px;
    padding: 1.4rem 1.2rem 1.2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.55),
        0 0 0 1px rgba(212,175,55,0.1),
        inset 0 1px 0 rgba(212,175,55,0.15);
    backdrop-filter: blur(10px);
}

/* Shimmering top edge */
.cs-widget__inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: csShimmer 2.5s ease-in-out infinite;
}
@keyframes csShimmer {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

/* Ribbon badge */
.cs-widget__ribbon {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f5d778, #b8860b);
    color: #0a0a0a;
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.22rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
    box-shadow: 0 2px 12px rgba(212,175,55,0.35);
}

/* Stars */
.cs-widget__stars {
    font-size: 0.6rem;
    color: rgba(212, 175, 55, 0.5);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

/* Main Title */
.cs-widget__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    font-style: italic;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 0.45rem;
    text-shadow: 0 0 30px rgba(212,175,55,0.3);
}

/* Tagline */
.cs-widget__tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-bottom: 0.9rem;
}

/* Divider */
.cs-widget__divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
    margin: 0 auto 0.75rem;
}

/* Hotel name */
.cs-widget__hotel {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

/* Sub text */
.cs-widget__sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.58rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

/* Animated pulsing dots */
.cs-widget__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.cs-widget__dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    animation: csDot 1.4s ease-in-out infinite both;
}
.cs-widget__dots span:nth-child(2) { animation-delay: 0.2s; }
.cs-widget__dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes csDot {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
    40%           { transform: scale(1.2); opacity: 1; }
}

/* Close button */
.cs-widget__close {
    position: absolute;
    top: 0.5rem;
    right: 0.55rem;
    background: none;
    border: none;
    color: rgba(212,175,55,0.5);
    font-size: 0.7rem;
    cursor: pointer;
    z-index: 2;
    transition: color 0.2s;
    line-height: 1;
    padding: 0.2rem;
}
.cs-widget__close:hover { color: var(--gold); }

/* Mobile: slightly smaller */
@media (max-width: 576px) {
    .cs-widget { width: 180px; }
    .cs-widget--bottom-right { bottom: 5rem; right: 0.75rem; }
    .cs-widget--bottom-left  { bottom: 5rem; left: 0.75rem; }
    .cs-widget__title { font-size: 1.5rem; }
}
