﻿/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-gold: #d4af37;
    --primary-dark: #b8941f;
    --cream: #faf8f3;
    --warm-white: #fefdfb;
    --light-gray: #f8f6f0;
    --medium-gray: #8b8680;
    --dark-gray: #4a453f;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --shadow-light: rgba(212, 175, 55, 0.1);
    --shadow-medium: rgba(212, 175, 55, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.1);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --border-radius-large: 20px;
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Layout */
    --navbar-height: 80px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    text-align: center;
}

.golden-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Hide preloader when page is loaded */
body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    pointer-events: none;
    display: none !important;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
    transform: translateY(-100%);
    animation: slideDown 0.8s ease forwards;
    animation-delay: 0.5s;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px var(--shadow-light);
}

.navbar { height: var(--navbar-height); }

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: var(--navbar-height);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    min-width: max-content;
}

.nav-logo img {
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1em;
    font-weight: 700;
}

.logo-sub {
    font-size: 0.75em;
    font-weight: 500;
    opacity: 0.8;
}

.nav-logo i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    transform: rotate(0deg);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.nav-logo:hover i {
    transform: rotate(360deg);
    color: var(--primary-dark);
}

/* ===== Weather header widget styles ===== */
.weather-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-right: 12px;
}

.weather-header:hover {
    background: rgba(212, 175, 55, 0.1);
}

.weather-icon {
    font-size: 18px;
}

.weather-temp {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 35px;
}

.weather-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 16px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    z-index: 1000;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.weather-header:hover .weather-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.weather-today {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1efe9;
    margin-bottom: 12px;
}

.today-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.today-icon {
    font-size: 24px;
}

.today-temp {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.today-desc {
    font-size: 12px;
    color: var(--text-light);
}

.forecast-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.forecast-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.forecast-item {
    text-align: center;
    padding: 8px 4px;
    background: var(--light-gray);
    border-radius: 6px;
}

.forecast-date {
    font-size: 10px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.forecast-icon {
    font-size: 16px;
    margin-bottom: 4px;
}

.forecast-temp {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    :root { --navbar-height: 72px; }
    .weather-header {
        padding: 6px 8px;
        margin-right: 8px;
    }
    
    .weather-dropdown {
        right: -20px;
        min-width: 260px;
    }
    
    .forecast-items {
        grid-template-columns: repeat(3, 1fr);
    }
}.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-dark));
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.booking-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 25px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.booking-btn::after {
    display: none;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    color: white !important;
}

/* Navigation Booking Button */
.nav-booking {
    margin-left: 20px;
}

.nav-booking .booking-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gold);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    border: 2px solid var(--primary-gold);
}

.nav-booking .booking-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.nav-booking .booking-btn.active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.nav-booking .booking-btn i {
    font-size: 0.9rem;
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-dark);
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
    transform: translateY(-1px);
}

.lang-btn i:first-child {
    color: var(--primary-gold);
}

.lang-btn i:last-child {
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.lang-dropdown.show .lang-btn i:last-child {
    transform: rotate(180deg);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.lang-option:hover {
    background: var(--light-gray);
}

.lang-option.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    font-weight: 600;
}

.lang-option .flag {
    font-size: 1.2rem;
}

/* Hamburger menu styles are in mobile-optimize.css */

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    z-index: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
    /* Р’РєР»СЋС‡Р°РµРј Р°РїРїР°СЂР°С‚РЅРѕРµ СѓСЃРєРѕСЂРµРЅРёРµ Рё СѓР»СѓС‡С€Р°РµРј СЂРµР·РєРѕСЃС‚СЊ */
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    animation: kenBurns 12s infinite alternate;
    /* Ensure proper aspect ratio for all screen sizes */
    min-height: 500px;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes kenBurns {
    0% {
    transform: scale(1);
    }
    100% {
    /* РЈРјРµРЅСЊС€Р°РµРј РјР°СЃС€С‚Р°Р±, С‡С‚РѕР±С‹ РёР·Р±РµР¶Р°С‚СЊ СЂР°Р·РјС‹С‚РёСЏ РїСЂРё Р°РїСЃРєРµР№Р»Рµ */
    transform: scale(1.03);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(212, 175, 55, 0.2) 100%
    );
    z-index: 1;
}

.hero-content {
    width: 100%;
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 10px;
}

.title-main {
    display: block;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, white, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: textGlow 3s ease-in-out infinite alternate;
    line-height: 1.1;
}

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

.title-subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.8;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

.hero-dots {
    position: absolute;
    bottom: 60px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition-smooth);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-gold);
}

