:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #B8941E;
    --black: #1a1a1a;
    --charcoal: #2d2d2d;
    --white: #ffffff;
    --cream: #FAF7F2;
    --gray: #666666;
    --light-gray: #f5f5f5;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-primary);
}

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

.phone-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.btn-book {
    background: var(--gold-primary);
    color: var(--black);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.btn-book:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('../img/20.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--light-gray);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--black);
    border: none;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-primary);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 1s both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gold-primary);
    margin: 10px auto 0;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Booking Bar */
.booking-bar {
    background: var(--white);
    padding: 30px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.booking-field {
    display: flex;
    flex-direction: column;
}

.booking-field label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 8px;
    font-weight: 500;
}

.booking-field input,
.booking-field select {
    padding: 12px;
    border: 2px solid var(--light-gray);
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.date-range-input {
    padding: 12px;
    border: 2px solid var(--light-gray);
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    background: var(--white);
    cursor: pointer;
}

.date-range-input:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.booking-submit {
    background: var(--gold-primary);
    color: var(--black);
    border: none;
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    align-self: flex-end;
}

.booking-submit:hover {
    background: var(--gold-dark);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-label {
    color: var(--gold-primary);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    color: var(--black);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Introduction Section */
.intro-section {
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-image {
    position: relative;
    height: 600px;
}

.image-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    position: relative;
    overflow: hidden;
}

.gold-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--gold-primary);
}

.intro-text {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray);
}

.link-arrow {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow::after {
    content: ' \2192';
}

/* Rooms Section */
.rooms-section {
    background: var(--cream);
}

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

.room-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.room-image {
    height: 300px;
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    position: relative;
    overflow: hidden;
}

.room-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--black);
}

.room-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.room-features span {
    font-size: 12px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.room-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Amenities Section */
.amenities-section {
    background: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.amenity-item {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.amenity-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--black);
}

.amenity-item p {
    color: var(--gray);
    font-size: 14px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-left: 4px solid var(--gold-primary);
}

.stars {
    color: var(--gold-primary);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--black);
    margin-bottom: 5px;
    font-size: 16px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--light-gray);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 120px;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--light-gray);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--charcoal);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold-primary);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--charcoal);
    background: var(--charcoal);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
    background: var(--gold-primary);
    color: var(--black);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
}

.newsletter-form button:hover {
    background: var(--gold-dark);
}

.footer-bottom {
    border-top: 1px solid var(--charcoal);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
}

/* Mobile Responsive Design - Enhanced */

