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

/* Hero Section */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #000000;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.hero-header {
    position: fixed;
    top: 120px;
    left: 50px;
    z-index: 10;
    color: white;
}

.hero-logo {
    margin-bottom: 8px;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-style: italic;
    margin: 0;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000000;
}

.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-fallback {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
}

/* Elegant dark overlay - adds sophistication and depth to the entire page (PUBLIC PAGES ONLY) */
body:not(.admin-body)::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 999;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Navigation - Black background with grey elements */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(20px);
    z-index: 1001;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Vignette fade effect at bottom of nav - creates cloud-like blend starting right under menu */
.main-nav::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, 
        rgba(216, 217, 218, 0.95) 0%, 
        rgba(216, 217, 218, 0.7) 25%,
        rgba(216, 217, 218, 0.4) 50%,
        rgba(216, 217, 218, 0.15) 75%,
        transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-nav.nav-visible::after,
.main-nav.nav-shown::after {
    opacity: 1;
}

.main-nav.nav-visible {
    background: rgba(216, 217, 218, 0.95);
    box-shadow: none;
}

.main-nav.nav-shown {
    transform: translateY(0);
    background: rgba(216, 217, 218, 0.95);
}

.main-nav.nav-shown.nav-visible {
    background: rgba(216, 217, 218, 0.95);
    box-shadow: none;
}

.nav-container {
    display: flex;
    justify-content: center; /* Default for mobile */
    align-items: center;
    padding: 8px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(0.7);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    position: static;
    background: none;
    box-shadow: none;
    flex-direction: row;
    width: auto;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7a5b36;
    transition: width 0.3s ease;
}

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

.book-now {
    background: #7a5b36 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    display: inline-block !important;
    min-width: fit-content !important;
}

.book-now:hover {
    background: #6a4a2a !important;
    transform: translateY(-2px);
    color: white !important;
    box-shadow: 0 4px 15px rgba(122, 91, 54, 0.3);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

/* Hide hamburger menu on desktop, show navigation links */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
    }
    
    .nav-toggle {
        display: none !important;
    }
    
    /* FORCE RIGHT ALIGNMENT ON DESKTOP */
    .nav-right-align {
        justify-content: flex-end !important;
    }
    
    .nav-menu-right {
        margin-left: auto !important;
    }
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

/* First section should start after the hero */
.hero + .section,
.experience-section {
    margin-top: 100vh;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Home Section */
.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.home-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.home-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.home-card p {
    color: #666;
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    background: #d8d9da;
}

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

/* Force desktop experience grid to show 3 columns */
.experience-grid.desktop-only {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
}

.experience-item {
    background: white;
    border: 2px solid #b8b9ba;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    border-color: #a8a9aa;
}

.experience-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.experience-content {
    padding: 30px;
    background: transparent;
}

.experience-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #333;
}

.experience-content h4 {
    color: #7a5b36;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
}

.experience-content p {
    color: #666;
    line-height: 1.6;
}

/* Spa Section */
.spa-section {
    background: #f0fdf4;
}

.spa-section .section-header h2,
.spa-section .section-header p {
    color: #333;
}

.spa-section .spa-text {
    color: #333;
}

.spa-section .spa-text h3 {
    color: #333;
}

.spa-section .spa-text p {
    color: #555;
}

.spa-section .spa-features li {
    color: #555;
}

.spa-section .btn-primary {
    background: #6ec589;
    color: #fff;
    border: 2px solid #6ec589;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.spa-section .btn-primary:hover {
    background: #5ab372;
    border-color: #5ab372;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(110, 197, 137, 0.3);
}

.spa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spa-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.spa-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.spa-features {
    list-style: none;
    margin-bottom: 30px;
}

.spa-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.spa-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7a5b36;
    font-weight: bold;
}

.spa-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Restaurant Section */
.restaurant-section {
    background: #f5f5f6;
}

.restaurant-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.restaurant-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.restaurant-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.restaurant-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.restaurant-features {
    list-style: none;
    margin-bottom: 30px;
}

.restaurant-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.restaurant-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8a8b8c;
    font-weight: bold;
}

.restaurant-section .btn-primary {
    background: #8a8b8c;
    color: #fff;
    border: 2px solid #8a8b8c;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.restaurant-section .btn-primary:hover {
    background: #8a8b8c;
    border-color: #8a8b8c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 139, 140, 0.3);
}

/* Weddings Section */
.weddings-section {
    background: #fdf8ed;
}

