/* ============================================
   KESAR BAGH PALACE - ULTRA PREMIUM EDITION
   Inspired by kesarbaghchittor.com
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --gold: #b99470;
    --gold-light: #d4b896;
    --gold-lighter: #e8d5bc;
    --gold-dark: #8b6f4e;
    --gold-darker: #6b5038;
    --burgundy: #6b2d3e;
    --cream: #faf6f1;
    --cream-dark: #f0e8dc;
    --dark: #1a0f0a;
    --dark-2: #2c1810;
    --dark-3: #3d2418;
    --text-dark: #1a1a1a;
    --text-medium: #4a3f35;
    --text-light: #7a6f65;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1380px; margin: 0 auto; padding: 0 0px; }

/* ---------- Selection ---------- */
::selection { background: var(--gold); color: var(--white); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Gilda Display', 'Playfair Display', Georgia, serif;
    color: var(--dark-2);
    line-height: 1.25;
    font-weight: 400;
}
h1 { font-size: 3.8rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }

p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-medium);
    font-weight: 300;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 16px 44px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--gold);
    color: var(--white);
}

.btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--gold);
    letter-spacing: 4px;
}

.btn-outline-white {
    background: transparent;
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-outline-gold {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold-dark);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-dark {
    background: var(--dark-2);
    border-color: var(--dark-2);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark-2);
}
.btn-white:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 28px 0;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 2px 40px rgba(0,0,0,0.15);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1001;
}
.logo img { height: 50px; width: auto; filter: brightness(1.15); }

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text .name {
    font-family: 'Gilda Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
}
.logo-text .tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    color: var(--gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

.main-nav { display: flex; align-items: center; }
.nav-links { display: flex; gap: 0; }
.nav-links li { position: relative; }

.nav-links li a {
    display: block;
    padding: 12px 11px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
    transform: scaleX(0);
}
.nav-links li a:hover::after,
.nav-links li a.active::after { transform: scaleX(1); }
.nav-links li a:hover { color: var(--gold-light); }
.nav-links li a.active { color: var(--gold); }

/* Dropdown */
.nav-links li .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 260px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    overflow: hidden;
}
.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown li a {
    display: block;
    padding: 14px 24px;
    color: var(--text-dark);
    font-size: 0.82rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 300;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.dropdown li a::after { display: none; }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
    background: var(--cream);
    color: var(--gold-dark);
    padding-left: 30px;
}

.site-header.inner {
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}
.hamburger span {
    width: 26px; height: 1px;
    background: var(--white);
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- HERO SLIDER ---------- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slides {
    display: flex;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}

.hero-slide .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /*background: linear-gradient(180deg,
        rgba(26,15,10,0.15) 0%,
        rgba(26,15,10,0.3) 30%,
        rgba(26,15,10,0.65) 70%,
        rgba(26,15,10,0.85) 100%);*/
}

/* Floating particles */
.hero-slider .particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}
.hero-slider .particle {
    position: absolute;
    width: 3px; height: 3px;
    background: rgba(185,148,112,0.5);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-content .subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
    display: block;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: 0.3s;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: 0.6s;
}

.hero-content .hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 45px;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: 0.9s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: 1.2s;
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Decorative line under hero title */
.hero-content h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 24px auto 0;
}

/* Slider Controls */
.slider-arrows {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 20;
    pointer-events: none;
}
.slider-arrow {
    width: 60px; height: 60px;
    border-radius: 0;
    background: rgba(185,148,112,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(185,148,112,0.3);
    color: var(--white);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: var(--transition);
    letter-spacing: 2px;
}
.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.slider-arrow.prev { border-radius: 0; }
.slider-arrow.next { border-radius: 0; }

.slider-dots {
    position: absolute;
    bottom: 45px;
    left: 50%; transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}
.slider-dot {
    width: 40px; height: 2px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.slider-dot.active {
    background: var(--gold);
    width: 60px;
}

.slide-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 20;
    animation: slideProgress 6s linear infinite;
}
@keyframes slideProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ---------- PAGE BANNER ---------- */
.page-banner {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.page-banner img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.page-banner .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg,
        rgba(26,15,10,0.3) 0%,
        rgba(26,15,10,0.7) 100%);
}
.page-banner .banner-content { position: relative; z-index: 10; }
.page-banner h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 3px;
}
.page-banner h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
}
.page-banner .breadcrumb {
    font-family: 'Poppins', sans-serif;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}
