/* Desktop and Laptop Styles - Hide hamburger menu */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        position: static !important;
        flex-direction: row !important;
        background: none !important;
        width: auto !important;
        text-align: left !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: 2rem !important;
        border-top: none !important;
    }
    
    .nav-menu.active {
        left: auto !important;
    }
}

/* Mobile First Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-xl);
        padding: 2rem 0;
        gap: 1rem;
        border-top: 2px solid var(--accent-red);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 16px 24px;
        font-size: 1.1rem;
        margin: 0.5rem 0;
        border-radius: 50px;
        background: rgba(220, 38, 38, 0.05);
        border: 1px solid var(--border-light);
    }

    .nav-link:hover {
        background: var(--accent-red);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .slide-content {
        bottom: 50px;
        padding: 0 20px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text .accent-label {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .about-image {
        height: 300px;
        border-radius: 15px;
    }

    .about-image img {
        height: 300px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .area-info-grid {
        grid-template-columns: 1fr;
    }

    .house-rules-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-icons {
        justify-content: center;
    }

    /* Optimize touch targets for mobile */
    .cta-button {
        padding: 18px 36px;
        font-size: 1.1rem;
    }

    .booking-form {
        margin: 0 20px;
        padding: 1.5rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 80px;
    }

    .nav-menu {
        top: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-image {
        height: 250px;
    }

    .about-image img {
        height: 250px;
    }

    .container {
        padding: 0 15px;
    }
}

:root {
    --bg-white: #ffffff;
    --bg-light-gray: #f5f5f5;
    --text-black: #000000;
    --text-dark: #333333;
    --text-gray: #666666;
    --accent-red: #dc2626;
    --accent-red-hover: #b91c1c;
    --border-light: #e5e5e5;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    --shadow-red: 0 4px 6px rgba(220, 38, 38, 0.2);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --whatsapp-green: #25d366;
    --whatsapp-green-hover: #128c7e;
    --call-blue: #007bff;
    --call-blue-hover: #0056b3;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white !important;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-btn {
    background: #25d366 !important;
}

.whatsapp-btn:hover {
    background: #128c7e !important;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.call-btn {
    background: #007bff !important;
}

.call-btn:hover {
    background: #0056b3 !important;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

/* Responsive adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-black);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-light);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-bottom: 2px solid var(--accent-red);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 100px;
    width: auto;
    margin-right: 12px;
   padding: 15px;
}

.nav-logo h1 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-black);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: var(--transition-smooth);
    position: relative;
    margin: 0;
}

.nav-logo h1::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-logo:hover h1::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--accent-red);
    background: rgba(220, 38, 38, 0.08);
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-red);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-link:hover::before {
    width: 50%;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-hover) 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-red);
    background: linear-gradient(135deg, var(--accent-red-hover) 0%, var(--accent-red) 100%);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.hamburger:hover {
    background: var(--bg-light-gray);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-black);
    margin: 3px 0;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Slider */
.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-light-gray);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    visibility: hidden;
}

.slider-slide.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    z-index: 1;
}

.slider-slide.prev {
    opacity: 0;
    transform: translateX(-100%);
    visibility: visible;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    z-index: 10;
    max-width: 500px;
}

.slide-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease;
    font-weight: 700;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease 0.2s;
    animation-fill-mode: both;
    line-height: 1.6;
}

.slide-content .btn-primary {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    animation: slideInLeft 1s ease 0.4s;
    animation-fill-mode: both;
    text-decoration: none;
    display: inline-block;
}

.slide-content .btn-primary:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-prev, .slider-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-black);
}

.slider-prev:hover, .slider-next:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 60px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Slide Animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Booking Section */
.booking-section {
    padding: 60px 0;
    background: var(--bg-light-gray);
}

.booking-widget {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.booking-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-black);
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.booking-button {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.booking-button:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-black);
    font-family: 'Cormorant Garamond', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* About Section */
.about {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light-gray) 0%, transparent 50%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-red);
    border-radius: 0 5px 5px 0;
}