.weddings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.weddings-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.weddings-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.wedding-packages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.package {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.package h4 {
    color: #7a5b36;
    margin-bottom: 10px;
}

.package p {
    font-size: 0.9rem;
    color: #666;
}

.weddings-image {
    position: relative;
}

.weddings-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.wedding-action {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.wedding-action .btn,
.weddings-section .btn-primary {
    background: #dbb57a !important;
    color: white !important;
    border: 2px solid #dbb57a !important;
    padding: 12px 30px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.wedding-action .btn:hover,
.weddings-section .btn-primary:hover {
    background: #cc9f66 !important;
    border-color: #cc9f66 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(219, 181, 122, 0.3);
}

/* Events Section */
.events-section {
    background: #edf5fd;
}

.events-section .section-header h2,
.events-section .section-header p {
    color: #333;
}

.events-section .btn-primary {
    background: #7aabdb;
    color: #fff;
    border: 2px solid #7aabdb;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.events-section .btn-primary:hover {
    background: #7aabdb;
    border-color: #7aabdb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 171, 219, 0.3);
}

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

.events-enquiry {
    text-align: center;
    margin-top: 40px;
}

.events-enquiry .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.event-card {
    background: #e3f0fc;
    border: 2px solid #7aabdb;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: #6699cc;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.event-content {
    padding: 30px;
    background: #daeaf9;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.event-content p {
    color: #555;
    line-height: 1.6;
    min-height: 75px;
    flex: 1;
    margin-bottom: 20px;
}

.events-section .show-more-btn {
    margin-top: auto;
    align-self: stretch;
    background: #7aabdb;
    color: white;
    border: 2px solid #7aabdb;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.events-section .show-more-btn:hover {
    background: #6699cc;
    border-color: #6699cc;
    transform: translateY(-2px);
}

/* Rooms Section */
.rooms-section {
    background: #fdf8ed;
}

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

.room-card {
    background: #fcf3e3;
    border: 2px solid #dbb57a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-5px);
    border-color: #cc9f66;
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
}

.room-content {
    padding: 30px;
    background: #f9edda;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    min-height: 3.6rem;
    display: flex;
    align-items: center;
}

.room-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.rooms-section .show-more-btn {
    margin-top: auto;
    align-self: stretch;
    background: #dbb57a;
    color: white;
    border: 2px solid #dbb57a;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.rooms-section .show-more-btn:hover {
    background: #cc9f66;
    border-color: #cc9f66;
    transform: translateY(-2px);
}

/* Specials Section */
.specials-section {
    background: #f5f5f6;
    padding: 80px 0;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    align-items: stretch;
}

.special-card {
    background: #ebebec;
    border: 2px solid #8a8b8c;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #75767a;
}

/* Portrait-oriented image container */
.special-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 125%; /* 4:5 aspect ratio for portrait (1080x1350) */
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
}

.special-image-container .special-portrait-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Text overlay on images */
.special-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
    padding: 25px 20px 20px;
    display: flex;
    align-items: flex-end;
}

.special-text-overlay .overlay-text {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
}

/* Remove conflicting image styles */
.special-card > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.special-content {
    padding: 15px 20px;
    background: #e0e0e2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.special-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
    height: 2.8rem; /* Fixed height for header - accommodates 2 lines */
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.special-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
    height: 4.8rem; /* Fixed height for intro text - accommodates ~200 characters */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Ensure consistent spacing for the button area */
.special-content .show-more-btn {
    align-self: stretch;
    background: #8a8b8c;
    color: white;
    border: 2px solid #8a8b8c;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
}

.special-content .show-more-btn:hover {
    background: #75767a;
    border-color: #75767a;
    transform: translateY(-2px);
}

.special-pricing {
    background: #8a8b8c;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.special-validity {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.85rem;
    text-align: center;
}

.special-validity small {
    font-weight: 500;
}

.special-discount {
    display: inline-block;
    background: linear-gradient(135deg, #7a5b36, #6a4a2a);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    height: 2.2rem; /* Fixed height for price/offer badge */
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.per-person-indicator {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.8rem;
    margin-bottom: 15px;
    height: 1.8rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.per-person-indicator i {
    font-size: 0.7rem;
}

/* Per Person Indicator in Modal */
.per-person-indicator-modal {
    display: inline-flex;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.8rem;
    margin-left: 10px;
    height: 1.8rem;
    line-height: 1;
    align-items: center;
    justify-content: center;
    gap: 6px;
    vertical-align: middle;
    white-space: nowrap;
    flex-shrink: 0;
}

.per-person-indicator-modal i {
    font-size: 0.7rem;
}

/* Floating Booking Button */
.floating-booking-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #7a5b36;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(122, 91, 54, 0.3);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.floating-booking-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(122, 91, 54, 0.4);
}

.floating-booking-btn i {
    font-size: 1.1rem;
}

/* Main Booking Modal */
.main-booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.main-booking-modal.show {
    display: flex;
    opacity: 1;
}

.main-booking-modal .modal-content {
    background: transparent;
    border-radius: 25px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: none;
    position: relative;
    margin: 0 auto;
    text-align: left;
    border: none;
    backdrop-filter: none;
    z-index: 10001;
}

/* Modal header removed - no longer needed */

.main-booking-modal .modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.main-booking-modal .modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.main-booking-modal .modal-body {
    padding: 40px;
    margin: 0;
    text-align: center;
    position: relative;
    background: transparent;
}

.main-booking-modal .main-booking-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 100%;
    justify-items: center;
    align-items: stretch;
}

.main-booking-modal .main-booking-option {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin: 0;
    width: 100%;
    height: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-sizing: border-box;
}

.main-booking-modal .main-booking-option:hover {
    border-color: #7a5b36;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(122, 91, 54, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.main-booking-modal .main-option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7a5b36 0%, #8b6f42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(122, 91, 54, 0.3);
    transition: all 0.3s ease;
}

/* Fix icon alignment - ensure all icons are perfectly centered */
.main-booking-modal .main-option-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Icon styles simplified */

.main-booking-modal .main-booking-option:hover .main-option-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(122, 91, 54, 0.4);
}

.main-booking-modal .main-booking-option h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    text-indent: 0;
    letter-spacing: 0.5px;
}

.main-booking-modal .main-booking-option p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    text-indent: 0;
    font-weight: 400;
}

/* Responsive Main Booking Modal */
@media (max-width: 768px) {
    .main-booking-modal .main-booking-options-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .main-booking-modal .modal-body {
        padding: 30px 20px;
    }
    
/* Modal header styles removed */
    
    .main-booking-modal .main-booking-option {
        max-width: 100%;
        height: 200px;
        padding: 30px 20px;
    }
    
    .main-booking-modal .main-option-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-booking-modal .modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .main-booking-modal .modal-body {
        padding: 25px 15px;
    }
    
    .main-booking-modal .main-booking-option {
        padding: 25px 15px;
        height: 180px;
    }
}

