        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: #C9A876;
            --dark-gold: #B8976A;
            --deep-blue: #1A2332;
            --light-blue: #2C3E50;
            --cream: #F8F6F0;
            --white: #FFFFFF;
            --light-gray: #F5F5F5;
            --text-dark: #333333;
            --text-light: #666666;
            --shadow-light: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
            --shadow-heavy: 0 15px 40px rgba(0,0,0,0.15);
            --gradient-primary: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            --gradient-dark: linear-gradient(135deg, var(--deep-blue), var(--light-blue));
            --border-light: #E8E8E8;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(201, 168, 118, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 39px;
    height: 50px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(201, 168, 118, 0.3);
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    box-shadow: 0 6px 20px rgba(201, 168, 118, 0.4);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

        .book-now-btn {
            background: var(--gradient-primary) !important;
            color: white !important;
            padding: 0.8rem 1.8rem !important;
            border-radius: 30px !important;
            font-weight: 600 !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
            border: none !important;
            cursor: pointer !important;
            box-shadow: 0 4px 15px rgba(201, 168, 118, 0.3) !important;
        }

        .book-now-btn:hover {
            transform: translateY(-3px) !important;
            box-shadow: 0 8px 25px rgba(201, 168, 118, 0.4) !important;
        }

        .book-now-btn::after {
            display: none !important;
        }

        /* Page Sections */
        .page {
            display: none;
            min-height: 100vh;
            /*padding-top: 90px;*/
        }

        .page.active {
            display: block;
        }

        /* Hero Section */
/* Desktop Hero Styles */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /*margin-top: -90px;*/
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}

.hero-content {
    color: white;
    max-width: 900px;
    padding: 3rem;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    width: 50%;
    margin-right: auto;
    margin-left: 0;
    text-align: left;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="80" cy="50" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.04"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grain)"/></svg>') center/200px;
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(201, 168, 118, 0.1), transparent);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.hero p {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border: none;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(201, 168, 118, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 168, 118, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.cta-button.secondary:hover {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

        /* General Sections */
        .section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            color: var(--deep-blue);
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }


        .conference-section {
    background: var(--cream);
    padding: 4rem 0;
}

.boardroom-section {
    background: white;
    padding: 4rem 0;
}

.conference-content,
.boardroom-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.boardroom-content {
    flex-direction: row-reverse;
}

.conference-image,
.boardroom-image {
    flex: 0 0 400px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 280px;
}

.conference-text,
.boardroom-text {
    flex: 1;
    min-width: 300px;
}

.conference-text .section-title,
.boardroom-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.conference-text .section-title::after,
.boardroom-text .section-title::after {
    left: 0;
    transform: none;
}

.conference-text p,
.boardroom-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
}

        /* Luxury Features Section */
        .luxury-features {
            background: linear-gradient(135deg, var(--cream) 0%, #ede7d3 100%);
            padding: 6rem 2rem;
            position: relative;
        }

        .luxury-features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23C9A876" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.3;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-heavy);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: white;
            box-shadow: 0 8px 25px rgba(201, 168, 118, 0.3);
        }

        .feature-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--deep-blue);
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Rooms Grid */
        .rooms-section {
            background: white;
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .room-card {
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            position: relative;
        }

.room-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-img {
    transform: scale(1.05);
}

/* Remove old placeholder styling */
.room-image::before {
    display: none;
}

.room-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(201, 168, 118, 0.1), rgba(26, 35, 50, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover .room-image::after {
    opacity: 1;
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(201, 168, 118, 0.3);
}

        .room-content {
            padding: 2.5rem;
        }

        .room-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            color: var(--deep-blue);
        }

        .room-content p {
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .room-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .feature-tag {
            background: var(--light-gray);
            color: var(--text-dark);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .feature-tag:hover {
            background: var(--primary-gold);
            color: white;
        }

        .room-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .room-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--primary-gold);
            font-weight: 600;
        }

        .room-price span {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .book-room-btn {
            background: var(--gradient-primary);
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(201, 168, 118, 0.3);
        }

        .book-room-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(201, 168, 118, 0.4);
        }

        /* Services Grid */
        .services-section {
            background: linear-gradient(135deg, var(--light-gray) 0%, #eeeeee 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .service-card {
            text-align: center;
            padding: 3rem 2rem;
            background: white;
            box-shadow: var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            color: var(--deep-blue);
        }

/* Restaurant Menu */
        .restaurant-section {
            background: white;
           /* margin: 2rem 0;*/
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }

        .menu-section {
            margin: 4rem 0;
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .menu-section:hover {
            box-shadow: var(--shadow-medium);
        }

        .menu-section-header {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .menu-section-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .menu-section:hover .menu-section-image {
            transform: scale(1.05);
        }

        .menu-section-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(26, 35, 126, 0.8), rgba(212, 165, 116, 0.6));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            text-align: center;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin: 0;
        }

        .menu-content {
            padding: 3rem;
        }

        .menu-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 1.5rem;
        }

        .menu-item {
            display: flex;
            align-items: flex-start;
            padding: 1.5rem;
            background: var(--light-gray);
            border-radius: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-left: 4px solid transparent;
            gap: 1.5rem;
        }

        .menu-item img.dish-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            flex-shrink: 0;
        }

            .menu-item-info {
                display: flex;
                flex-direction: column;
                justify-content: center;
                flex: 1;
            }

            .menu-item-info h4 {
                font-family: 'Playfair Display', serif;
                font-weight: 600;
                color: var(--deep-blue);
                margin-bottom: 0.5rem;
                font-size: 1.1rem;
            }

            .menu-item-info p {
                color: var(--text-light);
                font-size: 0.95rem;
                line-height: 1.6;
                margin: 0;
            }

