/* 
Silverscreen Hotel Kakamega - Complete Stylesheet
Primary Colors: Navy Blue (#003366), Silver (#C0C0C0), Gradient Gold
*/

:root {
    --primary-color: #003366;
    --secondary-color: #C0C0C0;
    --accent-gradient: linear-gradient(135deg, #FFD700 0%, #FFAA00 100%);
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gold-color: #FFD700;
    --gold-dark: #FFAA00;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --white: #ffffff;
    --black: #000000;
    --cream-white: #FFF8E1;
}

/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-color);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== MAIN WEBSITE STYLES ==================== */

/* Navigation */
.navbar {
    background-color: var(--primary-color) !important;
    padding: 0.4rem 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    display: flex;
    align-items: center;
    padding: 0;
}

.logo {
    height: 45px;
    width: auto;
    margin-right: 10px;
    border-radius: 5px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text .line1 {
    font-size: 1.1rem !important;
    color: white;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
}

.brand-text .line2 {
    font-size: 0.9rem !important;
    color: var(--gold-color);
    font-weight: 700 !important;
    letter-spacing: 1px;
}

/* Desktop Menu */
.desktop-menu .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 4px;
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem;
    transition: var(--transition);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.menu-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-btn:hover {
    background: var(--accent-gradient);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    border-color: transparent;
}

/* Book Now Button */
.book-now {
    background: var(--accent-gradient) !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    border: none !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
}

.book-now:hover {
    box-shadow: 0 5px 20px rgba(255, 170, 0, 0.4) !important;
    transform: translateY(-3px) !important;
}

/* Notification Bell */
.notification-bell {
    position: relative;
    margin-left: 8px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    padding: 0.5rem 0.8rem !important;
    min-width: 45px;
}

.notification-bell i {
    color: white;
    font-size: 1rem;
}

.notification-bell .notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-gradient);
    color: var(--primary-color);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    border: 2px solid var(--primary-color);
}

/* User Button */
.user-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
}

.user-btn i {
    margin-right: 8px !important;
    font-size: 0.9rem;
}

.user-btn:hover {
    background: var(--accent-gradient) !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    border-color: transparent;
}

/* Desktop Dropdown Menu */
.desktop-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #1a237e, #283593);
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 1001;
    margin-top: 5px;
    display: none;
}

.desktop-dropdown-menu.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.desktop-dropdown-item {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.desktop-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ff9800;
    padding-left: 20px;
}

.desktop-dropdown-item i {
    width: 20px;
    margin-right: 8px;
    text-align: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #002244 100%);
    z-index: 9999;
    transition: right 0.4s ease;
    padding: 4rem 2rem 2rem;
    border-left: 3px solid var(--gold-color);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-gradient);
    border: none;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 10001;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 120px; /* Extra space for scrolling */
    overflow-y: auto;
}

.mobile-menu-content a {
    color: white;
    font-size: 1.1rem;
    margin: 0.8rem 0;
    text-decoration: none;
    transition: var(--transition);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid transparent;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--gold-color) !important;
    border-left: 3px solid var(--gold-color);
    transform: translateX(-5px);
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
    margin: 0.8rem 0;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: var(--transition);
    border-left: 4px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    text-align: left;
    cursor: pointer;
}

.mobile-dropdown-toggle i:first-child {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.mobile-dropdown-toggle .arrow {
    margin-left: auto;
    transition: transform 0.3s;
    font-size: 0.9rem;
}

.mobile-dropdown-toggle.active .arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    padding-left: 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-menu.show {
    max-height: 200px;
    overflow-y: auto;
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 6px;
    margin: 5px 0;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2);
    padding-left: 25px;
}

.mobile-dropdown-item i {
    width: 20px;
    margin-right: 8px;
    text-align: center;
}

