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

:root {
    /* Moroccan-inspired Color Palette */
    --primary-color: #d4813a; /* Terracotta */
    --secondary-color: #8b4513; /* Saddle Brown */
    --accent-color: #cd853f; /* Peru */
    --gold-color: #daa520; /* Goldenrod */
    --cream-color: #f5f5dc; /* Beige */
    --warm-white: #fefefe;
    --text-dark: #2c1810;
    --text-light: #666;
    --red-rose: #dc143c; /* Crimson */
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* Shadows and Effects */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Removed global scroll-behavior to prevent unwanted scrolling on form interactions */

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-white);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
    border-radius: 2px;
}

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

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.nav-logo a:hover {
    color: var(--accent-color);
}

.nav-logo a:hover h1 {
    color: var(--accent-color);
}

/* Logo image styling */
.logo-image {
    height: 120px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: var(--transition-smooth);
    display: block;
    margin: 0 auto;
}

.nav-logo a:hover .logo-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* Special styling for Book Now button in navbar */
.booking-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.booking-nav::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 ease;
}

.booking-nav:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    color: white !important;
}

.booking-nav:hover::before {
    left: 100%;
}

.booking-nav:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.3);
}

/* Remove the underline effect for booking nav */
.booking-nav::after {
    display: none !important;
}

/* Active state for Book Now button when in booking section */
.booking-nav.active,
.booking-nav:focus {
    background: white !important;
    color: #d4813a !important;
    border: 3px solid #d4813a !important;
    box-shadow: 0 4px 15px rgba(212, 129, 58, 0.2) !important;
}

.booking-nav.active:hover,
.booking-nav:focus:hover {
    background: #f8f8f8 !important;
    color: #d4813a !important;
    border: 2px solid #d4813a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 129, 58, 0.3) !important;
}

.booking-nav.active::before,
.booking-nav:focus::before {
    display: none;
}

.book-btn {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
}

.book-btn:hover {
    background: var(--accent-color) !important;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 0.5rem;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--warm-white);
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.language-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-light);
}

.language-btn i:last-child {
    font-size: 12px;
    transition: var(--transition-smooth);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    min-width: 180px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    margin-top: 5px;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8f8f8;
}

.language-flag {
    font-size: 18px;
}

.language-code {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 30px;
}

.language-name {
    color: var(--text-light);
    font-size: 14px;
}

/* Mobile styles for language selector */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 5px;
    }
    
    .language-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .language-dropdown {
        min-width: 160px;
        right: -10px;
    }
    
    .language-option {
        padding: 10px 12px;
    }
    
    .language-code {
        min-width: 25px;
    }
}

/* Currency Selector */
.currency-selector {
    position: relative;
    margin-left: 8px;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--warm-white);
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.currency-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-light);
}

.currency-btn i:last-child {
    font-size: 12px;
    transition: var(--transition-smooth);
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    min-width: 200px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    margin-top: 5px;
}

.currency-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 1px solid #f0f0f0;
}

.currency-option:last-child {
    border-bottom: none;
}

.currency-option:hover {
    background: #f8f8f8;
}

.currency-flag {
    font-size: 18px;
}

.currency-code {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 40px;
}

.currency-name {
    color: var(--text-light);
    font-size: 14px;
}