.menu-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    margin-left: 1.5rem;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .menu-item img.dish-image {
        width: 60px;
        height: 60px;
        margin-bottom: 0.5rem;
    }
    .menu-price {
        margin-left: 0;
        margin-top: 0.5rem;
        align-self: center;
    }
}

        .menu-item:hover {
            border-left-color: var(--primary-gold);
            transform: translateX(5px);
            background: white;
            box-shadow: var(--shadow-light);
        }

        .menu-item-info h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--deep-blue);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .menu-item-info p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }


        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .menu-title {
                font-size: 2rem;
            }
            
            .menu-items {
                grid-template-columns: 1fr;
            }
            
            .menu-section-header {
                height: 150px;
            }
        }

        

/* Gallery */
.gallery-section {
    background: linear-gradient(135deg, var(--cream) 0%, #ede7d3 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-item {
    height: 250px;
    background: linear-gradient(135deg, var(--cream), #e8e2d4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::before,
.gallery-item::after {
    display: none !important;
}

        /* Contact Section */
        .contact-section {
            background: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .contact-info {
            padding: 3rem;
            background: var(--gradient-dark);
            color: white;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(201, 168, 118, 0.2), transparent);
            border-radius: 50%;
        }

        .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--primary-gold);
        }

        .contact-item {
            margin-bottom: 2.5rem;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .contact-item-icon {
            font-size: 1.5rem;
            color: var(--primary-gold);
            width: 30px;
            flex-shrink: 0;
        }

        .contact-item h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .contact-item p {
            opacity: 0.9;
            line-height: 1.6;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            box-shadow: var(--shadow-medium);
            border-radius: 15px;
        }

        .contact-form h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--deep-blue);
            text-align: center;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--deep-blue);
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: inherit;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--light-gray);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            background: white;
            box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.1);
            transform: translateY(-2px);
        }

        .submit-btn {
            background: var(--gradient-primary);
            color: white;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-family: inherit;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            width: 100%;
            box-shadow: 0 8px 25px rgba(201, 168, 118, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(201, 168, 118, 0.4);
        }

        /* About Section */
.about-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #eeeeee 100%);
}