.about-text .accent-label {
    color: var(--accent-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 20px;
    border: 1px solid var(--accent-red);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.learn-more {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--accent-red);
    border-radius: 50px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s;
}

.learn-more:hover::before {
    left: 100%;
}

.learn-more:hover {
    color: white;
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-red);
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Rooms Section - Fully Responsive */
.rooms-section {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.room-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
    border-color: var(--accent-red);
}

.room-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.room-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-red);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-image:hover .room-overlay {
    opacity: 1;
}

.view-gallery-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-gallery-btn:hover {
    background: var(--accent-red-hover);
    transform: scale(1.05);
}

.room-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-black);
    font-weight: 600;
}

.room-size {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.room-size i {
    color: var(--accent-red);
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.room-features i {
    color: var(--accent-red);
    font-size: 0.8rem;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.room-amenities i {
    font-size: 1.2rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
    cursor: pointer;
}

.room-amenities i:hover {
    color: var(--accent-red);
}

.room-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.price-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1.8rem;
}

.price-period {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.room-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-details,
.btn-book {
    flex: 1;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-details {
    background: transparent;
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
}

.btn-details:hover {
    background: var(--accent-red);
    color: white;
}

.btn-book {
    background: var(--accent-red);
    color: white;
}

.btn-book:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
}

/* Responsive Rooms Grid */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .rooms-section {
        padding: 60px 0;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .room-image img {
        height: 200px;
    }
    
    .room-content {
        padding: 1.2rem;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
    }
    
    .room-actions {
        flex-direction: column;
    }
    
    .btn-details,
    .btn-book {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .rooms-section {
        padding: 40px 0;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 10px;
    }
    
    .room-image img {
        height: 180px;
    }
    
    .room-content {
        padding: 1rem;
    }
    
    .room-content h3 {
        font-size: 1.2rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .room-amenities {
        gap: 0.8rem;
    }
    
    .room-amenities i {
        font-size: 1rem;
    }
}

/* Detailed Facilities Section */
.facilities {
    background: var(--bg-white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.facility-category h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-black);
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 0.5rem;
}

.facility-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.facility-item:hover {
    color: var(--accent-red);
}

.facility-item i {
    color: var(--accent-red);
    width: 20px;
    text-align: center;
}

/* Reviews Section */
.reviews {
    background: var(--bg-light-gray);
}

.review-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
}

.review-summary {
    margin-bottom: 2rem;
}

.review-score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-red);
}

.review-label {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.review-count {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.review-rating-breakdown {
    width: 100%;
    max-width: 600px;
    margin-bottom: 2rem;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.rating-item span:first-child {
    flex: 1;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.rating-bar {
    flex: 2;
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.rating-item span:last-child {
    width: 40px;
    text-align: right;
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.review-date {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review-rating i {
    color: var(--accent-red);
}

.review-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-highlight {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.review-verified {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-white);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light-gray);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-white);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Hotel Area Info Section */
.area-info {
    background: var(--bg-light-gray);
}

.area-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-category h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-black);
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 0.5rem;
}

.area-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.area-item:hover {
    color: var(--accent-red);
}

.area-item i {
    color: var(--accent-red);
    width: 20px;
    text-align: center;
}

.area-item .distance {
    margin-left: auto;
    font-weight: 600;
    color: var(--accent-red);
}

/* Restaurants Section */
.restaurants {
    background: var(--bg-white);
}

.restaurants-grid {
    max-width: 800px;
    margin: 0 auto;
}

.restaurant-card {
    background: var(--bg-light-gray);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.restaurant-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-black);
}

.restaurant-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.restaurant-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.restaurant-detail i {
    color: var(--accent-red);
    width: 20px;
    text-align: center;
}

/* House Rules Section */
.house-rules {
    background: var(--bg-light-gray);
}

.house-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rule-section {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.rule-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

.rule-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-black);
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 0.5rem;
}

.rule-section p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rule-item ul {
    list-style: none;
    margin-left: 1rem;
}

.rule-item li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    position: relative;
}

.rule-item li::before {
    content: '•';
    color: var(--accent-red);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--accent-red);
    transition: transform 0.3s ease;
}

.payment-methods i:hover {
    transform: scale(1.1);
}

/* How We're Doing Section */
.how-we-doing {
    background: var(--bg-white);
}

.feedback-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light-gray);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.feedback-card:hover {
    box-shadow: var(--shadow-red);
}

.feedback-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--accent-red);
    font-size: 1.5rem;
}

