/* =====================================================
   MOL MOT HOTEL - Premium Luxury Stylesheet v2.0
   Enhanced with animations, visual effects & details
   ===================================================== */

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
    --gold: #c9a96e;
    --gold-light: #ddc292;
    --gold-dark: #a88b4a;
    --gold-gradient: linear-gradient(135deg, #c9a96e 0%, #e8d5a3 50%, #c9a96e 100%);
    --gold-shimmer: linear-gradient(90deg, #c9a96e 0%, #f0e0b8 25%, #c9a96e 50%, #f0e0b8 75%, #c9a96e 100%);
    --dark: #0c0c1d;
    --dark-2: #141428;
    --dark-3: #1e1e3a;
    --cream: #faf8f4;
    --cream-2: #f3ede3;
    --white: #ffffff;
    --text: #4a4a5a;
    --text-light: #8a8a9a;
    --heading: 'Playfair Display', serif;
    --sub: 'Cormorant Garamond', serif;
    --body: 'Montserrat', sans-serif;
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.06);
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.12);
    --shadow-gold: 0 10px 30px rgba(201,169,110,0.25);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--body);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

::selection { background: var(--gold); color: var(--white); }
img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: var(--transition); }

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }

.preloader-ring {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.preloader-ring svg { width: 100%; height: 100%; animation: preloaderRotate 2s linear infinite; }

.preloader-circle {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    stroke-linecap: round;
    animation: preloaderDash 1.8s ease-in-out infinite;
}

@keyframes preloaderRotate { to { transform: rotate(360deg); } }

@keyframes preloaderDash {
    0% { stroke-dashoffset: 283; }
    50% { stroke-dashoffset: 70; }
    100% { stroke-dashoffset: 283; }
}

.preloader-logo-img {
    width: 180px;
    height: auto;
    margin-bottom: 12px;
}

.preloader-sub {
    font-family: var(--body);
    font-size: 0.55rem;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 5px;
}

.preloader-bar {
    width: 160px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 25px auto 0;
    border-radius: 10px;
    overflow: hidden;
}

.preloader-bar-inner {
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    animation: preloaderFill 2s ease forwards;
}

@keyframes preloaderFill { to { width: 100%; } }

/* ========== CUSTOM CURSOR ========== */
.custom-cursor, .custom-cursor-follower { display: none; }

@media (min-width: 992px) and (pointer: fine) {
    .custom-cursor {
        display: block;
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
        transform: translate(-50%, -50%);
        mix-blend-mode: difference;
    }

    .custom-cursor-follower {
        display: block;
        position: fixed;
        width: 40px;
        height: 40px;
        border: 1.5px solid rgba(201,169,110,0.5);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99997;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
    }

    .custom-cursor-follower.hover {
        width: 60px;
        height: 60px;
        border-color: var(--gold);
        background: rgba(201,169,110,0.08);
    }
}

/* ========== PARTICLES ========== */
.particles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle var(--duration) var(--delay) infinite ease-in-out;
}

@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.4; }
    50% { opacity: 0.15; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* ========== HEADER ========== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.main-header.scrolled {
    background: var(--dark);
    box-shadow: 0 5px 30px rgba(0,0,0,0.25);
}

/* Top strip */
.header-top-strip {
    background: rgba(12, 12, 29, 0.95);
    border-bottom: 1px solid rgba(201,169,110,0.12);
    padding: 6px 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}

.header-top-strip.hidden { transform: translateY(-100%); margin-bottom: -38px; }

.strip-left a, .strip-center, .strip-right { color: rgba(255,255,255,0.55); }
.strip-left a:hover { color: var(--gold); }
.strip-left i, .strip-center i { color: var(--gold); margin-right: 6px; }

.strip-right { display: flex; align-items: center; justify-content: flex-end; }

.strip-socials a {
    color: rgba(255,255,255,0.4);
    margin-left: 14px;
    font-size: 0.82rem;
    transition: var(--transition);
}

.strip-socials a:hover { color: var(--gold); transform: translateY(-2px); }

.strip-lang-select {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 4px;
    cursor: pointer;
}

/* Navbar */
.navbar {
    padding: 18px 0;
    transition: var(--transition-slow);
    background: transparent;
}

.navbar.scrolled {
    padding: 10px 0;
}

/* ========== LOGO ========== */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    white-space: nowrap;
    text-decoration: none;
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .navbar-logo {
    height: 42px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 5px;
}

.logo-slogan {
    font-family: var(--sub);
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    line-height: 1;
    opacity: 0.85;
}

.logo-slogan.light {
    color: var(--gold-light);
}

/* Nav links */
.navbar-nav .nav-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 13px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 24px;
}