.page-banner .breadcrumb a { color: var(--gold-light); }
.page-banner .breadcrumb a:hover { color: var(--white); }

/* ---------- Booking Bar ---------- */
.booking-bar {
    background: var(--dark);
    padding: 0;
    position: relative;
    z-index: 50;
}
.booking-bar .container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}
.booking-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 30px;
    border-right: 1px solid rgba(255,255,255,0.08);
    flex: 1;
    min-width: 180px;
}
.booking-field:last-of-type { border-right: none; }
.booking-field label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    margin-bottom: 6px;
}
.booking-field input {
    padding: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    font-weight: 300;
    letter-spacing: 0.5px;
}
.booking-field input:focus { border-bottom-color: var(--gold); }
.booking-field input::placeholder { color: rgba(255,255,255,0.3); }
.booking-bar .btn {
    align-self: center;
    margin: 12px 20px;
    padding: 14px 36px;
    font-size: 0.7rem;
    letter-spacing: 3px;
}

/* ---------- Section Titles ---------- */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}
.section-title .subtitle-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
    display: block;
}
.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark-2);
    position: relative;
    display: inline-block;
    font-weight: 400;
    letter-spacing: 2px;
}
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
}
.section-title p {
    font-size: 1rem;
    color: var(--text-light);
    
    margin: 18px auto 0;
    font-weight: 300;
    font-style: italic;
}

.section-padding { padding: 110px 0; }

.dark-section { background: var(--dark); }
.dark-section .section-title h2,
.dark-section h2, .dark-section h3, .dark-section h4 { color: var(--white); }
.dark-section .section-title .subtitle-tag { color: var(--gold-light); }
.dark-section .section-title p, .dark-section p { color: rgba(255,255,255,0.65); }
.dark-section .section-title h2::after { background: var(--gold); }

/* ---------- Full-Width Image Section ---------- */
.full-width-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.full-width-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.full-width-image:hover img { transform: scale(1.03); }
.full-width-image .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(26,15,10,0.7), rgba(26,15,10,0.2));
}
.full-width-image .fw-content {
    position: absolute;
    top: 10%; left: 60px;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 700px;
    color: var(--white);
}
.full-width-image .fw-content .subtitle-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
    display: block;
    font-weight: 300;
}
.full-width-image .fw-content h2 {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
}
.full-width-image .fw-content p {
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    margin-bottom: 8px;
}

/* ---------- About Section ---------- */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-intro .image-box {
    position: relative;
    overflow: hidden;
}
.about-intro .image-box img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.about-intro .image-box:hover img { transform: scale(1.04); }

/* Decorative gold border */
.about-intro .image-box::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 200px; height: 200px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    z-index: 2;
}
.about-intro .image-box::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px;
    width: 100px; height: 100px;
    border-left: 2px solid var(--gold);
    border-top: 2px solid var(--gold);
    z-index: 2;
}

.about-intro .content p { margin-bottom: 20px; font-weight: 300; }

.about-intro .content .signature {
    font-family: 'Gilda Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin-top: 28px;
}

/* ---------- Rooms Section ---------- */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.room-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.06);
}
.room-card:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    transform: translateY(-8px);
    z-index: 5;
}

.room-card .image-box {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.room-card .image-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.room-card:hover .image-box img { transform: scale(1.08); }

.room-card .image-box .price-tag {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 12px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    border-top: 1px solid rgba(185,148,112,0.2);
}
.room-card .image-box .price-tag strong {
    color: var(--gold-light);
    font-weight: 500;
}

.room-card .card-content { padding: 32px; }
.room-card .card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-weight: 400;
    letter-spacing: 1px;
}
.room-card .card-content p {
    font-size: 0.88rem;
    margin-bottom: 22px;
    color: var(--text-light);
    font-weight: 300;
}
.room-card .card-content .room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}
.room-card .card-content .room-features span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    padding: 6px 16px;
    background: var(--cream);
    color: var(--text-medium);
    font-weight: 300;
    letter-spacing: 0.5px;
}
.room-card .card-content .btn {
    width: 100%;
    padding: 14px;
    font-size: 0.7rem;
    letter-spacing: 3px;
}