.feedback-card p {
    color: var(--text-black);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feedback-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.option label {
    cursor: pointer;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.option input[type="radio"]:checked + label {
    color: var(--accent-red);
    font-weight: 600;
}

/* See Other Options Section */
.other-options {
    background: var(--bg-light-gray);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.option-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

.option-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.option-card:hover img {
    transform: scale(1.05);
}

.option-content {
    padding: 1.5rem;
}

.option-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.option-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.option-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--accent-red);
}

.option-rating span {
    color: var(--text-gray);
    font-weight: 600;
}

.option-price {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.book-button {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.book-button:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* Gallery Section */
.gallery {
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-red);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--text-black);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-red);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after,
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 3px;
}

.footer-column p {
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.footer-column ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    transition: var(--transition-smooth);
    opacity: 0;
}

.footer-column ul li a:hover {
    color: var(--accent-red);
    padding-left: 25px;
}

.footer-column ul li a:hover::before {
    opacity: 1;
    left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    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);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.social-icon:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-red);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-xl);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 12px 20px;
        font-size: 1.1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        height: 400px;
    }
    
    .slide-content {
        left: 30px;
        max-width: 350px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .slider-controls {
        bottom: 15px;
        right: 15px;
    }
    
    .slider-prev, .slider-next {
        width: 35px;
        height: 35px;
    }
    
    .slider-indicators {
        bottom: 15px;
        left: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rooms-carousel {
        flex-direction: column;
    }
    
    .room-card {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .area-info-grid {
        grid-template-columns: 1fr;
    }
    
    .house-rules-grid {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Optimize touch targets for mobile */
    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
        border-radius: 50px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .review-score {
        font-size: 3rem;
    }
}

/* Sticky Navigation */
.sticky {
    background: white;
    box-shadow: var(--shadow-md);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Styles */
.about-page {
    padding: 80px 0 60px;
}

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--text-black);
    margin-bottom: 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light-gray);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.mission-vision {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-role {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 10px;
}

.member-social a {
    color: var(--text-gray);
    margin: 0 10px;
    transition: var(--transition-smooth);
}

.member-social a:hover {
    color: var(--accent-red);
}

.awards-section {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.award-item {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.award-icon i {
    font-size: 2rem;
    color: white;
}

/* Rooms Page Styles */
.rooms-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-hover));
    color: white;
    text-align: center;
}

.rooms-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.room-filter {
    padding: 40px 0;
    background: var(--bg-light-gray);
}

.filter-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
}

.rooms-section {
    padding: 60px 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.room-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-red);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.room-content {
    padding: 30px;
}

.room-size {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.room-amenities {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.room-amenities i {
    font-size: 1.2rem;
    color: var(--accent-red);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-red);
}

.price-label,
.price-period {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.room-actions {
    display: flex;
    gap: 15px;
}

.btn-details {
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.btn-details:hover {
    background: var(--accent-red);
    color: white;
}

.btn-book {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.btn-book:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
}

/* Facilities Page Styles */
.facilities-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-hover));
    color: white;
    text-align: center;
}

.main-facilities {
    padding: 60px 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.facility-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.facility-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.facility-card:hover .facility-overlay {
    opacity: 1;
}

.facility-overlay i {
    font-size: 3rem;
    color: white;
}

.facility-content {
    padding: 30px;
}

.facility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.facility-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--accent-red);
}

.facility-timings {
    list-style: none;
    padding: 0;
}

.facility-timings li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}

.additional-services {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.special-features {
    padding: 80px 0;
}

.features-showcase {
    display: grid;
    gap: 60px;
}

.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-highlight.reverse {
    direction: rtl;
}

.feature-highlight.reverse > * {
    direction: ltr;
}

.highlight-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.btn-learn-more {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    margin-top: 20px;
}

.btn-learn-more:hover {
    background: var(--accent-red-hover);
}

/* Reviews Page Styles */
.reviews-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-hover));
    color: white;
    text-align: center;
}

.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
}

.rating-stars {
    display: flex;
    gap: 5px;
}

.rating-stars i {
    color: #ffd700;
}