/* Mobile Book Now Button - Full width */
.mobile-book-now-btn {
    display: block;
    width: 100%;
    margin: 15px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.mobile-book-now-btn:hover {
    background: linear-gradient(135deg, #e68900, #c67400);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
}

/* Mobile Sign up/Login dropdown - One line items */
.mobile-dropdown-item.signup-item,
.mobile-dropdown-item.login-item,
.mobile-dropdown-item.admin-login-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 12px 15px;
    margin: 3px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Admin button size for mobile */
.mobile-dropdown-item.admin-item {
    font-size: 0.85rem;
    padding: 10px 15px;
}

/* Desktop Book Now button - One line */
.desktop-book-now-btn {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Desktop Sign up/Login dropdown items - One line */
.desktop-dropdown-item.login-item,
.desktop-dropdown-item.signup-item,
.desktop-dropdown-item.admin-login-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    padding: 30px;
}

.about-image-container {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-image-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.about-image-slide.active {
    opacity: 1;
}

.about-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.about-image-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-image-dot.active {
    background: #ff9800;
    transform: scale(1.2);
}

.why-choose-us {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-choose-us h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--gold-color);
    padding-bottom: 10px;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
}

.why-choose-us li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #333;
}

.why-choose-us li:last-child {
    border-bottom: none;
}

.why-choose-us li i {
    color: #ff9800;
    font-size: 1.2rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 20px rgba(0,0,0,0.15);
    z-index: 10000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    background: var(--accent-gradient);
    color: var(--primary-color);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.close-cart {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-items {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.cart-item {
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold-color);
    transition: var(--transition);
}

.cart-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.remove-btn {
    background: var(--danger-color);
    color: white;
    border: none;
    padding: 0.3rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

.remove-btn:hover {
    background: #ff5252;
    transform: scale(1.05);
}

.empty-cart {
    text-align: center;
    color: #666;
    padding: 3rem 1rem;
}

.empty-cart i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid #eee;
    background: white;
}

.checkout-btn {
    background: var(--accent-gradient);
    color: var(--primary-color);
    border: none;
    padding: 0.8rem;
    width: 100%;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 170, 0, 0.3);
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--accent-gradient);
    color: var(--primary-color);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: bold;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--accent-gradient);
    color: var(--primary-color);
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.image-info {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1.5rem;
    border-radius: 0 0 10px 10px;
    margin-top: -5px;
}

.image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.9)), 
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
}

.hero-overlay {
    padding: 2rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-section .lead {
    font-size: 1.8rem;
    color: var(--gold-color);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-btn {
    background: var(--accent-gradient);
    color: var(--primary-color);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    margin: 0 1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 170, 0, 0.4);
}

.hero-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--gold-color);
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    margin: 0 1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn-outline:hover {
    background: var(--gold-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Sections Common */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
}

.service-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
    background: white;
    border: 1px solid #eee;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Enhanced Service Card */
.service-card-enhanced {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.service-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Menu Section */
.menu-section {
    background: white;
}

.menu-swiper {
    padding: 30px 10px 60px;
}

.menu-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.menu-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.menu-card:hover .menu-overlay {
    opacity: 1;
}

.menu-overlay i {
    color: var(--gold-color);
    font-size: 2.5rem;
}

.menu-content {
    padding: 1.5rem;
}

.menu-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin: 1rem 0;
}

.add-to-cart-menu {
    background: var(--accent-gradient);
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    font-size: 0.9rem;
}

.add-to-cart-menu:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(255, 170, 0, 0.3);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: var(--accent-gradient);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.1rem !important;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: var(--accent-gradient) !important;
}

/* Rooms Section */
.rooms-section {
    background: #f8f9fa;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
    cursor: pointer;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.room-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    text-align: center;
    padding: 1.5rem;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-overlay i {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.room-content {
    padding: 1.5rem;
}

.room-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.room-features {
    display: flex;
    gap: 0.8rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.room-features span {
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.room-features i {
    color: var(--gold-color);
    margin-right: 5px;
}

.room-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin: 1rem 0;
}

.room-btn {
    background: var(--accent-gradient);
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    width: 100%;
    transition: var(--transition);
    font-size: 0.9rem;
}

.room-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 170, 0, 0.3);
}

/* Packages Section */
.packages-section {
    background: white;
}

.package-card {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid;
    border-image: var(--accent-gradient) 1;
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.package-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.package-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.package-price {
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0 0.75rem;
    font-size: 1rem;
}

.package-btn {
    background: var(--accent-gradient);
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 170, 0, 0.3);
}

/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
}