/* ---------- Facilities ---------- */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0,0,0,0.06);
}

.facility-card {
    text-align: center;
    padding: 55px 25px;
    background: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.facility-card:hover {
    background: var(--dark);
}
.facility-card:hover .icon { color: var(--gold); }
.facility-card:hover h4 { color: var(--white); }
.facility-card:hover p { color: rgba(255,255,255,0.6); }

.facility-card .icon {
    font-size: 2rem;
    color: var(--gold-dark);
    margin-bottom: 24px;
    transition: var(--transition);
    display: block;
}
.facility-card h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: var(--transition);
}
.facility-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
    transition: var(--transition);
}

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item .gallery-overlay i {
    font-size: 1.8rem;
    color: var(--white);
    transform: translateY(10px);
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay i { transform: translateY(0); }

.gallery-item .gallery-overlay .overlay-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 300;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

/* ---------- Testimonials ---------- */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.testimonial-card {
    min-width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}
.testimonial-inner { max-width: 750px; text-align: center; }

.testimonial-inner .stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 30px;
    letter-spacing: 8px;
}
.testimonial-inner blockquote {
    font-family: 'Gilda Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 2;
    margin-bottom: 35px;
    position: relative;
    padding: 0 40px;
    font-weight: 400;
}
.testimonial-inner blockquote::before {
    content: '\201C';
    position: absolute;
    top: -30px; left: 0;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-inner .guest-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.testimonial-inner .guest-location {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
    font-weight: 300;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}
.testimonial-dot {
    width: 30px; height: 2px;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.testimonial-dot.active {
    background: var(--gold);
    width: 50px;
}

/* ---------- Special Offers ---------- */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}
.offer-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}
.offer-card img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.7);
}
.offer-card:hover img { transform: scale(1.06); }

.offer-card .offer-content {
    position: relative;
    z-index: 10;
    padding: 45px;
    width: 100%;
}
.offer-card .offer-content .offer-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
    margin-bottom: 12px;
}
.offer-card .offer-content h3 {
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 14px;
    font-weight: 400;
    letter-spacing: 1px;
}
.offer-card .offer-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 24px;
    font-weight: 300;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--dark);
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(185,148,112,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(185,148,112,0.05) 0%, transparent 60%);
}
.cta-section h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    font-weight: 400;
    letter-spacing: 3px;
}
.cta-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
}
.cta-section p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 40px;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* ---------- Counter Section ---------- */
.counter-section {
    background: var(--gold);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    text-align: center;
    background: rgba(0,0,0,0.15);
}
.counter-item {
    background: var(--gold);
    padding: 40px 20px;
    transition: var(--transition);
}
.counter-item:hover { background: var(--gold-dark); }

.counter-item .counter-number {
    font-family: 'Gilda Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 12px;
}
.counter-item .counter-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 0;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-col h4 {
    color: var(--gold-light);
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 1px;
    background: var(--gold);
}

.footer-col p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 2;
}

.footer-col .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}
.footer-col .footer-social a {
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-col .footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-weight: 300;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-col .footer-contact li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}
.footer-col .footer-contact li i {
    color: var(--gold);
    margin-top: 5px;
    min-width: 16px;
    font-size: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding: 28px 0;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
    letter-spacing: 1px;
}
.footer-bottom a { color: var(--gold); }

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--gold);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 900;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover { background: var(--gold-dark); }

/* ---------- Fade-in Animations ---------- */
.fade-in, .fade-in-left, .fade-in-right, .scale-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left { transform: translateX(-40px); }
.fade-in-right { transform: translateX(40px); }
.scale-in { transform: scale(0.95); }

.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible, .scale-in.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    transition: opacity 0.3s ease;
}
.lightbox-close {
    position: absolute;
    top: 30px; right: 30px;
    width: 50px; height: 50px;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); }

/* ---------- ROOM DETAIL (Inner Pages) ---------- */
.room-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--cream-dark);
}
.room-detail-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.room-detail-card.reverse { direction: rtl; }
.room-detail-card.reverse > * { direction: ltr; }