.total-reviews {
    font-size: 1.1rem;
    opacity: 0.9;
}

.review-stats {
    padding: 60px 0;
    background: var(--bg-light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-content h3 {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin: 0;
}

.review-controls {
    padding: 40px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-options label,
.sort-options label {
    font-weight: 600;
    margin-right: 10px;
}

.filter-options select,
.sort-options select {
    padding: 10px 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-white);
}

.write-review-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.write-review-btn:hover {
    background: var(--accent-red-hover);
}

.reviews-section {
    padding: 60px 0;
}

.reviews-grid {
    display: grid;
    gap: 30px;
}

.review-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details h4 {
    margin-bottom: 5px;
}

.review-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.review-type {
    background: var(--accent-red);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.review-rating {
    text-align: right;
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: var(--accent-red);
}

.rating-text {
    font-weight: 600;
    color: var(--text-black);
}

.review-content {
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.highlight-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--accent-red);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.helpful-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.helpful-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
}

.helpful-btn:hover {
    background: var(--bg-light-gray);
}

.share-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.share-btn:hover {
    background: var(--bg-light-gray);
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.load-more-btn:hover {
    background: var(--accent-red-hover);
}

/* Gallery Page Styles */
.gallery-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-hover));
    color: white;
    text-align: center;
}

.gallery-filter {
    padding: 40px 0;
    background: var(--bg-light-gray);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h4 {
    margin-bottom: 10px;
}

.view-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 15px;
}

.view-btn:hover {
    background: var(--accent-red-hover);
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-hover));
    color: white;
    text-align: center;
}

.contact-info {
    padding: 60px 0;
    background: var(--bg-light-gray);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.contact-form-section {
    padding: 60px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.submit-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 1.1rem;
}

.submit-btn:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
}

.reset-btn {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-gray);
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.reset-btn:hover {
    background: var(--bg-light-gray);
}

.quick-contact {
    background: var(--bg-light-gray);
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.quick-btn.phone {
    background: #25d366;
    color: white;
}

.quick-btn.email {
    background: #ea4335;
    color: white;
}

.quick-btn.whatsapp {
    background: #25d366;
    color: white;
}

.quick-btn:hover {
    transform: translateX(5px);
}

.office-hours h4 {
    margin-bottom: 15px;
}

.office-hours ul {
    list-style: none;
    padding: 0;
}

.office-hours li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.map-section {
    padding: 60px 0;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
}

.map-info h3 {
    margin-bottom: 25px;
}

.direction-options {
    display: grid;
    gap: 20px;
}

.direction-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light-gray);
    border-radius: 8px;
}

.direction-item i {
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-faq {
    padding: 60px 0;
    background: var(--bg-light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: var(--bg-light-gray);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--accent-red);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 20px;
}

/* Gallery CTA Section */
.gallery-cta {
    padding: 80px 0;
    background: var(--bg-light-gray);
    position: relative;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-black);
}

.cta-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-info-preview {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-black);
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-red);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
}

.btn-secondary:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
}

.cta-gallery {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-preview-item {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 38, 38, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-preview-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Responsive Gallery CTA */
@media (max-width: 768px) {
    .gallery-cta {
        padding: 60px 0;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .contact-info-preview {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview-item {
        height: 250px;
    }
}

/* Gallery Modal Styles */
.gallery-modal-content {
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.room-gallery-modal {
    padding: 20px;
}

.room-gallery-modal h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-black);
    font-size: 2rem;
}

.room-gallery-modal .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    width: 100%;
    overflow: hidden;
}

.room-gallery-modal .gallery-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.room-gallery-modal .gallery-main img {
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.room-gallery-modal .gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.room-gallery-modal .thumbnail {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
}

.room-gallery-modal .thumbnail img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-gallery-modal .thumbnail:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.room-gallery-modal .thumbnail.active {
    border: 3px solid var(--accent-red);
}

/* Responsive Gallery Modal */
@media (max-width: 768px) {
    .room-gallery-modal .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .room-gallery-modal .gallery-main img {
        height: auto !important;
        aspect-ratio: 16/9 !important;
    }
    
    .room-gallery-modal .gallery-thumbnails {
        display: flex !important;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
    }
    
    .room-gallery-modal .thumbnail {
        flex: 0 0 80px;
    }
    
    .room-gallery-modal .thumbnail img {
        height: 80px !important;
    }
}

@media (max-width: 480px) {
    .room-gallery-modal .gallery-main img {
        height: auto !important;
        aspect-ratio: 16/9 !important;
    }
    
    .room-gallery-modal .thumbnail {
        flex: 0 0 70px;
    }
    
    .room-gallery-modal .thumbnail img {
        height: 50px !important;
    }
}

/* Modal Styles */
.room-modal,
.review-modal,
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.close-modal:hover {
    color: var(--accent-red);
}

.success-modal .modal-content {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

.close-success-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    margin-top: 20px;
}

.close-success-btn:hover {
    background: var(--accent-red-hover);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    background: rgba(220, 38, 38, 0.8);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(220, 38, 38, 0.8);
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 80%;
}

.lightbox-caption h3 {
    margin-bottom: 10px;
}

/* Room Detail Pages Styles */
.room-detail-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-hover));
    color: white;
    text-align: center;
}