.about-content {
    max-width: 1000px;
    margin: 4rem auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.about-image {
    flex: 0 0 400px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 300px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 5rem 0;
        }

        .stat-item {
            text-align: center;
            padding: 2.5rem;
            background: white;
            box-shadow: var(--shadow-light);
            border-radius: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(201, 168, 118, 0.05), transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-item:hover::before {
            opacity: 1;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
            position: relative;
        }

        .stat-label {
            color: var(--deep-blue);
            letter-spacing: 1px;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* Footer */
        footer {
            background: var(--gradient-dark);
            color: white;
            padding: 4rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="footerPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="%23C9A876" opacity="0.1"/><circle cx="25" cy="25" r="1" fill="%23C9A876" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23C9A876" opacity="0.05"/></pattern></defs><rect width="1000" height="1000" fill="url(%23footerPattern)"/></svg>');
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .footer-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            color: var(--primary-gold);
        }

        .footer-content > p {
            opacity: 0.8;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .footer-info {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .footer-item {
            opacity: 0.9;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .footer-item:hover {
            opacity: 1;
            color: var(--primary-gold);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 4px;
            z-index: 1001;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }

        .mobile-menu.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--deep-blue);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .loading-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(201, 168, 118, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary-gold);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Scroll to Top */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            justify-content: center;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            box-shadow: 0 8px 25px rgba(201, 168, 118, 0.3);
            font-size: 1.2rem;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(201, 168, 118, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .section {
                padding: 4rem 1.5rem;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .rooms-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow-medium);
                gap: 1rem;
                border-radius: 0 0 15px 15px;
            }

            .nav-container {
        padding: 0 1rem;
    }
    
    .logo-img {
        width: 35px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu {
                display: flex;
            }

            .hero {
    flex-direction: column;
    text-align: center;
}

.hero {
        min-height: 100vh;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        margin-top: -90px;
        padding-top: 90px; /* Add padding to account for negative margin */
    }

    .hero-img {
        position: relative;
        width: 100%;
        height: 40vh; /* Use viewport height instead of percentage */
        min-height: 250px; /* Ensure minimum height */
        order: 1;
        top: auto;
        right: auto;
    }

    .hero-content {
        position: relative;
        width: 100%;
        height: auto; /* Remove fixed height */
        order: 2;
        text-align: center;
        padding: 2rem 1rem;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1; /* Take remaining space */
        min-height: 50vh; /* Ensure enough space for content */
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

             .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .about-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
    
    .about-text {
        min-width: auto;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

            .section-title {
                font-size: 2.5rem;
            }
            


             .conference-content,
    .boardroom-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .boardroom-content {
        flex-direction: column;
    }
    
    .conference-image,
    .boardroom-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
    
    .conference-text,
    .boardroom-text {
        min-width: auto;
        text-align: center;
    }
    
    .conference-text .section-title,
    .boardroom-text .section-title {
        text-align: center;
        font-size: 2.2rem;
    }
    
    .conference-text .section-title::after,
    .boardroom-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .conference-text p,
    .boardroom-text p {
        font-size: 1rem;
    }



            .rooms-grid,
            .services-grid,
            .gallery-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .rooms-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-info {
                flex-direction: column;
                gap: 1rem;
            }

            .section {
                padding: 4rem 1rem;
            }

            .cta-button {
                padding: 1rem 2rem;
            }

            .menu-items {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

                .logo-img {
        width: 30px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }

            .hero {
        padding-top: 80px; /* Adjust for smaller nav on mobile */
    }

    .hero-img {
        height: 35vh;
        min-height: 200px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        min-height: 45vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 280px;
    }

               .about-image {
        height: 200px;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }


    .conference-section,
    .boardroom-section {
        padding: 3rem 0;
    }
    
    .conference-image,
    .boardroom-image {
        height: 200px;
    }
    
    .conference-text .section-title,
    .boardroom-text .section-title {
        font-size: 2rem;
    }
    
    .conference-text p,
    .boardroom-text p {
        font-size: 0.95rem;
    }

            .section-title {
                font-size: 2rem;
            }

            .rooms-grid {
                grid-template-columns: 1fr;
            }

            .room-content,
            .contact-form,
            .contact-info {
                padding: 2rem;
            }
        }

        .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.booking-modal {
    background: white;
    border-radius: 20px;
    padding: 0;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-overlay.active .booking-modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0;
    letter-spacing: 1px;
}

.modal-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 1rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.booking-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.1);
    transform: translateY(-2px);
}

.room-selection {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
}

.room-selection h4 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.room-options {
    display: grid;
    gap: 1rem;
}

.room-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.room-option:hover {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.room-info h5 {
    color: var(--deep-blue);
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.room-info .price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.room-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.room-quantity label {
    font-size: 0.9rem;
    margin: 0;
}

.room-quantity input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    margin: 0;
    background: white;
}

.booking-summary {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
}

.booking-summary h4 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--deep-blue);
    border-top: 2px solid var(--primary-gold);
    padding-top: 1rem;
    margin-top: 1rem;
}

.submit-booking {
    background: var(--gradient-primary);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-shadow: 0 8px 25px rgba(201, 168, 118, 0.3);
}

.submit-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 168, 118, 0.4);
}

.submit-booking:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .booking-modal {
        width: 95%;
        margin: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .room-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .room-quantity {
        align-self: flex-end;
    }
}


 .view-room-content-section {
            border-bottom: 1px solid var(--border-light);
            padding-bottom: 2rem;
        }

        .view-room-content-section:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .view-room-content-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--deep-blue);
            margin-bottom: 1rem;
        }

        .view-room-content-section p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        /* Overview Grid - Minimal */
        .view-room-overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .view-room-overview-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .view-room-overview-item:last-child {
            border-bottom: none;
        }

        .view-room-overview-label {
            font-weight: 500;
            color: var(--text-dark);
        }

        .view-room-overview-value {
            color: var(--text-light);
        }

         /* Content Sections - Clean Typography */
        .content-section {
            border-bottom: 1px solid var(--border-light);
            padding-bottom: 2rem;
        }

        .content-section:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .content-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--deep-blue);
            margin-bottom: 1rem;
        }

        .content-section p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