/* Tablet & Small Desktop (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 15px 30px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .intro-grid {
        gap: 50px;
    }
    
    .room-detail-grid,
    .room-detail-grid.reverse {
        grid-template-columns: 1fr;
    }
    
    .room-detail-grid.reverse .room-detail-images,
    .room-detail-grid.reverse .room-detail-info {
        order: initial;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features,
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dining-card,
    .dining-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait & Mobile Landscape (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation Mobile */
    .nav-container {
        padding: 12px 20px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 30px 0;
        gap: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid var(--charcoal);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        font-size: 16px;
        display: block;
        padding: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .phone-link {
        display: none;
    }
    
    .btn-book {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    /* Hero Section Mobile */
    .hero {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Booking Bar Mobile */
    .booking-bar {
        padding: 20px 0;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-submit {
        align-self: stretch;
    }
    
    /* Sections Mobile */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Intro Section Mobile */
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image {
        height: 350px;
    }
    
    /* Rooms Grid Mobile */
    .rooms-grid,
    .amenities-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Room Detail Mobile */
    .room-amenities-list ul {
        grid-template-columns: 1fr;
    }
    
    .room-specs {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    /* About Page Mobile */
    .about-features,
    .awards-grid,
    .values-grid,
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    /* Dining Mobile */
    .dining-content h2 {
        font-size: 28px;
    }
    
    /* Amenities Mobile */
    .category-title {
        font-size: 28px;
    }
    
    .amenity-details-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        margin: 5px;
        font-size: 12px;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 140px 0 80px;
    }
    
    .page-title {
        font-size: 42px;
    }
    
    .page-description {
        font-size: 16px;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 80px 20px;
    }
    
    .cta-section h2 {
        font-size: 38px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Logo */
    .logo-img {
        height: 40px;
    }
    
    /* Hero */
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 13px;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-label {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    /* Intro */
    .intro-image {
        height: 300px;
    }
    
    .intro-text {
        font-size: 15px;
    }
    
    /* Room Cards */
    .room-card h3 {
        font-size: 24px;
    }
    
    .room-content {
        padding: 25px;
    }
    
    .room-image {
        height: 250px;
    }
    
    /* Amenities */
    .amenity-item {
        padding: 25px 15px;
    }
    
    .amenity-icon {
        font-size: 40px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-col h4 {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    /* Page Header */
    .page-header {
        padding: 120px 15px 60px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    /* CTA */
    .cta-section h2 {
        font-size: 32px;
    }
    
    /* Room Details */
    .room-detail-info h2 {
        font-size: 32px;
    }
    
    .room-price {
        font-size: 28px;
    }
    
    .room-detail {
        margin-bottom: 80px;
    }
    
    .main-image {
        height: 350px;
    }
    
    .gallery-thumb {
        height: 100px;
    }
    
    /* Contact */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-icon {
        font-size: 28px;
    }
    
    .map-placeholder {
        height: 300px;
        font-size: 16px;
    }
    
    /* About */
    .feature-number {
        font-size: 40px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .award-icon {
        font-size: 40px;
    }
    
    /* Dining */
    .dining-image {
        height: 300px;
    }
    
    .specialty-image {
        height: 200px;
    }
    
    .specialty-card h3 {
        font-size: 20px;
    }
}

/* Very Small Mobile (375px and below) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 12px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    padding: 180px 0 100px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: block;
}

.page-title {
    font-size: 64px;
    margin-bottom: 20px;
}

.page-description {
    font-size: 18px;
    color: var(--light-gray);
}

/* Rooms Detail Section */
.rooms-detail-section {
    padding: 80px 0;
}

.room-detail {
    margin-bottom: 120px;
}

.room-detail:last-child {
    margin-bottom: 0;
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.room-detail-grid.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.room-detail-grid.reverse .room-detail-images {
    order: 2;
}

.room-detail-grid.reverse .room-detail-info {
    order: 1;
}

.main-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    margin-bottom: 20px;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-thumb {
    height: 120px;
    background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gallery-thumb:hover {
    opacity: 0.7;
}

.room-category {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--black);
    padding: 6px 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.room-detail-info h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--black);
}

.room-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.room-price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray);
}

.room-description {
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.room-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-gray);
}

.spec-item {
    font-size: 14px;
}

.spec-item strong {
    color: var(--black);
    display: block;
    margin-bottom: 5px;
}

.room-amenities-list {
    margin-bottom: 30px;
}

.room-amenities-list h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--black);
}

.room-amenities-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.room-amenities-list li {
    font-size: 14px;
    color: var(--gray);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

.contact-item p {
    color: var(--gray);
    line-height: 1.8;
}

.contact-item a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-primary);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--black);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--light-gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

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

.map-section {
    padding: 80px 0;
    background: var(--cream);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--charcoal);
    text-align: center;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--black);
}

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

.about-story {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-story p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.values-section {
    background: var(--cream);
    padding: 60px 40px;
    margin-bottom: 80px;
}

.values-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.value-item h3 {
    font-size: 24px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.value-item p {
    color: var(--gray);
    line-height: 1.7;
}

.awards-section {
    text-align: center;
}

.awards-section .section-title {
    margin-bottom: 50px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.award-item {
    padding: 30px;
}

.award-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.award-item h4 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 10px;
}

.award-item p {
    color: var(--gray);
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .room-detail-grid,
    .room-detail-grid.reverse {
        grid-template-columns: 1fr;
    }
    
    .room-detail-grid.reverse .room-detail-images,
    .room-detail-grid.reverse .room-detail-info {
        order: initial;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features,
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 42px;
    }
    
    .room-amenities-list ul {
        grid-template-columns: 1fr;
    }
    
    .room-specs {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Dining Page Styles */
.dining-intro {
    padding: 80px 0;
    background: var(--white);
}

.dining-options {
    padding: 0 0 80px;
}

.dining-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.dining-card.reverse {
    direction: rtl;
}

.dining-card.reverse > * {
    direction: ltr;
}

.dining-image {
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dining-image-restaurant {
    background-image:
        linear-gradient(rgba(20, 20, 20, 0.25), rgba(20, 20, 20, 0.25)),
        url('../img/Continental.png');
}

.dining-image-room-service {
    background-image:
        linear-gradient(rgba(20, 20, 20, 0.3), rgba(20, 20, 20, 0.3)),
        url('../img/In_room.png');
}

.dining-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--black);
}

.dining-hours {
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.dining-description {
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
}

.dining-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.dining-features .feature {
    background: var(--light-gray);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}

.specialties-section {
    background: var(--cream);
    padding: 80px 0;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.specialty-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-10px);
}

.specialty-image {
    height: 250px;
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    background-size: cover;
    background-position: center;
}

.specialty-image-tandoori {
    background-image:
        linear-gradient(rgba(20, 20, 20, 0.28), rgba(20, 20, 20, 0.28)),
        url('../img/Tandoori_delights.png');
}

.specialty-image-continental {
    background-image:
        linear-gradient(rgba(20, 20, 20, 0.22), rgba(20, 20, 20, 0.22)),
        url('../img/Continental.png');
}

.specialty-image-pan-asian {
    background-image:
        linear-gradient(rgba(20, 20, 20, 0.25), rgba(20, 20, 20, 0.25)),
        url('../img/Pan_asian.png');
}

.specialty-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--black);
}

.specialty-card p {
    color: var(--gray);
    margin: 0 25px 25px;
    line-height: 1.7;
}

/* Amenities Detailed */
.amenities-detailed {
    padding: 80px 0;
}

.amenity-category {
    margin-bottom: 80px;
}

.amenity-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 36px;
    color: var(--black);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--gold-primary);
}

