/* ===== CSS VARIABLES & RESET ===== */
:root {
    --primary-color: #8B5A2B;
    /* Rich Brown */
    --primary-dark: #6B421A;
    /* Darker Brown */
    --accent-color: #D2A679;
    /* Golden/Beige Accent */
    --dark-bg: #FDFBF7;
    /* Soft Cream Background */
    --darker-bg: #F5F0E6;
    /* Slightly Darker Cream */
    --surface-color: #FFFFFF;
    /* White Cards */
    --surface-light: #FAF6ED;
    --text-main: #333333;
    /* Dark Gray/Brown for text */
    --text-muted: #666666;
    /* Muted Gray */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: 0.3s ease-in-out;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --gold-gradient: linear-gradient(135deg, #8B5A2B 0%, #D2A679 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY & UTILITIES ===== */
h1,
h2,
h3,
h4,
.logo span {
    font-family: var(--font-heading);
}

.section-padding {
    padding: 120px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.dark-bg {
    background-color: var(--darker-bg);
}

.section-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.grids-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
}

.primary-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 90, 43, 0.3);
}

.outline-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.outline-btn:hover {
    background: var(--primary-color);
    color: #000;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.85);
    /* Cream with opacity */
    padding: 15px 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    border-bottom: 1px solid rgba(139, 90, 43, 0.1);
    /* Lighter brown border */
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: bold;
    white-space: nowrap;
}

.logo span {
    color: #fff;
    /* White text for visibility over the slider images */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    /* Dark shadow to pop out from bright images */
    transition: var(--transition);
}

.navbar.scrolled .logo span {
    color: var(--primary-dark);
    /* Solid Dark Brown when scrolled to cream background */
    text-shadow: none;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #fff;
    /* White text to ensure visibility on slider background */
    text-decoration: none;
    font-weight: 700;
    /* Made slightly bolder for better reading */
    font-size: 0.85rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

.navbar.scrolled .nav-links a {
    color: var(--primary-dark);
    text-shadow: none;
}

.nav-links a i {
    font-size: 0.7rem;
}

.nav-links a:hover {
    color: var(--primary-color);
    /* Brown hover */
    text-shadow: none;
    /* Removed neon shadow */
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface-color);
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 204, 0.2);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 10px 20px;
    text-transform: none;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.dropdown-menu a:hover {
    background: rgba(0, 255, 255, 0.1);
    color: var(--accent-color);
    padding-left: 25px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-book-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.mobile-only {
    display: none;
}

.hamburger {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.navbar.scrolled .hamburger {
    color: var(--primary-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-top: 0px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 10s ease-out;
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 2;
    transform: translateY(-50%);
}

.slider-controls button {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    padding: 20px 0 0 5%; /* Moved up (20px) and further left (5%) */
}

.hero h1 {
    font-size: 3.2rem; /* Smaller font */
    margin-bottom: 20px;
    color: #fae089; /* Premium Gold Color */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
    line-height: 1.1;
    font-weight: 700;
}

.hero p {
    font-size: 1.15rem; /* Smaller font */
    color: #ffffff;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    line-height: 1.5;
}

/* ===== HORIZONTAL BOOKING BAR ===== */
.booking-bar-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    /* Overlap hero */
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 0;
}

.booking-bar-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.booking-input-wrapper {
    background: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    height: 48px;
}

.booking-input-wrapper select,
.booking-input-wrapper input {
    border: none !important;
    background: transparent !important;
    font-size: 0.95rem !important;
    font-family: var(--font-body) !important;
    color: #555 !important;
    width: 100%;
    outline: none;
    cursor: pointer;
}

.booking-input-wrapper.date-wrapper {
    gap: 10px;
}

.booking-input-wrapper.date-wrapper i {
    font-size: 1.1rem;
}

.booking-input-wrapper.guest-wrapper {
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
}

.booking-bar-btn {
    height: 48px;
    padding: 0 30px;
    background: #3498db;
    color: #fff;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 4px;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.booking-bar-btn:hover {
    background: #2980b9;
}

@media (max-width: 992px) {
    .booking-bar-form {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===== CHECKOUT SECTION ===== */
@media (max-width: 992px) {
    .checkout-section .grids-2 {
        grid-template-columns: 1fr !important;
    }

    .checkout-card {
        padding: 20px !important;
    }

    #checkoutForm>div {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .summary-card {
        margin-top: 20px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 90, 43, 0.2);
    /* Brown border */
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.features-list i {
    color: var(--primary-color);
}

.wifi-qr-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 90, 43, 0.2);
}

.wifi-qr-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 1px dashed var(--primary-color);
}

.wifi-qr-img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
}

.wifi-info h5 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 5px;
}

.wifi-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== ROOMS SECTION ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(139, 90, 43, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(139, 90, 43, 0.15);
    border-color: rgba(139, 90, 43, 0.3);
    /* Brown border on hover */
}

.card-img {
    position: relative;
    height: 250px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover .card-img img {
    transform: scale(1.08);
}

.price-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    /* White background for tag */
    color: var(--primary-color);
    /* Brown text */
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid var(--primary-color);
}

.price-tag span {
    font-size: 0.8rem;
    color: #ccc;
    font-weight: 400;
}

.card-content {
    padding: 30px 20px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 70px;
}

.room-features {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 90, 43, 0.1);
}

.room-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.room-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.line-btn {
    width: 100%;
    text-align: center;
}