.table th {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.table td {
    padding: 1rem;
    vertical-align: middle;
    font-size: 0.95rem;
}

.table-striped tbody tr:nth-of-type(odd) {
    background: rgba(0, 51, 102, 0.05);
}

.add-to-cart-btn {
    background: var(--accent-gradient);
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.add-to-cart-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(255, 170, 0, 0.3);
}

/* ==================== NEWS SECTION STYLES ==================== */
.news-section {
    background: white;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid #e0e0e0;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--gold-color);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gradient);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.news-content {
    padding: 1.8rem;
}

.news-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.news-category {
    display: inline-block;
    background: rgba(0, 51, 102, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== OFFERS SECTION STYLES ==================== */
.offers-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.offer-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border-color: var(--gold-color);
}

.offer-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--danger-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 3px 15px rgba(220, 53, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-content {
    padding: 1.8rem;
    position: relative;
}

.offer-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    font-size: 1.4rem;
}

.offer-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-price {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.new-price {
    font-size: 1.8rem;
    color: var(--danger-color);
    font-weight: 800;
}

.offer-btn {
    background: var(--accent-gradient);
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    width: 100%;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1.5rem 0;
    font-size: 1rem;
}

.offer-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 170, 0, 0.4);
}

.offer-validity {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #ddd;
    font-weight: 600;
}

/* ==================== CLIENT REVIEWS SECTION STYLES ==================== */
.reviews-section {
    background: white;
}

#client-reviews {
    background: linear-gradient(135deg, var(--cream-white) 0%, #FFEAA7 100%);
}

.review-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
    height: 100%;
    padding: 2rem;
    border: 1px solid #e0e0e0;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--gold-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-color);
    padding: 3px;
}

.review-header h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem;
}

.review-rating {
    margin-top: 0.5rem;
}

.review-rating i {
    color: #ddd;
    font-size: 1rem;
    margin-right: 3px;
}

.review-rating i.active {
    color: var(--gold-color);
}

.review-content {
    padding: 0.5rem 0;
}

.review-content p {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.review-date, .review-stay {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-date i, .review-stay i {
    color: var(--gold-color);
    font-size: 0.9rem;
}

/* Booking Section */
.booking-section {
    background: #f8f9fa;
}

.booking-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.booking-form .form-label {
    font-weight: 600;
    color: var(--primary-color);
}

.submit-btn {
    background: var(--accent-gradient);
    color: var(--primary-color);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 1rem;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 170, 0, 0.3);
}

/* Reviews Form Section */
.reviews-section {
    background: #f8f9fa;
}

.review-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #ddd;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.stars i.active {
    color: var(--gold-color);
}

.stars i:hover {
    color: var(--gold-dark);
}

