/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5B1216; /* Deep Royal Burgundy */
    --primary-hover: #3d0a0d;
    --gold: #D4AF37; /* Metallic Gold */
    --gold-hover: #b5952f;
    --text-dark: #1a1a1a;
    --text-light: #5a5a5a;
    --bg-light: #fdfaf6;
    --bg-white: #ffffff;
    --border-color: #e8dbce;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-primary { color: var(--primary-color); }
.text-gold { color: var(--gold); }
.text-white { color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--primary-color); }
.center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Royal Dividers */
.royal-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 20px auto;
    position: relative;
}

.royal-divider::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border: 1px solid var(--gold);
    background: var(--bg-white);
}

.royal-divider.left {
    margin: 0 0 20px 0;
}
.royal-divider.left::before {
    left: 0;
    transform: translateX(0) rotate(45deg);
}

.royal-divider-small {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 15px 0;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
    z-index: -1;
}
.btn:hover::before { width: 100%; }

.btn i { margin-right: 10px; }

.btn-gold {
    background-color: var(--gold);
    color: var(--bg-white);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-outline-light {
    border: 1px solid var(--bg-white);
    color: var(--bg-white);
    background: transparent;
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 45px;
    font-size: 0.9rem;
}

.full-width {
    width: 100%;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128C7E;
    color: white;
}

/* Typography Sections */
.section {
    padding: 120px 0;
}

.royal-bg {
    background: radial-gradient(circle at center, #ffffff 0%, #fdfaf6 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 1px solid var(--gold);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    font-size: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.site-logo {
    max-height: 100px;
    width: auto;
}

.site-logo-mobile {
    max-height: 70px;
    width: auto;
}

.site-logo-footer {
    max-height: 120px;
    width: auto;
}

.desktop-nav .nav-links {
    display: flex;
    gap: 35px;
}

.desktop-nav .nav-links a {
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
    color: var(--primary-color);
    transition: var(--transition);
}

.desktop-nav .nav-links a:hover {
    color: var(--gold);
}

.desktop-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

.desktop-nav .nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100%;
    bottom: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    z-index: 2000;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--gold);
}

.mobile-sidebar.active { right: 0; }

.sidebar-header {
    padding: 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: var(--bg-white);
}

.sidebar-header .logo { color: var(--bg-white); font-size: 1.2rem; }

.close-sidebar {
    font-size: 2rem;
    background: transparent;
    border: none;
    color: var(--gold);
    cursor: pointer;
}

.sidebar-links {
    padding: 30px;
    flex-grow: 1;
    overflow-y: auto;
}

.sidebar-links li { margin-bottom: 20px; }

.sidebar-links a {
    display: block;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bg-white);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

.sidebar-links a:hover {
    color: var(--gold);
    padding-left: 10px;
    border-color: rgba(212, 175, 55, 0.5);
}

.sidebar-footer {
    padding: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(91, 18, 22, 0.8); /* Burgundy overlay */
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    backdrop-filter: blur(5px);
}

.sidebar-overlay.active { opacity: 1; visibility: visible; }

/* Newsletter Popup */
.popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(91, 18, 22, 0.8);
    z-index: 3000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.4s;
    backdrop-filter: blur(5px);
}

.popup-overlay.active { opacity: 1; visibility: visible; }

.popup-content {
    background: var(--bg-white);
    width: 90%; max-width: 550px;
    border: 2px solid var(--gold);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.popup-overlay.active .popup-content { transform: translateY(0) scale(1); }

.close-popup {
    position: absolute; top: 20px; right: 25px;
    font-size: 2rem; background: transparent; border: none;
    color: var(--primary-color); cursor: pointer; z-index: 10;
    transition: var(--transition);
}
.close-popup:hover { color: var(--gold); transform: rotate(90deg); }

.popup-body { padding: 60px 40px 50px; }

.popup-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.popup-body h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.popup-body p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.popup-form input {
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    text-align: center;
}

.popup-form input:focus {
    border-color: var(--gold);
}

.popup-alt-text {
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px !important;
}

/* 1. Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--primary-color);
}

.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 1.2s ease-in-out;
    z-index: 1; display: flex; align-items: center; justify-content: center; text-align: center;
}

.slide.active { opacity: 1; z-index: 2; }

.slide img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; transform: scale(1.05); transition: transform 8s ease;
}

.slide.active img { transform: scale(1); }

.slide-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(91, 18, 22, 0.4) 0%, rgba(91, 18, 22, 0.8) 100%);
    z-index: 2;
}

.slide-content {
    position: relative; z-index: 3; color: var(--bg-white); max-width: 900px; padding-top: 80px;
}

.slide-kicker {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0; transform: translateY(30px); transition: all 0.8s ease 0.2s;
}

.hero-big-logo {
    max-height: 250px;
    width: auto;
    margin: 0 auto 20px auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide-title {
    font-size: 5.5rem;
    color: var(--bg-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
    opacity: 0; transform: translateY(30px); transition: all 0.8s ease 0.4s;
}

.slide-subtitle {
    font-size: 1.1rem; margin-bottom: 40px; font-weight: 300;
    max-width: 600px; margin-left: auto; margin-right: auto;
    opacity: 0; transform: translateY(30px); transition: all 0.8s ease 0.6s;
}

.hero-buttons {
    display: flex; gap: 20px; justify-content: center;
    opacity: 0; transform: translateY(30px); transition: all 0.8s ease 0.8s;
}

.slide.active .slide-kicker,
.slide.active .hero-big-logo,
.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .hero-buttons { opacity: 1; transform: translateY(0); }

/* Slider Controls */
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3);
    width: 60px; height: 60px; border-radius: 50%; font-size: 1.2rem;
    cursor: pointer; z-index: 10; transition: var(--transition);
}