/* Amenities Bar - Minimal */
        .amenities-bar {
            padding: 2rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .amenities-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .amenities-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 3rem;
        }

        .amenity-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            min-width: 80px;
        }

        .amenity-icon {
            width: 24px;
            height: 24px;
            color: var(--primary-gold);
        }

        .amenity-name {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 400;
        }

                /* Main Content - Clean Layout */
        .view-room-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 4rem;
        }

        .view-room-main {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

         /* Gallery Section - Minimal */
        .view-room-gallery-section {
            position: relative;
        }

        .view-room-main-gallery {
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 1rem;
            position: relative;
            height: 400px;
            background: var(--light-gray);
        }

        .view-room-main-gallery img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .view-room-gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            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.2s ease;
            color: var(--text-dark);
        }

        .view-room-gallery-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .view-room-gallery-nav.prev {
            left: 1rem;
        }

        .view-room-gallery-nav.next {
            right: 1rem;
        }

        .view-room-thumbnail-gallery {
            display: flex;
            gap: 0.5rem;
            overflow-x: auto;
            padding: 0.5rem 0;
        }

        .view-room-thumbnail-item {
            flex: 0 0 80px;
            height: 60px;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.2s ease;
        }

        .view-room-thumbnail-item.active {
            border-color: var(--primary-gold);
        }

        .view-room-thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Features Tags - Minimal */
        .amenities-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .amenity-tag {
            background: var(--cream);
            color: var(--text-dark);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 400;
            border: 1px solid var(--border-light);
            transition: all 0.2s ease;
        }

        .amenity-tag:hover {
            background: var(--primary-gold);
            color: white;
            border-color: var(--primary-gold);
        }


        /* Other Rooms - Minimal Grid */
        .other-rooms-section {
            background: var(--light-gray);
            padding: 4rem 0;
            margin-top: 3rem;
        }

        .other-rooms-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .other-rooms-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--deep-blue);
            margin-bottom: 2rem;
        }

        .other-rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

         .room-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: transform 0.2s ease;
        }

        .room-card:hover {
            transform: translateY(-4px);
        }

        .room-card-image {
            height: 200px;
            background: var(--light-gray);
        }

        .room-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .room-card-content {
            padding: 1.5rem;
        }

        .room-card-category {
            color: var(--primary-gold);
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .room-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--deep-blue);
            margin-bottom: 0.5rem;
        }

        .room-card p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .room-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid var(--border-light);
        }

        .room-card-price {
            font-weight: 600;
            color: var(--primary-gold);
        }


         .view-room-btn {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            padding: 0.4rem 0.8rem;
            border: 1px solid var(--border-light);
            border-radius: 20px;
            transition: all 0.2s ease;
        }

        .view-room-btn:hover {
            background: var(--primary-gold);
            color: white;
            border-color: var(--primary-gold);
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .room-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem 1rem;
            }

            .room-sidebar {
                position: relative;
                top: 0;
                order: -1;
            }

            .amenities-grid {
                gap: 2rem;
            }

            .other-rooms-grid {
                grid-template-columns: 1fr;
            }

            .overview-grid {
                grid-template-columns: 1fr;
            }
        }



        /* Sidebar - Minimal Booking Card */
        .view-room-room-sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }

        .view-room-booking-card {
            background: var(--cream);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--border-light);
        }

        .view-room-booking-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--deep-blue);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .view-room-form-group {
            margin-bottom: 1rem;
        }

        .view-room-form-group label {
            display: block;
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .view-room-form-group input,
        .view-room-form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border-light);
            border-radius: 4px;
            background: white;
            color: var(--text-dark);
            font-family: inherit;
            font-size: 0.9rem;
            transition: border-color 0.2s ease;
        }

        .view-room-form-group input:focus,
        .view-room-form-group select:focus {
            outline: none;
            border-color: var(--primary-gold);
        }

        .view-room-search-button {
            width: 100%;
            background: var(--primary-gold);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 4px;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background-color 0.2s ease;
            margin-top: 0.5rem;
        }

        .view-room-search-button:hover {
            background: var(--dark-gold);
        }

        