/* ===================================
   CSS Variables
   =================================== */
:root {
    --primary-color: #5e0f23;
    --secondary-color: #000000;
    --accent-color: #5e0f23;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-gray: #666666;
    --background-light: #f7f7f7;
    --background-cream: #fafafa;
    --border-color: #e0e0e0;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

@media (max-width: 992px) {
    body.menu-open::before {
        display: block;
    }
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: #000;
    color: var(--text-light);
    font-weight: 600;
    border-color: #000;
}

.btn-primary:hover {
    background: #333;
    border-color: #333;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 0px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    font-style: normal;
    font-weight: 400;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 3px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.logo img,
.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-auth {
    display: flex;
    gap: 20px;
    align-items: center;
    white-space: nowrap;
}

.mobile-only {
    display: none;
}

@media (max-width: 992px) {
    .nav-auth {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

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

.nav-link.btn-book {
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50px;
}

.nav-link.btn-book::after {
    display: none;
}

.nav-link.btn-book:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    background: url('../imgs/HotelView.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Marriott-style Booking Widget */
.booking-widget {
    background: white;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.booking-widget-header {
    display: none;
}

.booking-widget-toggle {
    display: none;
}

.booking-inputs {
    display: flex;
    gap: 15px;
    flex: 1;
    align-items: flex-end;
}

.booking-field {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    min-width: 180px;
}

.booking-field label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.booking-field input,
.booking-field select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    background: white;
}

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

/* Date picker styling to grey out past dates */
.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(0.5);
}

.booking-field input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    color: var(--text-dark);
}

.booking-field input[type="date"]:invalid {
    color: #999;
}

/* Style for date inputs */
input[type="date"] {
    position: relative;
    color-scheme: light;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

/* Ensure past dates appear disabled visually */
input[type="date"][min]::-webkit-datetime-edit-day-field,
input[type="date"][min]::-webkit-datetime-edit-month-field,
input[type="date"][min]::-webkit-datetime-edit-year-field {
    color: var(--text-dark);
}

.btn-find-hotels {
    background: #5e0f23;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 48px;
    white-space: nowrap;
    align-self: flex-end;
}

.btn-find-hotels:hover {
    background: #52796f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Marriott-style Date Field */
.booking-dates-field {
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-dates-field:hover {
    transform: translateY(-2px);
}

.dates-display {
    padding: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.dates-display .date-text {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* Date Modal */
.date-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.date-modal-content {
    background: white;
    border-radius: 8px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.date-tabs {
    display: flex;
    gap: 10px;
}

.date-tab {
    padding: 10px 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.date-tab.active {
    border-bottom-color: #5e0f23;
    color: #5e0f23;
}

.close-modal {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    transition: color 0.3s;
}

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

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

.calendar-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.calendar-month {
    min-width: 0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    padding: 5px 10px;
    color: #333;
    transition: all 0.3s;
}

.calendar-nav:hover {
    color: #5e0f23;
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day-header {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    padding: 10px 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
    position: relative;
}

.calendar-day:not(.disabled):hover {
    background: #f0f0f0;
}

.calendar-day.disabled {
    color: #ddd;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: #5e0f23;
    color: white;
}

.calendar-day.in-range {
    background: #f5e6ea;
    border-radius: 0;
}

.calendar-day.range-start {
    background: #5e0f23;
    color: white;
    border-radius: 50% 0 0 50%;
}

.calendar-day.range-end {
    background: #5e0f23;
    color: white;
    border-radius: 0 50% 50% 0;
}

.calendar-day.today {
    border: 2px solid #5e0f23;
}

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

.btn-reset,
.btn-done {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-reset {
    background: white;
    border: 2px solid #ddd;
    color: #666;
}

.btn-reset:hover {
    border-color: #999;
    color: #333;
}

.btn-done {
    background: #5e0f23;
    color: white;
}

.btn-done:hover {
    background: #52796f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

/* Mobile responsive for date modal */
@media (max-width: 768px) {
    .calendar-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Hide the second calendar month on mobile */
    #month2 {
        display: none !important;
    }
    
    /* Show next arrow on first calendar when second is hidden */
    #month1 .calendar-header {
        position: relative;
    }
    
    #month1 .calendar-header::after {
        content: '›';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: bold;
        color: #333;
        cursor: pointer;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: white;
        transition: all 0.3s;
    }
    
    #month1 .calendar-header::after:hover {
        background: #f5f5f5;
        border-color: #5e0f23;
        color: #5e0f23;
    }
    
    .date-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .date-modal-body {
        padding: 20px 15px;
    }
    
    .calendar-day {
        font-size: 14px;
        font-weight: 600;
    }
    
    .date-modal-footer {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .btn-reset,
    .btn-done {
        width: 100%;
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .btn-done {
        order: -1;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--text-light);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0;
    }
}

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

/* ===================================
   Welcome Section
   =================================== */
.experiences {
    padding: 80px 0;
    background: #f7f7f7;
}

.experience-tabs {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    color: var(--text-gray);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--text-dark);
    border-bottom-color: var(--secondary-color);
}

.experience-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 350px);
    gap: 20px;
    margin-top: 40px;
}

.experience-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.experience-card.large-card {
    grid-row: span 2;
}

.experience-card:hover {
    transform: scale(1.02);
}

.experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
    padding: 30px;
    color: white;
}

.experience-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

.experience-overlay p {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 300;
}

.experience-link {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.experience-link:hover {
    color: var(--accent-color);
}



/* ===================================
   Rooms Section
   =================================== */
.rooms {
    padding: 100px 0;
    background: var(--background-light);
}

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

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

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

.room-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.room-content {
    padding: 35px;
}

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

.room-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.room-features li {
    color: var(--text-gray);
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.room-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===================================
   Amenities Section
   =================================== */
.amenities {
    padding: 100px 0;
    background: var(--text-light);
}

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

.amenity-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--background-light);
    border-radius: 15px;
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--text-light);
}

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

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

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

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: 100px 0;
    background: var(--background-light);
}

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

.gallery-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

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

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

.gallery-overlay p {
    color: var(--text-light);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 100px 0;
    background: var(--background-cream);
}

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

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

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

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

.contact-form {
    background: var(--background-light);
    padding: 40px;
    border-radius: 15px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: var(--transition);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
}

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Modal
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: var(--text-light);
    padding: 50px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

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

.modal-content h2 {
    margin-bottom: 30px;
    color: var(--secondary-color);
}

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

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

/* ===================================
   Responsive Design
   =================================== */

/* Hide mobile-only elements on desktop */
.mobile-auth-section {
    display: none !important;
}

@media (max-width: 992px) {
    /* Show mobile auth section only on mobile */
    .mobile-auth-section {
        display: flex !important;
    }

    .booking-widget {
        flex-direction: column;
        padding: 20px;
    }

    .booking-inputs {
        grid-template-columns: 1fr 1fr;
    }

    .btn-find-hotels {
        width: 100%;
        padding: 15px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .experience-card.large-card {
        grid-row: span 1;
        height: 400px;
    }

    .experience-card {
        height: 300px;
    }

    .experience-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--text-light);
        width: 280px;
        text-align: left;
        transition: right 0.3s ease;
        box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
        padding: 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-menu .nav-link {
        padding: 16px 24px;
        border-bottom: 1px solid #f0f0f0;
        display: block;
        font-size: 15px;
    }

    .nav-menu .nav-link:hover {
        background: #f8f8f8;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    /* Mobile Menu Auth Section */
    .nav-menu::after {
        content: '';
        display: block;
        margin-top: auto;
        padding: 20px 24px;
        border-top: 2px solid #f0f0f0;
    }

    .mobile-auth-section {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px 24px;
        border-top: 2px solid #f0f0f0;
        margin-top: auto;
        background: #fafafa;
    }

    .mobile-auth-section .nav-link {
        border: none;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 6px;
    }

    .mobile-auth-section .auth-button {
        background: white;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
    }

    .mobile-auth-section .btn-book {
        background: var(--primary-color);
        color: white;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .welcome-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .modal-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        height: 60px;
    }

    .logo img,
    .logo-img {
        height: 45px;
    }

    .logo a {
        font-size: 18px;
    }

    .nav-menu {
        top: 60px;
        padding: 20px 0;
        gap: 8px;
    }

    .nav-link {
        padding: 12px 20px;
        font-size: 14px;
    }

    .nav-auth {
        padding: 15px 20px;
        gap: 10px;
    }

    .nav-link.btn-book {
        display: inline-block;
        width: auto;
        padding: 10px 24px;
        font-size: 13px;
        border-radius: 4px;
    }

    .hero {
        height: auto;
        min-height: 50vh;
        padding: 80px 0 30px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    /* Collapsible Booking Widget */
    .booking-widget {
        padding: 0;
        margin: 0 16px;
        gap: 0;
        overflow: hidden;
        display: block;
    }

    .booking-widget-header {
        background: white;
        padding: 14px 16px;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        border-radius: 6px;
    }

    .booking-widget-header h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-dark);
        margin: 0;
    }

    .booking-widget-toggle {
        font-size: 20px;
        transition: transform 0.3s;
        display: inline-block !important;
    }

    .booking-widget.collapsed .booking-widget-toggle {
        transform: rotate(180deg);
    }

    .booking-widget-content {
        max-height: 1000px;
        transition: max-height 0.3s ease;
        background: white;
        border-radius: 0 0 6px 6px;
    }

    .booking-widget.collapsed .booking-widget-content {
        max-height: 0;
        overflow: hidden;
    }

    .booking-widget-content .booking-inputs {
        padding: 16px;
        display: grid;
    }

    .booking-widget-content .btn-find-hotels {
        margin: 0 16px 16px 16px;
        width: calc(100% - 32px);
    }

    .booking-inputs {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .booking-field label {
        font-size: 10px;
        margin-bottom: 6px;
        letter-spacing: 0.5px;
    }

    .booking-field input,
    .booking-field select {
        font-size: 14px;
        padding: 11px 12px;
        border-radius: 3px;
    }

    .btn-find-hotels {
        font-size: 13px;
        padding: 13px 24px;
        letter-spacing: 0.8px;
        border-radius: 3px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .tab-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    .welcome-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 32px;
    }

    .rooms-grid,
    .amenities-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .modal-content {
        width: 95%;
        padding: 24px 16px;
    }

    .btn {
        padding: 11px 24px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    /* Compact Navigation */
    .nav-container {
        padding: 0 12px;
        height: 56px;
    }

    .logo img,
    .logo-img {
        height: 38px;
    }

    .logo a {
        font-size: 16px;
    }

    .nav-menu {
        top: 56px;
        padding: 16px 0;
        gap: 4px;
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 15px;
        letter-spacing: 0;
    }

    .nav-auth {
        padding: 12px 16px;
        gap: 8px;
    }

    .nav-link.btn-book {
        padding: 9px 20px;
        font-size: 13px;
        border-radius: 4px;
    }

    .hamburger {
        gap: 4px;
    }

    .hamburger span {
        width: 24px;
        height: 2px;
    }

    /* Hero Section - Marriott Style */
    .hero {
        height: auto;
        min-height: 45vh;
        padding: 65px 0 25px;
    }

    .hero-content {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 8px;
        line-height: 1.2;
        font-weight: 600;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.4;
        font-weight: 400;
    }

    /* Compact Collapsible Booking Widget */
    .booking-widget {
        padding: 0;
        margin: 0 12px;
        gap: 0;
    }

    .booking-widget-header {
        padding: 12px 14px;
        border-radius: 6px;
    }

    .booking-widget-header h3 {
        font-size: 14px;
    }

    .booking-widget-content {
        border-radius: 0 0 6px 6px;
    }

    .booking-widget-content .booking-inputs {
        padding: 12px;
        flex-direction: column;
    }

    .booking-inputs {
        gap: 10px;
        flex-direction: column;
    }
    
    .btn-find-hotels {
        width: 100%;
        margin-top: 10px;
    }

    .booking-field {
        background: #f8f8f8;
        padding: 10px;
        border-radius: 4px;
    }

    .booking-field label {
        font-size: 9px;
        margin-bottom: 4px;
        letter-spacing: 0.3px;
        font-weight: 700;
        color: #666;
    }

    .booking-field input,
    .booking-field select {
        font-size: 14px;
        padding: 8px 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: white;
    }

    .booking-field input[readonly] {
        background: white;
        color: #333;
    }

    .btn-find-hotels {
        font-size: 14px;
        padding: 12px 20px;
        letter-spacing: 0.5px;
        border-radius: 4px;
        font-weight: 700;
    }

    /* Content Sections */
    .container {
        padding: 0 12px;
    }

    .welcome,
    .rooms,
    .amenities,
    .gallery,
    .contact {
        padding: 40px 0;
    }

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

    .section-header h2 {
        font-size: 24px;
        font-weight: 600;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Cards and Content */
    .experience-card {
        border-radius: 8px;
    }

    .room-card {
        border-radius: 8px;
    }

    .room-content {
        padding: 16px;
    }

    .room-title {
        font-size: 20px;
    }

    .room-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .room-price {
        font-size: 22px;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 13px;
        letter-spacing: 0.5px;
        border-radius: 4px;
    }

    /* Forms */
    .contact-form {
        padding: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px 12px;
    }

    /* Modal */
    .modal-content {
        width: 94%;
        margin: 10px auto;
        padding: 20px 14px;
        border-radius: 8px;
    }

    /* Tabs */
    .tab-btn {
        font-size: 11px;
        padding: 7px 12px;
        border-radius: 4px;
    }

    /* Date Picker Mobile */
    .date-input-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .date-picker-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .date-picker-header {
        padding: 16px;
    }

    .date-picker-header h3 {
        font-size: 18px;
    }

    .date-picker-body {
        padding: 16px;
    }
}

/* ===================================
   Auth Modal
   =================================== */
.auth-modal-content {
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
}

.auth-form h2 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.auth-form h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.auth-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.auth-section-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.join-free-btn {
    width: auto;
    padding: 0.8rem 2.5rem;
    font-size: 0.95rem;
}

.auth-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 2rem 0;
}

.form-hint {
    display: block;
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-error::before {
    content: '⚠️';
    font-size: 1.2rem;
}

.form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-success::before {
    content: '✓';
    font-size: 1.2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.btn-full-width {
    width: 100%;
}

.auth-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.auth-link {
    color: #000;
    text-decoration: underline;
    font-size: 0.9rem;
}

.auth-link:hover {
    color: var(--accent-color);
}

.auth-button {
    font-size: 0.85rem !important;
    font-weight: 400 !important;
}

/* ===================================
   Account Menu
   =================================== */
.account-menu {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.account-menu.show {
    opacity: 1;
    transform: translateY(0);
}

.account-menu-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    overflow: hidden;
}

.account-menu-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.account-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5e0f23 0%, #8b1538 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.account-info {
    flex: 1;
}

.account-name {
    font-weight: 600;
    color: #000;
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.account-email {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.account-menu-divider {
    height: 1px;
    background: #e0e0e0;
}

.account-menu-items {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.account-menu-items li {
    margin: 0;
}

.account-menu-items a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.account-menu-items a:hover {
    background: #f8f9fa;
    color: #5e0f23;
}

.account-menu-signout {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    background: white;
    color: #dc3545;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.account-menu-signout:hover {
    background: #fff5f5;
}

/* ===================================
   Welcome Message
   =================================== */
.welcome-message {
    text-align: center;
    padding: 2rem;
}

.welcome-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5e0f23 0%, #8b1538 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(94, 15, 35, 0.3);
}

.welcome-message h2 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.welcome-greeting {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
}

.welcome-benefits {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: left;
}

.welcome-benefits h3 {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.welcome-benefits ul {
    list-style: none;
    padding: 0;
}

.welcome-benefits li {
    padding: 0.7rem 0;
    color: #333;
    font-size: 0.95rem;
    border-bottom: 1px solid #e0e0e0;
}

.welcome-benefits li:last-child {
    border-bottom: none;
}

.welcome-note {
    color: #666;
    font-size: 0.9rem;
    margin: 1.5rem 0;
}

.welcome-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #5e0f23 0%, #8b1538 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.welcome-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================
   Booking Success
   =================================== */
.booking-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    font-weight: bold;
}

.booking-success h2 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.booking-id {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.booking-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: left;
}

.booking-details p {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.booking-success .cta-button {
    margin-top: 1.5rem;
    width: auto;
    padding: 1rem 3rem;
}

/* ===================================
   Page Header Styles
   =================================== */
.page-header {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    margin-top: 90px;
}

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

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-header p {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* ===================================
   Rooms Page Styles
   =================================== */
.rooms-page {
    padding: 80px 0;
    background: var(--background-cream);
}

.rooms-grid-full {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.room-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.room-card-large.reverse {
    grid-template-columns: 1fr 1fr;
}

.room-card-large.reverse .room-content-large {
    order: -1;
}

.room-image-large {
    height: 500px;
    background-size: cover !important;
    background-position: center !important;
}

.room-content-large {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.room-content-large h2 {
    font-size: 2.5rem;
    margin: 0;
    color: var(--primary-color);
}

.bed-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.room-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
}

.room-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.room-features-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.room-features-list li:last-child {
    border-bottom: none;
}

/* ===================================
   Gallery Page Styles
   =================================== */
.gallery-page {
    padding: 80px 0;
    background: white;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.gallery-intro p {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

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

.gallery-item-full {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 20px 20px;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
}

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

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

/* ===================================
   Contact Page Styles
   =================================== */
.contact-page {
    padding: 80px 0;
    background: var(--background-cream);
}

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

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.elegant-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: var(--transition);
}

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

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

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

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

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info-card p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.nearby-attractions {
    text-align: center;
}

.nearby-attractions h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.attraction-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.attraction-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.attraction-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   Responsive Design for New Pages
   =================================== */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 3rem;
    }
    
    .room-card-large,
    .room-card-large.reverse {
        grid-template-columns: 1fr;
    }
    
    .room-card-large.reverse .room-content-large {
        order: 0;
    }
    
    .room-image-large {
        height: 350px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid-full {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 300px;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .elegant-form {
        padding: 30px 20px;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-full {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Admin Portal Styles
   =================================== */
.admin-portal {
    display: flex;
    min-height: 100vh;
    background: #f5f7fa;
}

/* Sidebar */
.admin-sidebar {
    width: 260px;
    background: var(--text-dark);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    transition: transform 0.3s ease;
    z-index: 1000;
}

.admin-sidebar.collapsed {
    transform: translateX(-200px);
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-header .logo a {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
}

.sidebar-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    margin: 4px 0;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.sidebar-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: var(--accent-color);
}

.sidebar-icon {
    font-size: 1.3rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.sidebar-text {
    font-size: 0.95rem;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.user-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.btn-logout {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Main Content */
.admin-main {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-btn:hover {
    opacity: 0.9;
}

.btn-view-website:hover {
    background: rgba(255,255,255,0.2) !important;
}

/* Tab Content */
#tabContent {
    padding: 30px;
    flex: 1;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Dashboard specific styles maintained */
.admin-dashboard {
    padding: 100px 0 80px;
    background: var(--background-cream);
    min-height: 100vh;
}

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

.admin-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.admin-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.access-denied {
    background: white;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.access-denied-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #dc3545;
}

.access-denied-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.access-denied-content .btn {
    margin-top: 20px;
}

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

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

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

.stat-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-cream);
    border-radius: 50%;
}

.stat-content h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.admin-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.admin-table thead {
    background: var(--background-cream);
}

.admin-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--border-color);
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.admin-table tbody tr:hover {
    background: var(--background-cream);
}

.admin-table code {
    background: var(--background-cream);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.message-cell {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.status-upcoming {
    background: #e3f2fd;
    color: #1976d2;
}

.status-active {
    background: #e8f5e9;
    color: #388e3c;
}

.status-completed {
    background: #f5f5f5;
    color: #757575;
}

.status-new {
    background: #fff3e0;
    color: #f57c00;
}

.status-responded {
    background: #e8f5e9;
    color: #388e3c;
}

.loading, .no-data, .error {
    text-align: center;
    padding: 40px;
    color: var(--text-gray);
    font-style: italic;
}

.error {
    color: #dc3545;
}

@media (max-width: 768px) {
    .admin-section {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-table {
        font-size: 0.85rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 10px 8px;
    }
}

/* ===================================
   Staff Management Styles
   =================================== */
.role-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.role-card {
    background: white;
    border: 2px solid var(--border-color);
    padding: 25px;
    border-radius: 8px;
    transition: var(--transition);
}

.role-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.role-card.admin-role {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff 0%, #f8f5f0 100%);
}

.role-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.role-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.permission-list {
    list-style: none;
    padding: 0;
}

.permission-list li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.code-management {
    background: var(--background-cream);
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.code-info p {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.code-display {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.code-value {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--primary-color);
}

.table-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 250px;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
}

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

.filter-select {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

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

.role-guest {
    background: #e3f2fd;
    color: #1976d2;
}

.role-staff {
    background: #fff3e0;
    color: #f57c00;
}

.role-manager {
    background: #f3e5f5;
    color: #7b1fa2;
}

.role-admin {
    background: #ffebee;
    color: #c62828;
}

.btn-action {
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.user-info {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 5px 0;
}

.user-info-email {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 5px 0 15px 0;
}

.permissions-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 15px;
    background: var(--background-cream);
    border-radius: 6px;
}

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

.btn-secondary {
    padding: 12px 30px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .role-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .table-actions {
        flex-direction: column;
    }
    
    .search-input {
        width: 100%;
    }
    
    .code-display {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .permissions-checkboxes {
        grid-template-columns: 1fr;
    }
    
    /* Show mobile menu button on small screens */
    .mobile-menu-btn {
        display: block !important;
    }
    
    /* Hide sidebar by default on mobile */
    .admin-sidebar {
        transform: translateX(-100%);
    }
    
    .admin-sidebar.mobile-open {
        transform: translateX(0);
    }
    
    /* Adjust main content for mobile */
    .admin-main {
        margin-left: 0;
    }
    
    /* Add overlay when sidebar is open */
    body.sidebar-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
}