.room-detail-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.room-detail-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.room-detail-hero .room-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    color: white !important;
}

.room-detail-hero .room-price .price-amount {
    color: white !important;
}

.room-detail-hero .room-price .price-period {
    color: rgba(255, 255, 255, 0.9) !important;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-period {
    font-size: 1.1rem;
    opacity: 0.8;
}

.room-gallery {
    padding: 60px 20px;
    background: var(--bg-light-gray);
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
}

.room-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.room-gallery .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Thumbnails:Main = 1:2 ratio */
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.room-gallery .gallery-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 100%;
}

.gallery-main img {
    width: 100%;
    max-width: 100%; /* Remove fixed max-width */
    height: 400px;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 15px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.thumbnail {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9; /* Maintain consistent aspect ratio */
}

.thumbnail img {
    width: 100%;
    max-width: 100%; /* Remove fixed constraints */
    height: 100%;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}

/* Thumbnail hover effects */
.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Active thumbnail state */
.thumbnail.active {
    border: 3px solid var(--accent-red);
}

/* Responsive Gallery - Mobile Friendly */
@media (max-width: 768px) {
    .room-gallery .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .room-gallery .gallery-main img {
        height: auto !important;
        aspect-ratio: 16/9 !important;
    }
    
    .gallery-thumbnails {
        display: flex !important;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
    }
    
    .thumbnail {
        flex: 0 0 80px;
    }
    
    .thumbnail img {
        height: 80px !important;
    }
    
    /* Room Details Responsive */
    .details-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .room-info h2 {
        font-size: 1.8rem !important;
    }
    
    .room-specs ul {
        grid-template-columns: 1fr !important;
    }
    
    .room-amenities .amenities-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .booking-card {
        padding: 20px !important;
    }
}

@media (max-width: 480px) {
    .gallery-main img {
        height: auto !important;
        aspect-ratio: 16/9 !important;
    }
    
    .thumbnail {
        flex: 0 0 70px;
    }
    
    .thumbnail img {
        height: 50px !important;
    }
    
    .room-amenities .amenities-grid {
        grid-template-columns: 1fr !important;
    }
    
    .room-specs ul {
        grid-template-columns: 1fr !important;
    }
    
    .room-info p {
        font-size: 1rem !important;
    }
    
    .book-now-btn {
        width: 100% !important;
        padding: 14px !important;
    }
}

.room-details {
    padding: 60px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.room-info h2 {
    font-size: 2.5rem;
    color: var(--text-black);
    margin-bottom: 20px;
}

.room-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.room-specs {
    margin-bottom: 40px;
}

.room-specs h3 {
    font-size: 1.5rem;
    color: var(--text-black);
    margin-bottom: 20px;
}

.room-specs ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.room-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-gray);
}

.room-specs i {
    color: var(--accent-red);
    width: 20px;
}

.room-amenities h3,
.hall-features h3 {
    font-size: 1.5rem;
    color: var(--text-black);
    margin-bottom: 20px;
}