.amenity-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.amenity-detail-card {
    background: var(--white);
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.amenity-detail-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.amenity-detail-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
}

.amenity-detail-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 14px;
}

/* Gallery Page */
.gallery-section {
    padding: 80px 0;
}

.gallery-filters {
    text-align: center;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--light-gray);
    padding: 12px 30px;
    margin: 0 10px 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--black);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

.gallery-image {
    height: 350px;
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 14px;
    color: var(--gold-light);
}

/* Responsive for new pages */
@media (max-width: 1024px) {
    .dining-card,
    .dining-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dining-content h2 {
        font-size: 28px;
    }
    
    .category-title {
        font-size: 28px;
    }
    
    .amenity-details-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.booking-modal-content {
    position: relative;
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--charcoal);
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

.booking-close:hover {
    color: var(--gold-primary);
}

.booking-modal-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.booking-modal-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--white);
}

.booking-modal-header p {
    color: var(--gold-light);
    font-size: 16px;
}

.booking-form-detailed {
    padding: 40px;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.booking-step h3 {
    font-size: 28px;
    color: var(--black);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold-primary);
}

.booking-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.booking-buttons .btn-secondary {
    flex: 1;
}

.booking-buttons .btn-primary {
    flex: 2;
}

/* Room Selection */
.room-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.room-option {
    position: relative;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.room-option:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.room-option.selected {
    border-color: var(--gold-primary);
    background: var(--cream);
}

.room-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.room-option label {
    display: block;
    padding: 25px;
    cursor: pointer;
}

.room-option-content h4 {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 8px;
}

.room-option-features {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 12px;
}

.room-option-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-primary);
}

.room-option-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
}

/* Booking Summary */
.booking-summary {
    background: var(--cream);
    padding: 30px;
    border-radius: 8px;
}

.summary-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
}

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

.summary-section h4 {
    font-size: 18px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.summary-item span:first-child {
    color: var(--gray);
}

.summary-item span:last-child {
    color: var(--black);
    font-weight: 500;
}

.summary-total {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.summary-total h4 {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: 'Cormorant Garamond', serif;
}

.total-price span:first-child {
    font-size: 32px;
}

.tax-note {
    font-size: 13px;
    color: var(--gray);
    margin-top: 10px;
}

.btn-confirm {
    background: var(--gold-primary);
    font-size: 16px;
    padding: 18px 40px;
}

.btn-confirm:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--charcoal);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--charcoal);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Responsive Booking Modal */
@media (max-width: 768px) {
    .booking-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .booking-modal-header {
        padding: 30px 20px;
    }
    
    .booking-modal-header h2 {
        font-size: 28px;
    }
    
    .booking-form-detailed {
        padding: 25px 20px;
    }
    
    .booking-step h3 {
        font-size: 24px;
    }
    
    .booking-buttons {
        flex-direction: column;
    }
    
    .booking-buttons .btn-secondary,
    .booking-buttons .btn-primary {
        flex: 1;
        width: 100%;
    }
    
    .room-option label {
        padding: 20px;
    }
    
    .room-option-content h4 {
        font-size: 20px;
    }
    
    .room-option-price {
        font-size: 24px;
    }
    
    .total-price {
        font-size: 40px;
    }
}