/* Map Section */
.map-section {
    background: white;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-info {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
}

.location-info i {
    color: var(--gold-color);
    margin-right: 10px;
    width: 20px;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid;
    border-image: var(--accent-gradient) 1;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.whatsapp-link:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.email-link:hover {
    color: var(--gold-dark);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    border-radius: 5px;
}

.footer-brand h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 800;
}

.footer-brand h5 {
    color: var(--gold-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.facebook { background: #1877F2; }
.twitter { background: #1DA1F2; }
.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.tiktok { background: #000000; }
.whatsapp { background: #25D366; }

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.newsletter {
    margin-top: 1.5rem;
}

.newsletter-btn {
    background: var(--accent-gradient);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.newsletter-btn:hover {
    transform: scale(1.05);
}

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #aaa;
    font-size: 0.85rem;
}

/* ==================== LOGIN PAGE STYLES ==================== */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 51, 102, 0.95), rgba(0, 51, 102, 0.85)), 
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 20px;
    animation: fadeIn 1s ease;
}

.auth-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    transform: translateY(20px);
    animation: slideUp 0.5s ease forwards 0.3s;
    position: relative;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.auth-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #002244 100%);
    color: white;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.auth-header img {
    height: 80px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.3));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.auth-header h2 {
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    font-size: 1.8rem;
}

.auth-header p {
    color: var(--gold-color);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.auth-tabs {
    display: flex;
    margin-bottom: 0;
    position: relative;
    background: #f8f9fa;
}

.auth-tab {
    flex: 1;
    padding: 1.2rem;
    text-align: center;
    background: none;
    border: none;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
}

.auth-tab.active {
    color: var(--primary-color);
    background: white;
    border-bottom-color: var(--gold-color);
}

.auth-tab:hover:not(.active) {
    color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
}

.auth-body {
    padding: 2.5rem;
}

.auth-form {
    display: none;
    animation: fadeIn 0.5s ease;
}

.auth-form.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Form Controls */
.form-control {
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: var(--transition);
    font-size: 1rem;
    background: #f8f9fa;
    font-family: inherit;
    color: var(--black) !important;
}

.form-control:focus {
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background: white;
    transform: translateY(-1px);
}

/* BLACK PLACEHOLDERS FOR LOGIN PAGE */
#loginEmail::placeholder,
#loginPassword::placeholder,
#signupEmail::placeholder,
#signupPhone::placeholder,
#signupFirstName::placeholder,
#signupLastName::placeholder,
#signupPassword::placeholder,
#signupConfirmPassword::placeholder,
.captcha-container input::placeholder {
    color: var(--black) !important;
    opacity: 0.9 !important;
}

/* BLACK TEXT FOR INPUT VALUES */
#loginEmail,
#loginPassword,
#signupEmail,
#signupPhone,
#signupFirstName,
#signupLastName,
#signupPassword,
#signupConfirmPassword {
    color: var(--black) !important;
    background-color: var(--white) !important;
    border: 2px solid #e0e0e0 !important;
}

/* BLACK FORM LABELS */
.form-label {
    font-weight: 600;
    color: var(--black) !important;
    margin-bottom: 0.8rem;
    display: block;
    font-size: 0.95rem;
}

/* Black email heading */
.form-label[for="loginEmail"],
.form-label[for="signupEmail"],
.form-label[for="loginPassword"] {
    color: var(--black) !important;
    background: none !important;
    display: block;
    padding: 0;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: none !important;
}

/* BLACK PASSWORD LABEL AND FORGOT PASSWORD LINK */
.forgot-password a {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 500;
    background-color: transparent !important;
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(0, 51, 102, 0.1);
}

.forgot-password a:hover {
    color: var(--gold-color) !important;
    text-decoration: underline;
    background: rgba(255, 215, 0, 0.2);
}

/* Security Enhanced Password Input */
.password-container {
    position: relative;
}

.password-container .form-control {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 5px;
    z-index: 2;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

/* Rate Limiting UI */
.rate-limit-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    display: none;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.rate-limit-notice.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.attempts-counter {
    font-weight: 800;
    color: #dc3545;
    font-size: 1.1rem;
}

/* CAPTCHA Container */
.captcha-container {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 2px solid #dee2e6;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.captcha-text {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 5px;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
    user-select: none;
    flex: 1;
    text-align: center;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0,0,0,0.05) 10px,
        rgba(0,0,0,0.05) 20px
    );
    color: var(--black) !important;
}

.refresh-captcha {
    background: var(--accent-gradient);
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.refresh-captcha:hover {
    transform: rotate(180deg) scale(1.1);
}

/* Security Badge */
.security-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    transition: var(--transition);
}

.security-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.security-badge i {
    color: var(--success-color);
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: var(--black) !important;
}

.strength-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
    border-radius: 3px;
}

/* Auth Button */
.auth-btn {
    background: var(--accent-gradient);
    color: var(--primary-color);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 12px;
    width: 100%;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 170, 0, 0.2);
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
}

.auth-btn:hover:not(:disabled) {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 170, 0, 0.3);
}

.auth-btn:hover:not(:disabled)::before {
    left: 100%;
}