/* Dropdown */
.dropdown-menu {
    background: var(--dark-2);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: var(--radius-sm);
    padding: 10px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    padding: 10px 16px;
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(201,169,110,0.1);
    color: var(--gold);
}

.dropdown-item i { margin-right: 8px; color: var(--gold); }

/* Nav CTA */
.nav-cta {
    font-size: 0.78rem !important;
    padding: 10px 24px !important;
}

/* Hamburger */
.navbar-toggler {
    border: none;
    background: none;
    padding: 6px;
    z-index: 1100;
}

.navbar-toggler:focus { box-shadow: none; }

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    left: 0;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; width: 100%; }
.hamburger span:nth-child(2) { top: 9px; width: 65%; }
.hamburger span:nth-child(3) { top: 18px; width: 35%; }

.navbar-toggler.active .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.navbar-toggler.active .hamburger span:nth-child(2) { opacity: 0; width: 0; }

.navbar-toggler.active .hamburger span:nth-child(3) {
    width: 100%;
    transform: rotate(-45deg);
    top: 9px;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 12, 29, 0.97);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

.mobile-nav-content { text-align: center; }

.mobile-nav-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.mobile-nav-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-nav-links { list-style: none; padding: 0; }

.mobile-nav-links li {
    margin: 8px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.mobile-nav-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(7) { transition-delay: 0.4s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(8) { transition-delay: 0.45s; }

.mobile-link {
    font-family: var(--heading);
    font-size: 1.6rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 2px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.mobile-link:hover { color: var(--gold); }

.link-num {
    font-family: var(--body);
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 600;
}

.mobile-nav-footer {
    margin-top: 30px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.mobile-nav-footer i { color: var(--gold); margin-right: 6px; }

.mobile-nav-socials { margin-top: 15px; }
.mobile-nav-socials a {
    color: rgba(255,255,255,0.4);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: var(--transition);
}
.mobile-nav-socials a:hover { color: var(--gold); }

@media (max-width: 1199.98px) {
    #navDesktop { display: none !important; }
}

/* ========== BUTTONS ========== */
.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.btn-gold:hover { color: var(--gold); border-color: var(--gold); background: transparent; }
.btn-gold:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.btn-outline-gold:hover { color: var(--white); }
.btn-outline-gold:hover::before { transform: scaleX(1); }

.btn-outline-light-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-outline-light-custom:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,169,110,0.08);
}

/* ========== HERO ========== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.hero-slider { width: 100%; height: 100%; }

/* Ensure Swiper slides fill the full hero height (required for fade effect) */
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide { height: 100%; }

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(12,12,29,0.92) 0%, rgba(12,12,29,0.78) 50%, rgba(12,12,29,0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201,169,110,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,169,110,0.5);
    color: #f0d48a;
    padding: 8px 22px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0.3); }
    50% { box-shadow: 0 0 20px 5px rgba(201,169,110,0.15); }
}

.hero-badge i { margin-right: 6px; }

.hero-title {
    font-family: var(--heading);
    font-size: 4.5rem;
    font-weight: 900;
    color: #FFD700 !important;
    opacity: 1 !important;
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 4px 30px rgba(0,0,0,0.4);
}