/* Mobile styles for currency selector */
@media (max-width: 768px) {
    .currency-selector {
        margin-left: 5px;
    }
    
    .currency-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .currency-dropdown {
        min-width: 180px;
        right: -10px;
    }
    
    .currency-option {
        padding: 10px 12px;
    }
    
    .currency-code {
        min-width: 35px;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(212, 129, 58, 0.7), rgba(139, 69, 19, 0.7)),
                url('img/outside_global_view.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold-color);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Special styling for booking button in hero section */
.hero-buttons .btn-book {
    background: linear-gradient(135deg, var(--primary-color), var(--gold-color));
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 35px;
    box-shadow: 0 4px 15px rgba(212, 129, 58, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
}

.hero-buttons .btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.hero-buttons .btn-book:hover::before {
    left: 100%;
}

.hero-buttons .btn-book:hover {
    box-shadow: 0 8px 25px rgba(212, 129, 58, 0.4);
    background: linear-gradient(135deg, var(--gold-color), var(--primary-color));
}

.hero-buttons .btn-book:active {
    box-shadow: 0 4px 15px rgba(212, 129, 58, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--cream-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

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

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature span {
    font-weight: 500;
    color: var(--text-dark);
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

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

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

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

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

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.room-content {
    padding: 1.5rem;
}

.room-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

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

.room-amenities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.room-amenities i {
    color: var(--primary-color);
    width: 16px;
}

.room-size {
    color: var(--accent-color);
    font-weight: 400;
    font-size: 0.9rem;
    background: var(--cream-color);
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 0.5rem;
}

/* Rooms Features Section */
.rooms-features {
    margin-top: 4rem;
    background: var(--cream-color);
    padding: 3rem;
    border-radius: 15px;
}

.rooms-features h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.amenity-group {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.amenity-group:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.amenity-group h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amenity-group h4 i {
    font-size: 1.2rem;
}

.amenity-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.amenity-group li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.amenity-group li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
    background: var(--cream-color);
}

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

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 129, 58, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Experiences Section */
.experiences {
    padding: var(--section-padding);
}

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

.experience-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.experience-card:hover {
    box-shadow: var(--shadow-medium);
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.experience-icon i {
    color: white;
    font-size: 2rem;
}

.experience-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.reviews-source {
    text-align: center;
    margin-bottom: 2rem;
}

.powered-by {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.powered-by i {
    color: var(--primary-color);
}

.reviews-loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--cream-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

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

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

/* Enhanced review styles */
.enhanced-review {
    padding: 2.5rem;
    text-align: left;
    padding-bottom: 3.5rem; /* Extra padding for source indicator */
}

.enhanced-review::before {
    display: none; /* Remove quote mark for enhanced reviews */
}

/* Enhanced Review Source Indicator */
.review-source-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: #6c757d;
    text-align: center;
    border-top: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.review-source-indicator i {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Featured badge positioning */
.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #856404;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.featured-badge i {
    margin-right: 0.25rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-score {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-weight: 600;
}

.review-score .score {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.review-score .score-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-cons {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.review-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.traveler-type {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.traveler-type i {
    color: var(--primary-color);
}

.review-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

.country {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.stars {
    color: var(--gold-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: var(--gold-color);
}

.testimonial p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Mobile responsiveness for enhanced reviews */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .enhanced-review {
        padding: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .review-details {
        align-items: flex-start;
    }
    
    .reviews-loading {
        padding: 2rem;
    }
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
}

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

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

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

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    width: 20px;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Amenities Info */
.amenities-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* Amenities Info */
.amenities-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.amenities-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--cream-color);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.amenity-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.amenity-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.amenity-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.booking-info {
    background: var(--cream-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.booking-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-info p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.booking-info p i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Leave a Comment Section */
.leave-comment {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.leave-comment .section-title {
    text-align: center;
    margin-bottom: 10px;
    color: #2c3e50;
}

.leave-comment .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #6c757d;
    font-size: 1.1rem;
}

.comment-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

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

.comment-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.comment-form input,
.comment-form select,
.comment-form textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.comment-form input:focus,
.comment-form select:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Rating Stars */
.rating-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stars-container {
    display: flex;
    gap: 5px;
    cursor: pointer;
}

.stars-container i {
    font-size: 2rem;
    color: #e9ecef;
    transition: all 0.2s ease;
    cursor: pointer;
}

.stars-container i:hover,
.stars-container i.active {
    color: #ffc107;
    transform: scale(1.1);
}

.rating-text {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

/* Success and Error Messages */
.comment-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comment-form-container {
        padding: 25px;
        margin: 0 15px;
    }
    
    .comment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .stars-container i {
        font-size: 1.5rem;
    }
}

.comment-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 3rem;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.comment-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comment-form label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.comment-form input,
.comment-form select,
.comment-form textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: white;
    font-family: inherit;
}

.comment-form input:focus,
.comment-form select:focus,
.comment-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Rating Input */
.rating-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stars-container {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
}

.stars-container i {
    color: #ddd;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.stars-container i:hover,
.stars-container i.active {
    color: var(--gold-color);
}

.stars-container i:hover ~ i {
    color: #ddd;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* User Comments Section */
.user-comments-section {
    margin-top: 4rem;
}

.user-comments-section h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.comments-loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

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

.user-comment {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    position: relative;
    transition: var(--transition-smooth);
}

.user-comment:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.user-comment::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.user-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.user-comment-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-comment-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.user-comment-author .country {
    color: var(--text-light);
    font-size: 0.9rem;
}

.user-comment-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-comment-rating .stars {
    color: var(--gold-color);
    font-size: 1rem;
}

.user-comment-rating .rating-score {
    font-weight: 600;
    color: var(--primary-color);
}

.user-comment-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.user-comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: var(--text-light);
}

.user-comment-date {
    font-style: italic;
}

.user-comment-room {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Featured Comment */
.user-comment.featured {
    border: 2px solid var(--gold-color);
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
}

.user-comment.featured::after {
    content: 'Featured';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Success Message */
.comment-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-success i {
    color: #28a745;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
}

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

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

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

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    width: 20px;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .comment-form-container {
        padding: 2rem;
        margin: 0 1rem 2rem 1rem;
    }
    
    .comment-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stars-container {
        font-size: 1.5rem;
    }
    
    .user-comments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .user-comment {
        padding: 1.5rem;
    }
    
    .user-comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .user-comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    border-top: 1px solid #666;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.3s ease;
}

.lightbox-content img:hover {
    opacity: 0.9;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10002;
    transition: color 0.3s ease, transform 0.2s ease;
    user-select: none;
}

.close-lightbox:hover {
    color: #ff6b6b;
}

.photo-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10001;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10001;
}

.lightbox-nav button {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 20px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    user-select: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}



#prev-btn {
    margin-left: -30px;
}

#next-btn {
    margin-right: -30px;
}

/* Booking Section - New Fluid Design */
.booking {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--section-padding);
    min-height: 100vh;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

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

.benefit i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Fluid Booking Container */
.booking-container-fluid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    scroll-behavior: auto;
}

.booking-main {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* Direct Booking Discount Banner */
.direct-booking-banner {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 20px 0;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out;
    grid-column: 1 / -1; /* Span both columns in the grid */
}

.direct-booking-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.banner-icon i {
    font-size: 2rem;
    color: white;
}

.banner-text {
    flex: 1;
    margin-right: 20px;
}

.banner-text h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-text h4 #discount-percentage-display {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 400;
}

.banner-highlight {
    display: flex;
    align-items: center;
}

.savings-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.savings-badge i {
    font-size: 1.1rem;
    color: #ffd700;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.2); }
    100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 215, 0, 0.3); }
}

.booking-form-fluid {
    display: flex;
    flex-direction: column;
}

/* Booking Sections - Progressive Disclosure */
.booking-section {
    border-bottom: 1px solid #e9ecef;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.booking-section:last-child {
    border-bottom: none;
}

.booking-section.hidden {
    opacity: 0.5;
    pointer-events: none;
}

.booking-section.disabled .section-header {
    cursor: not-allowed;
    background: #f8f9fa;
}

.booking-section.disabled .section-content {
    display: none;
}

.booking-section.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-section.active .section-content {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.booking-section.completed .section-header {
    background: linear-gradient(135deg, #e8f5e8, #d4f7d4);
    border-left: 4px solid #28a745;
}

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

/* Section Progress Indicator */
.section-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    background: white;
    transition: var(--transition-smooth);
    position: relative;
}

.section-header:hover:not(.disabled) {
    background: #f8f9fa;
}

.section-header.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.section-header.disabled .section-title-group h3 {
    color: #6c757d;
}

.section-header.disabled .section-title-group p {
    color: #adb5bd;
}

.section-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: var(--transition-smooth);
}

.booking-section.disabled .section-icon {
    background: #adb5bd;
}

.booking-section.completed .section-icon {
    background: #28a745;
}

.section-title-group {
    flex: 1;
}

.section-title-group h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.section-title-group p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.section-status {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.section-status i {
    color: #28a745;
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.section-status i.visible {
    opacity: 1;
}

.section-content {
    padding: 0 2rem 2rem 2rem;
    display: none;
}

/* Date Picker Group */
.date-picker-group {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: end;
    margin-bottom: 2rem;
}

.date-input-wrapper {
    position: relative;
}

.date-input-wrapper label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.date-input-wrapper input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: white;
}

.date-input-wrapper input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.date-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: var(--text-light);
}

.date-separator i {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

#nights-display {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Guest Selector */
.guests-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.guest-counter {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guest-type {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

.guest-type > div:first-child {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guest-type i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.guest-type small {
    color: #666;
    font-size: 0.8rem;
    font-weight: 400;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.counter-btn {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.counter-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.counter-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark);
    min-width: 20px;
    text-align: center;
}

/* Group size info */
.group-size-info {
    margin-top: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
    border: 1px solid #90caf9;
    border-radius: 12px;
}

.info-card i {
    color: #1976d2;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-content h5 {
    margin: 0 0 0.5rem 0;
    color: #1976d2;
    font-size: 1rem;
    font-weight: 600;
}

.info-content p {
    margin: 0;
    color: #424242;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Children Under 2 Section - Updated for individual children */
.children-under-2-section {
    margin-bottom: 2rem;
    animation: fadeIn 0.3s ease-out;
}

.children-age-container {
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    border: 2px solid #007acc;
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.children-age-container h4 {
    color: #007acc;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.children-age-container h4::before {
    content: '🧒';
    font-size: 1.3rem;
}

.age-subtitle {
    color: #005c99;
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
}

.children-age-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.child-age-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: var(--transition-smooth);
}

.child-age-selector:hover {
    border-color: #007acc;
    box-shadow: 0 2px 8px rgba(0, 122, 204, 0.1);
}

.child-label {
    font-weight: 500;
    color: var(--text-dark);
    min-width: 80px;
}

.age-select {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
}

.free-indicator {
    background: #28a745;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 45px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.free-indicator.show {
    opacity: 1;
}

/* Currency Section */
.currency-section {
    margin-bottom: 2rem;
}

.currency-section label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.currency-section select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: var(--transition-smooth);
}

.currency-section select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.currency-section small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Room Grid */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Room Card Selection - Enhanced Highlighting */
.room-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.room-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.room-card input[type="radio"] {
    position: absolute;
        opacity: 0;
    pointer-events: none;
}

.room-card input[type="radio"]:checked + .room-card-label {
    background: linear-gradient(135deg, #fff8e1, #f3e5ab);
}

.room-card input[type="radio"]:checked ~ .room-card {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

/* Better approach for room selection highlighting */
.room-card.selected {
    border-color: var(--primary-color) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3) !important;
}

.room-card.selected .room-card-label {
    background: linear-gradient(135deg, #fff8e1, #f3e5ab);
}

.room-card.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.room-card-label {
    display: block;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.room-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}



.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.room-badge {
    background: var(--primary-color);
    color: white;
}

.room-badge.family {
    background: #17a2b8;
    color: white;
}

.room-badge.premium {
    background: #6f42c1;
    color: white;
}

.room-badge.budget {
    background: #28a745;
    color: white;
}

.room-details {
    padding: 1.5rem;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.room-header h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
}

.room-size {
    background: #e9ecef;
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.room-features span {
    background: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.room-features i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.room-pricing {
    text-align: right;
    position: relative;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.direct-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #28a745;
}

/* Enhanced room card hover effect for pricing */
.room-card:hover .room-pricing .direct-price {
    color: #1e7e34;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.per-night {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
}

/* Guest Form */
.guest-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.input-group {
    position: relative;
}

.input-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.input-group label span {
    color: var(--text-light);
    font-weight: normal;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: white;
    resize: vertical;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Terms Section */
.booking-terms {
    margin-bottom: 2rem;
}

.terms-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #e9ecef;
}

.terms-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.terms-header i {
    font-size: 1.5rem;
    color: #28a745;
}

.terms-header h4 {
    margin: 0;
    color: var(--text-dark);
}

.terms-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.terms-content li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-content li i {
    color: #28a745;
    font-size: 0.9rem;
}

.terms-agreement {
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.terms-agreement label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.terms-agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

/* Book Button */
.btn-book-fluid {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn-book-fluid:hover {
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.btn-book-fluid:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Floating Sidebar */
.booking-sidebar-fluid {
    position: sticky;
    top: 100px;
        background: white;
    border-radius: 20px;
        box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.sidebar-content {
    padding: 2rem;
}

.sidebar-content h4 {
    margin: 0 0 1.5rem 0;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.booking-summary-fluid {
    margin-bottom: 2rem;
}

.summary-dates,
.summary-guests,
.summary-room {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-dates:last-child,
.summary-guests:last-child,
.summary-room:last-child {
    border-bottom: none;
}

.summary-dates i,
.summary-guests i,
.summary-room i {
    color: var(--primary-color);
    width: 20px;
}

.price-breakdown-fluid {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.price-line.discount {
    background: linear-gradient(135deg, #d4f4dd 0%, #a8e6cf 100%);
    margin: 8px -15px;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    color: #155724;
    font-weight: 600;
}

.price-line.discount span:first-child {
    font-weight: 600;
    color: #155724;
}

.price-line.discount span:last-child {
    font-weight: 700;
    color: #28a745;
    font-size: 1.1rem;
}

.price-line.total {
    font-weight: bold;
    font-size: 1.1rem;
    border-top: 1px solid #dee2e6;
    padding-top: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.sidebar-benefits {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item i {
    color: #28a745;
    width: 18px;
}

.benefit-item span {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Animations */
/* slideDown animation replaced with fadeIn to prevent unwanted scrolling */

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .booking-container-fluid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-sidebar-fluid {
        position: relative;
        top: 0;
        order: -1;
    }
}

@media (max-width: 768px) {
    /* Responsive discount banner */
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .banner-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .banner-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .banner-text h4 {
        font-size: 1.5rem;
    }
    
    .banner-text h4 #discount-percentage-display {
        font-size: 1.8rem;
    }
    
    .savings-badge {
        font-size: 0.8rem;
        padding: 10px 16px;
    }

    .booking-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .date-picker-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .date-separator {
        order: 3;
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 0;
    }
    
    .guests-selector {
        grid-template-columns: 1fr;
    }
    
    .room-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        padding: 1.5rem;
    }
    
    .section-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    /* Mobile responsive styles for hero booking button */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn-book {
        width: 100%;
        max-width: 280px;
        padding: 18px 30px;
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Mobile discount banner */
    .direct-booking-banner {
        margin: 0 -20px 20px -20px;
        border-radius: 0;
        padding: 15px 0;
    }
    
    .banner-text h4 {
        font-size: 1.3rem;
    }
    
    .banner-text p {
        font-size: 0.9rem;
    }

    .booking-benefits {
        grid-template-columns: 1fr;
    }
    
    .benefit {
        padding: 1rem;
    }
    
    .guest-counter {
        padding: 1rem;
    }
    
    .room-details {
        padding: 1rem;
    }
    
    .sidebar-content {
        padding: 1.5rem;
    }
    
    .children-age-container {
        padding: 1.5rem;
    }
    
    .child-age-selector {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .child-label {
        min-width: auto;
        text-align: center;
        font-weight: 600;
    }
    
    .age-select {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .free-indicator {
        align-self: center;
        margin-top: 0.5rem;
    }
    
    /* Extra small mobile styles for hero booking button */
    .hero-buttons .btn-book {
        padding: 16px 25px;
        font-size: 15px;
        letter-spacing: 1px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .lightbox-content img {
        cursor: default;
    }
    
    .lightbox-nav button {
        opacity: 0.8;
        min-width: 50px;
        min-height: 50px;
    }
    
    .lightbox-nav button:active {
        opacity: 1;
        transform: scale(0.95);
    }
    
    .close-lightbox {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
} 

/* Children under 2 styling */
.children-under-2-option {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid var(--cream-color);
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
    transition: var(--transition-smooth);
}

.children-under-2-option:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff, #f8f9fa);
    box-shadow: var(--shadow-light);
}

.children-under-2-option label.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 5px;
    cursor: pointer;
}

.children-under-2-option label.checkbox-label i {
    margin-right: 8px;
    color: var(--gold-color);
    font-size: 1.1em;
}

.children-under-2-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.children-under-2-info {
    margin-left: 28px;
    color: var(--text-light);
}

.children-under-2-info small {
    font-style: italic;
}

/* Animation for showing/hiding the children under 2 section */
#children-under-2-group {
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 0;
    opacity: 0;
}

#children-under-2-group.show {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 20px;
} 

/* Icon Centering Fixes */
.section-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.section-icon i {
    line-height: 1;
    text-align: center;
}

.guest-type i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    line-height: 1;
}

.room-features i {
    color: var(--primary-color);
    font-size: 0.8rem;
    width: 12px;
    text-align: center;
    line-height: 1;
}

.terms-content li i {
    color: #28a745;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    line-height: 1;
}

.terms-header i {
    font-size: 1.5rem;
    color: #28a745;
    line-height: 1;
}

.summary-dates i,
.summary-guests i,
.summary-room i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    line-height: 1;
}

.benefit-item i {
    color: #28a745;
    width: 18px;
    text-align: center;
    line-height: 1;
}

.benefit i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
    display: block;
    text-align: center;
} 

/* Booking Success Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show .modal-content {
    opacity: 1;
}

.modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h2 {
    margin: 0;
    color: #28a745;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header h2 i {
    font-size: 1.8rem;
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    margin: 0 0 1.5rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.next-steps {
    margin-bottom: 2rem;
}

.next-steps h4 {
    margin: 0 0 1rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.next-steps ol {
    margin: 0;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.next-steps li strong {
    color: var(--primary-color);
}

.booking-highlights {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item i {
    color: #28a745;
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
}

.booking-reference {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 1rem;
    margin: 0;
    text-align: center;
    font-size: 1.1rem;
}

.booking-reference strong {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-footer {
    padding: 1rem 2rem 2rem 2rem;
    text-align: center;
}

.modal-footer .btn-primary {
    min-width: 120px;
    padding: 0.8rem 2rem;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .booking-highlights {
        padding: 1rem;
    }
    
    .highlight-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
} 

/* Section Continue Buttons */
.section-continue {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.btn-continue {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-continue:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-continue:active {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-continue:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-continue i {
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}



/* Mobile responsiveness for continue buttons */
@media (max-width: 768px) {
    .section-continue {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .btn-continue {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
} 

/* Step-by-Step Booking Interface */

/* Progress Steps */
.booking-steps-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.booking-steps-progress .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 1rem;
    min-width: 120px;
}

.booking-steps-progress .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #e5e5e5;
    z-index: 1;
}

.booking-steps-progress .step.active:not(:last-child)::after,
.booking-steps-progress .step.completed:not(:last-child)::after {
    background: #d4813a;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e5e5e5;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #d4813a;
    color: white;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step.completed .step-number::before {
    content: '✓';
    font-size: 12px;
}

.step-label {
    font-size: 12px;
    color: #666;
    text-align: center;
    font-weight: 500;
}

.step.active .step-label {
    color: #d4813a;
    font-weight: 600;
}

.step.completed .step-label {
    color: #28a745;
}

/* Booking Steps */
.booking-step {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease;
}

.booking-step.active {
    display: block;
}

/* slideIn animation replaced with fadeIn to prevent unwanted scrolling */

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d4813a, #cd853f);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(212, 129, 58, 0.3);
}

.step-title-group h3 {
    margin: 0 0 0.5rem 0;
    color: #2c1810;
    font-size: 1.5rem;
    font-weight: 600;
}

.step-title-group p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.step-content {
    margin-bottom: 2rem;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    margin-top: 2rem;
}

.btn-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #d4813a;
    border-radius: 8px;
    background: transparent;
    color: #d4813a;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    scroll-behavior: auto;
}

.btn-step:hover {
    background: #d4813a;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 129, 58, 0.3);
}

.btn-step.btn-next {
    background: #d4813a;
    color: white;
}

.btn-step.btn-next:hover {
    background: #cd853f;
    box-shadow: 0 6px 20px rgba(212, 129, 58, 0.4);
}

.btn-step:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-step:disabled:hover {
    background: transparent;
    color: #d4813a;
    box-shadow: none;
}

.btn-step.btn-next:disabled:hover {
    background: #d4813a;
    color: white;
}

/* Room Selection in Steps */
.booking-step .room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

/* Room option indicators */
.room-option {
    position: relative;
}

.room-option.checking::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d4813a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

.room-option.unavailable {
    opacity: 0.6;
    pointer-events: none;
}

.room-option.unavailable .room-card-label {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}

.room-unavailable-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Booking Summary in Final Step */
.booking-summary-final {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #d4813a;
}

.booking-summary-final h4 {
    margin: 0 0 1rem 0;
    color: #2c1810;
    font-size: 1.2rem;
}

.summary-details {
    display: grid;
    gap: 0.75rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: #d4813a;
}

.summary-item .label {
    color: #666;
}

.summary-item .value {
    font-weight: 600;
    color: #2c1810;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-steps-progress {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .booking-steps-progress .step {
        min-width: 100px;
        padding: 0 0.5rem;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .booking-step {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 0;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-step {
        width: 100%;
        justify-content: center;
    }
} 

/* Room Requirements and Combinations */
.room-requirements {
    margin-bottom: 2rem;
}

.requirements-card {
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    border: 2px solid #e0e7ff;
    border-radius: 15px;
    padding: 1.5rem;
}

.requirements-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.requirements-header i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.requirements-header h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.group-details {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.group-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.guest-count-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f8ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #b3d9ff;
}

.guest-count-item i {
    color: var(--primary-color);
}

.room-combinations h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.combinations-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.combination-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.combination-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 122, 204, 0.1);
}

.combination-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f8ff, #e3f2fd);
}

.combination-card.selected::after {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.combination-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.combination-type {
    font-weight: 600;
    color: var(--text-dark);
}

.combination-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.combination-rooms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.room-allocation-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.combination-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.benefit-tag {
    background: #e8f5e8;
    color: #2d5016;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.selected-combination-details {
    margin-top: 2rem;
    animation: fadeIn 0.3s ease-out;
}

.selected-combination-details h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-allocation-grid {
    display: grid;
    gap: 2rem;
}

.room-allocation-section {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.allocation-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f8ff;
}

.allocation-header h5 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.allocation-header h5 i {
    color: var(--primary-color);
}

.guest-distribution {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.guest-distribution span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #f0f8ff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    border: 1px solid #b3d9ff;
}

.guest-distribution i {
    color: var(--primary-color);
}

.room-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.allocation-room-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.allocation-room-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 122, 204, 0.15);
}

.allocation-room-card input[type="radio"]:checked + .room-card-label {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f8ff, #e3f2fd);
    box-shadow: 0 4px 15px rgba(0, 122, 204, 0.2);
}

.allocation-room-card input[type="radio"]:checked + .room-card-label::after {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    z-index: 5;
}

@media (max-width: 768px) {
    .requirements-card {
        padding: 1rem;
    }
    
    .combination-card {
        padding: 1rem;
    }
    
    .combination-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .room-allocation-section {
        padding: 1rem;
    }
    
    .allocation-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .allocation-header h5 {
        font-size: 1rem;
    }
    
    .room-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .guest-distribution {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .guest-distribution span {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Meal Selection Styles */
.meal-selection-info {
    margin-bottom: 2rem;
}

.meal-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.meal-section {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.meal-section.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.meal-section.disabled .meal-categories {
    filter: grayscale(1);
}

.meal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f8ff;
}

.meal-header h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meal-header i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.skip-meal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.skip-meal input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

.meal-categories {
    display: grid;
    gap: 1.5rem;
}

.meal-category {
    background: linear-gradient(135deg, #fefefe, #f8f9fa);
    border-radius: 15px;
    padding: 0;
    border: 2px solid #e9ecef;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.meal-category:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.meal-category-header {
    background: #fff !important;
    color: var(--primary-color) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-bottom: 1px solid #f1f3f4;
}

.meal-category-header:hover {
    background: #f9f6f2 !important;
    color: var(--primary-color) !important;
}

.meal-category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
    opacity: 0;
    transition: var(--transition-smooth);
}

.meal-category-header:hover::before {
    opacity: 1;
}

.category-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meal-category-header h5 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
}

.meal-category-header i {
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.meal-category-header:hover i {
    color: var(--gold-color);
    transform: scale(1.1);
}

.category-count {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.meal-category-header:hover .category-count {
    background: linear-gradient(135deg, var(--gold-color), var(--primary-color));
    transform: scale(1.05);
}

.category-toggle-icon {
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    transform: rotate(0deg);
}

.meal-category-header.active .category-toggle-icon {
    transform: rotate(180deg);
    color: var(--gold-color);
}

.meal-category-content {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, var(--warm-white));
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    border-top: 1px solid #e9ecef;
}

.meal-category-content.active {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--warm-white), #f8f9fa);
}

.meal-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    animation: fadeInUp 0.5s ease-out;
}

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

.meal-item {
    background: linear-gradient(135deg, var(--warm-white), white);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.25rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-light);
}

.meal-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, white, var(--cream-color));
}

.meal-item.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f8ff, #e3f2fd);
    box-shadow: 0 6px 20px rgba(212, 129, 58, 0.25);
    transform: translateY(-2px);
}

.meal-item.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
    border-radius: 12px 12px 0 0;
}

.meal-item.selected::after {
    content: '✓';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--gold-color));
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 5;
    box-shadow: var(--shadow-light);
    animation: checkmarkPulse 0.3s ease-out;
}

@keyframes checkmarkPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.meal-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.meal-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.meal-item-info {
    flex: 1;
}

.meal-item-name {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    line-height: 1.3;
}

.meal-item-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    font-style: italic;
}

.meal-item-price {
    color: var(--primary-color) !important;
    font-weight: bold;
    font-size: 1.2rem;
    white-space: nowrap;
    font-family: var(--font-primary);
}

.meal-item-price-range {
    color: var(--primary-color) !important;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-align: right;
    margin-left: 16px;
    transition: color 0.2s;
}

.meal-item:hover .meal-item-name {
    color: var(--primary-color);
}

.meal-item:hover .meal-item-price,
.meal-item:hover .meal-item-price-range {
    color: var(--gold-color);
}

.meal-summary {
    background: linear-gradient(135deg, var(--cream-color), #f0f8ff);
    border: 2px solid var(--primary-color);
    border-radius: 18px;
    padding: 2rem;
    margin-top: 2.5rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.meal-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
}

.meal-summary h4 {
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-weight: 600;
}

.selected-meals-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.selected-meal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, white, var(--warm-white));
    border-radius: 12px;
    border: 1px solid #e9ecef;
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
}

.selected-meal-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
    transform: translateX(5px);
}

.selected-meal-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.selected-meal-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: var(--font-primary);
}

.selected-meal-category {
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.selected-meal-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    font-family: var(--font-primary);
}

.meal-total {
    display: flex;
    justify-content: flex-end;
    padding-top: 1.5rem;
    border-top: 2px solid var(--primary-color);
    margin-top: 1.5rem;
    align-items: center;
    gap: 1rem;
}

.meal-total span {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
}

.meal-total strong {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: bold;
    font-family: var(--font-primary);
}

/* Mobile Responsiveness for Meal Selection */
@media (max-width: 768px) {
    .meal-sections {
        gap: 1.5rem;
    }
    
    .meal-section {
        padding: 1rem;
    }
    
    .meal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .meal-category-header {
        padding: 0.75rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .category-info {
        width: 100%;
        justify-content: space-between;
    }
    
    .category-toggle-icon {
        align-self: flex-end;
    }
    
    .meal-category-content {
        padding: 1rem;
    }
    
    .meal-items {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .meal-item {
        padding: 0.75rem;
    }
    
    .meal-item-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .meal-item-price {
        align-self: flex-end;
    }
    
    .meal-summary {
        padding: 1rem;
    }
    
    .selected-meal-item {
        padding: 0.5rem;
    }
    
    .selected-meal-name {
        font-size: 0.9rem;
    }
    
    .selected-meal-category {
        font-size: 0.75rem;
    }
    
    .selected-meal-price {
        font-size: 0.9rem;
    }
}

/* Enhanced Room Combination Styles */
.combination-description {
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #b8860b;
}

.combination-description p {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 0.95em;
}

.twin-room-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 500;
}

.room-allocation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 8px;
}

.room-allocation-item.twin-room {
    background: rgba(52, 152, 219, 0.1);
    border-left: 3px solid #3498db;
}

.room-allocation-item .occupancy {
    font-weight: 500;
    color: #2c3e50;
}

.room-allocation-item .room-type {
    color: #7f8c8d;
    font-size: 0.9em;
}

.room-inventory-info {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.room-inventory-info h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.1em;
}

.room-inventory-info ul {
    margin: 0;
    padding-left: 20px;
}

.room-inventory-info li {
    margin-bottom: 5px;
    color: #5d6d7e;
}

.twin-room-tag {
    background: rgba(52, 152, 219, 0.9) !important;
}

/* Enhanced Room Card Styles */
.room-card.recommended {
    border-color: #27ae60;
    background: linear-gradient(135deg, #f0fff4 0%, #e8f8ec 100%);
}

.room-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.room-badge.twin-room {
    background: rgba(52, 152, 219, 0.9);
}

.recommended-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(39, 174, 96, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 500;
}

.unavailable-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9em;
}

/* Room type distinction */
.allocation-room-card[data-room-type="twin"] {
    border-left: 4px solid #3498db;
}

.allocation-room-card[data-room-type="twin"] .room-badge {
    background: rgba(52, 152, 219, 0.9);
}

/* Mobile responsive enhancements */
@media (max-width: 768px) {
    .combination-description {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .room-allocation-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .room-allocation-item .room-type {
        font-size: 0.8em;
    }
    
    .twin-room-indicator {
        font-size: 0.8em;
        padding: 3px 6px;
    }
    
    .recommended-badge,
    .unavailable-badge {
        font-size: 0.75em;
        padding: 3px 6px;
    }
}

/* New Room Selection Interface */
.room-selection-card {
    background: white;
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.room-selection-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.room-selection-header h4 {
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.room-selection-header p {
    color: #7f8c8d;
    margin: 0;
    font-size: 1em;
}

.room-type-selectors {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.room-type-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.room-type-selector:hover {
    border-color: #b8860b;
    background: #faf8f0;
}

.room-type-info {
    flex: 1;
}

.room-type-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.room-type-title i {
    color: #b8860b;
    font-size: 1.1em;
}

.room-type-title span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1em;
}

.room-type-details {
    color: #7f8c8d;
    font-size: 0.9em;
}

.room-names {
    font-weight: 500;
    color: #5d6d7e;
}

/* Guest Distribution Styles */
.guest-distribution-section {
    margin: 24px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.distribution-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dee2e6;
}

.distribution-header h4 {
    color: #2c3e50;
    margin: 0 0 4px 0;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.distribution-header p {
    color: #7f8c8d;
    margin: 0;
    font-size: 0.9em;
}

.distribution-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.room-distribution-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.room-distribution-card:hover {
    border-color: #b8860b;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.1);
}

.room-distribution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f3f4;
}

.room-distribution-header h5 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-type-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: 500;
    text-transform: uppercase;
}

.room-type-badge.double {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.room-type-badge.triple {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

.room-type-badge.twin {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.guest-counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 12px;
}

.guest-counter {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guest-counter label {
    font-weight: 500;
    color: #34495e;
    font-size: 0.9em;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.counter-btn.small {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    font-size: 1em;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-occupancy-display {
    text-align: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.occupancy-type {
    font-weight: 500;
    font-size: 0.9em;
}

.occupancy-type.empty {
    color: #adb5bd;
}

.occupancy-type.single {
    color: #e74c3c;
}

.occupancy-type.single_child {
    color: #e67e22;
}

.occupancy-type.double {
    color: #3498db;
}

.occupancy-type.double_child {
    color: #2980b9;
}

.occupancy-type.triple {
    color: #27ae60;
}

.occupancy-type.custom {
    color: #8e44ad;
}

.distribution-summary {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 16px;
}

.distribution-totals {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 16px;
}

.distributed-count,
.remaining-count {
    font-size: 0.9em;
}

.distributed-count.complete {
    color: #27ae60;
}

.remaining-count {
    color: #e74c3c;
}

.distribution-status {
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.distribution-status.complete {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.distribution-status.incomplete {
    background: rgba(241, 196, 15, 0.1);
    color: #f39c12;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

/* Mobile responsive for guest distribution */
@media (max-width: 768px) {
    .guest-counters {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .distribution-totals {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .room-distribution-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.room-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.room-counter .counter-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 2px solid #b8860b;
    background: white;
    color: #b8860b;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-counter .counter-btn:hover:not(:disabled) {
    background: #b8860b;
    color: white;
    transform: scale(1.05);
}

.room-counter .counter-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.room-counter .counter-value {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
    min-width: 24px;
    text-align: center;
}

.room-selection-summary {
    background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.total-rooms {
    color: #2c3e50;
    font-size: 1.1em;
}

.capacity-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.capacity-check.valid {
    color: #27ae60;
}

.capacity-check.invalid {
    color: #e74c3c;
}

.capacity-check i {
    font-size: 1.1em;
}

.estimated-price {
    color: #b8860b;
    font-weight: 600;
    font-size: 1.1em;
}

.validation-message {
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 500;
}

.validation-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.validation-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Pre-assigned room styles */
.room-allocation-section.pre-assigned {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(52, 152, 219, 0.1) 100%);
    border: 2px solid rgba(52, 152, 219, 0.3);
}

.pre-assigned-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #3498db;
    font-weight: 500;
    font-size: 0.9em;
}

.pre-assigned-badge i {
    color: #27ae60;
}

.pre-assigned-room-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(52, 152, 219, 0.2);
    margin-top: 12px;
}

.auto-assigned-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 6px;
    color: #2980b9;
    font-size: 0.9em;
}

.auto-assigned-note i {
    color: #3498db;
}

.selection-status {
    color: #7f8c8d;
    font-size: 0.9em;
    font-style: italic;
}

/* Mobile responsive for room selection */
@media (max-width: 768px) {
    .room-selection-card {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .room-type-selector {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px;
    }
    
    .room-counter {
        justify-content: center;
    }
    
    .summary-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 8px;
    }
    
    .pre-assigned-room-card {
        flex-direction: column;
        gap: 12px;
    }
    
    .room-selection-header h4 {
        font-size: 1.2em;
    }
}

/* Loading and error states for room cards */
.loading-rooms, .error-loading-rooms {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 2rem;
    text-align: center;
    color: #666;
    font-style: italic;
}

.loading-rooms {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
}

.error-loading-rooms {
    background-color: #fff5f5;
    border: 2px dashed #fed7d7;
    border-radius: 8px;
    color: #c53030;
}

.loading-rooms::before {
    content: "⏳ ";
    margin-right: 0.5rem;
}

.error-loading-rooms::before {
    content: "⚠️ ";
    margin-right: 0.5rem;
}

/* Review Badges and Styling */
.testimonial {
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
}

.source-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.website-review {
    border-left: 4px solid #28a745;
}

.booking-review {
    border-left: 4px solid #d4813a;
}

.review-room {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-room i {
    color: var(--primary-color);
}

/* Mobile responsiveness for badges */
@media (max-width: 768px) {
    .featured-badge,
    .source-badge {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .featured-badge {
        top: 5px;
        right: 5px;
    }
    
    .source-badge {
        top: 5px;
        left: 5px;
    }
}

/* Enhanced Responsive Design */

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }
    
    .nav-logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-image {
        height: 80px;
        max-width: 200px;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        width: 80%;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1000;
    }
    
    .hamburger span {
        width: 100%;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .language-selector {
        gap: 0.5rem;
    }
    
    .language-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Enhanced Mobile Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Enhanced Mobile Hero Section */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 2rem 1rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
        text-align: center;
    }
}

/* Enhanced Mobile About Section */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature {
        padding: 1rem;
        text-align: center;
    }
}

/* Enhanced Mobile Rooms Section */
@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .room-card {
        margin: 0;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-amenities {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .common-amenities {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Enhanced Mobile Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
}

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

/* Enhanced Mobile Experiences Section */
@media (max-width: 768px) {
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
}

/* Enhanced Mobile Booking Section */
@media (max-width: 768px) {
    .booking-container-fluid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .booking-main {
        order: 2;
        width: 100%;
    }
    
    .booking-sidebar-fluid {
        order: 1;
        position: static;
        width: 100%;
        max-width: none;
        margin-bottom: 2rem;
    }
    
    .booking-steps-progress {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .step {
        flex: 1;
        min-width: 120px;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .booking-step {
        padding: 1.5rem;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .date-picker-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .date-separator {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .guests-selector {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .guest-counter {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        border: 1px solid var(--gray-300);
        border-radius: 8px;
    }
    
    .counter-controls {
        gap: 1rem;
    }
    
    .counter-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .input-group {
        width: 100%;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-step {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }
}

/* Enhanced Mobile Contact Section */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Enhanced Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Enhanced Mobile Comments Section */
@media (max-width: 768px) {
    .comment-form-container {
        padding: 1.5rem;
    }
    
    .comment-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stars-container {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .stars-container i {
        font-size: 1.5rem;
    }
    
    .user-comments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .user-comment {
        padding: 1.5rem;
    }
}

/* Enhanced Mobile Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 20px auto;
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .booking-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .highlight-item {
        text-align: center;
    }
}

/* Enhanced Mobile Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        height: auto;
        max-height: 90vh;
    }
    
    .lightbox-content img {
        max-width: 100%;
        max-height: 70vh;
        object-fit: contain;
    }
    
    .lightbox-nav button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .close-lightbox {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Enhanced Mobile Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .enhanced-review {
        padding: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .review-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Enhanced Mobile Booking Form Specific */
@media (max-width: 768px) {
    .direct-booking-banner {
        padding: 1rem;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .banner-icon {
        font-size: 2rem;
    }
    
    .banner-text h4 {
        font-size: 1.2rem;
    }
    
    .banner-text p {
        font-size: 0.9rem;
    }
    
    .savings-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .room-requirements {
        margin-bottom: 2rem;
    }
    
    .requirements-card {
        padding: 1.5rem;
    }
    
    .combination-card {
        padding: 1.5rem;
    }
    
    .combination-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .room-allocation-section {
        padding: 1.5rem;
    }
    
    .allocation-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .room-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guest-distribution {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Enhanced Mobile Meal Selection */
@media (max-width: 768px) {
    .meal-sections {
        flex-direction: column;
        gap: 2rem;
    }
    
    .meal-section {
        padding: 1.5rem;
    }
    
    .meal-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .meal-category-header {
        padding: 1rem;
    }
    
    .category-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .meal-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .meal-item {
        padding: 1rem;
    }
    
    .meal-item-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .meal-summary {
        padding: 1.5rem;
    }
    
    .selected-meal-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Enhanced Mobile Admin Panel */
@media (max-width: 768px) {
    .admin-dashboard {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr;
    }
    
    .admin-nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .nav-btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .availability-content {
        padding: 1rem;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.5rem;
    }
    
    .calendar-day {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .settings-container {
        padding: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px auto;
        padding: 1.5rem;
    }
}

/* Enhanced Mobile Tables */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .menu-items-table {
        min-width: 600px;
    }
    
    .menu-items-table th,
    .menu-items-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .menu-item-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .menu-item-actions button {
        width: 100%;
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* Enhanced Mobile Forms */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* Enhanced Mobile Touch Targets */
@media (max-width: 768px) {
    button,
    .btn,
    .nav-link,
    .language-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .counter-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .calendar-day {
        min-height: 44px;
        min-width: 44px;
    }
    
    .gallery-item {
        cursor: pointer;
    }
    
    .gallery-item:hover {
        transform: none;
    }
    
    .gallery-item:active {
        transform: scale(0.98);
    }
}

/* Enhanced Mobile Loading States */
@media (max-width: 768px) {
    .loading-spinner {
        width: 40px;
        height: 40px;
    }
    
    .loading-spinner i {
        font-size: 1.5rem;
    }
}

/* Enhanced Mobile Notifications */
@media (max-width: 768px) {
    .notification-toast {
        width: 95%;
        left: 2.5%;
        right: 2.5%;
        font-size: 0.9rem;
        padding: 1rem;
    }
}

/* Enhanced Mobile Accessibility */
@media (max-width: 768px) {
    /* Improve focus indicators for mobile */
    .nav-link:focus,
    .btn:focus,
    button:focus,
    input:focus,
    textarea:focus,
    select:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Improve contrast for better readability */
    .text-light {
        color: var(--gray-700) !important;
    }
    
    /* Ensure sufficient color contrast */
    .btn-secondary {
        color: var(--primary-color);
        border-color: var(--primary-color);
        background: white;
    }
    
    .btn-secondary:hover {
        background: var(--primary-color);
        color: white;
    }
}

/* Enhanced Mobile Performance */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .gallery-item img,
    .room-image img,
    .about-image img {
        transition: transform 0.2s ease;
    }
    
    .gallery-item:hover img,
    .room-card:hover .room-image img,
    .about-image:hover img {
        transform: none;
    }
    
    /* Optimize for mobile scrolling */
    .hero,
    .about,
    .rooms,
    .gallery,
    .experiences,
    .booking,
    .testimonials,
    .contact {
        scroll-margin-top: 60px;
    }
}

/* Enhanced Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
    }
    
    .nav-menu {
        max-height: 60vh;
        overflow-y: auto;
    }
    
    .modal-content {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Enhanced Mobile Portrait */
@media (max-width: 768px) and (orientation: portrait) {
    .hero {
        min-height: 90vh;
    }
    
    .booking-container-fluid {
        padding: 1rem;
    }
}

/* Enhanced Mobile Small Screens */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .booking-step {
        padding: 1rem;
    }
    
    .step-header {
        padding: 1rem;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    .comment-form-container {
        padding: 1rem;
    }
}

/* Enhanced Mobile Large Screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .booking-container-fluid {
        gap: 2rem;
    }
    
    .booking-sidebar-fluid {
        max-width: 350px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Enhanced Mobile Print Styles */
@media print {
    .navbar,
    .hamburger,
    .language-selector,
    .booking-sidebar-fluid,
    .step-navigation,
    .modal,
    .lightbox {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .booking-main {
        order: 1;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .section-title,
    .hero-title {
        color: black !important;
    }
    
    .btn-primary,
    .btn-secondary {
        border: 1px solid black;
        color: black;
        background: white;
    }
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateX(5px);
    }

    .hamburger {
        display: block;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

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

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

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

    .language-selector {
        margin-left: 5px;
    }

    .language-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .language-dropdown {
        min-width: 160px;
        right: -10px;
    }
    
    .language-option {
        padding: 10px 12px;
    }
    
    .language-code {
        min-width: 25px;
    }
}

/* Enhanced Mobile Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
}

/* Enhanced Mobile Hero Section */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 2rem 1rem;
    }

    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }

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

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 50px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
}

/* Enhanced Mobile About Section */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        order: 2;
    }

    .about-image {
        order: 1;
        margin-bottom: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature {
        padding: 1rem;
        border-radius: 12px;
        text-align: center;
    }
}

/* Enhanced Mobile Rooms Section */
@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-card {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--shadow-medium);
    }

    .room-content {
        padding: 1.5rem;
    }

    .room-amenities {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .common-amenities {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Enhanced Mobile Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        border-radius: 12px;
        overflow: hidden;
    }
}

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

/* Enhanced Mobile Experiences Section */
@media (max-width: 768px) {
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-card {
        padding: 1.5rem;
        border-radius: 16px;
        text-align: center;
    }
}

/* Enhanced Mobile Booking Section */
@media (max-width: 768px) {
    .booking-container-fluid {
        padding: 1rem;
    }

    .booking-main {
        padding: 1rem;
    }

    .booking-sidebar-fluid {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: white;
        border-top: 2px solid var(--primary-color);
        padding: 1rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        max-height: 60vh;
        overflow-y: auto;
    }

    .booking-steps-progress {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .step {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    .step-label {
        font-size: 0.9rem;
    }

    .booking-step {
        padding: 1rem;
    }

    .step-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .date-picker-group {
        flex-direction: column;
        gap: 1rem;
    }

    .date-separator {
        display: none;
    }

    .guests-selector {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .guest-counter {
        padding: 1rem;
        border-radius: 12px;
    }

    .counter-controls {
        gap: 1rem;
    }

    .counter-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 1.2rem;
    }

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

    .input-group {
        margin-bottom: 1rem;
    }

    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-step {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }
}

/* Enhanced Mobile Contact Section */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Enhanced Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-links {
        justify-content: center;
        gap: 1rem;
    }
}

/* Enhanced Mobile Comments Section */
@media (max-width: 768px) {
    .comment-form-container {
        padding: 1rem;
    }

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

    .stars-container {
        justify-content: center;
        gap: 0.5rem;
    }

    .stars-container i {
        font-size: 1.5rem;
    }

    .user-comments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .user-comment {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .user-comment-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .user-comment-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Enhanced Mobile Modals */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
        max-width: calc(100vw - 2rem);
        max-height: calc(100vh - 2rem);
        border-radius: 16px;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .booking-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-item {
        padding: 1rem;
        border-radius: 12px;
    }
}

/* Enhanced Mobile Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        margin: 1rem;
        max-width: calc(100vw - 2rem);
        max-height: calc(100vh - 2rem);
    }

    .lightbox-content img {
        max-height: 70vh;
        object-fit: contain;
    }

    .lightbox-nav button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .close-lightbox {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* Enhanced Mobile Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .enhanced-review {
        padding: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .review-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .review-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Enhanced Mobile Booking Banner */
@media (max-width: 768px) {
    .direct-booking-banner {
        padding: 1.5rem 1rem;
        border-radius: 16px;
        margin: 1rem;
    }

    .banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .banner-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .banner-text h4 {
        font-size: 1.3rem;
    }

    .banner-text h4 #discount-percentage-display {
        font-size: 1.5rem;
    }

    .banner-text p {
        font-size: 0.9rem;
    }

    .savings-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Enhanced Mobile Room Requirements */
@media (max-width: 768px) {
    .requirements-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .combination-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .combination-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .room-allocation-section {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .allocation-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .allocation-header h5 {
        font-size: 1.1rem;
    }

    .room-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .guest-distribution {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .guest-distribution span {
        font-size: 0.9rem;
    }
}

/* Enhanced Mobile Meal Selection */
@media (max-width: 768px) {
    .meal-sections {
        gap: 1.5rem;
    }

    .meal-section {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .meal-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .meal-category-header {
        padding: 1rem;
        border-radius: 12px;
    }

    .category-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .meal-category-content {
        padding: 1rem;
    }

    .meal-items {
        gap: 1rem;
    }

    .meal-item {
        padding: 1rem;
        border-radius: 12px;
    }

    .meal-item-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .meal-summary {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .selected-meal-item {
        padding: 1rem;
        border-radius: 12px;
    }
}

/* Enhanced Touch Interactions */
@media (hover: none) and (pointer: coarse) {
    .lightbox-content img {
        max-width: 100%;
        height: auto;
    }

    .lightbox-nav button {
        min-width: 60px;
        min-height: 60px;
    }

    .lightbox-nav button:active {
        transform: scale(0.95);
    }

    .close-lightbox {
        min-width: 50px;
        min-height: 50px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }
}

/* Enhanced Mobile Room Selection */
@media (max-width: 768px) {
    .room-selection-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .room-type-selector {
        padding: 1rem;
        border-radius: 12px;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .room-counter {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .summary-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .pre-assigned-room-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .room-selection-header h4 {
        font-size: 1.2rem;
        text-align: center;
    }
}

/* Enhanced Mobile Loading States */
@media (max-width: 768px) {
    .loading-rooms, .error-loading-rooms {
        padding: 2rem 1rem;
        text-align: center;
        border-radius: 12px;
    }
}

/* Enhanced Mobile Testimonials */
@media (max-width: 768px) {
    .testimonial {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .featured-badge {
        padding: 0.25rem 0.75rem;
        font-size: 0.7rem;
        border-radius: 12px;
    }

    .source-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        border-radius: 8px;
    }
}

/* Enhanced Mobile Navigation Focus States */
@media (max-width: 768px) {
    .nav-link:focus,
    .hamburger:focus,
    .language-btn:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
        border-radius: 6px;
    }

    .text-light {
        color: var(--text-light) !important;
    }

    .btn-secondary {
        background: transparent !important;
        color: var(--primary-color) !important;
        border: 2px solid var(--primary-color) !important;
    }

    .btn-secondary:hover {
        background: var(--primary-color) !important;
        color: white !important;
    }
}

/* Enhanced Mobile Gallery Interactions */
@media (max-width: 768px) {
    .gallery-item img,
    .gallery-item:hover img {
        transition: transform 0.3s ease;
    }

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

    .hero,
    .about,
    .rooms,
    .gallery,
    .experiences,
    .testimonials,
    .contact,
    .booking {
        padding: 3rem 1rem;
    }
}

/* Enhanced Mobile Landscape Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
    }

    .nav-menu {
        max-height: 60vh;
        overflow-y: auto;
    }

    .modal-content {
        max-height: 80vh;
        overflow-y: auto;
    }

    .booking-modal {
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Enhanced Mobile Portrait Orientation */
@media (max-width: 768px) and (orientation: portrait) {
    .hero {
        min-height: 80vh;
    }

    .booking-container-fluid {
        padding: 1rem;
        margin: 0;
    }
}

/* Enhanced Mobile Small Screens */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .booking-step {
        padding: 1rem;
    }

    .step-header {
        padding: 1rem;
    }

    .step-content {
        padding: 1rem;
    }

    .modal-content {
        margin: 0.5rem;
        border-radius: 12px;
    }

    .comment-form-container {
        padding: 1rem;
        margin: 1rem;
    }
}

/* Enhanced Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .booking-container-fluid {
        padding: 2rem;
    }

    .booking-sidebar-fluid {
        width: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Enhanced Print Styles */
@media print {
    .navbar,
    .hamburger,
    .language-selector,
    .scroll-indicator,
    .booking-sidebar-fluid,
    .modal,
    .lightbox {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .booking-main {
        width: 100% !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .section-title,
    .hero-title {
        color: black !important;
    }

    .btn-primary,
    .btn-secondary {
        border: 1px solid black !important;
        color: black !important;
        background: white !important;
    }
}

/* Menu Section Styles */
.menu-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--warm-white), var(--cream-color));
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color), var(--accent-color));
}

.menu-section::after {
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4813a" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23cd853f" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23daa520" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    opacity: 0.5;
}

.menu-section .section-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
    font-family: var(--font-primary);
}

.menu-section .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.menu-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--warm-white), white);
    border: 2px solid #e9ecef;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
    color: var(--text-light);
    box-shadow: var(--shadow-light);
    font-family: var(--font-primary);
}

.menu-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, white, var(--cream-color));
}

.menu-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-medium);
    transform: translateY(-1px);
}

.menu-tab i {
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.menu-tab:hover i {
    transform: scale(1.1);
}

/* Menu Content */
.menu-content {
    max-width: 1200px;
    margin: 0 auto;
}

.meal-menu {
    display: none;
}

.meal-menu.active {
    display: block;
}

/* Menu Categories */
.menu-categories {
    display: grid;
    gap: 30px;
}

.meal-category {
    background: linear-gradient(135deg, var(--warm-white), white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border: 2px solid #e9ecef;
}

.meal-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.meal-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.meal-category-header:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold-color) 100%);
}

.meal-category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-color), var(--primary-color));
    opacity: 0;
    transition: var(--transition-smooth);
}

.meal-category-header:hover::before {
    opacity: 1;
}

.category-info h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-info h5 i {
    font-size: 1rem;
}

.category-count {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
    display: block;
}

.category-toggle-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.meal-category-header.active .category-toggle-icon {
    transform: rotate(180deg);
}

/* Menu Items */
.meal-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.meal-category-content.active {
    max-height: 1000px;
}

.meal-items {
    padding: 20px 25px;
}

.meal-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f3f4;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.meal-item:last-child {
    border-bottom: none;
}

.meal-item:hover {
    background: #f8f9fa;
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
}

.meal-item input[type="checkbox"] {
    margin-right: 15px;
    transform: scale(1.2);
    accent-color: #007bff;
}

.meal-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.meal-item-info {
    flex: 1;
}

.meal-item-name {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.meal-item-description {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.meal-item-price {
    font-weight: 600;
    color: #007bff;
    font-size: 1.1rem;
}

.meal-item-price-range {
    font-weight: 600;
    color: #007bff;
    font-size: 1rem;
    text-align: right;
}

/* Menu Footer */
.menu-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.menu-note {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.menu-note i {
    color: #007bff;
}

/* Portion Modal Styles */
.portion-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.portion-modal {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.portion-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f4;
}

.portion-modal-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
}

.portion-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.portion-modal-close:hover {
    background: #f8f9fa;
    color: #dc3545;
}

.portion-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.portion-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portion-option:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.portion-option.selected {
    border-color: #007bff;
    background: #e3f2fd;
}

.portion-info {
    flex: 1;
}

.portion-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.portion-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.portion-price {
    font-weight: 600;
    color: #007bff;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .menu-tab {
        width: 200px;
        justify-content: center;
    }
    
    .meal-category-header {
        padding: 15px 20px;
    }
    
    .meal-items {
        padding: 15px 20px;
    }
    
    .meal-item-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .meal-item-price,
    .meal-item-price-range {
        align-self: flex-end;
    }
    
    .portion-modal {
        margin: 20px;
        padding: 20px;
    }
    
    /* Enhanced mobile menu styles */
    .menu-section {
        padding: 40px 0;
    }
    
    .menu-section .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .menu-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .meal-category {
        margin-bottom: 15px;
    }
    
    .meal-item {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .meal-item-name {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .meal-item-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .meal-item-price {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .category-info h5 {
        font-size: 1.2rem;
    }
    
    .category-count {
        font-size: 0.9rem;
    }
    
    /* Improved touch targets for mobile */
    .meal-item {
        min-height: 60px;
    }
    
    .meal-item input[type="checkbox"] {
        min-width: 20px;
        min-height: 20px;
    }
    
    .category-toggle-icon {
        min-width: 24px;
        min-height: 24px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .menu-tabs {
        gap: 10px;
    }
    
    .menu-tab {
        width: 100%;
        max-width: 250px;
        padding: 12px 15px;
    }
    
    .meal-category-header {
        padding: 12px 15px;
    }
    
    .meal-items {
        padding: 12px 15px;
    }
    
    .meal-item {
        padding: 12px;
    }
    
    .meal-item-name {
        font-size: 1rem;
    }
    
    .meal-item-description {
        font-size: 0.85rem;
    }
    
    .meal-item-price {
        font-size: 1rem;
    }
    
    .category-info h5 {
        font-size: 1.1rem;
    }
    
    .portion-modal {
        margin: 10px;
        padding: 15px;
    }
}

/* Language-specific adjustments */
[lang="fr"] .menu-section .section-title {
    font-size: 2.3rem;
}

[lang="fr"] .menu-tab span {
    font-size: 0.95rem;
}

/* Loading states */
.menu-categories.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-categories.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border: 4px solid var(--cream-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: var(--shadow-light);
}

.menu-categories.loading::before {
    content: 'Loading menu...';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 1rem;
    font-style: italic;
    margin-top: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* More space inside and between meal items */
.meal-item {
    padding: 28px 32px !important;
    margin-bottom: 24px !important;
}

/* Match font to .price-line.total for meal names and categories */
.meal-item-name,
.meal-category-header {
    font-family: var(--font-primary) !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.5px;
    color: var(--primary-color) !important;
}

.category-info {
    font-family: var(--font-secondary), 'Inter', sans-serif !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    color: var(--primary-color) !important;
    letter-spacing: 0.5px;
}

/* Ensure meal list is never cut off and all items are visible */
.meal-category-content,
.meal-category-content.active,
.meal-items,
.menu-categories,
.meal-menu,
.menu-content,
.menu-section {
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
}

/* Attractions Section */
.attractions {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--cream-color) 0%, var(--warm-white) 100%);
}

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

.attraction-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    position: relative;
}

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

.attraction-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* Specific image positioning for certain attractions */
.attraction-card:nth-child(1) .attraction-image img {
    object-position: center 0%;
}

.attraction-card:nth-child(5) .attraction-image img {
    object-position: center 25%;
}

.attraction-card:nth-child(6) .attraction-image img {
    object-position: center 35%;
}

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

.attraction-content {
    padding: 1.5rem;
}

.attraction-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.attraction-overview {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.attraction-highlights {
    list-style: none;
    margin-bottom: 1.5rem;
}

.attraction-highlights li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.attraction-highlights li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    min-width: 16px;
}

.attraction-highlights li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.attraction-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-map, .btn-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-map {
    background: var(--primary-color);
    color: white;
}

.btn-map:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.btn-info {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-info:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Responsive Design for Attractions */
@media (max-width: 768px) {
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .attraction-card {
        margin-bottom: 1rem;
    }
    
    .attraction-content {
        padding: 1.25rem;
    }
    
    .attraction-content h3 {
        font-size: 1.2rem;
    }
    
    .attraction-overview {
        font-size: 0.9rem;
    }
    
    .attraction-highlights li {
        font-size: 0.85rem;
    }
    
    .attraction-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-map, .btn-info {
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .attractions-grid {
        gap: 1rem;
    }
    
    .attraction-image {
        height: 180px;
    }
    
    .attraction-content {
        padding: 1rem;
    }
    
    .attraction-content h3 {
        font-size: 1.1rem;
    }
    
    .attraction-overview {
        font-size: 0.85rem;
    }
    
    .attraction-highlights li {
        font-size: 0.8rem;
    }
}

/* Enhanced hover effects for better UX */
.attraction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

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

/* Loading state for images */
.attraction-image img[src*="placeholder"] {
    opacity: 0.7;
}

/* Accessibility improvements */
.attraction-card:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-map:focus, .btn-info:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles for attractions */
@media print {
    .attractions {
        background: white;
    }
    
    .attraction-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .attraction-links {
        display: none;
    }
}