/* Restaurant Booking Modal */
.restaurant-booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.restaurant-booking-modal {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    position: relative;
    margin: 0 auto;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.restaurant-booking-modal .modal-header {
    background: linear-gradient(135deg, #8a8b8c 0%, #75767a 100%);
    color: white;
    padding: 35px 30px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(138, 139, 140, 0.3);
}

.restaurant-booking-modal .modal-header h2 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.restaurant-booking-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.restaurant-booking-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.restaurant-booking-modal .modal-body {
    padding: 40px;
    background: #f8f9fa;
}

.restaurant-step {
    display: none;
}

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

.restaurant-booking-modal .form-group {
    margin-bottom: 25px;
}

.restaurant-booking-modal .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.restaurant-booking-modal select,
.restaurant-booking-modal input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.restaurant-booking-modal select:focus,
.restaurant-booking-modal input:focus {
    outline: none;
    border-color: #8a8b8c;
    box-shadow: 0 0 0 3px rgba(138, 139, 140, 0.1);
}

.restaurant-booking-modal .date-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.restaurant-booking-modal .date-btn {
    padding: 15px 10px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.restaurant-booking-modal .date-btn:hover {
    border-color: #8a8b8c;
    background: #f5f5f6;
}

.restaurant-booking-modal .date-btn.selected {
    border-color: #8a8b8c;
    background: #8a8b8c;
    color: white;
}

.restaurant-booking-modal .date-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.restaurant-booking-modal .date-btn .day-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.restaurant-booking-modal .date-btn .month-day {
    font-size: 0.8rem;
}

.restaurant-booking-modal .time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.restaurant-booking-modal .time-slot-btn {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.restaurant-booking-modal .time-slot-btn:hover {
    border-color: #8a8b8c;
    background: #f5f5f6;
}

.restaurant-booking-modal .time-slot-btn.available.selected {
    border-color: #8a8b8c !important;
    background: #8a8b8c !important;
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(138, 139, 140, 0.3);
}

.restaurant-booking-modal .time-slot-btn.available {
    border-color: #28a745;
    background: #d4edda;
    color: #155724;
}

.restaurant-booking-modal .time-slot-btn.available:hover {
    border-color: #1e7e34;
    background: #c3e6cb;
}

.restaurant-booking-modal .time-slot-btn.fully-booked {
    border-color: #dc3545;
    background: #f8d7da;
    color: #721c24;
    cursor: not-allowed;
    opacity: 0.7;
}

.restaurant-booking-modal .date-change-hint {
    margin-top: 15px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

.restaurant-booking-modal .modal-footer {
    padding: 30px 40px;
    background: white;
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.restaurant-booking-modal .loading {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

.restaurant-booking-modal .error {
    text-align: center;
    padding: 20px;
    color: #dc3545;
    background: #f8d7da;
    border-radius: 8px;
    margin: 10px 0;
}

.restaurant-booking-modal .no-slots {
    text-align: center;
    padding: 20px;
    color: #6c757d;
    background: #e9ecef;
    border-radius: 8px;
    margin: 10px 0;
}

/* Restaurant-specific step indicator styling */
.restaurant-booking-modal .step-indicator .step.active {
    background: #8a8b8c;
    color: white;
}

.restaurant-booking-modal .btn-primary {
    background: #8a8b8c;
    color: white;
}

.restaurant-booking-modal .btn-primary:hover:not(:disabled) {
    background: #75767a;
}

.restaurant-booking-modal .btn-secondary {
    background: #f0e8d8;
    color: #8a8b8c;
}

.restaurant-booking-modal .btn-secondary:hover {
    background: #e0d8c8;
}

/* Responsive Restaurant Booking Modal */
@media (max-width: 768px) {
    .restaurant-booking-modal {
        width: 95%;
        margin: 20px auto;
    }
    
    .restaurant-booking-modal .modal-body {
        padding: 30px 20px;
    }
    
    .restaurant-booking-modal .modal-header {
        padding: 25px 20px;
    }
    
    .restaurant-booking-modal .modal-header h2 {
        font-size: 1.8rem;
    }
    
    .restaurant-booking-modal .modal-footer {
        padding: 25px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .restaurant-booking-modal .date-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .restaurant-booking-modal .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .restaurant-booking-modal .date-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .restaurant-booking-modal .time-slots {
        grid-template-columns: 1fr;
    }
}

/* Booking Options Modal */
.booking-options-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-options-modal.show {
    display: block;
    opacity: 1;
}

.special-dates {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
    height: 3.2rem; /* Fixed height for valid period - accommodates 2 date lines */
    justify-content: center;
}

.special-dates span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.special-dates i {
    color: #7a5b36;
    font-size: 0.8rem;
}



/* Booking Action Section */
.booking-action-section {
    margin-top: 30px;
    padding: 25px;
    background: #7a5b36;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.booking-action-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.book-now-btn {
    background: white !important;
    color: #7a5b36 !important;
    border: none !important;
    padding: 15px 30px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    margin-bottom: 15px !important;
}

.book-now-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4) !important;
    background: #f8f4f0 !important;
}

.book-now-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.booking-note {
    color: white;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f4f0, #faf7f3);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 2rem;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon-clean {
    font-size: 1.5rem;
    color: #7a5b36;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 8px;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7a5b36;
}

/* Map Section */
.map-section {
    margin-top: 40px;
    text-align: center;
}

.map-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.map-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #7a5b36;
    color: white;
}

.btn-primary:hover {
    background: #6a4a2a;
    transform: translateY(-2px);
}

.blue-btn {
    background: #7a5b36;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.blue-btn:hover {
    background: #6a4a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 91, 54, 0.3);
}

.blue-btn:active {
    transform: translateY(0);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    margin: 20px auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

/* Modal Overlay - Admin Dashboard Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-overlay .modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: 0;
}

.modal-overlay .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.modal-overlay .modal-header h3 {
    margin: 0;
    color: #495057;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-overlay .modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-overlay .modal-close:hover {
    background-color: #e9ecef;
    color: #495057;
}

.modal-overlay .modal-form {
    padding: 24px;
}

.modal-overlay .form-group {
    margin-bottom: 20px;
}

.modal-overlay .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
}

.modal-overlay .form-group input,
.modal-overlay .form-group select,
.modal-overlay .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.modal-overlay .form-group input:focus,
.modal-overlay .form-group select:focus,
.modal-overlay .form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.modal-overlay .modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px 24px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.modal-overlay .admin-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-overlay .admin-btn:not(.secondary) {
    background-color: #007bff;
    color: white;
}

.modal-overlay .admin-btn:not(.secondary):hover {
    background-color: #0056b3;
}

.modal-overlay .admin-btn.secondary {
    background-color: #6c757d;
    color: white;
}

.modal-overlay .admin-btn.secondary:hover {
    background-color: #545b62;
}

/* Admin Dashboard Loading Overlay */
.admin-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.admin-loading-content {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 40px;
}

.admin-loading-logo {
    margin-bottom: 30px;
}

.admin-loading-logo .loading-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    animation: logoFloat 3s ease-in-out infinite;
}

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

.admin-loading-spinner {
    margin-bottom: 30px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

.admin-loading-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.admin-loading-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Hide loading overlay when dashboard is ready */
.admin-loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/* Special Loading Overlay (for direct special links) */
.special-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.special-loading-content {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 40px;
    position: relative;
}

.special-loading-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.special-loading-logo {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.special-loading-spinner .spinner {
    width: 120px;
    height: 120px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
}

.special-loading-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
    font-family: 'Playfair Display', serif;
}

.special-loading-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.booking-options {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.booking-option {
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-option:hover {
    border-color: #7a5b36;
    background: #f8f9fa;
}

.booking-option h3 {
    margin-bottom: 10px;
    color: #333;
}

.booking-option p {
    color: #666;
    margin: 0;
}

.booking-form {
    border-top: 2px solid #e9ecef;
    padding-top: 30px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: #ccc;
    font-size: 1.1rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #ccc;
}

.footer-contact-item i {
    margin-right: 12px;
    width: 20px;
    font-size: 1.1rem;
    color: #7a5b36;
}

.footer-contact-item div {
    flex: 1;
}

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

/* WhatsApp Icon Styling */
.whatsapp-icon-img {
    width: 60px;
    height: 60px;
    vertical-align: middle;
    margin-right: 8px;
    transition: transform 0.2s ease;
    object-fit: contain;
}

/* Special styling for WhatsApp contact icon */
.contact-icon.whatsapp-icon {
    background: transparent;
    box-shadow: none;
}

.contact-icon.whatsapp-icon:hover {
    transform: scale(1.05);
}

.whatsapp-icon-img:hover {
    transform: scale(1.1);
}

/* Footer WhatsApp icon styling */
.whatsapp-footer-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Footer contact spacing */
.footer-section p {
    margin-bottom: 8px;
}

.footer-section p:last-child {
    margin-bottom: 0;
}

/* Ensure proper spacing for email icon */
.email-contact {
    letter-spacing: 2px;
}

/* Style the email link in footer */
.email-contact a {
    color: #ccc;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.email-contact a:hover {
    opacity: 0.8;
}

/* Attractions Section */
.attractions-section {
    background: #edf5fd;
}

.attractions-section .section-header h2,
.attractions-section .section-header p {
    color: #333;
}

.attractions-section .btn-primary {
    background: #7aabdb;
    color: #fff;
    border: 2px solid #7aabdb;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.attractions-section .btn-primary:hover {
    background: #6699cc;
    border-color: #6699cc;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 171, 219, 0.3);
}

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

.attraction-card {
    background: #e3f0fc;
    border: 2px solid #7aabdb;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.attraction-card:hover {
    transform: translateY(-5px);
    border-color: #6699cc;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.attraction-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.attraction-content {
    padding: 30px;
    background: #daeaf9;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.attraction-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.attraction-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 75px;
    flex: 1;
}

.attraction-link {
    color: #7a5b36;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.attraction-link:hover {
    color: #6a4a2a;
}

.attractions-section .show-more-btn {
    margin-top: auto;
    align-self: stretch;
    background: #7aabdb;
    color: white;
    border: 2px solid #7aabdb;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.attractions-section .show-more-btn:hover {
    background: #6699cc;
    border-color: #6699cc;
    transform: translateY(-2px);
}

/* Activities Section */
.activities-section {
    background: #fdf8ed;
}

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

.activity-card {
    background: #fcf3e3;
    border: 2px solid #dbb57a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-5px);
    border-color: #cc9f66;
}

.activity-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.activity-content {
    padding: 30px;
    background: #f9edda;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.activity-card p {
    min-height: 75px;
    flex: 1;
    margin-bottom: 20px;
}

.activity-card.no-button .activity-content {
    padding-bottom: 30px;
}

.activities-section .show-more-btn {
    margin-top: auto;
    align-self: stretch;
    background: #dbb57a;
    color: white;
    border: 2px solid #dbb57a;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.activities-section .show-more-btn:hover {
    background: #cc9f66;
    border-color: #cc9f66;
    transform: translateY(-2px);
}

.activity-card.no-button .activity-content p {
    margin-bottom: 0;
}

.activity-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.activity-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Enhanced Booking Modal */
.booking-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.progress-step.active:not(:last-child)::after {
    background: #7a5b36;
}

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

.progress-step.active .step-number {
    background: #7a5b36;
    color: white;
    transform: scale(1.1);
}

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

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

.progress-step.active .step-label {
    color: #7a5b36;
    font-weight: 600;
}

/* Booking Steps */
.booking-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

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

/* Enhanced Booking Options */
.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.booking-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-option:hover {
    border-color: #7a5b36;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.booking-option.selected {
    border-color: #7a5b36;
    background: #f8f4f0;
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.option-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    text-align: left;
}

.option-features span {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.date-time-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Booking Summary */
.booking-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #333;
}

.summary-value {
    color: #7a5b36;
    font-weight: 500;
}

/* Navigation Buttons */
.booking-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
}

.terms-link {
    color: #7a5b36;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* NightsBridge Fallback Styles */
.nb-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.nb-loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #7a5b36;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.nb-fallback {
    padding: 30px;
    text-align: center;
}

.fallback-header {
    margin-bottom: 30px;
}

.fallback-header h3 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.fallback-header p {
    color: #666;
    margin: 0;
}

.fallback-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.fallback-option {
    padding: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.fallback-option:hover {
    border-color: #7a5b36;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.fallback-option h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.1rem;
}

.fallback-option p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 0.9rem;
}

.fallback-option .btn {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.fallback-footer {
    border-top: 1px solid #e1e5e9;
    padding-top: 20px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #7a5b36;
    color: #7a5b36;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #7a5b36;
    color: white;
}

/* Booking Request Modal Styles */
.booking-request-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.booking-request-modal {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.booking-request-modal .modal-header {
    background: linear-gradient(135deg, #7a5b36 0%, #6a4a2a 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-request-modal .modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.booking-request-modal .modal-header .modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.booking-request-modal .modal-header .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.booking-request-modal .modal-body {
    padding: 30px;
}

.booking-request-modal .form-group {
    margin-bottom: 20px;
}

.booking-request-modal label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.booking-request-modal input,
.booking-request-modal select,
.booking-request-modal textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.booking-request-modal input:focus,
.booking-request-modal select:focus,
.booking-request-modal textarea:focus {
    outline: none;
    border-color: #7a5b36;
    box-shadow: 0 0 0 3px rgba(122, 91, 54, 0.1);
}

.booking-request-modal textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-request-modal .form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.booking-request-modal .form-actions button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-request-modal .form-actions .btn-secondary {
    background: #6c757d;
    color: white;
}

.booking-request-modal .form-actions .btn-secondary:hover {
    background: #545b62;
}

.booking-request-modal .form-actions .btn-primary {
    background: linear-gradient(135deg, #7a5b36 0%, #6a4a2a 100%);
    color: white;
}

    .booking-request-modal .form-actions .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(122, 91, 54, 0.4);
    }

/* Responsive Fallback and Modal Styles */
@media (max-width: 768px) {
    .fallback-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .fallback-option {
        padding: 15px;
    }
    
    .booking-request-modal {
        max-width: 95%;
        margin: 10px;
    }
    
    .booking-request-modal .modal-body {
        padding: 20px;
    }
    
    .booking-request-modal .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .nb-fallback {
        padding: 20px;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .nav-link {
        color: #333;
        padding: 12px 15px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .spa-content,
    .restaurant-content,
    .weddings-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-section {
        margin-top: 30px;
    }
    
    .map-container {
        padding: 15px;
    }
    
    .home-grid,
    .events-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile experience grid - only apply to non-desktop-only grids */
    .experience-grid:not(.desktop-only) {
        grid-template-columns: 1fr;
    }
    
    .attractions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .booking-progress {
        padding: 0 10px;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .date-time-selection {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .map-container {
        padding: 10px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    /* Hero responsive */
    .hero-header {
        top: 100px;
        left: 20px;
    }
    
    .hero-logo-img {
        height: 60px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Responsive Specials Grid */
@media (max-width: 900px) {
    .specials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .specials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .specials-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .special-content {
        padding: 20px;
    }
    
    .special-content h3 {
        font-size: 1.4rem;
    }
    
    .special-discount {
        font-size: 1rem;
        padding: 6px 16px;
    }
    
    .special-cta {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* Accommodation Modal Styles */
.accommodation-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.accommodation-modal {
    background: white;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.accommodation-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
    background: #dbb57a;
    color: white;
    border-radius: 15px 15px 0 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.accommodation-modal .modal-header h2 {
    margin: 0;
    color: white;
    font-size: 1.8rem;
    flex: 1;
}

.accommodation-modal .modal-header .book-now-header {
    background: white;
    color: #dbb57a;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 20px;
    margin-right: 40px;
    cursor: pointer;
    border: 2px solid white;
    font-size: 1rem;
    font-family: inherit;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.accommodation-modal .modal-header .book-now-header:hover,
.accommodation-modal .modal-header .book-now-header:active {
    background: #f9edda;
    border-color: #f9edda;
    transform: translateY(-2px);
}

/* Hide the bottom modal footer */
.accommodation-modal .modal-footer,
.accommodation-modal .modal-actions {
    display: none !important;
}

.accommodation-modal .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.accommodation-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.accommodation-modal .modal-body {
    padding: 24px;
}

.image-gallery-hero {
    position: relative;
    margin-bottom: 30px;
}

.gallery-main {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.gallery-nav {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
    background: white;
    transform: scale(1.1);
}

.gallery-nav i {
    font-size: 1.2rem;
    color: #333;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    border-color: #7a5b36;
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: #7a5b36;
}

.accommodation-details {
    display: grid;
    gap: 30px;
}

.accommodation-details h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.accommodation-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.features-section {
    margin-top: 30px;
}

.features-categories {
    margin-top: 20px;
}

.feature-category-display {
    margin-bottom: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.feature-category-display h4 {
    margin: 0 0 15px 0;
    color: #495057;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid #7a5b36;
    padding-bottom: 8px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    color: #495057;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #7a5b36;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
}

.detailed-description {
    margin-top: 30px;
}

.detailed-content {
    color: #666;
    line-height: 1.8;
    white-space: pre-line;
}

.things-to-know {
    margin-top: 30px;
}

.things-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.thing-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f8f9fa;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.thing-item:hover {
    background: #e9ecef;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.thing-item i {
    color: #7a5b36;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.thing-item div {
    flex: 1;
}

.thing-item strong {
    color: #495057;
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* Modern Features Grid */
.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.modern-feature-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.modern-feature-item:hover {
    background: #f8f4f0;
    border-color: #7a5b36;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 91, 54, 0.1);
}

.feature-icon {
    margin-right: 12px;
    color: #28a745;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Feature Categories */
.feature-category {
    margin-bottom: 30px;
}

.category-title {
    color: #7a5b36;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #7a5b36;
    border-radius: 2px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .accommodation-modal {
        max-width: 95%;
        margin: 10px;
    }
    
    .gallery-main img {
        height: 300px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-thumb {
        width: 60px;
        height: 45px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-items {
        grid-template-columns: 1fr;
    }
    
    .modern-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .modern-feature-item {
        padding: 12px;
    }
    
    .things-grid {
        grid-template-columns: 1fr;
    }
}

/* Attraction Modal Styles */
.attraction-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.attraction-modal {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.attraction-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #7aabdb, #6699cc);
    color: white;
    border-radius: 15px 15px 0 0;
}

.attraction-modal .modal-header h2 {
    margin: 0;
    color: white;
    font-size: 1.8rem;
}

.attraction-modal .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.attraction-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.attraction-modal .modal-body {
    padding: 24px;
}

.attraction-hero {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.attraction-hero img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.attraction-details {
    padding: 0 10px;
}

.attraction-details h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    border-bottom: 2px solid #7a5b36;
    padding-bottom: 10px;
}

.attraction-description,
.attraction-detailed-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.attraction-description p,
.attraction-detailed-description p {
    margin-bottom: 15px;
    text-align: justify;
}

.attraction-description p:last-child,
.attraction-detailed-description p:last-child {
    margin-bottom: 0;
}

.attraction-description strong,
.attraction-detailed-description strong {
    color: #333;
    font-weight: 600;
}

.attraction-description em,
.attraction-detailed-description em {
    color: #7a5b36;
    font-style: italic;
}

.attraction-modal .modal-actions {
    margin-top: 30px;
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.attraction-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.detailed-content {
    color: #666;
    line-height: 1.8;
    white-space: pre-line;
}

.detailed-content br {
    margin-bottom: 10px;
}

/* Responsive Attraction Modal */
@media (max-width: 768px) {
    .attraction-modal {
        max-width: 95%;
        margin: 10px;
    }
    
    .attraction-hero img {
        height: 200px;
    }
}

/* Activity Modal Styles */
.activity-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.activity-modal {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.activity-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.activity-modal .modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
}

.activity-modal .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.activity-modal .close-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.activity-modal .modal-body {
    padding: 24px;
}

.activity-modal .modal-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.activity-modal .modal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.activity-modal .modal-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.activity-modal .modal-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.activity-modal .modal-actions {
    margin-top: 30px;
    text-align: right;
}

/* Wedding Inquiry Modal Styles */
.wedding-inquiry-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.wedding-inquiry-modal {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wedding-inquiry-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #dbb57a, #cc9f66);
    color: white;
    border-radius: 15px 15px 0 0;
}

.wedding-inquiry-modal .modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.wedding-inquiry-modal .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wedding-inquiry-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.wedding-inquiry-modal .modal-body {
    padding: 30px;
}

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

.wedding-form .form-group {
    margin-bottom: 20px;
}

.wedding-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.wedding-form input,
.wedding-form select,
.wedding-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.wedding-form input:focus,
.wedding-form select:focus,
.wedding-form textarea:focus {
    outline: none;
    border-color: #dbb57a;
    box-shadow: 0 0 0 3px rgba(219, 181, 122, 0.1);
}

.wedding-form textarea {
    resize: vertical;
    min-height: 100px;
}

.wedding-form .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.wedding-form .form-actions .btn-primary {
    background: #dbb57a !important;
    color: white !important;
    border: 2px solid #dbb57a !important;
}

.wedding-form .form-actions .btn-primary:hover {
    background: #cc9f66 !important;
    border-color: #cc9f66 !important;
    transform: translateY(-2px);
}

/* Events Inquiry Modal Styles */
.events-inquiry-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.events-inquiry-modal {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.events-inquiry-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #7aabdb, #6699cc);
    color: white;
    border-radius: 15px 15px 0 0;
}

.events-inquiry-modal .modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.events-inquiry-modal .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.events-inquiry-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.events-inquiry-modal .modal-body {
    padding: 30px;
}

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

.events-form .form-group {
    margin-bottom: 20px;
}

.events-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.events-form input,
.events-form select,
.events-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.events-form input:focus,
.events-form select:focus,
.events-form textarea:focus {
    outline: none;
    border-color: #7aabdb;
    box-shadow: 0 0 0 3px rgba(122, 171, 219, 0.1);
}

.events-form textarea {
    resize: vertical;
    min-height: 100px;
}

.events-form .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.events-form .form-actions .btn-primary {
    background: #7aabdb !important;
    color: white !important;
    border: 2px solid #7aabdb !important;
}

.events-form .form-actions .btn-primary:hover {
    background: #6699cc !important;
    border-color: #6699cc !important;
    transform: translateY(-2px);
}

/* Special Modal Styles */
.special-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.special-modal {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.special-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
    background: #e0e0e2;
    color: white;
    border-radius: 15px 15px 0 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.special-modal .modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    flex: 1;
    color: #222; /* improved contrast on light grey header */
}

.special-modal .modal-header .book-now-header,
.special-modal .modal-header .show-more-btn {
    background: #8a8b8c;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 20px;
    margin-right: 40px;
    cursor: pointer;
    border: 2px solid #8a8b8c;
}

.special-modal .modal-header .book-now-header:hover,
.special-modal .modal-header .show-more-btn:hover {
    background: #75767a;
    border-color: #75767a;
    transform: translateY(-2px);
}

/* Hide the bottom modal footer */
.special-modal .modal-footer,
.special-modal .modal-actions {
    display: none !important;
}

.special-modal .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.special-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.special-modal .modal-body {
    padding: 30px;
}

.special-hero {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: transparent;
}

/* Modal portrait image container */
.special-image-container-modal {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    background: transparent;
}

.special-image-container-modal img {
    width: 100%;
    height: auto;
    display: block;
}

.special-image-container-modal .special-portrait-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.special-image-container-modal .special-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
    padding: 30px 25px 20px;
}

.special-image-container-modal .overlay-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
}

.special-hero img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.special-pricing-large {
    background: #8a8b8c;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.special-description h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    border-bottom: 2px solid #7a5b36;
    padding-bottom: 10px;
}

.special-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.special-includes h3,
.special-terms h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.special-includes ul,
.special-terms ul {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.special-includes li,
.special-terms li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.special-includes li:before,
.special-terms li:before {
    content: "✓";
    color: #7a5b36;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.special-terms {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #7a5b36;
}

.special-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.offer-highlight {
    margin-bottom: 20px;
    text-align: center;
}

.offer-badge {
    background: linear-gradient(135deg, #7a5b36 0%, #6a4a2a 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(122, 91, 54, 0.3);
}

.detailed-content {
    color: #666;
    line-height: 1.8;
    white-space: pre-line;
    margin-bottom: 20px;
}

.modal-actions {
    text-align: center;
}

.modal-actions .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #7a5b36 0%, #6a4a2a 100%);
    color: white;
}

.modal-actions .btn:hover {
    background: linear-gradient(135deg, #6a4a2a 0%, #5a3a1a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(122, 91, 54, 0.3);
}

/* Responsive Special Modal */
@media (max-width: 768px) {
    .special-modal {
        max-width: 95%;
        margin: 10px;
    }
    
    .special-hero img {
        height: 200px;
    }
    
    .special-modal .modal-header h2 {
        font-size: 1.5rem;
    }
}

/* Special Booking Modal Styles */
.special-booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.special-booking-modal {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.special-booking-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.special-booking-modal .modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
}

.special-booking-modal .modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.special-booking-modal .modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.special-booking-modal .modal-body {
    padding: 24px;
}

.special-offer-details {
    margin-bottom: 30px;
    text-align: center;
}

.offer-highlight {
    margin-bottom: 20px;
}

.offer-badge {
    background: linear-gradient(135deg, #7a5b36 0%, #6a4a2a 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(122, 91, 54, 0.3);
}

.offer-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.special-description-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #7a5b36;
}

.special-description-section h3 {
    color: #7a5b36;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.special-description-content {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.special-includes-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #7a5b36;
    border-radius: 0 8px 8px 0;
}

.special-includes-html {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

.special-includes-html h3,
.special-includes-html h4 {
    color: #7a5b36;
    margin-bottom: 10px;
}

.special-includes-html ul {
    margin: 10px 0;
    padding-left: 20px;
}

.special-includes-html li {
    margin-bottom: 5px;
    color: #555;
}

.special-includes-html strong {
    color: #7a5b36;
    font-weight: 600;
}

.special-includes-section h3 {
    color: #7a5b36;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.special-includes-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.special-includes-list li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

.booking-instructions {
    background: #f8f9fa;
    border-left: 4px solid #7a5b36;
    padding: 20px;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    border-radius: 0 8px 8px 0;
    margin-bottom: 25px;
}

/* PAX Counter Styles */
.pax-counter {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.pax-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #7a5b36;
    background: white;
    color: #7a5b36;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pax-btn:hover {
    background: #7a5b36;
    color: white;
    transform: scale(1.1);
}

.pax-btn:active {
    transform: scale(0.95);
}

.pax-counter input[type="number"] {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
    -moz-appearance: textfield; /* Firefox - hide spinner */
}

/* Hide spinner arrows for WebKit browsers (Chrome, Safari, Edge) */
.pax-counter input[type="number"]::-webkit-outer-spin-button,
.pax-counter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pax-counter input[type="number"]:focus {
    outline: none;
    border-color: #7a5b36;
    box-shadow: 0 0 0 3px rgba(122, 91, 54, 0.1);
}

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

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

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

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7a5b36;
    box-shadow: 0 0 0 3px rgba(122, 91, 54, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 10px;
}

.form-actions .btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-actions .btn-secondary {
    background: #6c757d;
    color: white;
}

.form-actions .btn-secondary:hover {
    background: #5a6268;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, #7a5b36 0%, #6a4a2a 100%);
    color: white;
}

.form-actions .btn-primary:hover {
    background: linear-gradient(135deg, #6a4a2a 0%, #5a3a1a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(122, 91, 54, 0.3);
}

/* Enquiry Details Modal */
.enquiry-details-modal {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.enquiry-details-content {
    padding: 20px;
}

.enquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.enquiry-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
}

.enquiry-type {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enquiry-type.special-booking {
    background: #e3f2fd;
    color: #1976d2;
}

.enquiry-type.restaurant-booking {
    background: #e8f5e8;
    color: #2e7d32;
}

.enquiry-type.spa-booking {
    background: #fce4ec;
    color: #c2185b;
}

.enquiry-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.info-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #7a5b36;
}

.info-section h4 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row label {
    font-weight: 600;
    color: #495057;
    min-width: 120px;
}

.info-row span {
    color: #2c3e50;
    text-align: right;
    flex: 1;
}

.status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status.pending_response {
    background: #fff3cd;
    color: #856404;
}

.status.responded {
    background: #d4edda;
    color: #155724;
}

.status.email_sent {
    background: #cce5ff;
    color: #004085;
}

/* Responsive Enquiry Details Modal */
@media (max-width: 768px) {
    .enquiry-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .enquiry-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-row span {
        text-align: left;
    }
}

/* Responsive Special Booking Modal */
@media (max-width: 768px) {
    .special-booking-modal {
        max-width: 95%;
        margin: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .special-booking-modal .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .offer-badge {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Mobile Optimization Styles */
.mobile-summary-card {
    display: none; /* Hidden by default, shown on mobile */
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.summary-card-content {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.summary-card-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
}

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

.summary-card-text {
    flex: 1;
}

.summary-card-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.summary-card-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.summary-card-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-card-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #7a5b36;
    font-weight: 500;
}

.summary-card-stats i {
    font-size: 0.8rem;
}

.summary-card-action {
    flex-shrink: 0;
}

.summary-card-action .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Section Modal Styles */
.section-modal {
    z-index: 10000;
}

.section-modal-content {
    max-width: 90%;
    max-height: 90vh;
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10001;
}

/* Ensure modal content is above the overlay */
.section-modal .modal-body {
    position: relative;
    z-index: 10002;
    background: white;
}

.section-modal .modal-header {
    background: #f8f9fa;
    color: #333;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.section-modal .modal-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.section-modal .modal-close {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.section-modal .modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.section-modal .modal-body {
    padding: 30px;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

.section-modal .modal-body p,
.section-modal .modal-body div {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.section-modal .modal-body .attraction-content p,
.section-modal .modal-body .activity-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.modal-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    position: relative;
    z-index: 10003;
}

/* Ensure modal content is visible and not animated */
.modal-grid * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.modal-grid .room-card,
.modal-grid .attraction-card,
.modal-grid .activity-card,
.modal-grid .experience-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Ensure all interactive elements in modals are clickable */
.section-modal .room-card,
.section-modal .attraction-card,
.section-modal .activity-card,
.section-modal .experience-item {
    position: relative;
    z-index: 10004;
    background: white;
}

.section-modal .show-more-btn,
.section-modal .btn {
    position: relative;
    z-index: 10005;
    pointer-events: auto;
    background: #7a5b36;
    color: white;
}

.section-modal .show-more-btn:hover,
.section-modal .btn:hover {
    background: #6a4d2a;
}

.section-modal .modal-body .room-content,
.section-modal .modal-body .attraction-content,
.section-modal .modal-body .activity-content,
.section-modal .modal-body .experience-content {
    position: relative;
    z-index: 10004;
    background: white;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .mobile-summary-card {
        display: none !important;
    }
    
    .desktop-only {
        display: flex !important;
    }
    
    .summary-card-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .summary-card-image {
        width: 100%;
        height: 200px;
        border-radius: 12px;
    }
    
    .summary-card-text h3 {
        font-size: 1.3rem;
    }
    
    .summary-card-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .summary-card-action .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
    
    .section-modal-content {
        max-width: 95%;
        max-height: 95vh;
        margin: 10px;
    }
    
    .section-modal .modal-header {
        padding: 20px 5px !important;
    }
    
    .section-modal .modal-header h2 {
        font-size: 1.5rem !important;
        padding: 0 5px !important;
    }
    
    .section-modal .modal-body {
        padding: 5px 5px 20px 5px !important;
        max-height: calc(95vh - 80px) !important;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 15px 0 0 0;
    }
    
    /* Mobile modal card adjustments */
    .section-modal .modal-body .modal-grid .attraction-card,
    .section-modal .modal-body .modal-grid .activity-card,
    .section-modal .modal-body .modal-grid .room-card,
    .section-modal .modal-body .modal-grid .experience-item {
        margin: 0 !important;
        width: 100% !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
        margin-bottom: 20px !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    .section-modal .modal-body .modal-grid .attraction-content,
    .section-modal .modal-body .modal-grid .activity-content,
    .section-modal .modal-body .modal-grid .room-content,
    .section-modal .modal-body .modal-grid .experience-content {
        padding: 25px 20px !important;
    }
    
    .section-modal .modal-body .modal-grid .attraction-card h3,
    .section-modal .modal-body .modal-grid .activity-card h3,
    .section-modal .modal-body .modal-grid .room-card h3,
    .section-modal .modal-body .modal-grid .experience-item h3 {
        margin-top: 0 !important;
        margin-bottom: 15px !important;
    }
    
    /* Ensure proper spacing between cards in mobile modal */
    .modal-grid > * {
        margin-bottom: 20px !important;
    }
    
    .modal-grid > *:last-child {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 769px) {
    .mobile-summary-card {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
    
    /* Show desktop-only grids on desktop */
    .experience-grid.desktop-only,
    .rooms-grid.desktop-only,
    .attractions-grid.desktop-only,
    .activities-grid.desktop-only,
    .events-grid.desktop-only,
    .specials-grid.desktop-only {
        display: grid !important;
    }
}

/* Mobile Horizontal Scroll - Proper Implementation */
@media (max-width: 768px) {
    /* Horizontal scroll containers */
    .experience-grid.desktop-only,
    .rooms-grid.desktop-only,
    .attractions-grid.desktop-only,
    .activities-grid.desktop-only,
    .events-grid.desktop-only,
    .specials-grid.desktop-only {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 15px !important;
        padding: 20px !important;
        margin: 0 !important;
        /* This is the KEY - allows vertical scroll to continue */
        touch-action: pan-x pan-y !important;
    }
    
    /* Hide scrollbar */
    .experience-grid.desktop-only::-webkit-scrollbar,
    .rooms-grid.desktop-only::-webkit-scrollbar,
    .attractions-grid.desktop-only::-webkit-scrollbar,
    .activities-grid.desktop-only::-webkit-scrollbar,
    .events-grid.desktop-only::-webkit-scrollbar,
    .specials-grid.desktop-only::-webkit-scrollbar {
        display: none;
    }
    
    /* Cards in horizontal layout with consistent heights */
    .experience-grid.desktop-only > *,
    .attractions-grid.desktop-only > *,
    .activities-grid.desktop-only > *,
    .events-grid.desktop-only > * {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        max-width: 85% !important;
        scroll-snap-align: start;
        height: 480px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Accommodation cards need extra height */
    .rooms-grid.desktop-only > * {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        max-width: 85% !important;
        scroll-snap-align: start;
        height: 510px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Special cards already defined below */
    .specials-grid.desktop-only > * {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        max-width: 85% !important;
        scroll-snap-align: start;
    }
    
    /* Make card content with button footer alignment */
    .experience-grid.desktop-only .experience-content,
    .rooms-grid.desktop-only .room-content,
    .attractions-grid.desktop-only .attraction-content,
    .activities-grid.desktop-only .activity-content,
    .events-grid.desktop-only .event-content,
    .specials-grid.desktop-only .special-content {
        flex: 1;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    
    /* Room cards structure for aligned titles and footer buttons */
    .rooms-grid.desktop-only .room-card {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .rooms-grid.desktop-only .room-content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 20px !important;
    }
    
    .rooms-grid.desktop-only .room-content h3 {
        margin: 0 0 12px 0 !important;
        flex-shrink: 0 !important;
    }
    
    .rooms-grid.desktop-only .room-content p {
        flex: 1 !important;
        margin: 0 0 15px 0 !important;
        overflow-y: auto !important;
    }
    
    .rooms-grid.desktop-only .show-more-btn {
        flex-shrink: 0 !important;
        margin: 0 !important;
    }
    
    /* Images stay fixed size */
    .experience-grid.desktop-only .experience-item img,
    .rooms-grid.desktop-only .room-card img,
    .attractions-grid.desktop-only .attraction-card img,
    .activities-grid.desktop-only .activity-card img,
    .events-grid.desktop-only .event-card img {
        height: 200px !important;
        flex-shrink: 0;
        object-fit: cover;
    }
    
    /* Special cards - optimized for portrait images on mobile */
    .specials-grid.desktop-only > * {
        height: 560px !important;
    }
    
    .specials-grid.desktop-only .special-card .special-image-container {
        padding-bottom: 0 !important;
        height: 430px !important;
        position: relative;
    }
    
    .specials-grid.desktop-only .special-card .special-image-container img {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        top: 0 !important;
        left: 0 !important;
        background: #ebebec;
    }
    
    .specials-grid.desktop-only .special-card > img {
        height: 430px !important;
        width: 100% !important;
        object-fit: contain !important;
        flex-shrink: 0;
        background: #ebebec;
    }
    
    /* Tight spacing in special card content */
    .specials-grid.desktop-only .special-content {
        padding: 8px 12px 10px 12px !important;
        gap: 5px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .specials-grid.desktop-only .special-content h3 {
        margin: 0 0 3px 0 !important;
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
    }
    
    .specials-grid.desktop-only .special-content p {
        margin: 0 0 3px 0 !important;
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }
    
    .specials-grid.desktop-only .special-dates,
    .specials-grid.desktop-only .special-content > div {
        margin: 0 !important;
        gap: 3px !important;
    }
    
    .specials-grid.desktop-only .show-more-btn {
        margin-top: 10px !important;
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
    
    /* Scroll hint */
    .section.experience-section::after,
    .section.rooms-section::after,
    .section.attractions-section::after,
    .section.activities-section::after,
    .section.events-section::after,
    .section.specials-section::after {
        content: '← Swipe left/right to see more →';
        display: block;
        text-align: center;
        color: #999;
        font-size: 0.85rem;
        padding: 10px 0;
        font-style: italic;
    }
    
    /* Wedding section mobile layout fix */
    .weddings-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .weddings-image {
        position: relative !important;
        order: 2 !important;
    }
    
    .weddings-text {
        order: 1 !important;
    }
    
    .wedding-action {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 20px !important;
        text-align: center !important;
    }
    
    .weddings-image img {
        width: 100% !important;
        display: block !important;
    }
}

/* NightsBridge Booking Modal Styles */
.nb-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 10001;
}

.nb-modal.is-open {
    display: block;
}

.nb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: saturate(120%) blur(2px);
}

.nb-dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    width: 95%;
    height: 90vh;
    margin: 5vh auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.nb-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nb-close:hover {
    color: #333;
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.nb-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8f9fa;
}

.nb-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
}

.nb-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nb-action {
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #7a5b36;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.nb-action:hover {
    background: #f6f6f6;
    border-color: #7a5b36;
    color: #6a4a2a;
}

.nb-newtab {
    text-decoration: none;
    display: inline-block;
}

.nb-frame-wrap {
    position: relative;
    flex: 1;
    overflow: visible;
    min-height: 0;
}

.nb-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    overflow: visible;
}

/* Mobile Responsive for NightsBridge Modal */
@media (max-width: 640px) {
    .nb-dialog {
        height: 92vh;
        width: 100%;
        margin: 4vh 0;
        border-radius: 0;
    }
    
    .nb-toolbar {
        flex-direction: column;
        gap: 10px;
        padding: 1rem;
        padding-top: 3rem; /* Add space for close button */
    }
    
    .nb-title {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .nb-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nb-action {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .nb-close {
        right: 0.5rem;
        top: 0.5rem;
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}

/* Spa Booking Modal Styling */
.spa-booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
    box-sizing: border-box;
}

.spa-booking-modal {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.spa-booking-modal .modal-header {
    background: linear-gradient(135deg, #6ec589, #5ab372);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.spa-booking-modal .modal-header h2 {
    margin: 0;
    font-size: 1.8em;
    font-weight: 600;
}

.spa-booking-modal .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.spa-booking-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 15px;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
}

.step.active {
    background: #6ec589;
    color: white;
}

.spa-booking-modal .modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.spa-step {
    display: none;
}

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

.spa-step h3 {
    color: #6ec589;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.treatments-list {
    max-height: 400px;
    overflow-y: auto;
}

.treatment-category {
    margin-bottom: 25px;
}

.treatment-category h4 {
    color: #6ec589;
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 2px solid #d4f5e0;
    padding-bottom: 8px;
}

.treatment-item {
    margin-bottom: 10px;
}

.treatment-item label {
    display: flex;
    align-items: flex-start;
    padding: 18px;
    border: 2px solid #d4f5e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.treatment-item label:hover {
    border-color: #6ec589;
    background: #f0fdf4;
}

.treatment-item input[type="checkbox"] {
    margin-right: 15px;
    margin-top: 4px;
    transform: scale(1.2);
    flex-shrink: 0;
}

.treatment-item input[type="checkbox"]:checked + .treatment-info {
    color: #6ec589;
}

.treatment-info {
    flex: 1;
}

.treatment-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.treatment-details {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.treatment-description {
    color: #555;
    font-size: 0.85em;
    line-height: 1.4;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(110, 197, 137, 0.05);
    border-radius: 6px;
    border-left: 3px solid #6ec589;
    font-style: italic;
}

.date-selection, .time-selection {
    margin-bottom: 25px;
}

.date-selection label, .time-selection label {
    display: block;
    margin-bottom: 10px;
    color: #6ec589;
    font-weight: 600;
}

.date-buttons, .time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.date-btn, .time-slot-btn {
    padding: 10px 15px;
    border: 2px solid #f0e8d8;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.date-btn:hover, .time-slot-btn:hover {
    border-color: #6ec589;
    background: #f0fdf4;
}

.date-btn.selected, .time-slot-btn.selected {
    background: #6ec589;
    color: white;
    border-color: #6ec589;
}

.no-slots, .error {
    text-align: center;
    color: #666;
    padding: 20px;
    font-style: italic;
}

.error {
    color: #d63031;
}

.form-group {
    margin-bottom: 20px;
}

.spa-booking-modal .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #6ec589;
    font-weight: 600;
}

.spa-booking-modal .form-group input, 
.spa-booking-modal .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #d4f5e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.spa-booking-modal .form-group input:focus, 
.spa-booking-modal .form-group textarea:focus {
    outline: none;
    border-color: #6ec589;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-footer .btn {
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.spa-booking-modal .btn-primary {
    background: #6ec589;
    color: white;
}

.spa-booking-modal .btn-primary:hover:not(:disabled) {
    background: #5ab372;
}

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

.btn-secondary {
    background: #f0e8d8;
    color: #7a5b36;
}

.btn-secondary:hover {
    background: #e0d8c8;
}

.loading {
    text-align: center;
    color: #666;
    padding: 40px;
    font-style: italic;
}

@media (max-width: 768px) {
    .spa-booking-modal {
        max-width: 95%;
        margin: 10px;
    }
    
    .spa-booking-modal .modal-body {
        padding: 20px;
    }
    
    .date-buttons, .time-slots {
        flex-direction: column;
    }
}


/* Success Modal Styling */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    padding: 20px;
    box-sizing: border-box;
}

.success-modal {
    background: white;
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: successModalSlideIn 0.3s ease-out;
}

@keyframes successModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-icon {
    font-size: 4em;
    color: #27ae60;
    margin-bottom: 20px;
    animation: successIconPulse 0.6s ease-out;
}

@keyframes successIconPulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-modal h3 {
    color: #7a5b36;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-modal p,
.success-message {
    color: #555;
    font-size: 1.1em;
    line-height: 1.5;
    margin-bottom: 30px;
}

.success-message {
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #7a5b36;
}

.success-modal .btn {
    padding: 12px 30px;
    font-size: 1.1em;
    border-radius: 8px;
    background: #7a5b36;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.success-modal .btn:hover {
    background: #6a4a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 91, 54, 0.3);
}

@media (max-width: 768px) {
    .success-modal {
        max-width: 90%;
        padding: 30px 20px;
    }
    
    .success-icon {
        font-size: 3em;
    }
    
    .success-modal h3 {
        font-size: 1.5em;
    }
    
    .success-modal p {
        font-size: 1em;
    }
}

/* WhatsApp Link Styling */
.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.whatsapp-link:hover {
    color: #128C7E;
    text-decoration: underline;
    transform: translateY(-1px);
}

.whatsapp-link:active {
    transform: translateY(0);
}

/* NEW NAVIGATION RIGHT ALIGNMENT CLASSES */
.nav-right-align {
    justify-content: flex-end !important;
    max-width: none !important; /* Remove max-width so container can be full width */
    margin: 0 !important; /* Remove auto margin that centers the container */
    padding-right: 20px !important; /* Add padding to right edge */
}

.nav-menu-right {
    margin-left: auto !important;
    margin-right: 0 !important;
}

.nav-right-align .nav-toggle {
    order: 2; /* Put hamburger after menu items */
    margin-left: 0 !important;
}

/* Password Input Group */
.password-input-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.password-input-group input {
    flex: 1;
}

.password-input-group .admin-btn.small {
    padding: 8px 12px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.form-help {
    display: block;
    margin-top: 4px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* User Management Section */
.user-management-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.user-management-section h4 {
    color: #495057;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-management-section h4 i {
    color: #007bff;
}

.user-management-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.user-management-info {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Role Permissions */
.role-permissions {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    margin-top: 10px;
}

.role-permissions h5 {
    color: #495057;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.role-permissions ul {
    margin: 0;
    padding-left: 20px;
}

.role-permissions li {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* Permissions Grid */
.permissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.permission-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
}

.permission-section h6 {
    color: #495057;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.permission-section label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #6c757d;
    cursor: pointer;
}

.permission-section input[type="checkbox"] {
    margin-right: 8px;
}

/* Large Modal */
.modal-content.large {
    max-width: 800px;
    width: 90%;
}