.slider-btn:hover { background: var(--gold); color: var(--bg-white); border-color: var(--gold); }

.prev-btn { left: 40px; }
.next-btn { right: 40px; }

.slider-dots {
    position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 15px; z-index: 10;
}

.dot {
    width: 10px; height: 10px; background: transparent; border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%; cursor: pointer; transition: var(--transition);
    position: relative;
}

.dot::after {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0);
    width: 4px; height: 4px; background: var(--gold); border-radius: 50%; transition: var(--transition);
}

.dot.active { border-color: var(--gold); }
.dot.active::after { transform: translate(-50%, -50%) scale(1); }


/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* 2. About Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.royal-frame {
    position: relative;
    padding: 20px;
    border: 1px solid var(--gold);
}

.royal-frame::before {
    content: ''; position: absolute; top: -10px; left: -10px;
    width: 30px; height: 30px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
}
.royal-frame::after {
    content: ''; position: absolute; bottom: -10px; right: -10px;
    width: 30px; height: 30px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold);
}

.royal-frame img { width: 100%; display: block; filter: contrast(1.1) brightness(0.95); }

.about-text p { color: var(--text-light); margin-bottom: 40px; font-size: 1.05rem; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-top: 1px solid var(--border-color); padding-top: 40px; }
.stat-item { display: flex; flex-direction: column; align-items: flex-start; }
.stat-number { font-size: 2.5rem; font-family: 'Cormorant Garamond', serif; color: var(--primary-color); font-weight: 700; line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 2px; }

/* 3. Rooms */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }

.room-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.room-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.room-image { position: relative; height: 300px; overflow: hidden; }
.room-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s ease; }
.room-card:hover .room-image img { transform: scale(1.08); }

.room-badge {
    position: absolute; top: 0; right: 20px; background: var(--gold); color: white;
    padding: 8px 20px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; z-index: 2;
}

.room-details { padding: 40px 30px; text-align: center; }
.room-details h3 { font-size: 1.8rem; }
.room-details p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 25px; }

.room-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
.room-features li { font-size: 0.8rem; color: var(--text-dark); display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 1px; }
.room-features i { color: var(--gold); }

.room-footer { border-top: 1px solid var(--border-color); padding-top: 25px; }

/* 4. Amenities */
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }

.amenity-card {
    text-align: center; padding: 50px 30px; background: transparent;
    border: 1px solid var(--border-color); transition: var(--transition); position: relative;
}

.amenity-card::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--gold); transition: var(--transition);
}

.amenity-card:hover::after { width: 100%; }
.amenity-card:hover { background: var(--bg-white); box-shadow: 0 15px 40px rgba(0,0,0,0.05); border-color: transparent; }

.amenity-card i { font-size: 2.5rem; margin-bottom: 25px; display: inline-block; transition: var(--transition); }
.amenity-card:hover i { transform: scale(1.1); }
.amenity-card h4 { margin-bottom: 15px; font-size: 1.5rem; }
.amenity-card p { color: var(--text-light); font-size: 0.95rem; }