/* ============================= */
/* GALLERY PAGE STYLES */
/* ============================= */
/* Gallery Grid with Images */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 280px; /* Fixed height, width auto-adapts */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: #D4AF37;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.gallery-overlay p {
    color: white;
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #D4AF37;
    color: #1a1a1a;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #D4AF37;
    margin-bottom: 15px;
}

.cta-content p {
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    .gallery-overlay h3 {
        font-size: 18px;
    }

    .gallery-overlay p {
        font-size: 12px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* IMAGE CAROUSEL SECTION */
/* ============================= */

.carousel-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    padding: 60px 40px 40px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.carousel-slide.active .carousel-caption {
    opacity: 1;
    transform: translateY(0);
}

.carousel-caption h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: #D4AF37;
    margin: 0 0 10px 0;
}

.carousel-caption p {
    font-size: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: #D4AF37;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* Dots Navigation */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #D4AF37;
    border-color: #D4AF37;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(212, 175, 55, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-slide img {
        height: 400px;
    }
    
    .carousel-caption {
        padding: 40px 20px 20px;
    }
    
    .carousel-caption h3 {
        font-size: 24px;
    }
    
    .carousel-caption p {
        font-size: 14px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .carousel-dots {
        bottom: 10px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-section {
        padding: 60px 0;
    }
    
    .carousel-slide img {
        height: 300px;
    }
    
    .carousel-caption h3 {
        font-size: 20px;
    }
    
    .carousel-caption p {
        font-size: 13px;
    }
}

/* Room Image Actual Photos */
.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Intro Image Styling */
.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .intro-image img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .intro-image img {
        height: 250px;
    }
}

/* Gallery Responsive Height Adjustments */
@media (max-width: 768px) {
    .gallery-item {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        height: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Amenity Icons SVG Styling */
.amenity-icon svg {
    display: block;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.amenity-item:hover .amenity-icon svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .amenity-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* Room Detail Images Styling */
.room-detail-images .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.room-detail-images .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.room-detail-images .gallery-thumb img:hover {
    transform: scale(1.05);
}

/* Room Card Button Styling */
.room-card .room-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.room-card .room-link:hover {
    background: #D4AF37 !important;
    color: white !important;
    border-color: #D4AF37 !important;
}

/* Enhanced Room Selection in Booking Modal */
.room-option.selected {
    border-color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.02);
}

.room-option.selected::before {
    content: '✓ SELECTED';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #D4AF37;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Enhanced Room Options with Images in Booking Modal */
.room-option {
    position: relative;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.room-option:hover {
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.room-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.room-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.room-option-image {
    width: 180px;
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.room-option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.room-option-content {
    flex: 1;
    padding: 20px;
}

.room-option-content h4 {
    margin: 0 0 8px 0;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
}

.room-option-features {
    color: #666;
    font-size: 14px;
    margin: 0 0 8px 0;
}

.room-option-desc {
    color: #888;
    font-size: 13px;
    margin: 0 0 12px 0;
    font-style: italic;
}

.room-option-price {
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    margin: 0;
}

.room-option-price span {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

/* Selected state - Enhanced */
.room-option input[type="radio"]:checked + label {
    background: rgba(212, 175, 55, 0.05);
}

.room-option.selected {
    border-color: #D4AF37 !important;
    border-width: 3px !important;
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.room-option.selected::before {
    content: '✓ SELECTED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4AF37;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.room-option.selected .room-option-content h4 {
    color: #D4AF37;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .room-option label {
        flex-direction: column;
    }
    
    .room-option-image {
        width: 100%;
        height: 200px;
    }
    
    .room-option-content {
        padding: 15px;
    }
    
    .room-option.selected::before {
        top: 10px;
        right: 10px;
        font-size: 10px;
        padding: 4px 12px;
    }
}