.room-detail-card .room-image {
    overflow: hidden;
    position: relative;
}
.room-detail-card .room-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.room-detail-card .room-image:hover img { transform: scale(1.04); }
.room-detail-card .room-info h3 { font-size: 2rem; margin-bottom: 14px; font-weight: 400; letter-spacing: 1px; }
.room-detail-card .room-info h3::after {
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: var(--gold);
    margin-top: 16px;
    margin-bottom: 20px;
}
.room-detail-card .room-info .room-price {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.room-detail-card .room-info p { margin-bottom: 24px; }
.room-detail-card .room-info .amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
}
.room-detail-card .room-info .amenities-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
}
.room-detail-card .room-info .amenities-list li i {
    color: var(--gold);
    font-size: 0.75rem;
}

/* ---------- DINING PAGE ---------- */
.dining-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}
.dining-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.dining-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
}
.dining-card:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    transform: translateY(-8px);
}
.dining-card .dining-img { height: 320px; overflow: hidden; }
.dining-card .dining-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.dining-card:hover .dining-img img { transform: scale(1.08); }
.dining-card .dining-info { padding: 32px; }
.dining-card .dining-info h3 { font-size: 1.4rem; margin-bottom: 14px; font-weight: 400; letter-spacing: 1px; }
.dining-card .dining-info h3::after {
    content: '';
    display: block;
    width: 30px; height: 1px;
    background: var(--gold);
    margin-top: 12px;
    margin-bottom: 16px;
}
.dining-card .dining-info p { font-size: 0.88rem; margin-bottom: 18px; font-weight: 300; }
.dining-card .dining-info .dining-time {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

/* ---------- SPA PAGE ---------- */
.spa-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}
.spa-section.reverse { direction: rtl; }
.spa-section.reverse > * { direction: ltr; }
.spa-section .spa-image {
    overflow: hidden;
    position: relative;
}
.spa-section .spa-image img {
    width: 100%; height: 500px;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.spa-section .spa-image:hover img { transform: scale(1.04); }
.spa-section .spa-content h3 { font-size: 1.8rem; margin-bottom: 20px; font-weight: 400; letter-spacing: 1px; }
.spa-section .spa-content h3::after {
    content: '';
    display: block;
    width: 30px; height: 1px;
    background: var(--gold);
    margin-top: 12px;
    margin-bottom: 20px;
}
.spa-section .spa-content p { margin-bottom: 24px; font-weight: 300; }

.treatments-list { margin-top: 28px; }
.treatment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--cream-dark);
    transition: var(--transition);
}
.treatment-item:hover { padding-left: 12px; }
.treatment-item:last-child { border-bottom: none; }
.treatment-item .treatment-name {
    font-family: 'Gilda Display', serif;
    font-size: 1.05rem;
    color: var(--dark-2);
}
.treatment-item .treatment-duration {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 300;
}
.treatment-item .treatment-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--gold-dark);
    font-size: 0.88rem;
}

/* ---------- EVENTS PAGE ---------- */
.events-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 80px;
}
.event-card-large {
    position: relative;
    overflow: hidden;
    min-height: 550px;
}
.event-card-large img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.6);
}
.event-card-large:hover img { transform: scale(1.05); }
.event-card-large .event-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 50px;
    z-index: 10;
}
.event-card-large .event-content .event-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
    margin-bottom: 14px;
}
.event-card-large .event-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}
.event-card-large .event-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 300;
}

.event-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}
.event-feature-item {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}
.event-feature-item img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.5);
}
.event-feature-item:hover img { transform: scale(1.05); }
.event-feature-item .event-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 35px;
    z-index: 10;
}
.event-feature-item .event-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.event-feature-item .event-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ---------- GALLERY PAGE ---------- */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}
.gallery-page-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}
.gallery-page-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.5s ease;
}
.gallery-page-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.6);
}
.gallery-page-item .gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-page-item:hover .gallery-overlay { opacity: 1; }
.gallery-page-item .gallery-overlay i {
    color: var(--white);
    font-size: 1.5rem;
    transform: translateY(10px);
    transition: var(--transition);
}
.gallery-page-item:hover .gallery-overlay i { transform: translateY(0); }