.auth-btn:active:not(:disabled) {
    transform: translateY(-2px);
}

.auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.form-check-input:checked {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
}

/* CSRF Token (hidden) */
.csrf-token {
    display: none;
}

.back-home {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.back-home a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: #f8f9fa;
}

.back-home a:hover {
    color: var(--gold-dark);
    gap: 15px;
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(-5px);
}

/* Admin Login Note - BLACK TEXT */
.admin-login-note {
    background: linear-gradient(135deg, var(--cream-white) 0%, #FFEAA7 100%) !important;
    border-left: 4px solid var(--gold-color) !important;
    padding: 1.2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    animation: fadeIn 0.5s ease;
}

.admin-login-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--black) !important;
    line-height: 1.5;
}

.admin-login-note strong {
    color: var(--primary-color) !important;
    font-weight: 700;
}

/* Session Timeout Warning */
.session-warning {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    z-index: 10000;
    display: none;
    animation: slideInUp 0.3s ease;
    max-width: 350px;
}

.session-warning.show {
    display: block;
    animation: pulse 2s infinite;
}

.session-warning i {
    font-size: 1.3rem;
    margin-right: 10px;
    vertical-align: middle;
}

#sessionCountdown {
    font-weight: 800;
    font-size: 1.2rem;
    margin-left: 5px;
}

/* Login History - BLACK TEXT */
.login-history {
    font-size: 0.85rem;
    color: var(--black) !important;
    margin-top: 0.8rem;
    padding: 0.8rem;
    background: var(--cream-white);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.login-history i {
    color: var(--gold-color);
    margin-right: 8px;
}

/* Two-Factor Authentication */
.two-factor-container {
    display: none;
    margin-top: 1.5rem;
    padding: 1.8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 2px solid #dee2e6;
    animation: fadeIn 0.5s ease;
}

.two-factor-container.active {
    display: block;
}

.two-factor-container h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.two-factor-container h6 i {
    color: var(--gold-color);
}

.two-factor-container .small {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Security Audit Log - BLACK TEXT */
.security-audit {
    font-size: 0.75rem;
    color: var(--black) !important;
    margin-top: 1.5rem;
    text-align: center;
    padding: 1rem;
    background: var(--cream-white);
    border-radius: 8px;
    border: 1px solid rgba(0, 51, 102, 0.2);
    font-weight: 600;
}

.security-audit i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

/* Page Loader */
body.is-loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 51, 102, 0.85);
    z-index: 20000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-bar {
    width: min(320px, 70vw);
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.page-loader-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    height: 100%;
    width: 40%;
    background: var(--accent-gradient);
    animation: loader-bar 1s ease-in-out infinite;
}

@keyframes loader-bar {
    0% { transform: translateX(0); }
    100% { transform: translateX(260%); }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin-right: 12px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification System */
.notification {
    position: fixed !important;
    top: 25px !important;
    right: 25px !important;
    background: white !important;
    padding: 1.2rem 1.5rem !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    z-index: 10001 !important;
    transform: translateX(150%) !important;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    min-width: 320px !important;
    max-width: 400px !important;
    border-left: 5px solid !important;
    backdrop-filter: blur(10px);
}

.notification.notification-success {
    border-left-color: var(--success-color) !important;
}

.notification.notification-warning {
    border-left-color: var(--warning-color) !important;
}

.notification.notification-error {
    border-left-color: var(--danger-color) !important;
}

.notification.notification-info {
    border-left-color: var(--info-color) !important;
}

.notification-content {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.notification-content i {
    font-size: 1.4rem !important;
}

/* Input Groups */
.input-group-text {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 0.8rem 1rem;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-left: 2px solid var(--gold-color);
}

/* Terms and Conditions */
.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.form-check-label a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* ==================== USER DASHBOARD STYLES ==================== */
.dashboard-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.user-navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #002244 100%);
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.user-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 15px;
}

.user-brand img {
    height: 45px;
    border-radius: 8px;
    border: 2px solid var(--gold-color);
}

.user-brand h3 {
    font-weight: 700;
    margin: 0;
    font-size: 1.4rem;
    color: var(--white);
}

.user-nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-greeting {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.user-greeting strong {
    color: var(--gold-color);
}

.search-box {
    position: relative;
    width: 300px;
}

.search-box input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    border-radius: 25px;
    border: none;
    background: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.user-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.notification-btn, .profile-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.notification-btn:hover, .profile-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-main {
    padding-top: 80px;
    padding-bottom: 40px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-card {
    background: white;
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    border-top: 4px solid var(--gold-color);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-color);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.card-header h4 {
    color: var(--primary-color) !important;
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem;
    background: none;
    padding: 0;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color) !important;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #002244 100%);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-item:hover {
    background: linear-gradient(135deg, #002244 0%, #001122 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
}

.recent-bookings {
    max-height: 300px;
    overflow-y: auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, #002244 100%);
    padding: 1rem;
    border-radius: 10px;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-bottom: 10px;
}

.booking-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.booking-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.booking-info h6 {
    color: var(--white) !important;
    margin: 0 0 0.3rem 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.booking-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--white) !important;
    opacity: 0.9;
}

.booking-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-confirmed {
    background: rgba(40, 167, 69, 0.15);
    color: var(--success-color);
}

.status-pending {
    background: rgba(255, 193, 7, 0.15);
    color: var(--warning-color);
}

.status-cancelled {
    background: rgba(220, 53, 69, 0.15);
    color: var(--danger-color);
}

.status-completed {
    background: rgba(0, 123, 255, 0.15);
    color: #007bff;
}

.dashboard-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: var(--accent-gradient);
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    margin-top: 1rem;
}

.dashboard-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 170, 0, 0.2);
}