/* 5. Partners */
.partners-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 60px; align-items: center; }
.partner-logo {
    display: flex; align-items: center; justify-content: center; padding: 10px;
    background: transparent; border: none;
    transition: var(--transition); height: 120px; min-width: 180px;
}
.partner-logo img { 
    max-height: 80px; 
    max-width: 160px; 
    object-fit: contain;
    filter: grayscale(1) invert(1) brightness(1.5); 
    mix-blend-mode: screen;
    opacity: 0.7; 
    transition: var(--transition); 
}
.partner-logo:hover { transform: translateY(-5px); }
.partner-logo:hover img { opacity: 1; filter: grayscale(1) invert(1) brightness(2); }

/* 6. Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.gallery-item { position: relative; overflow: hidden; height: 350px; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 1s ease; }
.gallery-item::before { content: ''; position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px; border: 1px solid rgba(212, 175, 55, 0.5); opacity: 0; z-index: 2; transition: 0.5s; }
.gallery-item::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(91, 18, 22, 0.7); opacity: 0; transition: 0.5s ease; z-index: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::before, .gallery-item:hover::after { opacity: 1; }

/* 7. Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.testimonial-card {
    background: transparent; padding: 50px 40px; border: 1px solid var(--border-color);
    position: relative; text-align: center; transition: var(--transition);
}
.testimonial-card:hover { background: var(--bg-white); box-shadow: 0 15px 40px rgba(0,0,0,0.05); border-color: var(--gold); }
.quote-icon { font-size: 2rem; color: var(--gold); margin-bottom: 25px; opacity: 0.5; }
.review-text { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--text-dark); margin-bottom: 30px; line-height: 1.6; }
.guest-info h4 { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; margin-bottom: 5px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.guest-info span { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 2px; }

/* 8 & 9. Contact */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-details { margin-top: 40px; }
.contact-details li { display: flex; gap: 25px; margin-bottom: 35px; align-items: flex-start; }
.contact-details i { font-size: 1.5rem; color: var(--gold); margin-top: 5px; }
.contact-details h4 { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.contact-details p { color: var(--text-light); font-size: 1rem; }
.contact-map { height: 100%; min-height: 450px; border: 1px solid var(--border-color); padding: 10px; background: var(--bg-light); }
.contact-map iframe { border: none !important; }

/* 10. Footer */
.footer { background: #ffffff; color: var(--text-dark); padding-top: 100px; border-top: 3px solid var(--primary-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 80px; }
.footer .logo { margin-bottom: 25px; }
.footer-desc { color: rgba(0,0,0,0.7); margin-bottom: 30px; font-size: 0.95rem; }
.social-links { display: flex; gap: 20px; }
.social-links a { font-size: 1.2rem; color: rgba(0,0,0,0.5); transition: var(--transition); }
.social-links a:hover { color: var(--primary-color); transform: translateY(-3px); }
.footer h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 30px; color: var(--text-dark); }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: rgba(0,0,0,0.7); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-color); padding-left: 5px; }
.newsletter-form { display: flex; margin-top: 25px; border-bottom: 1px solid rgba(0,0,0,0.2); padding-bottom: 10px; }
.newsletter-form input { flex-grow: 1; border: none; background: transparent; color: var(--text-dark); outline: none; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; }
.newsletter-form input::placeholder { color: rgba(0,0,0,0.5); }
.newsletter-form button { background: transparent; border: none; color: var(--text-dark); cursor: pointer; font-size: 1.2rem; transition: var(--transition); }
.newsletter-form button:hover { transform: translateX(5px); color: var(--primary-color); }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.1); padding: 30px 0; text-align: center; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(0,0,0,0.6); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-title { font-size: 4rem; }
    .about-grid, .contact-wrapper { gap: 50px; }
    .rooms-grid, .amenities-grid, .gallery-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .desktop-nav, .header-actions .btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    .site-logo { max-height: 80px; width: auto; max-width: 75vw; }
    
    .mobile-sidebar { width: 100%; max-width: 300px; }
    .sidebar-header { padding: 20px; }
    .sidebar-links { padding: 20px; }
    .sidebar-footer { padding: 20px; }
    
    .section { padding: 70px 0; }
    .section-title { font-size: 2.3rem; margin-bottom: 20px; }
    
    .hero-big-logo { max-height: 150px; }
    .slide-title { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .page-header { height: 40vh; min-height: 350px; }
    .page-title { font-size: 2.8rem; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .rooms-grid, .amenities-grid, .gallery-grid, .testimonials-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
    
    .stats { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .stat-item { align-items: center; }
    
    .partners-grid { gap: 15px; }
    .partner-logo { min-width: 130px; height: 80px; padding: 5px; }
    .partner-logo img { max-height: 50px; max-width: 110px; }
    
    .footer { padding-top: 60px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom .container { flex-direction: column; gap: 20px; text-align: center; }
}