.amenities-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.amenity-item,
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: var(--bg-light-gray);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.amenity-item:hover,
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.amenity-item i,
.feature-item i {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.amenity-item span,
.feature-item span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.booking-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.booking-card h3 {
    font-size: 1.8rem;
    color: var(--text-black);
    margin-bottom: 20px;
    text-align: center;
}

.price-display {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.price-display .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-red);
}

.price-display .price-period {
    display: block;
    color: var(--text-gray);
    margin-top: 5px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-black);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

.book-now-btn {
    width: 100%;
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
}

.book-now-btn:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
}

.enquiry-section {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.enquiry-section p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.enquiry-btn {
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.enquiry-btn:hover {
    background: var(--accent-red);
    color: white;
}

.additional-services {
    padding: 60px 0;
    background: var(--bg-light-gray);
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-black);
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 15px;
}

.service-item h4 {
    font-size: 1.2rem;
    color: var(--text-black);
    margin-bottom: 10px;
}

.service-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Conference Hall Specific Styles */
.event-types {
    margin-bottom: 40px;
}

.event-types h3 {
    font-size: 1.5rem;
    color: var(--text-black);
    margin-bottom: 20px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-type {
    background: var(--bg-light-gray);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.event-type i {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 15px;
}

.event-type h4 {
    font-size: 1.3rem;
    color: var(--text-black);
    margin-bottom: 15px;
}

.event-type ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.event-type li {
    padding: 5px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.catering-services {
    padding: 60px 0;
    background: var(--bg-light-gray);
}

.catering-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-black);
    margin-bottom: 40px;
}

.catering-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.catering-package {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.catering-package:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.catering-package h3 {
    font-size: 1.5rem;
    color: var(--text-black);
    margin-bottom: 15px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.catering-package ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.catering-package li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-gray);
}

.catering-package li:last-child {
    border-bottom: none;
}

/* Modal Styles for Room Details */
.enquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.enquiry-modal .modal-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--text-black);
    margin: 0;
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.close-modal:hover {
    color: var(--accent-red);
}

.enquiry-form .form-group {
    margin-bottom: 20px;
}

.enquiry-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-black);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.enquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-enquiry-btn {
    width: 100%;
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 1.1rem;
}

.submit-enquiry-btn:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
}

/* Mobile Responsive Styles for Room Details */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .thumbnail img {
        height: 80px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .room-specs ul {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-grid {
        grid-template-columns: 1fr;
    }
    
    .catering-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .room-detail-hero h1 {
        font-size: 2.2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .gallery-main img {
        height: 350px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        padding: 30px 20px;
    }
    
    .enquiry-modal .modal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .room-detail-hero h1 {
        font-size: 1.8rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .gallery-thumbnails {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .room-info h2 {
        font-size: 2rem;
    }
    
    .booking-card h3 {
        font-size: 1.5rem;
    }
    
    .price-display .price {
        font-size: 2rem;
    }
}
@media (max-width: 1024px) {
    .about-content,
    .mission-grid,
    .team-grid,
    .awards-grid,
    .rooms-grid,
    .facilities-grid,
    .services-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .feature-highlight {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-highlight.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .about-hero h1,
    .rooms-hero h1,
    .facilities-hero h1,
    .reviews-hero h1,
    .gallery-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-content,
    .mission-grid,
    .team-grid,
    .awards-grid,
    .rooms-grid,
    .facilities-grid,
    .services-grid,
    .stats-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .controls-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-options,
    .filter-buttons {
        justify-content: center;
    }
    
    .room-actions,
    .form-actions {
        flex-direction: column;
    }
    
    .quick-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .direction-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero h1,
    .rooms-hero h1,
    .facilities-hero h1,
    .reviews-hero h1,
    .gallery-hero h1,
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-options,
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .room-content,
    .facility-content,
    .info-card,
    .mission-card {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .quick-buttons {
        flex-direction: column;
    }
    
    .lightbox-caption {
        bottom: 10px;
        padding: 15px 20px;
        max-width: 90%;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}


#ap-float-wrap {
    position: absolute;
    right: 20px;
    top: 0; /* IMPORTANT CHANGE */
    transform: translateY(0);

    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;

    will-change: transform; /* performance boost */
}

.ap-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.ap-btn.wa { background: #25D366; }
.ap-btn.call { background: #007bff; }