.dashboard-footer {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 0.9rem;
    background: white;
    margin-top: 2rem;
    border-top: 1px solid #eee;
}

/* Quick Start Card (White with Gold Gradient Border) */
.quick-start-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    border-top: 4px solid var(--gold-color);
    position: relative;
    overflow: hidden;
}

.quick-start-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-color);
}

.quick-start-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.quick-start-card:hover::before {
    opacity: 0.05;
}

.quick-start-card > * {
    position: relative;
    z-index: 1;
}

.quick-start-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 1rem;
}

.quick-btn {
    background: var(--cream-white);
    border: 2px solid transparent;
    padding: 0.8rem;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    font-size: 0.85rem;
}

.quick-btn:hover {
    background: var(--accent-gradient);
    transform: translateY(-2px);
    border-color: var(--gold-color);
    box-shadow: 0 5px 15px rgba(255, 170, 0, 0.2);
}

/* Sidebar for Dashboard */
.dashboard-sidebar {
    position: fixed;
    left: 0;
    top: 80px;
    width: 250px;
    height: calc(100vh - 80px);
    background: white;
    box-shadow: 2px 0 15px rgba(0,0,0,0.1);
    padding: 1.5rem 0;
    overflow-y: auto;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 1rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.2rem;
    background: none;
    border: none;
    text-align: left;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
    font-size: 0.95rem;
}

.sidebar-item:hover {
    background: rgba(0, 51, 102, 0.05);
    transform: translateX(5px);
}

.sidebar-item.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 170, 0, 0.15) 100%);
    color: var(--primary-color);
    border-left: 4px solid var(--gold-color);
}

.sidebar-item i {
    width: 20px;
    font-size: 1.1rem;
    color: var(--primary-color) !important;
    background: none;
    padding: 0;
}

.sidebar-badge {
    margin-left: auto;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
}