.hero-accent {
    color: #FFD700 !important;
    -webkit-text-fill-color: #FFD700 !important;
    font-weight: 900;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero-desc {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 35px;
    max-width: 580px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}

.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mini-stat strong {
    display: block;
    font-family: var(--heading);
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
}

.mini-stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mini-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Hero navigation */
.hero-nav-wrapper {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-slide-counter {
    color: rgba(255,255,255,0.6);
    font-family: var(--heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.hero-slide-counter span:first-child { color: var(--gold); font-size: 1.4rem; }

.hero-nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.hero-nav-btns { display: flex; gap: 8px; }

.hero-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 3px;
    border-radius: 0;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 45px;
    background: var(--gold);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 150%; }
}

.scroll-indicator span {
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* Side social */
.hero-side-social {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero-side-social a {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    transition: var(--transition);
}

.hero-side-social a:hover { color: var(--gold); transform: scale(1.2); }

.side-line {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,0.15);
}

.side-text {
    writing-mode: vertical-rl;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* ========== BOOKING ========== */
.booking-section {
    position: relative;
    z-index: 10;
    margin-top: -70px;
    padding-bottom: 30px;
}

.booking-widget {
    background: var(--white);
    padding: 0;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.booking-widget-header {
    background: var(--dark);
    padding: 18px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-widget-header h3 {
    font-family: var(--heading);
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
}

.booking-widget-header h3 i { color: var(--gold); margin-right: 8px; }

.booking-widget-header p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.booking-form {
    padding: 30px 35px;
}

.booking-form .form-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
}

.booking-form .form-label i { color: var(--gold); margin-right: 4px; }

.booking-form .form-control,
.booking-form .form-select {
    border: 1px solid #e0d9cf;
    border-radius: 0;
    padding: 13px 16px;
    font-size: 0.88rem;
    background: var(--cream);
    transition: var(--transition);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

.booking-submit {
    padding: 13px 30px !important;
    white-space: nowrap;
}

/* ========== MARQUEE ========== */
.marquee-ribbon {
    background: var(--dark);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(201,169,110,0.1);
    border-bottom: 1px solid rgba(201,169,110,0.1);
}

.marquee-track { display: flex; overflow: hidden; }

.marquee-content {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--heading);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0 30px;
    flex-shrink: 0;
}

.marquee-content span i {
    color: var(--gold);
    font-size: 0.5rem;
    margin-right: 14px;
    vertical-align: middle;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== SECTION COMMONS ========== */
.section-padding { padding: 110px 0; }
.bg-cream { background: var(--cream); }
.bg-dark-section { background: var(--dark); }
.text-gold { color: var(--gold) !important; }

.section-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-tag.center { justify-content: center; }
.section-tag.light { color: var(--gold-light); }

.section-tag span {
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-tag.light span { background: var(--gold-light); }

.section-title {
    font-family: var(--heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.title-deco {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.title-deco.center { justify-content: center; }

.title-deco span {
    width: 45px;
    height: 1px;
    background: var(--gold);
}

.title-deco i {
    color: var(--gold);
    font-size: 0.5rem;
}

.title-deco.light span { background: var(--gold-light); }
.title-deco.light i { color: var(--gold-light); }

.section-desc {
    font-size: 1.02rem;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
}

/* ========== ABOUT ========== */
.about-gallery {
    position: relative;
    padding: 30px;
}

.about-img-main { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-img-main img { border-radius: var(--radius); width: 100%; display: block; }

.img-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg);
    animation: imgShine 4s infinite;
}

@keyframes imgShine {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

.about-img-float {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50%;
    border: 5px solid var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-img-float-2 {
    position: absolute;
    top: 10px;
    right: -10px;
    width: 35%;
    border: 4px solid var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.float-anim {
    animation: floatUpDown 4s ease-in-out infinite;
}

.float-anim-delay {
    animation: floatUpDown 5s ease-in-out 1s infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.about-exp-badge {
    position: absolute;
    top: 15px;
    left: 0;
    background: var(--gold);
    color: var(--white);
    padding: 22px 18px;
    text-align: center;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-gold);
}

.pulse-glow {
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 5px 20px rgba(201,169,110,0.3); }
    50% { box-shadow: 0 5px 35px rgba(201,169,110,0.5); }
}

.exp-icon { font-size: 1.2rem; margin-bottom: 5px; }

.exp-number {
    font-family: var(--heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 5px;
}

.about-shape-1 {
    position: absolute;
    top: -10px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    opacity: 0.15;
    border-radius: 50%;
    animation: floatUpDown 6s infinite;
}

.about-shape-2 {
    position: absolute;
    bottom: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    opacity: 0.1;
    transform: rotate(45deg);
    animation: floatUpDown 5s 1s infinite;
}

.about-lead {
    font-family: var(--sub);
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-text { color: var(--text-light); margin-bottom: 12px; font-size: 0.95rem; }

/* Highlight cards */
.highlight-card {
    background: var(--cream);
    padding: 22px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.highlight-card:hover {
    border-color: rgba(201,169,110,0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--gold);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    transform: rotateY(180deg);
}

.highlight-body { flex: 1; }
.highlight-card h6 { font-weight: 700; font-size: 0.9rem; margin-bottom: 3px; color: var(--dark); }
.highlight-card p { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.45; }

/* ========== STATS ========== */
.stats-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,12,29,0.88);
}

.stat-card {
    padding: 30px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.stat-icon-ring {
    width: 65px;
    height: 65px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.stat-card:hover .stat-icon-ring {
    background: var(--gold);
    color: var(--white);
    transform: rotateY(180deg);
}

.stat-number {
    font-family: var(--heading);
    font-size: 2.8rem;
    font-weight: 700;
}

.stat-number sup {
    font-size: 1.2rem;
    color: var(--gold);
}

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-top: 5px;
}

.stat-bar {
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    margin: 15px auto 0;
    border-radius: 3px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    width: 0;
    background: var(--gold);
    border-radius: 3px;
    transition: width 1.5s ease;
}

/* ========== ROOMS ========== */
.room-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 24px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
    font-family: var(--body);
}

.filter-btn i { margin-right: 5px; }

.filter-btn.active, .filter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,169,110,0.15);
}

.room-card.featured { border: 2px solid var(--gold); }

.room-img-wrap {
    position: relative;
    overflow: hidden;
    height: 270px;
}

.room-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-img-wrap img {
    transform: scale(1.08);
}

.room-price {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--dark);
    color: var(--gold);
    padding: 8px 16px;
    font-weight: 700;
    font-size: 1rem;
    z-index: 2;
    letter-spacing: 0.5px;
}

.room-price small { font-size: 0.65rem; font-weight: 400; opacity: 0.7; }
.room-price.popular { background: var(--gold); color: var(--white); }

.room-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,12,29,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.room-card:hover .room-img-overlay { opacity: 1; }

.room-ribbon {
    position: absolute;
    top: 16px;
    left: 0;
    background: var(--gold);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px 6px 12px;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.room-ribbon.hot { background: #e74c3c; }

.room-body { padding: 25px; }

.room-stars {
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.room-stars span {
    font-weight: 700;
    font-size: 0.82rem;
    margin-left: 6px;
    color: var(--dark);
}

.room-title {
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.room-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

.room-features {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--text-light);
}

.room-features span {
    background: var(--cream);
    padding: 4px 10px;
    border-radius: 4px;
}

.room-features i { color: var(--gold); margin-right: 3px; }

.room-item { transition: opacity 0.5s, transform 0.5s; }
.room-item.hide-card { opacity: 0; transform: scale(0.8); position: absolute; pointer-events: none; }

/* ========== AMENITIES V2 ========== */
.amenity-card-v2 {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.amenity-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,169,110,0.15);
}

.amenity-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.amenity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.amenity-card-v2:hover .amenity-img img { transform: scale(1.1); }

.amenity-icon-float {
    position: absolute;
    bottom: -22px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-gold);
    z-index: 2;
    transition: var(--transition);
}

.amenity-card-v2:hover .amenity-icon-float { transform: rotateY(180deg); }

.amenity-body {
    padding: 30px 25px 25px;
}

.amenity-body h5 {
    font-family: var(--heading);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.amenity-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.amenity-hours {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.amenity-hours i { margin-right: 4px; }

/* ========== GALLERY MASONRY ========== */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}

.gallery-cell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.gallery-cell.tall { grid-row: span 2; }

.gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-cell:hover img { transform: scale(1.12); }

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(12,12,29,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}

.gallery-cell:hover .gallery-hover { opacity: 1; }

.gallery-hover i { font-size: 1.8rem; color: var(--gold); margin-bottom: 8px; }
.gallery-hover span { font-family: var(--heading); font-size: 0.95rem; letter-spacing: 1px; }

/* ========== DINING ========== */
.dining-card-large {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    height: 100%;
}

.dining-card-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.dining-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dining-card-large:hover .dining-card-img img { transform: scale(1.05); }

.dining-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.dining-card-content { padding: 30px; }

.dining-card-content h4 {
    font-family: var(--heading);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.dining-hours {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.dining-hours i { margin-right: 5px; }

.dining-card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

.dining-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.dining-tags span {
    background: var(--cream);
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.dining-mini-card {
    display: flex;
    gap: 20px;
    padding: 22px;
    border: 1px solid #eee;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    transition: var(--transition);
    background: var(--white);
}

.dining-mini-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.dining-mini-img {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.dining-mini-img img { width: 100%; height: 100%; object-fit: cover; }

.dining-mini-body h5 {
    font-family: var(--heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.dining-mini-body p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ========== SPA ========== */
.spa-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.spa-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.spa-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,12,29,0.9), rgba(15,52,96,0.85));
}

.spa-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.spa-service {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    padding: 8px 0;
}

.spa-service i { color: var(--gold); margin-right: 10px; }

.glass-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--radius);
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
}

.spa-price-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--white);
    padding: 6px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.spa-price {
    font-family: var(--heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.spa-includes {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.spa-includes li {
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.spa-includes i { color: var(--gold); margin-right: 10px; }

/* ========== EVENTS ========== */
.event-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.event-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,169,110,0.1); }
.event-card:hover::after { transform: scaleX(1); }

.event-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.event-card:hover .event-icon { background: var(--gold); color: var(--white); transform: scale(1.1); }

.event-card h5 { font-family: var(--heading); font-weight: 600; margin-bottom: 10px; color: var(--dark); }
.event-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 15px; line-height: 1.6; }

.event-link {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.event-link:hover { color: var(--gold-dark); }
.event-link i { transition: var(--transition); }
.event-link:hover i { transform: translateX(5px); }

/* ========== OFFERS ========== */
.offer-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.offer-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,12,29,0.92), rgba(15,52,96,0.88));
}

.offer-checklist { margin-top: 20px; }

.offer-check {
    color: rgba(255,255,255,0.78);
    font-size: 0.9rem;
    padding: 6px 0;
}

.offer-check i { color: var(--gold); margin-right: 8px; }

.offer-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 5px 18px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.offer-from {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.offer-amount {
    font-family: var(--heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin: 8px 0;
}

.offer-per { color: rgba(255,255,255,0.5); font-size: 0.88rem; }

.offer-save {
    display: inline-block;
    background: rgba(201,169,110,0.15);
    color: var(--gold);
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 15px 0;
}

.offer-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.timer-unit {
    background: rgba(255,255,255,0.08);
    padding: 10px 14px;
    text-align: center;
    min-width: 60px;
}

.timer-unit span {
    display: block;
    font-family: var(--heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.timer-unit small {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== TESTIMONIALS V2 ========== */
.testimonial-card-v2 {
    background: var(--white);
    padding: 40px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    margin: 10px;
    border: 1px solid rgba(201,169,110,0.08);
    position: relative;
    transition: var(--transition);
}

.testimonial-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testi-quote {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 10px;
}

.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 18px; }
.testi-stars i { margin: 0 2px; }

.testi-text {
    font-family: var(--sub);
    font-size: 1.15rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 25px;
}

.testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1rem;
}

.testi-author h6 { font-weight: 600; margin-bottom: 2px; color: var(--dark); font-size: 0.9rem; }
.testi-author span { font-size: 0.78rem; color: var(--text-light); }

.testi-pagination {
    margin-top: 30px;
}

.testi-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
    transition: var(--transition);
}

.testi-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ========== NEWSLETTER ========== */
.newsletter-section { padding: 0; margin-top: -50px; position: relative; z-index: 5; }

.newsletter-card {
    background: var(--dark);
    padding: 55px 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201,169,110,0.15);
    position: relative;
    overflow: hidden;
}

.newsletter-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 30px solid rgba(201,169,110,0.05);
    border-radius: 50%;
}

.newsletter-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.newsletter-form .input-group {
    border: 1px solid rgba(201,169,110,0.25);
    overflow: hidden;
}

.newsletter-form .input-group-text {
    background: rgba(255,255,255,0.04);
    border: none;
    color: var(--gold);
    padding: 16px;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.04);
    border: none;
    color: var(--white);
    padding: 16px;
    font-size: 0.88rem;
}

.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form .form-control:focus { box-shadow: none; background: rgba(255,255,255,0.06); }

/* ========== CONTACT ========== */
.contact-info-card {
    height: 100%;
}

.contact-info-card h4 {
    font-family: var(--heading);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--cream);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-item:hover .contact-item-icon { background: var(--gold); color: var(--white); }

.contact-item h6 { font-weight: 700; color: var(--dark); margin-bottom: 3px; font-size: 0.88rem; }
.contact-item p { color: var(--text-light); font-size: 0.88rem; margin: 0; line-height: 1.5; }
.contact-item a { color: var(--text-light); }
.contact-item a:hover { color: var(--gold); }

.contact-socials { display: flex; gap: 10px; margin-top: 10px; }

.c-social {
    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
}

.c-social:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-3px); }

.contact-form-card {
    background: var(--cream);
    padding: 45px;
    border-radius: var(--radius);
}

.contact-form-card h4 {
    font-family: var(--heading);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1px solid #e0d9cf;
    border-radius: 0;
    background: var(--white);
    transition: var(--transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid rgba(201,169,110,0.1);
}

/* ========== FOOTER ========== */
.footer { background: var(--dark); color: rgba(255,255,255,0.5); position: relative; }

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    color: var(--dark);
    line-height: 0;
}

.footer-main { padding: 100px 0 55px; }

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc { font-size: 0.88rem; line-height: 1.7; }

.footer-socials { display: flex; gap: 10px; margin-top: 15px; }

.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-3px); }

.footer-heading {
    font-family: var(--heading);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 22px;
    font-size: 1rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }

.footer-links a {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    transition: var(--transition);
    padding-left: 0;
}

.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
    margin-bottom: 12px;
    font-size: 0.85rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.footer-contact-list i { color: var(--gold); margin-top: 3px; min-width: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
    font-size: 0.82rem;
}

.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--dark); }

.btt-progress {
    position: absolute;
    inset: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    transform: rotate(-90deg);
}

.btt-circle {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 138;
    stroke-dashoffset: 138;
    transition: stroke-dashoffset 0.3s ease;
}

/* ========== ROOM MODAL ========== */
.room-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.room-modal-overlay.active { opacity: 1; visibility: visible; }

.room-modal-card {
    background: var(--white);
    max-width: 550px;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: var(--transition);
}

.room-modal-overlay.active .room-modal-card { transform: translateY(0); }

.room-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ========== TOAST ========== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 100001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-item {
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: slideInRight 0.4s ease forwards;
    border-left: 4px solid var(--gold);
}

.toast-item.success { border-left-color: #28a745; }
.toast-item.info { border-left-color: var(--gold); }

.toast-item i { font-size: 1.3rem; }
.toast-item.success i { color: #28a745; }
.toast-item.info i { color: var(--gold); }

.toast-item span { font-size: 0.88rem; color: var(--dark); font-weight: 500; }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

.toast-item.removing {
    animation: slideOutRight 0.3s ease forwards;
}

@keyframes slideOutRight {
    to { opacity: 0; transform: translateX(60px); }
}

/* ========== RESPONSIVE ========== */

/* ── Fallback: ensure AOS elements are always visible (belt + suspenders) ── */
[data-aos] { will-change: transform, opacity; }

/* ── Hero: proper mobile viewport height (avoids browser-chrome clipping) ── */
.hero-section {
    height: 100vh;
    height: 100svh;   /* modern browsers: safe viewport height, excludes browser chrome */
}

@media (max-width: 1199.98px) {
    .hero-title { font-size: 3.8rem; }
    .section-title { font-size: 2.4rem; }
    .hero-nav-wrapper { right: 30px; bottom: 30px; }
    .scroll-indicator { left: 30px; }
}

@media (max-width: 991.98px) {
    .hero-section { min-height: 580px; }
    .hero-title { font-size: 3rem; }
    .hero-mini-stats { flex-wrap: wrap; gap: 15px; }
    .section-padding { padding: 80px 0; }
    .section-title { font-size: 2rem; }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-cell.tall { grid-row: span 1; }
    .hero-nav-wrapper { right: 20px; bottom: 20px; }
    .hero-side-social { display: none !important; }
    .scroll-indicator { display: none; }
    .spa-services { grid-template-columns: 1fr; }
    .offer-amount { font-size: 3.5rem; }
    .newsletter-card { padding: 35px 25px; }
    .stats-bg, .spa-bg, .offer-bg { background-attachment: scroll; }
    .dining-mini-card { flex-direction: column; }
    .dining-mini-img { width: 100%; height: 150px; }

    /* Room overlay always visible on touch / tablet */
    .room-img-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(12,12,29,0.80) 0%, rgba(12,12,29,0.25) 60%, transparent 100%);
    }
    /* Arrange overlay buttons at bottom for mobile */
    .room-img-overlay {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 16px;
        gap: 8px;
    }
}

@media (max-width: 767.98px) {
    /* Hero */
    .hero-section { min-height: 560px; }
    .hero-content { padding-top: 40px; }
    .hero-title { font-size: 2.2rem; line-height: 1.15; }
    .hero-desc { font-size: 0.92rem; margin-bottom: 24px; }
    .hero-badge { font-size: 0.68rem; padding: 6px 14px; }
    .hero-nav-wrapper { display: none; }
    .hero-mini-stats { margin-top: 28px; padding-top: 20px; gap: 12px; }
    .mini-stat strong { font-size: 1.4rem; }
    .mini-stat span { font-size: 0.68rem; }
    .hero-btns { gap: 10px; }
    /* Overlay gradient — darker at bottom where text sits on mobile portrait */
    .hero-overlay {
        background: linear-gradient(to top, rgba(12,12,29,0.95) 0%, rgba(12,12,29,0.75) 50%, rgba(12,12,29,0.50) 100%);
    }

    /* Sections */
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 1.75rem; }
    .section-desc { font-size: 0.92rem; }

    /* About */
    .about-gallery { padding: 15px; margin-bottom: 20px; }
    .about-img-float { width: 45%; }
    .about-img-float-2 { display: none; }
    .about-lead { font-size: 1.1rem; }

    /* Stats */
    .stat-number { font-size: 2.2rem; }

    /* Rooms */
    .room-filter { gap: 8px; }
    .filter-btn { padding: 8px 16px; font-size: 0.72rem; letter-spacing: 1px; }
    .room-img-wrap { height: 220px; }
    .room-body { padding: 18px; }
    .room-title { font-size: 1.1rem; }
    .room-desc { font-size: 0.82rem; margin-bottom: 12px; }
    .room-features { gap: 8px; font-size: 0.7rem; }

    /* Gallery */
    .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }

    /* Contact */
    .contact-form-card { padding: 30px 20px; }

    /* Footer */
    .mobile-link { font-size: 1.3rem; }
    .footer-main { padding: 60px 0 35px; }

    /* Booking */
    .booking-section { margin-top: -40px; }
    .booking-form { padding: 20px; }
    .booking-widget-header { padding: 14px 20px; flex-direction: column; gap: 4px; text-align: center; }
    .booking-widget-header p { display: none; }

    /* Offer / Timer */
    .offer-timer { gap: 8px; }
    .timer-unit { min-width: 50px; padding: 8px 10px; }
    .timer-unit span { font-size: 1.2rem; }
}

@media (max-width: 575.98px) {
    /* Hero */
    .hero-title { font-size: 1.85rem; }
    .hero-btns .btn { padding: 10px 18px; font-size: 0.72rem; }
    .hero-mini-stats { display: none; } /* too crowded on smallest screens */

    /* General */
    .section-padding { padding: 50px 0; }
    .section-title { font-size: 1.5rem; }
    .navbar-logo { height: 38px; }
    .logo-slogan { font-size: 0.6rem; letter-spacing: 1.5px; }

    /* Rooms — full width single column */
    .room-item.col-md-6 { width: 100%; }
    .room-img-wrap { height: 200px; }

    /* Gallery */
    .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 200px; }

    /* About highlights — single column */
    .highlight-card { padding: 16px 14px; }

    /* Stats */
    .stat-card { padding: 20px 10px; }
    .stat-icon-ring { width: 52px; height: 52px; font-size: 1.2rem; }

    /* Footer */
    .footer-bottom .col-md-6:last-child { text-align: left !important; margin-top: 10px; }
    .footer-bottom a { margin-left: 0 !important; margin-right: 12px; }
}