.gallery-filters {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--cream-dark);
}
.filter-btn {
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 400;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
.filter-btn:hover, .filter-btn.active {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 40px;
}
.contact-info-card {
    padding: 35px;
    background: var(--white);
    text-align: center;
    transition: var(--transition);
}
.contact-info-card:hover { background: var(--dark); }
.contact-info-card:hover i { color: var(--gold); }
.contact-info-card:hover h4 { color: var(--white); }
.contact-info-card:hover p { color: rgba(255,255,255,0.6); }
.contact-info-card i {
    font-size: 1.5rem;
    color: var(--gold-dark);
    margin-bottom: 16px;
    transition: var(--transition);
    display: block;
}
.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: var(--transition);
}
.contact-info-card p {
    font-size: 0.82rem;
    font-weight: 300;
    transition: var(--transition);
}

.contact-form form { display: flex; flex-direction: column; gap: 20px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
    font-weight: 300;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(185,148,112,0.1);
}
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form button { align-self: flex-start; }

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ---------- ABOUT PAGE SECTIONS ---------- */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.vision-card {
    padding: 55px 35px;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}
.vision-card:hover {
    background: var(--dark);
    border-color: var(--dark);
}
.vision-card:hover .vision-icon { color: var(--gold); border-color: var(--gold); }
.vision-card:hover h3 { color: var(--white); }
.vision-card:hover p { color: rgba(255,255,255,0.6); }

.vision-icon {
    font-size: 2rem;
    color: var(--gold-dark);
    margin-bottom: 24px;
    display: inline-block;
    padding: 20px;
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
}
.vision-card h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: var(--transition);
}
.vision-card p {
    font-size: 0.88rem;
    font-weight: 300;
    transition: var(--transition);
}

/* ---------- EXPERIENCE SECTION ---------- */
.experience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.experience-card {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.experience-card img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.5);
}
.experience-card:hover img { transform: scale(1.06); }
.experience-card .exp-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px;
    z-index: 10;
}
.experience-card .exp-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.experience-card .exp-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .facilities-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
    .about-intro { gap: 50px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .vision-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-content h1 { font-size: 2.8rem; letter-spacing: 1px; }
    .hero-content .hero-desc { font-size: 0.9rem; }

    .hamburger { display: flex; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 320px; height: 100vh;
        background: var(--dark);
        padding: 100px 30px 30px;
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
    }
    .main-nav.active { right: 0; }
    .nav-links { flex-direction: column; gap: 0; }
    .nav-links li a {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 0.8rem;
    }
    .nav-links li a::after { display: none; }
    .dropdown {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(255,255,255,0.05) !important;
        box-shadow: none !important;
        display: none;
        min-width: auto;
    }
    .dropdown.open { display: block; }
    .dropdown li a { color: rgba(255,255,255,0.6); padding: 12px 0; }
    .dropdown li a:hover { color: var(--gold); padding-left: 0; background: none; }

    .about-intro { grid-template-columns: 1fr; gap: 40px; }
    .about-intro .image-box img { height: 350px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .facilities-grid { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 1; }

    .room-detail-card { grid-template-columns: 1fr; gap: 30px; }
    .room-detail-card .room-image img { height: 300px; }
    .dining-cards { grid-template-columns: 1fr; }
    .spa-section { grid-template-columns: 1fr; gap: 30px; }
    .spa-section.reverse { direction: ltr; }
    .spa-section .spa-image img { height: 300px; }
    .events-showcase { grid-template-columns: 1fr; }
    .event-card-large { min-height: 400px; }
    .event-features-grid { grid-template-columns: 1fr; }
    .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-page-item { height: 200px; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-info-cards { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .vision-grid { grid-template-columns: 1fr; }
    .experience-cards { grid-template-columns: 1fr; }
    .experience-card { height: 300px; }

    .full-width-image { height: 400px; }
    .full-width-image .fw-content { left: 30px; right: 30px; }
    .full-width-image .fw-content h2 { font-size: 2rem; }

    .booking-bar .container { flex-direction: column; gap: 0; }
    .booking-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
    .slider-arrows { padding: 0 15px; }
    .slider-arrow { width: 45px; height: 45px; }
    .section-padding { padding: 70px 0; }
    .section-title { margin-bottom: 45px; }
    .page-banner { height: 350px; }
    .page-banner h1 { font-size: 2.5rem; }
}