.dashboard-content {
    margin-left: 250px;
    padding: 2rem;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .dashboard-content {
        margin-left: 0;
    }
    
    .dashboard-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .dashboard-sidebar.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 992px) {
    .user-navbar {
        padding: 1rem;
    }
    
    .search-box {
        width: 200px;
    }
    
    .user-brand h3 {
        font-size: 1.2rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-card, .offer-card, .review-card {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.3rem;
    }
    
    .hero-btn, .hero-btn-outline {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        margin: 0.5rem;
        display: block;
        width: 80%;
        margin: 0.5rem auto;
    }
    
    .mobile-menu-overlay {
        width: 70%;
        right: -70%;
    }
    
    .mobile-menu-overlay.active {
        right: 0;
    }
    
    .desktop-dropdown-menu {
        display: none !important;
    }
    
    .mobile-menu-content {
        padding-bottom: 150px;
    }
}

@media (max-width: 768px) {
    .auth-container {
        padding: 15px;
    }
    
    .auth-card {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .auth-header {
        padding: 2rem 1.5rem;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
    
    .auth-header img {
        height: 60px;
    }
    
    .auth-body {
        padding: 2rem 1.5rem;
    }
    
    .auth-tab {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .form-control {
        padding: 0.9rem 1rem;
    }
    
    .captcha-text {
        font-size: 1.5rem;
        padding: 0.6rem 1rem;
    }
    
    .user-nav-controls {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .search-box {
        width: 100%;
        margin-top: 10px;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .hero-section {
        height: 100vh;
        padding-top: 60px;
    }
    
    .logo {
        height: 40px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .mobile-menu-overlay {
        width: 80%;
        right: -80%;
    }
    
    .mobile-menu-overlay.active {
        right: 0;
    }
    
    .service-card,
    .package-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon,
    .package-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about-image-container {
        height: 300px;
    }
    
    .mobile-dropdown-item.signup-item,
    .mobile-dropdown-item.login-item,
    .mobile-dropdown-item.admin-login-item {
        font-size: 13px;
        padding: 10px 12px;
    }
}

@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }
    
    .mobile-menu-overlay {
        display: none;
    }
}

@media (max-width: 480px) {
    .auth-header {
        padding: 1.5rem 1rem;
    }
    
    .auth-header h2 {
        font-size: 1.3rem;
    }
    
    .auth-header p {
        font-size: 1rem;
    }
    
    .auth-body {
        padding: 1.5rem 1rem;
    }
    
    .auth-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .user-brand h3 {
        display: none;
    }
    
    .user-greeting {
        display: none;
    }
    
    .dashboard-card {
        padding: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-image-container {
        height: 250px;
    }
    
    .mobile-menu-overlay {
        width: 85%;
        min-width: 250px;
    }
    
    .mobile-menu-content {
        padding: 60px 20px 30px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ==================== ACCESSIBILITY ==================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
:focus {
    outline: 2px solid var(--gold-color);
    outline-offset: 2px;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    min-width: 300px;
    max-width: 400px;
    border-left: 5px solid;
}

.notification.notification-success {
    border-left-color: #4CAF50;
}

.notification.notification-warning {
    border-left-color: #FF9800;
}

.notification.notification-error {
    border-left-color: #F44336;
}

.notification.notification-info {
    border-left-color: #2196F3;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-content i.fa-check-circle {
    color: #4CAF50;
}

.notification-content i.fa-exclamation-triangle {
    color: #FF9800;
}

.notification-content i.fa-exclamation-circle {
    color: #F44336;
}

.notification-content i.fa-info-circle {
    color: #2196F3;
}

/* Admin Link in Footer */
.footer-links a[href="dashboard.html"] {
    color: var(--gold-color);
    font-weight: 600;
}

.footer-links a[href="dashboard.html"]:hover {
    color: white;
}

/* Dashboard specific styles for mobile menu */
@media (max-width: 992px) {
    .mobile-menu-overlay {
        width: 70%;
        right: -70%;
    }
    
    .mobile-menu-overlay.active {
        right: 0;
    }
    
    /* Add close button for dashboard mobile menu */
    .close-menu {
        display: flex !important;
    }
}

/* Mobile dropdown scrollbar styling */
.mobile-dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

.mobile-dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.mobile-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.mobile-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Mobile menu content scrollable area */
.mobile-menu-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}

/* Ensure all menu items are visible on mobile */
.mobile-menu-btn,
.mobile-dropdown-toggle,
.mobile-book-now-btn,
.mobile-account-buttons {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}