.btn-outline-light:hover {
    background: var(--primary-gold);
    color: white;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-glow {
    animation: buttonGlow 2s ease-in-out infinite alternate;
}

@keyframes buttonGlow {
    0% {
        box-shadow: 0 4px 15px var(--shadow-light);
    }
    100% {
        box-shadow: 0 4px 25px var(--shadow-medium), 0 0 30px rgba(212, 175, 55, 0.3);
    }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    transform: translateX(-50px);
}

.animate-slide-left.animate {
    transform: translateX(0);
}

.animate-slide-right {
    transform: translateX(50px);
}

.animate-slide-right.animate {
    transform: translateX(0);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding);
    position: relative;
}

/* Push main content below fixed navbar to avoid overlap */
#main-content { padding-top: var(--navbar-height); }

/* Anchor offset so anchors aren't hidden behind the fixed header */
:where(section, article, [id]) { scroll-margin-top: calc(var(--navbar-height) + 12px); }

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-tagline {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-tagline.light {
    color: rgba(255, 255, 255, 0.9);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.9);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.section-title.light {
    color: white;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    justify-content: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    /* box-shadow: 0 20px 40px var(--shadow-dark); */
    aspect-ratio: 4 / 5; /* РїРѕСЂС‚СЂРµС‚РЅР°СЏ РєР°СЂС‚РѕС‡РєР° */
    max-width: 420px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

/* .about-image:hover .image-overlay {
    opacity: 1;
} */

/* .about-image:hover img {
    transform: scale(1.1);
} */

@media (min-width: 1200px) {
    .about-image {
        max-width: 500px;
        aspect-ratio: 4 / 5;
    }
    
    .room-image-container img,
    .room-image-container .room-image,
    .room-card-large .room-image img {
        height: 360px;
    }
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    animation: pulse 2s infinite;
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--primary-gold);
}

.play-button i {
    color: white;
    font-size: 1.5rem;
    margin-left: 4px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.stats-row {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ROOMS PREVIEW ===== */
.rooms-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.room-card {
    background: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-dark);
    transition: var(--transition-smooth);
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.room-image {
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

/* Compatibility for templates that use .room-image-container and .room-card-large */
.room-image-container {
    position: relative;
    overflow: hidden;
}

.room-image-container img,
.room-image-container .room-image,
.room-card-large .room-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
    background-color: var(--light-gray);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.room-card-large:hover .room-image-container img,
.room-card-large:hover .room-image img {
    transform: scale(1.1);
}

.room-card-large:hover .room-overlay {
    opacity: 1;
}

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.view-room-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    transform: translateY(20px);
}

.room-card:hover .view-room-btn {
    transform: translateY(0);
    background: white;
}

.room-content {
    padding: 30px;
}

.room-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.room-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.amenity {
    background: var(--light-gray);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.amenity i {
    color: var(--primary-gold);
    margin-right: 5px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-price .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.room-price .period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.book-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(212, 175, 55, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: -1;
}

/* РџР•Р Р•РћРџР Р•Р”Р•Р›Р•РќРРЇ Р”Р›РЇ РЎРўР РђРќРР¦Р« РќРћРњР•Р РћР’ - РЎР’Р•РўР›Р«Р™ Р”РР—РђР™Рќ */
/* РЈР±РёСЂР°РµРј С‚С‘РјРЅС‹Рµ РѕРІРµСЂР»РµРё РЅР° СЃС‚СЂР°РЅРёС†Рµ rooms */

/* РЎРІРµС‚Р»С‹Р№ С…РµРґРµСЂ РґР»СЏ СЃС‚СЂР°РЅРёС†С‹ РЅРѕРјРµСЂРѕРІ */
body .page-header .page-header-overlay {
    background: linear-gradient(135deg, rgba(255,255,255,0), rgba(212,175,55,0.15)) !important;
}

body .page-header .page-header-content {
    color: var(--text-dark) !important;
}

body .page-header .breadcrumb a {
    color: var(--text-dark) !important;
}

body .page-header .page-title {
    color: var(--primary-gold) !important;
    text-shadow: 0 1px 0 rgba(255,255,255,0.7), 0 2px 8px rgba(212,175,55,0.25) !important;
    background: none !important;
    -webkit-text-fill-color: var(--primary-gold) !important;
    font-weight: 700 !important;
}

/* РЎРІРµС‚Р»С‹Рµ РєР°СЂС‚РѕС‡РєРё РЅРѕРјРµСЂРѕРІ */
body .room-overlay {
    background: rgba(0,0,0,0.22) !important;
}

body .room-description {
    color: #444 !important;
}

.room-services .section-overlay {
    background: linear-gradient(135deg,
        rgba(255,255,255,0) 0%,
        rgba(212,175,55,0.12) 50%,
        rgba(255,255,255,0) 100%
    ) !important;
}

/* РЎРІРµС‚Р»С‹Рµ РєР°СЂС‚РѕС‡РєРё СЃРµСЂРІРёСЃРѕРІ */
.room-services .service-item {
    background: rgba(255,255,255,0.9) !important;
    border: 1px solid rgba(212,175,55,0.25) !important;
}

.room-services .service-item:hover {
    background: #ffffff !important;
}

/* РўС‘РјРЅС‹Р№ С‚РµРєСЃС‚ РІ РєР°СЂС‚РѕС‡РєР°С… СЃРµСЂРІРёСЃРѕРІ */
.room-services .service-item h3 {
    color: var(--text-dark) !important;
}

.room-services .service-item p {
    color: var(--text-dark) !important;
    opacity: 0.85;
}

/* Р—Р°РіРѕР»РѕРІРєРё СЃРµРєС†РёРё room-services */
.room-services .section-title.light {
    color: var(--text-dark) !important;
    text-shadow: none !important;
}

.room-services .section-tagline.light {
    color: var(--primary-gold) !important;
    opacity: 1 !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.service-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: var(--transition-bounce);
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotateY(180deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.service-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--light-gray);
    position: relative;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-smooth);
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background: white;
    padding: 60px 50px;
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 40px var(--shadow-dark);
    text-align: center;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-family: var(--font-heading);
    color: var(--primary-gold);
    line-height: 1;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.stars i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.testimonial-content blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.1);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 25px;
}

.logo-brand {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
}

.logo-ramada {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 2px;
}

.logo-encore {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 5px;
    text-transform: lowercase;
}

.logo-wyndham {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}

.logo-location {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: #fff;
    padding-left: 2px;
}

.footer-logo i {
    color: var(--primary-gold);
    font-size: 1.6rem;
    flex-shrink: 0;
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: var(--primary-gold);
    margin-top: 2px;
    width: 16px;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.text-center {
    text-align: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .about-image { max-width: 460px; }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-row {
        gap: 30px;
    }
    
    .rooms-carousel {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    /* Room images for tablets */
    .room-image-container img,
    .room-image-container .room-image,
    .room-card-large .room-image img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        font-size: 1.1rem;
        gap: 6px;
    }
    
    .nav-logo i {
        font-size: 1.3rem;
    }
    
    .logo-main {
        font-size: 0.95em;
    }
    
    .logo-sub {
        font-size: 0.7em;
    }
    
    .language-switcher {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .lang-dropdown {
        right: 0;
        min-width: 140px;
    }
    
    /* Mobile navigation styles moved to mobile-optimize.css */
    /* Old styles removed to prevent conflicts */
    
    .nav-container { height: var(--navbar-height); }
    
    .hero-title {
        margin-bottom: 20px;
    }
    
    .title-line {
        font-size: 1rem;
    }
    
    .title-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-dots {
        bottom: 100px;
        right: 20px;
    }
    
    .section-padding {
        --section-padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image { max-width: 420px; }
    
    .stats-row {
        justify-content: center;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-content {
        padding: 40px 30px;
    }
    
    .testimonial-content::before {
        font-size: 4rem;
        top: -10px;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .logo-ramada {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .logo-encore {
        font-size: 2.2rem;
    }
    
    .logo-wyndham {
        font-size: 0.85rem;
    }
    
    .logo-location {
        font-size: 0.95rem;
        letter-spacing: 6px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .rooms-carousel {
        grid-template-columns: 1fr;
    }
    
    /* Room images responsive */
    .room-image-container img,
    .room-image-container .room-image,
    .room-card-large .room-image img {
        height: 250px;
    }
    
    .about-image { max-width: 380px; }
    
    .room-content {
        padding: 20px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 0.9rem;
        gap: 5px;
    }
    
    .nav-logo i {
        font-size: 1.1rem;
    }
    
    .logo-main {
        font-size: 0.9em;
    }
    
    .logo-sub {
        font-size: 0.65em;
    }
    
    .title-main {
        font-size: clamp(1.8rem, 5vw, 3rem);
        line-height: 1.05;
    }
    
    .logo-ramada {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    
    .logo-encore {
        font-size: 1.8rem;
    }
    
    .logo-wyndham {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .logo-location {
        font-size: 0.85rem;
        letter-spacing: 4px;
    }
}

/* ===== LUXURY MODALS ===== */
.luxury-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Additional fixes for z-index conflicts */
    isolation: isolate;
}

.luxury-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    /* Force hardware acceleration for smooth animations */
    transform: translateZ(0);
    will-change: opacity, visibility;
    /* Ensure it's above everything else */
    z-index: 10001 !important;
}

.luxury-modal {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: scale(0.5) translateY(100px) rotateX(-30deg);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.luxury-modal-overlay.active .luxury-modal {
    transform: scale(1) translateY(0) rotateX(0deg);
    opacity: 1;
}

.modal-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #d4af37 20%, 
        #f4e4a6 50%, 
        #d4af37 80%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { 
        background: linear-gradient(90deg, 
            transparent 0%, 
            #d4af37 20%, 
            #f4e4a6 50%, 
            #d4af37 80%, 
            transparent 100%);
    }
    50% { 
        background: linear-gradient(90deg, 
            transparent 0%, 
            #f4e4a6 20%, 
            #d4af37 50%, 
            #f4e4a6 80%, 
            transparent 100%);
    }
}

.golden-ornament {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 12px;
    background: linear-gradient(45deg, #d4af37, #f4e4a6, #d4af37);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 3px 6px rgba(212, 175, 55, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: linear-gradient(145deg, #e9ecef, #dee2e6);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.modal-close i {
    color: #6c757d;
    font-size: 16px;
    transition: color 0.3s ease;
}

.modal-close:hover i {
    color: #d4af37;
}

.modal-header {
    padding: 40px 40px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 40px 0 60px;
    background: linear-gradient(180deg, rgba(250,248,243,0) 0%, rgba(250,248,243,0.03) 100%);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-card {
    background: linear-gradient(145deg, #ffffff, #fcfbf9);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px var(--shadow-dark);
    border: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
}

.map-frame {
    width: 100%;
    height: 360px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: 12px;
}

.map-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(212,175,55,0.08);
    backdrop-filter: blur(4px);
}

.map-badge i {
    color: var(--primary-gold);
    font-size: 20px;
}

.map-badge .map-badge-text {
    display: flex;
    flex-direction: column;
}

.map-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.map-address {
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .map-frame {
        height: 260px;
    }

    .map-badge {
        top: 12px;
        left: 12px;
        padding: 8px 10px;
        gap: 8px;
    }

    .map-badge .map-badge-text {
        display: none; /* compact on small screens */
    }
}

/* Preview image + show-button */
.map-preview {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.map-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.95) contrast(0.98) brightness(0.98);
}

.map-open-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(212,175,55,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-open-btn i { font-size: 1.1rem; }

.map-open-btn:hover { transform: translate(-50%, -50%) scale(1.03); box-shadow: 0 14px 40px rgba(212,175,55,0.22); }

@media (max-width: 480px) {
    .map-open-btn { padding: 10px 14px; border-radius: 24px; font-size: 0.95rem; }
}


.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(145deg, #d4af37, #f4e4a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 20px rgba(212, 175, 55, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.modal-header h2 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.modal-subtitle {
    color: #6c757d;
    font-size: 16px;
    font-style: italic;
}

.modal-body {
    padding: 30px 40px 40px;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.5) transparent;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(248, 249, 250, 0.3);
    border-radius: 10px;
    margin: 10px 0;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, #d4af37, #f4e4a6);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, #b8941f, #d4af37);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Background pattern for modal */
.luxury-modal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    border-radius: 20px;
}

/* Breathing animation for icons */
@keyframes breathe {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    }
}

.modal-icon {
    animation: breathe 4s ease-in-out infinite;
}

/* Text selection styling */
.modal-body *::selection {
    background: rgba(212, 175, 55, 0.2);
    color: #2c3e50;
}

.modal-body *::-moz-selection {
    background: rgba(212, 175, 55, 0.2);
    color: #2c3e50;
}

/* Loading shimmer effect */
@keyframes shimmerLoad {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.luxury-modal.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        rgba(255, 255, 255, 0) 100%);
    background-size: 1000px 100%;
    animation: shimmerLoad 2s ease-in-out infinite;
    pointer-events: none;
    border-radius: 20px;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .luxury-modal::before {
        animation: none; /* Disable complex animations on mobile for performance */
    }
    
    .modal-icon {
        animation: breathe 6s ease-in-out infinite; /* Slower animation on mobile */
    }
}

/* Print styles for modal content */
@media print {
    .luxury-modal-overlay {
        position: static !important;
        background: none !important;
        backdrop-filter: none !important;
    }
    
    .luxury-modal {
        transform: none !important;
        box-shadow: none !important;
        max-height: none !important;
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        background: white !important;
    }
    
    .modal-close {
        display: none !important;
    }
    
    .modal-body {
        max-height: none !important;
        overflow: visible !important;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rules-section, .privacy-section {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.4) 100%);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.rules-section:hover, .privacy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.rules-section h3, .privacy-section h3 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-gold {
    color: #d4af37 !important;
}

.rules-section p, .privacy-section p {
    color: #495057;
    line-height: 1.8;
    margin: 0 0 10px;
}

.rules-section ul, .privacy-section ul {
    margin: 0;
    padding-left: 20px;
}

.rules-section li, .privacy-section li {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
}

.rules-section li::marker, .privacy-section li::marker {
    color: #d4af37;
}

/* ===== ENHANCED MODAL LIST STYLING ===== */
.rules-section ul ul, .privacy-section ul ul {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 20px;
}

.rules-section ul ul li, .privacy-section ul ul li {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 4px;
}

.rules-section strong, .privacy-section strong {
    color: #2c3e50;
    font-weight: 600;
}

.rules-section ul li strong, .privacy-section ul li strong {
    color: #d4af37;
    font-weight: 700;
}

/* Better spacing for complex sections */
.privacy-section p + ul, .rules-section p + ul {
    margin-top: 10px;
}

.privacy-section ul + p, .rules-section ul + p {
    margin-top: 15px;
}

/* Highlight important information */
.privacy-section .small-text em {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.6;
}

/* ===== ADDITIONAL Z-INDEX FIXES ===== */
/* Ensure proper stacking context hierarchy */

body.loaded #preloader {
    /* ...existing styles... */
    /* Additional safety measures */
    display: none !important;
}

/* Mobile navigation fixes */
@media (max-width: 768px) {
    .nav-menu {
        /* ...existing styles... */
        z-index: 9999;
    }
    
    /* Ensure modal is above mobile menu */
    .luxury-modal-overlay {
        z-index: 10001 !important;
    }
}

/* Prevent conflicts with other fixed elements */
.luxury-modal-overlay.active {
    /* Force new stacking context */
    isolation: isolate;
    /* Ensure it's above everything else */
    z-index: 10001 !important;
}

/* ===== MODAL RESET & CLEANUP ===== */
/* Reset any potential Bootstrap or other framework modal styles */
.luxury-modal-overlay:not(.active) {
    display: none !important;
}

/* Ensure clean slate for modals */
.luxury-modal-overlay * {
    box-sizing: border-box;
}

/* Prevent any element bleeding through modals */
body.modal-open .luxury-modal-overlay ~ * {
    filter: blur(1px);
    pointer-events: none;
}

body.modal-open .luxury-modal-overlay {
    filter: none;
    pointer-events: all;
}

/* ===== ROOMS STATISTICS MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius-large);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    color: white;
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 40px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.stat-icon.available {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.stat-title {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Room Types Section */
.room-types-section {
    margin: 30px 0;
}

.room-types-section h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-types-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.room-type-item {
    background: white;
    padding: 15px;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    transition: var(--transition-fast);
}

.room-type-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.room-type-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.room-type-name {
    font-weight: 600;
    color: var(--text-dark);
}

.room-type-count {
    font-size: 0.9rem;
    color: var(--text-light);
}

.room-type-bar {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.room-type-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-dark));
    border-radius: 3px;
    transition: width 1s ease-out;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Clickable Statistics */
.clickable-stat {
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.clickable-stat:hover {
    transform: translateY(-3px);
}

.clickable-stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border-radius: var(--border-radius);
    opacity: 0;
    transition: var(--transition-fast);
}

.clickable-stat:hover::after {
    opacity: 1;
}

.stat-hover-text {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 10;
}

.clickable-stat:hover .stat-hover-text {
    opacity: 1;
    visibility: visible;
    bottom: -30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .stat-hover-text {
        display: none;
    }
}

/* ===== EMPTY STATE STYLES ===== */
.empty-state {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: var(--border-radius-large);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.empty-state-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.empty-state-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsiveness for Empty State */
@media (max-width: 768px) {
    .empty-state {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .empty-state-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .empty-state-title {
        font-size: 1.5rem;
    }
    
    .empty-state-description {
        font-size: 1rem;
    }
}

/* Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-value {
    animation: countUp 0.6s ease-out;
}

/* Modal Entrance Animation */
@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(100px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-overlay.active .modal-content {
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Progress Bar Animation */
@keyframes progressFill {
    from { width: 0%; }
    to { width: var(--progress-width); }
}

.room-type-fill {
    animation: progressFill 1.5s ease-out 0.5s both;
}

/* Floating Effect for Stats */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.stat-card:nth-child(1) { animation: float 3s ease-in-out infinite; }
.stat-card:nth-child(2) { animation: float 3s ease-in-out infinite 0.5s; }
.stat-card:nth-child(3) { animation: float 3s ease-in-out infinite 1s; }
.stat-card:nth-child(4) { animation: float 3s ease-in-out infinite 1.5s; }

/* Enhanced Button Styling */
.luxury-btn.secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.luxury-btn.secondary:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(73, 80, 87, 0.3);
    color: white;
}

/* Special Glow Effect for Primary Stats */
.clickable-stat .stat-number {
    position: relative;
}

.clickable-stat:hover .stat-number {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* Elegant Loading State */
.loading-content {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== UNIVERSAL IMAGE CLASSES ===== */

/* Universal Image Classes for Consistent Sizing */
.img-responsive {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.img-hero {
    width: 100%;
    height: 100vh;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
}

.img-card {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.img-card:hover {
    transform: scale(1.05);
}

.img-thumbnail {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
}

.img-gallery {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-gallery:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

/* Aspect ratio containers */
.aspect-16-9 {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.aspect-4-3 {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.aspect-1-1 {
    aspect-ratio: 1/1;
    overflow: hidden;
}

/* Responsive image sizing */
@media (max-width: 768px) {
    .img-card {
        height: 200px;
    }
    
    .img-gallery {
        height: 220px;
    }
    
    .img-hero {
        height: 60vh;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .img-card {
        height: 180px;
    }
    
    .img-gallery {
        height: 200px;
    }
    
    .img-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .img-thumbnail {
        height: 120px;
    }
}

@media (min-width: 1200px) {
    .img-card {
        height: 280px;
    }
    
    .img-gallery {
        height: 350px;
    }
}
/* CACHE BUSTER */

/* TIMESTAMP: 10/09/2025 18:00:16 */