/* ===== CONTACT SECTION ===== */
.info-items {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    /* Brown Icon */
    background: rgba(139, 90, 43, 0.1);
    /* Brown background */
    padding: 15px;
    border-radius: 50%;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form-container {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.input-group {
    margin-bottom: 20px;
}

.grids-2-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    background: var(--darker-bg);
    border: 1px solid #ccc;
    border-radius: 4px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.2);
}

/* Fix option styling for select */
select option {
    background: var(--darker-bg);
    color: var(--text-main);
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* Map Container */
.map-container iframe {
    transition: var(--transition);
    border: 1px solid rgba(139, 90, 43, 0.2) !important;
}

.map-container iframe:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 15px 40px rgba(139, 90, 43, 0.2) !important;
}

/* ===== FOOTER ===== */
footer {
    background: #2C1E16;
    /* Very Dark Brown */
    border-top: 1px solid #1A110D;
}

.footer-top {
    padding: 60px 0;
    text-align: center;
}

.footer-brand {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-brand h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--surface-color);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #1A110D;
    /* Darker Brown for Bottom */
    padding: 20px 0;
    text-align: center;
    color: #A09080;
    font-size: 0.9rem;
    border-top: 1px solid #110B08;
}

/* ===== ANIMATIONS & RESPONSIVE ===== */

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.5s;
}

.fade-in {
    animation: fadeIn 1.5s ease forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface-color);
    min-width: 180px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(139, 90, 43, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--darker-bg);
    color: var(--primary-color);
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-book-btn {
    background: var(--primary-color);
    color: var(--darker-bg);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.header-book-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 0, 204, 0.3);
}

.mobile-only {
    display: none;
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 250px;
    border: 1px solid rgba(139, 90, 43, 0.2);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

/* Gallery Item Hover Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 90, 43, 0.5);
    /* Brown overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Media Queries */
@media (max-width: 992px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .header-book-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .grids-2,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .about-img {
        order: 2;
    }

    .about-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .header-book-btn {
        display: none;
    }

    .mobile-only {
        display: block;
        margin-top: 20px;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: rgba(26, 11, 46, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        backdrop-filter: blur(10px);
        border-left: 1px solid rgba(255, 0, 204, 0.2);
        overflow-y: auto;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        text-align: center;
        display: none;
        /* Hide by default on mobile, can be toggled via JS */
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .grids-2-small {
        grid-template-columns: 1fr;
    }
}

/* ===== ADMIN DASHBOARD ===== */
.table-responsive {
    overflow-x: auto;
    background: var(--surface-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 90, 43, 0.1);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.admin-table th,
.admin-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(139, 90, 43, 0.1);
}

.admin-table th {
    background: var(--darker-bg);
    color: var(--primary-dark);
    font-weight: 600;
    font-family: var(--font-heading);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover {
    background: rgba(139, 90, 43, 0.02);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.85rem;
}

/* ===== GLASS OASIS THEME UTILITIES ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
}

.glass-input {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(139, 90, 43, 0.1) !important;
    backdrop-filter: blur(4px);
    border-radius: 8px !important;
    padding: 12px 16px !important;
    transition: all 0.3s ease;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(139, 90, 43, 0.1);
}

.premium-btn {
    background: var(--gold-gradient);
    color: white !important;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
}

.premium-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 90, 43, 0.4);
}

.premium-btn:active {
    transform: translateY(0);
}

.modern-step-indicator {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    position: relative;
    margin-bottom: 20px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    color: #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.step-item.active .step-number {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(139, 90, 43, 0.2);
}

.step-item.completed .step-number {
    background: var(--primary-color);
    color: white;
}

.step-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.step-item.active .step-label {
    color: var(--primary-dark);
}

.step-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #eee;
    z-index: 0;
}

.step-line-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.5s ease;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.fade-slide-up {
    animation: fadeSlideUp 0.5s ease-out forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Room Selection Modern Grid */
#roomsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.room-card-modern {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.room-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.room-img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.room-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card-modern:hover .room-img-box img {
    transform: scale(1.1);
}

.room-info-box {
    padding: 25px;
    flex-grow: 1;
}

.room-name-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.room-amenities-modern {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: #666;
}

.room-amenities-modern i {
    color: var(--primary-color);
}

.room-price-box {
    padding: 20px 25px;
    background: rgba(139, 90, 43, 0.03);
    border-top: 1px solid rgba(139, 90, 43, 0.05);
    text-align: right;
}

.search-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.premium-input-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.premium-input-box label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 4px;
}

/* Wizard Sidebar/Footer Adjustment */
.wizard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.btn-wizard {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev {
    background: transparent;
    color: #888 !important;
    border: 1px solid #ddd;
}

.btn-prev:hover {
    background: #f9f9f9;
    color: var(--primary-dark) !important;
}

.btn-wizard i {
    margin: 0 5px;
}


/* Mobile Hero Enhancements */
@media (max-width: 768px) {
    .hero {
        justify-content: center;
        text-align: center;
        padding: 0 15px;
    }
    .hero-content {
        padding: 40px 15px 0 15px !important;
        max-width: 100%;
    }
    .hero h1 {
        font-size: 2rem !important;
        margin-bottom: 15px;
    }
    .hero p {
        font-size: 1rem !important;
        margin-bottom: 25px;
    }
    .slider-controls {
        display: none !important;
    }
    .slider-indicators {
        bottom: 20px;
    }
}
