
/* === app.css === */
/* SevenSeas Hotel - Custom CSS */

/* Color Variables */
:root {
    --gold: #C9A44C;
    --navy: #0E1A2B;
    --white: #FFFFFF;
    --light-gold: #D4B366;
    --dark-navy: #0A141F;
    --text-dark: #333333;
    --text-light: #666666;
    --border-light: #E5E5E5;
}

/* Typography */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--navy);
}

.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-navy { background-color: var(--navy) !important; }

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 164, 76, 0.3);
}

.btn-gold:hover {
    background-color: var(--light-gold);
    border-color: var(--light-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 164, 76, 0.4);
}

.btn-navy {
    background-color: var(--navy);
    border-color: var(--navy);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background-color: var(--dark-navy);
    border-color: var(--dark-navy);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-gold {
    color: var(--gold);
    border-color: var(--gold);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 26, 43, 0.8), rgba(201, 164, 76, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Cards */
.card-luxury {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card-luxury:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-luxury .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-luxury:hover .card-img-top {
    transform: scale(1.05);
}

/* Room Cards */
.room-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.room-card .room-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.room-card .room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(14, 26, 43, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-card .room-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.room-card:hover .room-info {
    transform: translateY(0);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    margin: 1rem;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 600;
    color: var(--navy);
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 26, 43, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Forms */
.form-luxury {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 164, 76, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Section Spacing */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Booking Form */
.booking-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .room-card .room-info {
        position: static;
        transform: none;
        color: var(--text-dark);
        padding: 1rem;
    }
    
    .room-card .room-overlay {
        display: none;
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-gold);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-widget a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(201, 164, 76, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-widget a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(201, 164, 76, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.overlay-dark {
    background: rgba(0,0,0,0.5);
}

.overlay-navy {
    background: rgba(14, 26, 43, 0.8);
}

.border-gold {
    border-color: var(--gold) !important;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

/* Responsive Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .whatsapp-widget a,
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-widget a,
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .back-to-top {
        bottom: 70px;
        right: 10px;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .whatsapp-widget,
    .back-to-top,
    .floating-buttons {
        display: none !important;
    }
}

/* === luxury-hotel.css === */
/* Hotel Nehrus Navigation Styles */

/* Navbar Container */
.hotel-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 164, 76, 0.1);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    min-height: 80px;
    z-index: 1050;
}

/* Navbar Scrolled state removed for stability */

/* Brand Styling */
.hotel-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hotel-brand:hover {
    text-decoration: none;
    transform: scale(1.02);
}

.hotel-logo {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    transition: all 0.3s ease;
}

/* Scrolled logo rules removed */

.brand-text {
    display: flex;
    flex-direction: column;
}

.hotel-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin: 0;
}

/* Scrolled name rules removed */

.hotel-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    margin: 0;
    margin-top: -2px;
}

/* Navigation Menu */
.hotel-nav-menu {
    align-items: center;
}

.hotel-nav-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy) !important;
    padding: 0.75rem 1.25rem !important;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.hotel-nav-link:hover::after,
.hotel-nav-link.active::after {
    width: 80%;
}

.hotel-nav-link:hover {
    color: var(--gold) !important;
    transform: translateY(-1px);
}

.hotel-nav-link.active {
    color: var(--gold) !important;
}

/* Dropdown toggle arrow */
.dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: 0.125em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.hotel-dropdown {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.hotel-dropdown.show {
    display: block !important;
    animation: dropdownSlideDown 0.3s ease-out;
}

@keyframes dropdownSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hotel-dropdown .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--navy);
    transition: all 0.3s ease;
    border-radius: 0;
    display: block;
    width: 100%;
    text-align: left;
}

.hotel-dropdown .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(201, 164, 76, 0.1), rgba(212, 179, 102, 0.1));
    color: var(--gold);
    transform: translateX(5px);
}

.hotel-dropdown .dropdown-item i {
    color: var(--gold);
    width: 20px;
}

/* Mobile Toggle */
.hotel-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    position: relative;
    width: 35px;
    height: 35px;
}

.hotel-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hotel-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hotel-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}

.hotel-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .hotel-navbar {
        min-height: 70px;
    }
    
    .navbar-collapse {
        background: white;
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }
    
    .hotel-nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(201, 164, 76, 0.1);
    }
    
    .hotel-nav-link:last-child {
        border-bottom: none;
    }
    
    .hotel-nav-link::after {
        display: none;
    }
    
    .hotel-dropdown {
        box-shadow: none;
        background: rgba(201, 164, 76, 0.05);
        margin: 0.5rem 0;
        border-radius: 8px;
        position: static;
        display: none;
    }

    .hotel-dropdown.show {
        display: block !important;
    }
    
    .hotel-name {
        font-size: 1.3rem;
    }
    
    .hotel-logo {
        width: 45px;
        height: 45px;
    }
}

/* Content Padding to Prevent Navbar Overlap */
body {
    padding-top: 80px; /* Same as navbar min-height */
}

/* Adjust for scrolled navbar */
@media (min-width: 992px) {
    body.navbar-scrolled {
        padding-top: 70px; /* Same as scrolled navbar min-height */
    }
}

/* Additional spacing for mobile */
@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }
}

/* Hero Section Adjustments */
.hero-section {
    margin-top: -80px;
    padding-top: 80px;
}

@media (max-width: 991.98px) {
    .hero-section {
        margin-top: -70px;
        padding-top: 70px;
    }
}

/* Page Content Sections */
.page-section {
    padding-top: 2rem;
}

/* Breadcrumb Adjustments */
.breadcrumb-section {
    padding-top: 2rem;
    min-height: calc(40vh - 80px);
}

@media (max-width: 991.98px) {
    .breadcrumb-section {
        min-height: calc(40vh - 70px);
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Animation for Navbar Scroll */
.navbar-scroll-animation {
    animation: navbarSlideDown 0.5s ease-out;
}

@keyframes navbarSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Custom Pagination Styles */
.pagination {
    margin-bottom: 0;
}

.pagination .page-link {
    color: #c9a44c;
    border-color: #dee2e6;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    color: #a0852d;
    background-color: #f8f9fa;
    border-color: #c9a44c;
}

.pagination .page-item.active .page-link {
    background-color: #c9a44c;
    border-color: #c9a44c;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
}

.pagination .page-link i {
    font-size: 0.75rem;
}

/* Fix for oversized pagination arrows */
.pagination .page-link svg {
    width: 16px !important;
    height: 16px !important;
}

.pagination .page-link i.fas {
    font-size: 12px !important;
}

/* Close By Attractions Page Styles */
.seasonal-icon i {
    transition: transform 0.3s ease;
}

.seasonal-icon:hover i {
    transform: scale(1.1);
}

.card:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.card .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

.object-cover {
    object-fit: cover;
}

/* Activity icons styling */
.card-title i {
    transition: color 0.3s ease;
}

.card:hover .card-title i {
    transform: scale(1.1);
}

/* === responsive.css === */
/* ============================================
   HOTEL NEHRUS - LUXURY RESPONSIVE DESIGN
   Mobile-First Approach
   ============================================ */

/* Root Variables - Luxury Color Palette */
:root {
    --primary-navy: #0E1A2B;
    --secondary-navy: #1A2B3D;
    --accent-gold: #C9A44C;
    --accent-gold-light: #D4B866;
    --accent-gold-dark: #B89040;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --text-muted: #95A5A6;
    --bg-white: #FFFFFF;
    --bg-off-white: #F8F9FA;
    --bg-light-gray: #F0F0F0;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
}

h1 { font-size: clamp(1.75rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 3vw, 1.75rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.luxury-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.luxury-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 26, 43, 0.75) 0%, rgba(14, 26, 43, 0.5) 50%, rgba(201, 164, 76, 0.1) 100%);
    z-index: 1;
}

.luxury-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    max-width: 90%;
    padding: 2rem;
}

.luxury-hero h1 {
    color: var(--bg-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.luxury-hero p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 300;
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */

.btn-luxury {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-navy);
    text-decoration: none;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    color: var(--primary-navy);
    text-decoration: none;
}

.btn-luxury-outline {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--accent-gold);
    text-decoration: none;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-luxury-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
}

.btn-navy {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-navy);
    color: var(--bg-white);
    text-decoration: none;
    border: 2px solid var(--primary-navy);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.btn-navy:hover {
    background: var(--secondary-navy);
    border-color: var(--secondary-navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   NAVIGATION - RESPONSIVE
   ============================================ */

.navbar-luxury {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Scrolled states removed for stability */

.navbar-brand-luxury {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand-luxury:hover {
    transform: scale(1.02);
}

.navbar-logo {
    height: 75px;
    width: auto;
    transition: var(--transition);
}

/* Scrolled logo rules removed */

.navbar-brand-text h4 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary-navy);
}

.navbar-brand-text span {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.nav-link-luxury {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.75rem 1rem !important;
    transition: var(--transition);
}

.nav-link-luxury::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link-luxury:hover::after,
.nav-link-luxury.active::after {
    width: 80%;
}

.nav-link-luxury:hover {
    color: var(--accent-gold) !important;
}

/* Mobile Menu Toggle */
.navbar-toggler-luxury {
    border: none;
    padding: 0.5rem 0.75rem;
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.navbar-toggler-luxury:focus {
    box-shadow: 0 0 0 3px rgba(14, 26, 43, 0.1);
}

.navbar-toggler-luxury span {
    background-color: var(--primary-navy);
    height: 4px;
    width: 28px;
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   CARDS & CONTAINERS
   ============================================ */

.luxury-card {
    background: var(--bg-white);
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.luxury-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.luxury-card-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.luxury-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.luxury-card:hover .luxury-card-image img {
    transform: scale(1.05);
}

.luxury-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 26, 43, 0.3);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-card:hover .luxury-card-overlay {
    opacity: 1;
}

.luxury-card-body {
    padding: 1.25rem;
}

.luxury-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-navy);
}

.luxury-card-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* ============================================
   SECTION LAYOUTS
   ============================================ */

.luxury-section {
    padding: 4rem 2rem;
}

.luxury-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.luxury-section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.luxury-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
}

.luxury-section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 2rem auto 0;
}

/* ============================================
   GRID LAYOUTS - RESPONSIVE
   ============================================ */

.luxury-grid {
    display: grid;
    gap: 2rem;
}

.luxury-grid-2 {
    grid-template-columns: 1fr;
}

.luxury-grid-3 {
    grid-template-columns: 1fr;
}

.luxury-grid-4 {
    grid-template-columns: 1fr;
}

/* ============================================
   FEATURES & AMENITIES
   ============================================ */

.feature-box {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    transform: scale(1.15) rotateY(10deg);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.feature-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
    background: var(--bg-off-white);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 0.85rem;
}

.testimonial-position {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-luxury {
    background: var(--primary-navy);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--bg-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-right: 0.5rem;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================
   TABLET RESPONSIVE - 768px and above
   ============================================ */

@media (min-width: 768px) {
    .luxury-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .luxury-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .luxury-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .luxury-section {
        padding: 5rem 2rem;
    }

    .luxury-hero-content {
        max-width: 85%;
    }

    .luxury-card-image {
        height: 300px;
    }
}

/* ============================================
   DESKTOP RESPONSIVE - 1024px and above
   ============================================ */

@media (min-width: 1024px) {
    .luxury-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .luxury-hero {
        min-height: 100vh;
    }

    .luxury-hero-content {
        max-width: 80%;
    }

    .luxury-section {
        padding: 6rem 0;
    }

    .luxury-card-image {
        height: 350px;
    }

    .container-luxury {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
}

/* ============================================
   LARGE DESKTOP - 1440px and above
   ============================================ */

@media (min-width: 1440px) {
    .container-luxury {
        max-width: 1400px;
    }

    .luxury-hero h1 {
        font-size: 4rem;
    }

    .luxury-section {
        padding: 7rem 0;
    }

    .luxury-card-image {
        height: 400px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gold { color: var(--accent-gold) !important; }
.text-navy { color: var(--primary-navy) !important; }
.text-light { color: var(--text-light) !important; }

.bg-navy { background-color: var(--primary-navy) !important; }
.bg-gold { background-color: var(--accent-gold) !important; }
.bg-light { background-color: var(--bg-off-white) !important; }

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

.border-gold { border-color: var(--accent-gold) !important; }

.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 20px; }

.transition-all { transition: var(--transition); }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* ============================================
   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-width: 0;
}

:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ============================================
   SPECIAL OFFERS - LUXURY CARDS
   ============================================ */

.offer-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.offer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-navy);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.offer-features {
    list-style: none;
    font-size: 0.85rem;
    line-height: 1.6;
}

.offer-features li {
    color: var(--text-light);
    margin-bottom: 8px;
}

.offer-features i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* Offer cards responsive adjustments */
@media (max-width: 768px) {
    .offer-card {
        margin-bottom: 15px;
    }

    .offer-badge {
        top: 8px;
        right: 8px;
        padding: 5px 10px;
        font-size: 0.65rem;
    }

    .ihg-card-title {
        font-size: 1.1rem;
    }

    .ihg-card-text {
        font-size: 0.85rem;
    }

    .offer-features {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .offer-features li {
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .offer-badge {
        padding: 4px 8px;
        font-size: 0.6rem;
    }

    .ihg-card-title {
        font-size: 1rem;
    }

    .ihg-card-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .offer-features {
        font-size: 0.75rem;
    }

    .offer-features li {
        margin-bottom: 5px;
    }

    .offer-features i {
        font-size: 0.7rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .navbar-luxury,
    .footer-luxury,
    .btn-luxury {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}


/* === luxury-navbar.css === */
/*==============================================
  LUXURY HOTEL NAVBAR - PREMIUM STYLING
  Complete responsive design for all devices
  ================================================*/

:root {
    /* Website Color Scheme */
    --primary-gold: #E8BF4B;
    --primary-gold-dark: #D4A740;
    --primary-dark: #1B1B1B;
    --primary-light: #FAFAF8;
    --text-dark: #3C3C3C;
    --text-light: #6C757D;
    --border-light: #EBEBEB;
    --bg-highlight: #F5F1EB;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --navbar-height: 100px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/*==============================================
  MAIN NAVBAR STRUCTURE
  ================================================*/

.main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 2000 !important; /* Extremely high to stay on top */
    background: #FFFFFF !important;
    border-bottom: 2px solid #000000 !important;
    box-shadow: var(--shadow-md) !important;
    width: 100% !important;
    transform: none !important; /* Disable any sliding animations */
    transition: none !important;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--navbar-height);
    width: 100%;
    box-sizing: border-box;
    gap: 0.5rem;
}

.navbar-brand-luxury,
.navbar-actions-group {
    flex: 0 0 auto;
    min-width: fit-content;
}

@media (max-width: 1400px) {
    .navbar-container {
        padding: 0 1rem;
        gap: 0.25rem;
    }
}

/*==============================================
  NAVBAR BRAND (LOGO + NAME)
  ================================================*/

.navbar-brand-luxury {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    background: transparent;
    border-radius: 12px;
    border: none;
    box-shadow: none;
    transition: none; /* Removed to prevent blurring */
}

.navbar-brand-luxury:hover {
    opacity: 1; /* Keep consistent opacity */
}

.navbar-brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: none; /* Removed to prevent blurring */
    will-change: auto;
}

.navbar-brand-link:hover {
    opacity: 1;
}

.navbar-logo {
    height: 110px !important;
    width: auto !important;
    object-fit: contain;
    filter: drop-shadow(0 0 0.5px rgba(180, 0, 0, 0.4)) !important; /* Softened red border line */
    transition: none !important;
    will-change: auto !important;
    image-rendering: auto;
    image-rendering: high-quality;
}

.navbar-brand-link:hover .navbar-logo {
    filter: none !important;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    line-height: 1;
}

.navbar-brand-text .brand-name-bold {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #1B1B1B !important;
    margin: 0;
    letter-spacing: 0.5px;
    -webkit-text-fill-color: #1B1B1B !important;
    text-shadow: none;
}

.navbar-brand-text .navbar-slogan-styled {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    color: #D4A740 !important;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: none !important;
    -webkit-text-fill-color: #D4A740 !important;
    font-style: normal;
    display: inline-block;
}

@media (max-width: 1550px) {
    .navbar-slogan-styled {
        display: block !important;
        font-size: 0.55rem;
        letter-spacing: 1px;
    }
}

/*==============================================
  DESKTOP NAVIGATION MENU
  ================================================*/

.navbar-menu-desktop {
    display: none;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem;
    margin: 0 auto;
    gap: clamp(0.4rem, 0.6vw, 0.8rem);
    /* Tight, minimal spacing between nav items */
}

@media (min-width: 1200px) {
    .navbar-menu-desktop {
        display: flex;
    }
}

.navbar-menu-desktop>* {
    position: relative;
    /* No margins needed, using flex gap */
}

.navbar-menu-desktop i.fa-chevron-down {
    display: inline-block !important;
    /* Keep the dropdown arrow */
    font-size: 0.55rem;
    margin-left: 0.35rem;
    color: var(--primary-gold);
    opacity: 0.8;
}

/* Hide all other generic icons for premium look on desktop */
.navbar-menu-desktop .nav-link-luxury>i:not(.fa-chevron-down) {
    display: none !important;
}

.nav-link-luxury {
    position: relative;
    color: var(--primary-dark);
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, serif;
    /* Heritage / Luxury look */
    font-weight: 800;
    /* Sophisticated bold */
    font-size: 0.85rem;
    /* Adjusted size to fit navbar */
    padding: 0.6rem 0;
    transition: color 0.4s ease-out;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    /* Super Elegant tracking, scaled down to fit */
}

.nav-link-luxury:hover,
.nav-item-luxury:hover>.nav-link-luxury {
    color: var(--primary-gold-dark);
}

/* Elegant gold sliding underline */
.nav-link-luxury::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    /* Very thin, aristocratic line */
    background: var(--primary-gold-dark);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-link-luxury:hover::after,
.nav-item-luxury:hover>.nav-link-luxury::after {
    width: 100%;
}

/* Dropdown Toggle Styles */
.dropdown-toggle-luxury i {
    transition: transform 0.3s ease-out;
}

.dropdown-container:hover .dropdown-toggle-luxury i {
    transform: rotate(180deg);
}

/*==============================================
  DROPDOWN MENUS (DESKTOP)
  ================================================*/

.dropdown-container {
    position: relative;
}

/* Invisible bridge between menu item and dropdown */
.dropdown-container::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.75rem;
    pointer-events: auto;
    z-index: 1999;
}

.dropdown-menu-luxury {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border-radius: 12px;
    min-width: 180px;
    padding-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
    will-change: opacity, visibility;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    z-index: 2000;
}

.dropdown-container:hover .dropdown-menu-luxury {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item-luxury {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s ease-out, color 0.2s ease-out, border-left-color 0.2s ease-out, padding-left 0.2s ease-out;
    will-change: background, color, border-left-color, padding-left;
    border-left: 3px solid transparent;
    position: relative;
}

.dropdown-item-luxury i {
    font-size: 1rem;
    color: var(--primary-gold);
    transition: color 0.2s ease-out;
    will-change: color;
}

.dropdown-item-luxury:hover {
    background: var(--primary-light);
    color: var(--primary-gold-dark);
    border-left-color: var(--primary-gold);
    padding-left: 1.2rem;
}

.dropdown-item-luxury:first-child {
    border-top: none;
}

.dropdown-item-luxury:last-child {
    border-bottom: none;
}

/*==============================================
  ACTION ACTIONS GROUP (DESKTOP)
  ================================================*/

.navbar-actions-group {
    display: none;
    justify-self: end;
    gap: 0;
    align-items: center;
    background: #fdfaf3;
    /* Creamy background to separate actions */
    border-radius: 50px;
    padding: 3px;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 4px 12px rgba(232, 191, 75, 0.15);
    overflow: hidden;
}

@media (min-width: 1300px) {
    .navbar-actions-group {
        display: flex;
    }
}

@media (min-width: 992px) {
    .navbar-actions-group {
        display: flex;
    }
}

.action-divider {
    width: 1px;
    height: 20px;
    background: var(--border-light);
    margin: 0 0.25rem;
}

/* User Login - Utility Style */
.btn-navbar-utility {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.btn-navbar-utility i {
    font-size: 1.1rem;
    color: var(--text-light);
}

.btn-navbar-utility:hover {
    color: var(--primary-gold-dark);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-navbar-utility:hover i {
    color: var(--primary-gold);
}

/* Book Now - Primary CTA Style */
.btn-navbar-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.15rem;
    background: var(--primary-gold);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.25);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.btn-navbar-primary:hover {
    background: var(--primary-gold-dark);
    color: #fff;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.35);
}

.btn-navbar-primary i {
    font-size: 0.95rem;
}

/*==============================================
  MOBILE HAMBURGER MENU
  ================================================*/

.hamburger-menu-luxury {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1051;
}

@media (min-width: 1300px) {
    .hamburger-menu-luxury {
        display: none;
    }
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    will-change: transform, opacity;
    transform-origin: center;
}

.hamburger-menu-luxury.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu-luxury.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu-luxury.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/*==============================================
  MOBILE MENU OVERLAY
  ================================================*/

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    will-change: opacity, visibility;
    z-index: 1051;
}

.mobile-menu-overlay.active {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    visibility: visible;
}

/*==============================================
  MOBILE MENU PANEL
  ================================================*/

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: var(--shadow-lg);
    z-index: 1052;
    transition: right 0.3s ease-out;
    will-change: right;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
}

@media (max-width: 480px) {
    .mobile-menu-panel {
        width: 85vw;
        right: calc(-85vw);
    }
}

.mobile-menu-panel.active {
    right: 0;
}

/*==============================================
  MOBILE MENU HEADER
  ================================================*/

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    gap: 1rem;
}

.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.mobile-menu-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.mobile-menu-brand h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    letter-spacing: 0.5px;
}

.mobile-menu-brand small {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mobile-menu-close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease-out;
    will-change: color;
}

.mobile-menu-close:hover {
    color: var(--primary-gold);
}

/*==============================================
  MOBILE MENU CONTENT
  ================================================*/

.mobile-menu-content {
    flex: 1;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease-out, color 0.2s ease-out, padding-left 0.2s ease-out;
    will-change: background, color, padding-left;
    width: 100%;
    text-align: left;
}

.mobile-nav-link i {
    font-size: 1.1rem;
    color: var(--primary-gold);
    min-width: 1.1rem;
    transition: color 0.2s ease-out;
    will-change: color;
}

.mobile-nav-link:hover {
    background: var(--primary-light);
    color: var(--primary-gold-dark);
    padding-left: 2rem;
}

.mobile-nav-link:hover i {
    color: var(--primary-gold-dark);
}

/*==============================================
  MOBILE DROPDOWN MENUS
  ================================================*/

.mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
}

.dropdown-toggle-mobile {
    justify-content: space-between;
    position: relative;
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.mobile-nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
    color: var(--primary-gold);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    will-change: max-height;
    background: #F8F9FA;
    display: flex;
    flex-direction: column;
}

.mobile-nav-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem 0.75rem 3.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s ease-out, color 0.2s ease-out, border-left-color 0.2s ease-out, padding-left 0.2s ease-out;
    will-change: background, color, border-left-color, padding-left;
    border-left: 3px solid transparent;
}

.mobile-dropdown-item i {
    font-size: 1rem;
    color: var(--primary-gold);
}

.mobile-dropdown-item:hover {
    background: #E9ECEF;
    color: var(--primary-gold-dark);
    border-left-color: var(--primary-gold);
    padding-left: 3.75rem;
}

/*==============================================
  MOBILE MENU DIVIDER
  ================================================*/

.mobile-menu-divider {
    margin: 1rem 1.5rem;
    border: none;
    border-top: 1px solid var(--border-light);
}

/*==============================================
  MOBILE ACTION BUTTONS
  ================================================*/

.mobile-btn-book,
.mobile-btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0.5rem 1.5rem;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.mobile-btn-book {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.mobile-btn-login {
    background: #f8f9fa;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.mobile-btn-book:active,
.mobile-btn-login:active {
    transform: scale(0.96);
}

/*==============================================
  BODY PADDING ADJUSTMENT
  ================================================*/

body {
    padding-top: 100px !important;
    margin: 0 !important;
}

@media (max-width: 1299.98px) {
    body {
        padding-top: 70px !important;
    }
}

/*==============================================
  RESPONSIVE BREAKPOINTS
  ================================================*/

/* Tablet & Small Desktop (Below 1300px) */
@media (max-width: 1299.98px) {
    .navbar-container {
        padding: 0.5rem 1.25rem !important;
        height: 70px !important;
        display: flex !important;
        justify-content: space-between !important;
    }

    .navbar-logo {
        height: 75px !important;
    }

    .navbar-brand-luxury {
        padding: 0.4rem 0.8rem;
    }

    .navbar-brand-text h4 {
        font-size: 1rem;
    }

    .navbar-brand-text span {
        display: inline-block !important;
        font-size: 0.62rem;
    }

    .navbar-menu-desktop,
    .navbar-actions-group {
        display: none !important;
    }
}

/* Medium Mobile (481px - 767px) */
@media (max-width: 767.98px) {
    .navbar-container {
        padding: 0.5rem 1rem !important;
        height: 70px !important;
    }

    .navbar-logo {
        height: 75px !important;
    }

    .navbar-brand-luxury {
        padding: 0.3rem 0.6rem;
    }

    .navbar-brand-text h4 {
        font-size: 0.95rem;
    }

    .navbar-brand-text span {
        font-size: 0.6rem;
    }

    .mobile-menu-panel {
        width: 300px;
        right: -300px;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .navbar-container {
        padding: 0.4rem 0.75rem !important;
        height: 70px !important;
    }

    .navbar-logo {
        height: 75px !important;
    }

    .navbar-brand-luxury {
        padding: 0.25rem 0.5rem;
    }

    .navbar-brand-text h4 {
        font-size: 0.9rem;
    }

    .navbar-brand-text span {
        font-size: 0.56rem;
        letter-spacing: 0.5px;
    }

    .mobile-menu-header {
        padding: 1.25rem;
    }

    .mobile-menu-brand h5 {
        font-size: 0.95rem;
    }

    .mobile-nav-link {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }

    .mobile-dropdown-item {
        padding: 0.7rem 1.25rem 0.7rem 3.25rem;
        font-size: 0.9rem;
    }

    .mobile-btn-book,
    .mobile-btn-login {
        margin-left: 1.25rem;
        margin-right: 1.25rem;
        padding: 0.9rem;
        font-size: 0.9rem;
    }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
    .navbar-container {
        height: 60px;
        padding: 0.5rem 1.5rem;
    }

    body {
        padding-top: 60px;
    }

    .mobile-menu-header {
        padding: 0.75rem 1rem;
    }

    .mobile-nav-link {
        padding: 0.75rem 1rem;
    }

    .mobile-menu-panel {
        height: 100vh;
    }
}

/*==============================================
  SMOOTH SCROLL BEHAVIOR
  ================================================*/

html {
    scroll-behavior: smooth;
}

/*==============================================
  ACCESSIBILITY
  ================================================*/

.nav-link-luxury:focus,
.mobile-nav-link:focus,
.btn-navbar-book:focus,
.btn-navbar-login:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === mobile-navbar-fix.css === */
/*==============================================
  MOBILE NAVBAR OVERLAY FIX
  Solves overlap issues on iOS and Android
  Hotel Nehrus - March 2026
  ================================================*/

/* Root safe area variables */
:root {
    /* Safe area insets for notched devices */
    --safe-area-inset-top: env(safe-area-inset-top, 0);
    --safe-area-inset-left: env(safe-area-inset-left, 0);
    --safe-area-inset-right: env(safe-area-inset-right, 0);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0);
    
    /* Navbar height tracking - Standardized to 100px to match Luxury Design */
    --navbar-height: 100px;
    --navbar-height-scrolled: 100px;
}

/*==============================================
  NAVBAR POSITIONING - FIXED INSTEAD OF STICKY
  ================================================*/

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    padding-top: var(--safe-area-inset-top);
    margin: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Top bar visibility control */
.top-bar {
    display: none !important;
}

.navbar-luxury {
    position: static;
    background: transparent;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
}

/*==============================================
  BODY PADDING - ACCOUNTS FOR NAVBAR
  ================================================*/

body {
    /* Stabilized padding to prevent jumping during scroll */
    padding-top: 100px;
    margin: 0;
}

@media (max-width: 1299.98px) {
    body {
        padding-top: 70px;
    }
}

/* When navbar is scrolled - DISABLED to prevent jitter */
body.navbar-scrolled {
    /* Maintain same padding to prevent jump */
    padding-top: 100px;
}

@media (max-width: 1299.98px) {
    body.navbar-scrolled {
        padding-top: 70px;
    }
}

/*==============================================
  SPECIFIC MOBILE BREAKPOINTS
  ================================================*/

/* MOBILE: 320px - 480px (Small phones) */
@media (max-width: 480px) {
    :root {
        --navbar-height: 70px;
    }
    
    .main-header {
        padding-left: var(--safe-area-inset-left);
        padding-right: var(--safe-area-inset-right);
    }
    
    body {
        padding-top: calc(70px + var(--safe-area-inset-top));
    }
    
    .navbar-luxury {
        padding: 0.75rem 0;
    }
    
    .navbar-brand-luxury {
        gap: 0.5rem;
    }
    
    .navbar-logo {
        height: 85px !important;
        filter: drop-shadow(0 0 0.5px rgba(180, 0, 0, 0.4)) !important;
    }
    
    .navbar-brand-text h4 {
        font-size: 1rem;
    }
    
    .navbar-brand-text span {
        font-size: 0.6rem;
    }
}

/* MOBILE: 481px - 768px (Medium phones & small tablets) */
@media (max-width: 768px) {
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1050;
    }
    
    /* Hide collapse menu by default on mobile */
    .navbar-collapse {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 12px 12px;
        margin: 0.5rem;
        padding: 1rem;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Show collapse menu when opened */
    .navbar-collapse.show {
        display: block !important;
        position: fixed;
        top: calc(70px + var(--safe-area-inset-top));
        max-height: calc(100vh - 70px);
        animation: slideDown 0.3s ease-out;
    }
    
    .nav-link-luxury {
        padding: 0.75rem 1rem !important;
    }
    
    .nav-link-luxury::after {
        display: none;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/*==============================================
  HERO SECTION - COMPENSATE FOR NAVBAR
  ================================================*/

.hero-section {
    position: relative;
    margin-top: 0;
    padding-top: calc(80px + var(--safe-area-inset-top));
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: calc(70px + var(--safe-area-inset-top));
        min-height: calc(100vh - 70px);
    }
}

/*==============================================
  PAGE SECTIONS - REMOVE CONFLICTING PADDING
  ================================================*/

main {
    position: relative;
    z-index: 1;
}

/* Mobile collapse menu - hidden by default */
@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
}

/* Remove or adjust section paddings */
.page-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (max-width: 768px) {
    .page-section {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

/*==============================================
  DROPDOWN MENUS - MOBILE FIX
  ================================================*/

.dropdown-menu {
    position: fixed !important;
    top: auto;
    left: auto;
}

@media (min-width: 992px) {
    .dropdown-menu {
        position: absolute !important;
    }
}

/*==============================================
  BOTTOM NAVIGATION / ACTION BUTTONS
  ================================================*/

.floating-buttons {
    position: fixed;
    bottom: calc(1rem + var(--safe-area-inset-bottom));
    right: calc(1rem + var(--safe-area-inset-right));
    z-index: 1040;
}

/*==============================================
  iOS & ANDROID SPECIFIC FIXES
  ================================================*/

/* iOS Specific - using max() for safe area */
@supports (padding: max(0px)) {
    body {
        padding-top: max(100px + var(--safe-area-inset-top), 100px);
    }
    
    body.navbar-scrolled {
        padding-top: max(100px + var(--safe-area-inset-top), 100px);
    }
    
    .main-header {
        padding-top: max(var(--safe-area-inset-top), 0);
    }
    
    .floating-buttons {
        bottom: max(1rem + var(--safe-area-inset-bottom), 1rem);
        right: max(1rem + var(--safe-area-inset-right), 1rem);
    }
}

/* Safari specific */
@media (prefers-color-scheme: light) {
    .main-header {
        background: rgb(255, 255, 255);
    }
}

/*==============================================
  SCROLL BEHAVIOR & MOMENTUM
  ================================================*/

.navbar-collapse {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

/*==============================================
  RESPONSIVENESS FINE-TUNING
  ================================================*/

/* Extra small devices (320px - 374px) */
@media (max-height: 600px) {
    .main-header {
        position: fixed;
        top: 0;
    }
    
    .navbar-luxury {
        padding: 0.5rem 0;
    }
    
    body {
        padding-top: 70px;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 1024px) and (orientation: landscape) {
    :root {
        --navbar-height: 60px;
    }
    
    .main-header {
        padding-top: var(--safe-area-inset-top);
    }
    
    body {
        padding-top: calc(60px + var(--safe-area-inset-top));
    }
    
    .navbar-luxury {
        padding: 0.5rem 0;
    }
    
    .navbar-logo {
        height: 60px !important;
    }
    
    .navbar-brand-text h4 {
        font-size: 1rem;
    }
    
    .hero-section {
        min-height: auto;
        height: calc(100vh - 60px);
    }
}

/*==============================================
  KEYBOARD VISIBILITY (Mobile keyboards)
  ================================================*/

@supports (padding: env(safe-area-inset-bottom)) {
    body {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
}

/*==============================================
  NO HORIZONTAL SCROLL
  ================================================*/

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Prevent layout shift when scrollbar appears */
html {
    scrollbar-gutter: stable;
}

/*==============================================
  PRINT STYLES
  ================================================*/

@media print {
    .main-header {
        position: static;
        padding-top: 0;
    }
    
    body {
        padding-top: 0;
    }
}


/* === hamburger-menu-fix.css === */
/*==============================================
  MOBILE HAMBURGER MENU FIX
  Proper styling and positioning for mobile hamburger
  Hotel Nehrus - March 2026
  ================================================*/

/*==============================================
  HAMBURGER BUTTON STYLING
  ================================================*/

/* Global navbar brand reset - prevent Bootstrap defaults */
.navbar-brand-luxury {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
}

/* Mobile Toggle Button */
.navbar-toggler-luxury {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    padding: 0.5rem 0.75rem;
    outline: none;
    cursor: pointer;
    margin-left: auto !important;  /* Push to right side */
    margin-right: 0 !important;
    min-width: 50px;
    min-height: 50px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1100;
    flex-shrink: 0;
}

/* Hover effect */
.navbar-toggler-luxury:hover {
    background: rgba(201, 164, 76, 0.1);  /* Gold background on hover */
    transform: scale(1.05);
}

/* Active/open state */
.navbar-toggler-luxury[aria-expanded="true"] {
    background: rgba(201, 164, 76, 0.15);
}

/* Focus state - accessibility */
.navbar-toggler-luxury:focus {
    box-shadow: 0 0 0 3px rgba(14, 26, 43, 0.1);
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/*==============================================
  HAMBURGER ICON LINES
  ================================================*/

/* Individual spans for hamburger lines */
.navbar-toggler-luxury span {
    display: block;
    background-color: var(--primary-navy);
    height: 4px;
    width: 28px;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    position: relative;
    margin: 0;
}

/* First line (top) */
.navbar-toggler-luxury span:nth-child(1) {
    margin-bottom: 6px;
}

/* Second line (middle) */
.navbar-toggler-luxury span:nth-child(2) {
    opacity: 1;
    margin-bottom: 6px;
}

/* Third line (bottom) */
.navbar-toggler-luxury span:nth-child(3) {
    margin-bottom: 0;
}

/*==============================================
  HAMBURGER ICON ANIMATION (Open/Close)
  ================================================*/

/* When menu is open */
.navbar-toggler-luxury[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggler-luxury[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.navbar-toggler-luxury[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/*==============================================
  MOBILE NAVBAR LAYOUT
  ================================================*/

/* On mobile screens (less than 992px) */
@media (max-width: 991.98px) {
    /* Navbar base - ensure row direction */
    .navbar-luxury {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        width: 100%;
    }
    
    /* Container inside navbar - logo left, hamburger right */
    .navbar-luxury > .container-fluid {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }
    
    /* Logo on left - keep in place */
    .navbar-luxury > .container-fluid > .navbar-brand-luxury {
        flex: 0 0 auto;
        margin-right: auto;
        margin-bottom: 0;
        order: 1;
    }
    
    /* Hamburger on right */
    .navbar-luxury > .container-fluid > .navbar-toggler-luxury {
        flex: 0 0 auto;
        margin-left: auto !important;
        margin-right: 0 !important;
        order: 2;
    }
    
    /* Hide mobile menu collapse by default */
    .navbar-collapse {
        display: none !important;
        order: 3;
        flex-basis: 100%;
        margin-top: 1rem;
        background: white;
        border-radius: 8px;
        padding: 1.5rem 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        animation: slideDown 0.3s ease-out;
    }
    
    /* Show menu only when .show class is added */
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link-luxury {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(201, 164, 76, 0.1);
        font-size: 0.95rem;
    }
    
    .nav-link-luxury:last-child {
        border-bottom: none;
    }
    
    .nav-link-luxury::after {
        display: none;
    }
}

/* Small mobile phones (320px - 480px) */
@media (max-width: 480px) {
    .navbar-toggler-luxury {
        min-width: 45px;
        min-height: 45px;
        padding: 0.375rem 0.5rem;
    }
    
    .navbar-toggler-luxury span {
        height: 2.5px;
        width: 22px;
    }
    
    .navbar-brand-luxury {
        gap: 0.5rem;
    }
    
    .navbar-logo {
        height: 60px !important;
    }
    
    .navbar-brand-text h4 {
        font-size: 1rem;
    }
    
    .navbar-brand-text span {
        font-size: 0.6rem;
    }
    
    /* Ensure collapse hidden on small mobile */
    .navbar-collapse {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
}

/* Medium mobile phones (481px - 768px) */
@media (max-width: 768px) {
    .navbar-toggler-luxury {
        min-width: 48px;
        min-height: 48px;
    }
    
    .navbar-toggler-luxury span {
        height: 3px;
        width: 24px;
    }
}

/*==============================================
  ANIMATION - HAMBURGER OPEN
  ================================================*/

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 100vh;
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
        max-height: 100vh;
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
}

/*==============================================
  ICON CUSTOMIZATION
  ================================================*/

/* Optional: Custom hamburger icon using CSS only (alternative to spans) */
.navbar-toggler-luxury::before {
    content: '';
    position: absolute;
    display: none; /* Disabled by default, use if needed */
}

/*==============================================
  ACCESSIBILITY IMPROVEMENTS
  ================================================*/

/* Ensure button is always keyboard accessible */
.navbar-toggler-luxury:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .navbar-toggler-luxury {
        border: 2px solid var(--primary-navy);
    }
    
    .navbar-toggler-luxury span {
        height: 4px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .navbar-toggler-luxury span {
        transition: none;
    }
    
    .navbar-collapse {
        animation: none;
    }
}

/*==============================================
  DESKTOP FALLBACK (992px and above)
  ================================================*/

@media (min-width: 992px) {
    .navbar-toggler-luxury {
        display: none;  /* Hide hamburger on desktop */
    }
    
    .navbar-collapse {
        display: flex !important;  /* Always show on desktop */
    }
}

/*==============================================
  LANDSCAPE MODE ADJUSTMENTS
  ================================================*/

@media (max-height: 600px) and (orientation: landscape) {
    .navbar-toggler-luxury {
        min-height: 40px;
    }
    
    .navbar-brand-text h4 {
        font-size: 0.9rem;
    }
    
    .navbar-brand-text span {
        font-size: 0.55rem;
    }
    
    .navbar-collapse {
        margin-top: 0.5rem;
        padding: 1rem;
    }
}

/*==============================================
  DARK MODE SUPPORT (if implemented)
  ================================================*/

@media (prefers-color-scheme: dark) {
    .navbar-toggler-luxury {
        background: rgba(201, 164, 76, 0.05);
    }
    
    .navbar-toggler-luxury:hover {
        background: rgba(201, 164, 76, 0.15);
    }
    
    .navbar-collapse {
        background: #1a1a1a;
        color: white;
    }
}

/*==============================================
  RTLS (Right-to-Left Language) Support
  ================================================*/

[dir="rtl"] .navbar-toggler-luxury {
    margin-left: 0;  /* Remove left auto margin */
    margin-right: auto;  /* Add right auto margin */
}

[dir="rtl"] .navbar-toggler-luxury span:nth-child(1) {
    transform-origin: right center;
}

[dir="rtl"] .navbar-toggler-luxury span:nth-child(3) {
    transform-origin: right center;
}


/* === navbar-collapse-fix.css === */
/*==============================================
  NAVBAR COLLAPSE MENU FIX
  FORCE HIDE mobile menu by default - CRITICAL
  Hotel Nehrus - March 16, 2026
  ================================================*/

/* ========== MOBILE ONLY (below 1300px) ========== */

@media (max-width: 1299.98px) {
    
    /* AGGRESSIVE: Hide ALL navbar collapse elements */
    .navbar-collapse {
        /* Force hide */
        display: none !important;
        visibility: hidden !important;
        position: absolute !important;
        
        /* Remove from layout completely */
        height: 0 !important;
        max-height: 0 !important;
        min-height: 0 !important;
        overflow: hidden !important;
        overflow-y: hidden !important;
        
        /* Opacity and pointer */
        opacity: 0 !important;
        pointer-events: none !important;
        z-index: -999 !important;
        
        /* Clip path as failsafe */
        clip-path: inset(0 0 100% 0) !important;
        -webkit-clip-path: inset(0 0 100% 0) !important;
        
        /* Remove all sizing */
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        
        /* Clear all transforms */
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    /* Specific ID selector */
    #navbarNav {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
    }
    
    /* SHOW ONLY when .show class is added by Bootstrap */
    .navbar-collapse.show,
    #navbarNav.show {
        display: block !important;
        visibility: visible !important;
        position: relative !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        overflow-y: auto !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 1000 !important;
        clip-path: none !important;
        -webkit-clip-path: none !important;
    }
}

/* ========== DESKTOP (1300px and above) ========== */
@media (min-width: 1300px) {
    /* Always show on desktop */
    .navbar-collapse,
    #navbarNav {
        display: flex !important;
        visibility: visible !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
        position: static !important;
    }
    
    /* Hide hamburger on desktop */
    .navbar-toggler,
    .navbar-toggler-luxury {
        display: none !important;
    }
}

/* ========== FALLBACK - Override any BS defaults ========== */
.navbar-luxury .navbar-collapse:not(.show) {
    display: none !important;
}

/* Bootstrap collapse animation - only on show */
.navbar-collapse.show {
    animation: collapseSlide 0.3s ease-out;
}

@keyframes collapseSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* === mobile-premium-redesign.css === */
/*==============================================
  MOBILE PREMIUM HOTEL INTERFACE REDESIGN
  Modern, Elegant, Luxury Hotel Experience
  Hotel Nehrus - March 2026
  
  IMPORTANT: 
  - Only affects mobile (below 768px)
  - Does NOT change desktop design
  - Does NOT modify navbar
  ================================================*/

/* Root Variables for Mobile */
:root {
    --navy-dark: #0E1A2B;
    --navy-light: #1A2B3D;
    --gold-primary: #C9A44C;
    --gold-light: #D4B866;
    --white-pure: #FFFFFF;
    --white-off: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --text-lighter: #8C92A0;
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-deep: 0 12px 35px rgba(0, 0, 0, 0.15);
    --radius-soft: 12px;
    --radius-medium: 16px;
    --radius-full: 50px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/*==============================================
  MOBILE ONLY - Below 768px
  ================================================*/

@media (max-width: 767.98px) {
    
    /*==============================================
      GLOBAL MOBILE STYLES
      ================================================*/
    
    body {
        overflow-x: hidden;
    }
    
    /* Smooth scrolling for better UX */
    html {
        scroll-behavior: smooth;
        -webkit-scroll-behavior: smooth;
    }
    
    /* Improve tap targets */
    button, a, input[type="button"], input[type="submit"] {
        min-height: 44px;
        min-width: 44px;
        -webkit-touch-callout: none;
    }
    
    /* Container padding optimization */
    .container, .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    /*==============================================
      IMAGE SLIDER / CAROUSEL SECTION
      Hero Image Gallery with Touch Swipe
      ================================================*/
    
    /* Modern Image Slider */
    .mobile-hero-slider {
        position: relative;
        width: 100%;
        height: 45vh;
        min-height: 320px;
        max-height: 500px;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(14, 26, 43, 0.8), rgba(201, 164, 76, 0.3));
        border-radius: 0;
        margin-top: 0;
        margin-bottom: 1.5rem;
        z-index: 10;
    }
    
    /* Slider track - enables touch swipe */
    .slider-track {
        display: flex;
        height: 100%;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        touch-action: pan-y pinch-zoom;
    }
    
    /* Individual slides */
    .slider-slide {
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: flex-end;
    }
    
    /* Slide overlay with gradient */
    .slider-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(14, 26, 43, 0.7) 0%, rgba(14, 26, 43, 0.4) 50%, transparent 100%);
        z-index: 1;
    }
    
    /* Slide content */
    .slider-content {
        position: relative;
        z-index: 2;
        padding: 1.5rem 1rem;
        color: white;
        width: 100%;
        text-align: center;
    }
    
    .slider-content h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        letter-spacing: 0.5px;
    }
    
    .slider-content p {
        font-size: 0.85rem;
        margin: 0 0 0.8rem 0;
        opacity: 0.95;
    }
    
    /* Slider controls - HIDDEN */
    .slider-controls {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        display: none !important;
        gap: 0.4rem;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        padding: 0;
        -webkit-touch-callout: none;
    }
    
    .slider-dot.active {
        background: var(--gold-primary);
        width: 24px;
        border-radius: 4px;
    }
    
    /* Navigation arrows (touch-friendly) */
    .slider-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .slider-nav-btn:active {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-50%) scale(1.1);
    }
    
    .slider-nav-btn.prev {
        left: 0.5rem;
    }
    
    .slider-nav-btn.next {
        right: 0.5rem;
    }
    
    /*==============================================
      CTA HERO SECTION - Below Slider
      ================================================*/
    
    .mobile-hero-cta {
        background: linear-gradient(135deg, var(--white-off) 0%, var(--white-pure) 100%);
        padding: 1.5rem;
        margin: 0 0 1.5rem 0;
        border-radius: var(--radius-medium);
        text-align: center;
        box-shadow: var(--shadow-soft);
    }
    
    .mobile-hero-cta h2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        color: var(--navy-dark);
        margin: 0 0 0.5rem 0;
        font-weight: 700;
    }
    
    .mobile-hero-cta p {
        font-size: 0.9rem;
        color: var(--text-light);
        margin: 0 0 1.2rem 0;
        line-height: 1.5;
    }
    
    .mobile-hero-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .mobile-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 1.5rem;
        border-radius: var(--radius-full);
        border: none;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: var(--transition-smooth);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        min-height: 48px;
        text-align: center;
        width: 100%;
    }
    
    .mobile-cta-btn-primary {
        background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
        color: var(--navy-dark);
        box-shadow: 0 4px 15px rgba(201, 164, 76, 0.2);
    }
    
    .mobile-cta-btn-primary:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(201, 164, 76, 0.15);
    }
    
    .mobile-cta-btn-secondary {
        background: var(--navy-dark);
        color: white;
        border: 2px solid var(--navy-dark);
    }
    
    .mobile-cta-btn-secondary:active {
        background: var(--navy-light);
        border-color: var(--navy-light);
    }
    
    /*==============================================
      HERO SECTION REDESIGN
      ================================================*/
    
    .ihg-hero {
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        overflow: visible;
        background: none !important;
    }
    
    .ihg-hero::before {
        display: none !important;
    }
    
    .ihg-hero-content {
        display: none !important;
    }
    
    /*==============================================
      SECTION STYLING
      ================================================*/
    
    .ihg-section {
        padding: 2rem 0 !important;
        overflow: hidden;
    }
    
    .ihg-section-title {
        font-size: 1.6rem !important;
        margin-bottom: 0.5rem !important;
        font-weight: 700;
    }
    
    .ihg-section-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.5;
    }
    
    /*==============================================
      CARD REDESIGN - Clean, Modern, Premium
      ================================================*/
    
    .ihg-card {
        background: var(--white-pure);
        border: none;
        border-radius: var(--radius-medium);
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        transition: var(--transition-smooth);
        margin-bottom: 1.2rem;
        height: auto;
    }
    
    .ihg-card:active {
        box-shadow: var(--shadow-medium);
        transform: scale(0.99);
    }
    
    .ihg-card-img {
        height: 180px;
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .ihg-card-img::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(14, 26, 43, 0.2) 0%, rgba(201, 164, 76, 0.05) 100%);
    }
    
    .ihg-card-body {
        padding: 1.2rem;
    }
    
    .ihg-card-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--navy-dark);
        margin-bottom: 0.6rem;
    }
    
    .ihg-card-text {
        font-size: 0.87rem;
        color: var(--text-light);
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    /* Card features list */
    .card-features {
        background: rgba(201, 164, 76, 0.08);
        padding: 0.8rem;
        border-radius: var(--radius-soft);
        margin-bottom: 1rem;
    }
    
    .card-features li {
        font-size: 0.85rem;
        color: var(--navy-dark);
        margin-bottom: 0.4rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .card-features li i {
        color: var(--gold-primary);
        font-size: 0.8rem;
    }
    
    /*==============================================
      BUTTON REDESIGN - Touch-Friendly
      ================================================*/
    
    .ihg-btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 12px 1.5rem !important;
        width: 100%;
        border-radius: var(--radius-full);
        background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%) !important;
        color: var(--navy-dark) !important;
        border: none !important;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(201, 164, 76, 0.2);
        transition: var(--transition-smooth);
        cursor: pointer;
        text-decoration: none;
        margin-bottom: 0.5rem !important;
    }
    
    .ihg-btn-primary:active {
        transform: scale(0.97);
        box-shadow: 0 2px 8px rgba(201, 164, 76, 0.15);
    }
    
    .btn-gold {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        width: 100%;
        padding: 12px 1.5rem !important;
        background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%) !important;
        color: var(--navy-dark) !important;
        border-radius: var(--radius-full);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-decoration: none;
        cursor: pointer;
        transition: var(--transition-smooth);
        box-shadow: 0 4px 15px rgba(201, 164, 76, 0.2);
    }
    
    .btn-gold:active {
        transform: scale(0.97);
        box-shadow: 0 2px 8px rgba(201, 164, 76, 0.15);
    }
    
    .btn-outline-gold {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 10px 1.2rem !important;
        border: 2px solid var(--gold-primary) !important;
        background: transparent !important;
        color: var(--gold-primary) !important;
        border-radius: var(--radius-full);
        font-weight: 600;
        font-size: 0.85rem;
        text-decoration: none;
        cursor: pointer;
        transition: var(--transition-smooth);
        width: 100%;
        text-align: center;
    }
    
    .btn-outline-gold:active {
        background: rgba(201, 164, 76, 0.1) !important;
        transform: scale(0.97);
    }
    
    /*==============================================
      BADGE REDESIGN
      ================================================*/
    
    .badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 1rem !important;
        border-radius: var(--radius-full);
        font-size: 0.75rem !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.8rem;
    }
    
    .bg-gold {
        background: linear-gradient(135deg, var(--gold-primary), var(--gold-light)) !important;
        color: var(--navy-dark) !important;
        box-shadow: 0 4px 12px rgba(201, 164, 76, 0.2);
    }
    
    /*==============================================
      OFFER CARD REDESIGN
      ================================================*/
    
    .offer-card {
        position: relative;
        background: var(--white-pure);
        border-radius: var(--radius-medium);
        box-shadow: var(--shadow-soft);
        transition: var(--transition-smooth);
    }
    
    .offer-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--gold-primary);
        color: var(--navy-dark);
        padding: 0.5rem 1rem;
        border-radius: var(--radius-full);
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 5;
        box-shadow: 0 4px 12px rgba(201, 164, 76, 0.2);
    }
    
    .offer-features {
        list-style: none;
        padding: 0;
        margin: 0 0 1.2rem 0;
    }
    
    .offer-features li {
        font-size: 0.85rem;
        color: var(--text-light);
        padding: 0.4rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /*==============================================
      SECTION BACKGROUNDS
      ================================================*/
    
    .ihg-section-dark {
        background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%) !important;
        color: var(--white-pure);
    }
    
    .ihg-section-light {
        background: linear-gradient(135deg, var(--white-off) 0%, var(--white-pure) 100%) !important;
    }
    
    /*==============================================
      RESPONSIVE SPACING
      ================================================*/
    
    .row {
        gap: 0 !important;
    }
    
    .col-md-6, .col-lg-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 0.8rem;
    }
    
    /*==============================================
      TEXT OPTIMIZATION FOR MOBILE
      ================================================*/
    
    h1, h2, h3, h4, h5, h6 {
        letter-spacing: 0.3px;
        line-height: 1.2;
    }
    
    p {
        line-height: 1.6;
    }
    
    .lead {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }
    
    /*==============================================
      IMAGE OPTIMIZATION
      ================================================*/
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Lazy loading fallback */
    img[loading="lazy"] {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading-shimmer 2s infinite;
    }
    
    @keyframes loading-shimmer {
        0% {
            background-position: 200% 0;
        }
        100% {
            background-position: -200% 0;
        }
    }
    
    /*==============================================
      FORM ELEMENTS
      ================================================*/
    
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 44px;
        border-radius: var(--radius-soft);
        border: 1px solid #e0e0e0;
        padding: 12px;
    }
    
    input:focus, textarea:focus, select:focus {
        outline: none;
        border-color: var(--gold-primary);
        box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.1);
    }
    
    /*==============================================
      MODAL & OVERLAY
      ================================================*/
    
    .modal-content {
        border-radius: var(--radius-medium);
        border: none;
        box-shadow: var(--shadow-deep);
    }
    
    .modal-header {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    /*==============================================
      SCROLLING & ANIMATION
      ================================================*/
    
    /* Smooth scroll behavior */
    [data-aos] {
        opacity: 1 !important;
        animation-duration: 0.6s;
    }
    
    /* Disable animation on reduced motion preference */
    @media (prefers-reduced-motion: reduce) {
        [data-aos],
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /*==============================================
      UTILITY CLASSES
      ================================================*/
    
    .text-center {
        text-align: center;
    }
    
    .text-left {
        text-align: left;
    }
    
    .mb-0 { margin-bottom: 0 !important; }
    .mb-1 { margin-bottom: 0.5rem !important; }
    .mb-2 { margin-bottom: 1rem !important; }
    .mb-3 { margin-bottom: 1.5rem !important; }
    .mb-4 { margin-bottom: 2rem !important; }
    .mb-5 { margin-bottom: 2.5rem !important; }
    
    .mt-0 { margin-top: 0 !important; }
    .mt-1 { margin-top: 0.5rem !important; }
    .mt-2 { margin-top: 1rem !important; }
    .mt-3 { margin-top: 1.5rem !important; }
    .mt-4 { margin-top: 2rem !important; }
    .mt-5 { margin-top: 2.5rem !important; }
    
    .px-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .py-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    /*==============================================
      PERFORMANCE OPTIMIZATION
      ================================================*/
    
    /* Enable GPU acceleration */
    .ihg-card, .slider-track, .mobile-cta-btn {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Reduce repaints */
    img {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /*==============================================
      SAFE AREA HANDLING (iPhone X+)
      ================================================*/
    
    @supports (padding: max(0px)) {
        body {
            padding-bottom: max(1rem, env(safe-area-inset-bottom));
        }
        
        .mobile-hero-slider {
            margin-bottom: max(1.5rem, calc(1.5rem + env(safe-area-inset-bottom)));
        }
    }
}

/*==============================================
  SMALL MOBILE (Below 480px) - Extra Tweaks
  ================================================*/

@media (max-width: 479.98px) {
    .mobile-hero-slider {
        height: 40vh;
        min-height: 280px;
    }
    
    .slider-content h3 {
        font-size: 1.2rem;
    }
    
    .slider-content p {
        font-size: 0.75rem;
    }
    
    .ihg-section-title {
        font-size: 1.4rem !important;
    }
    
    .ihg-section-subtitle {
        font-size: 0.85rem !important;
    }
    
    .mobile-hero-cta h2 {
        font-size: 1.3rem;
    }
    
    .mobile-cta-btn {
        padding: 12px 1rem !important;
        font-size: 0.85rem;
    }
    
    .ihg-card-img {
        height: 150px;
    }
    
    .ihg-card-title {
        font-size: 1.1rem;
    }
    
    .ihg-card-text {
        font-size: 0.82rem;
    }
    
    /* Hide some text for tiny screens */
    .hide-on-small {
        display: none !important;
    }
}

/*==============================================
  DEFAULT / DESKTOP - No Changes (Preserve)
  ================================================*/

@media (min-width: 768px) {
    /* All mobile-only styles are hidden on desktop */
    .mobile-hero-slider,
    .mobile-hero-cta,
    .mobile-cta-btn-primary,
    .mobile-cta-btn-secondary {
        display: none !important;
    }
}


/* === image-quality-optimization.css === */
/*==============================================
  IMAGE OPTIMIZATION & QUALITY ENHANCEMENT
  High-quality image loading for Hotel Nehrus
  March 2026
  ================================================*/

/*==============================================
  HIGH QUALITY IMAGE LOADING
  ================================================*/

/* Optimize background images for quality */
.ihg-hero,
.slider-slide,
.ihg-card-img {
    background-size: cover;
    background-position: center;
    image-rendering: auto;
}

/* High quality image rendering */
img {
    image-rendering: auto;
    image-rendering: smooth;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/*==============================================
  HERO SECTION IMAGE QUALITY
  ================================================*/

.ihg-hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* High quality image filtering */
.ihg-hero::before {
    background: rgba(0, 0, 0, 0.2); /* Fallback to simple overlay */
}

/*==============================================
  LAZY LOADING WITH QUALITY & SHIMMER
  ================================================*/

/* Enhanced Shimmer for all lazy images */
img[loading="lazy"]:not(.loaded) {
    background: #f6f7f8;
    background: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-size: 800px 104px;
    animation: placeholderShimmer 2s linear infinite forwards;
    position: relative;
}

@keyframes placeholderShimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

img[loading="lazy"] {
    opacity: 0.6; /* Start with higher visibility */
    transition: opacity 0.4s ease-out;
}

img[loading="lazy"].loaded {
    opacity: 1 !important;
}

/* Loading state for images that are still in the viewport but not fully decoded */
img {
    content-visibility: auto;
}

/*==============================================
  RESPONSIVE IMAGE QUALITY
  ================================================*/

/* Desktop - Full quality */
@media (min-width: 1200px) {
    .ihg-hero {
        background-size: cover;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Tablet - Optimized quality */
@media (min-width: 768px) and (max-width: 1199px) {
    .ihg-hero {
        background-size: cover;
    }
    
    .ihg-card-img {
        background-size: cover;
    }
}

/* Mobile - Optimized for quality on smaller screens */
@media (max-width: 767.98px) {
    .slider-slide {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
    
    .ihg-card-img {
        background-attachment: scroll;
        background-size: cover;
    }
    
    img:not(.footer-logo):not(.hn-logo) {
        width: 100%;
        height: auto;
        display: block;
    }
}

/*==============================================
  PICTURE ELEMENT QUALITY (WebP WITH FALLBACK)
  ================================================*/

picture {
    display: contents;
}

picture img {
    width: 100%;
    height: auto;
}

/*==============================================
  FILTER & COLOR OPTIMIZATION
  ================================================*/

/* Enhance image contrast slightly for better visibility */
.image-enhanced {
    filter: contrast(1.05) brightness(1.02);
}

/* Slight saturation boost for hotel images */
.hotel-image {
    filter: saturate(1.1) contrast(1.05);
}

/* High quality video background */
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*==============================================
  IMAGE GALLERY QUALITY
  ================================================*/

.gallery-img,
.room-image,
.attraction-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/*==============================================
  SRCSET & PICTURE ELEMENTS
  ================================================*/

/* Support for responsive images */
img[srcset] {
    width: 100%;
    height: auto;
}

/* Picture element styling */
picture {
    display: block;
    overflow: hidden;
    border-radius: inherit;
}

/*==============================================
  IMAGE CONTAINER QUALITY
  ================================================*/

.image-container {
    background: #f0f0f0;
    display: block;
    overflow: hidden;
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 2s infinite;
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*==============================================
  PRINT OPTIMIZATION
  ================================================*/

@media print {
    img {
        max-width: 100%;
        height: auto;
    }
    
    .ihg-hero,
    .slider-slide {
        background-image: none !important;
    }
}

/*==============================================
  HIGH DPI / RETINA DISPLAY SUPPORT
  ================================================*/

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Higher quality rendering for retina displays */
    .ihg-hero,
    .slider-slide,
    .ihg-card-img {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/*==============================================
  AVIF & WEBP FORMAT SUPPORT
  ================================================*/

/* Modern format images (AVIF) */
@supports (background-image: url('test.avif')) {
    .avif-support {
        background-image: url('image.avif');
    }
}

/* WebP format support */
@supports (background-image: url('test.webp')) {
    .webp-support {
        background-image: url('image.webp');
    }
}


/* === mobile-fix.css === */
/*==============================================
  HOTEL NEHRUS — COMPREHENSIVE MOBILE FIX
  Fixes all responsive/mobile layout issues
  Targets iOS and Android devices
  ================================================*/

/* ── Prevent horizontal overflow globally ── */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}
*, *::before, *::after {
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
}

/* ── Sticky filter bar: correct top offset per breakpoint ── */
.rooms-filter-bar {
    top: 145px;
}
@media (max-width: 1450px) {
    .rooms-filter-bar {
        top: 140px;
    }
}
@media (max-width: 767px) {
    .rooms-filter-bar {
        top: 75px;
    }
}
@media (max-width: 480px) {
    .rooms-filter-bar {
        top: 66px;
    }
}

/*==============================================
  MOBILE — Below 992px (tablets + phones)
  ================================================*/
@media (max-width: 991.98px) {

    /* Sections: reduce padding */
    section, .ihg-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* Containers: edge-to-edge breathing room */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* WhatsApp floating button: ensure it doesn't overlap bottom content */
    .floating-buttons {
        bottom: 20px !important;
        right: 16px !important;
        z-index: 999;
    }

    .whatsapp-widget a {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }
}

/*==============================================
  MOBILE — Below 767px (phones portrait)
  ================================================*/
@media (max-width: 767.98px) {

    /* ── Global ── */
    body {
        font-size: 15px;
    }

    /* ── Section headings ── */
    h1, .display-4 {
        font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
        line-height: 1.2 !important;
    }
    h2, .h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
    }
    h3, .h3 {
        font-size: clamp(1.1rem, 4.5vw, 1.4rem) !important;
    }
    .ihg-section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
        letter-spacing: -0.5px !important;
    }
    .ihg-section {
        padding: 36px 0 !important;
    }

    /* ── Buttons: touch-friendly minimum size ── */
    .btn, button:not(.mobile-menu-close):not(.hn-burger):not(.hamburger-menu-luxury) {
        min-height: 44px;
    }
    a.btn, .ihg-btn-primary, .hn-btn-book, .mobile-btn-book {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* ── Forms: 16px min to prevent iOS auto-zoom ── */
    input, select, textarea {
        font-size: 16px !important;
    }
    .form-control, .form-select {
        font-size: 16px !important;
        min-height: 44px;
    }

    /* ── Page banner ── */
    .page-banner-image {
        min-height: 25vh !important;
        max-height: 220px;
    }
    .page-banner-content {
        padding-top: 1.5rem !important;
        padding-bottom: 1rem !important;
    }
    .page-banner-content h1 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
        margin-bottom: 0.75rem !important;
    }
    .page-banner-content .lead {
        font-size: 0.9rem !important;
    }

    /* ── Hero slider mobile: stacked layout ── */
    .hero-slider__slide {
        flex-direction: column !important;
    }
    .hero-slider__image-half,
    .hero-slider__content-half {
        width: 100% !important;
    }
    .hero-slider__image-half {
        height: 40vh !important;
        min-height: 200px !important;
    }
    .hero-slider__content-half {
        height: auto !important;
        padding: 1.5rem 1rem 2rem !important;
        text-align: center !important;
    }
    .hero-slider__title {
        font-size: 1.7rem !important;
    }
    .hero-slider__desc {
        font-size: 1rem !important;
    }
    .hero-slider__stats {
        justify-content: center !important;
        gap: 1.5rem !important;
        margin-top: 1.2rem !important;
    }
    .hero-slider__cta {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
    }

    /* ── Room cards: mobile layout ── */
    .room-horizontal-card .row.g-0 {
        flex-direction: column !important;
    }
    .room-horizontal-card .col-lg-5,
    .room-horizontal-card .col-lg-7 {
        width: 100% !important;
        max-width: 100% !important;
    }
    .room-card-image-wrapper img {
        min-height: 220px !important;
        max-height: 280px !important;
    }
    .room-horizontal-card .p-4,
    .room-horizontal-card .p-md-5 {
        padding: 1.25rem !important;
    }

    /* ── Memorable experiences / event cards ── */
    .category-card {
        margin-bottom: 1rem;
    }
    .category-card:hover {
        transform: none !important; /* disable hover lift on mobile */
    }

    /* ── Gallery grid: 2 columns on phone ── */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
    }

    /* ── Footer: single column on mobile ── */
    .main-footer .col-lg-5,
    .main-footer .col-lg-2,
    .main-footer .col-lg-3,
    .main-footer .col-md-4 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    .main-footer .footer-section {
        margin-bottom: 1.5rem;
    }
    .main-footer .footer-logo {
        max-height: 60px !important;
    }
    .main-footer .footer-title-alt {
        margin-bottom: 0.75rem !important;
    }
    .main-footer .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    /* ── Tables: horizontal scroll on small screens ── */
    .table-responsive-mobile {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    table {
        min-width: auto;
    }

    /* ── Booking / contact form ── */
    .ihg-btn-primary {
        width: 100%;
        text-align: center;
        padding: 14px 20px !important;
    }

    /* ── Blog page ── */
    .blog-sidebar {
        margin-top: 2rem;
    }

    /* ── Dining cards ── */
    .dining-card img {
        height: 200px !important;
        object-fit: cover;
    }

    /* ── Event slider arrows: already hidden, keep ── */
    .event-slider-arrow {
        display: none !important;
    }

    /* ── Amenities ── */
    .amenity-item {
        flex-direction: column;
        text-align: center;
    }

    /* ── Bootstrap row gap fix: keep some breathing room ── */
    .row.g-5 {
        --bs-gutter-x: 1rem !important;
        --bs-gutter-y: 1.5rem !important;
    }
    .row.g-4 {
        --bs-gutter-x: 0.75rem !important;
        --bs-gutter-y: 1rem !important;
    }

    /* ── Cards with hover effects: disable on mobile ── */
    .attraction-card:hover,
    .room-horizontal-card:hover {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }

    /* ── WhatsApp button: don't overlap with footer ── */
    .floating-buttons {
        bottom: 20px !important;
        right: 12px !important;
    }

    /* ── Modals: full width on mobile ── */
    .modal-dialog {
        margin: 0.5rem !important;
        max-width: calc(100vw - 1rem) !important;
    }

    /* ── Close By / Attractions page ── */
    .attraction-card {
        margin-bottom: 1rem;
    }
}

/*==============================================
  MOBILE — Below 576px (small phones)
  ================================================*/
@media (max-width: 575.98px) {

    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .ihg-section {
        padding: 28px 0 !important;
    }

    h1, .display-4 {
        font-size: clamp(1.4rem, 6.5vw, 1.9rem) !important;
    }

    /* Hero: even smaller image on phones */
    .hero-slider__image-half {
        height: 32vh !important;
        min-height: 180px !important;
    }
    .hero-slider__title {
        font-size: 1.4rem !important;
    }
    .hero-slider__desc {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    .hero-slider__badge {
        font-size: 0.55rem !important;
    }

    /* Gallery: keep 2 columns even on small phones */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 4px !important;
    }

    /* Event cards single column */
    .col-md-6.col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Room cards padding */
    .room-horizontal-card .p-4 {
        padding: 1rem !important;
    }

    /* Footer links */
    .main-footer .footer-top-link {
        font-size: 0.8rem;
    }
    .main-footer .col-12.d-flex.gap-4 {
        gap: 1rem !important;
    }

    /* Page banner smaller */
    .page-banner-image {
        min-height: 18vh !important;
    }
    .page-banner-content h1 {
        font-size: 1.4rem !important;
    }
}

/*==============================================
  MOBILE — Below 480px (very small phones)
  ================================================*/
@media (max-width: 479.98px) {

    h1, .display-4 {
        font-size: 1.3rem !important;
    }

    /* Single column everything */
    .col-6, .col-sm-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Event slider: single card visible */
    .event-slider-wrapper {
        padding: 0 !important;
    }

    /* Room image smaller */
    .room-card-image-wrapper img {
        min-height: 180px !important;
        max-height: 230px !important;
    }

    /* Booking button full width */
    .hn-btn-book, .mobile-btn-book {
        width: auto;
        padding: 0.5rem 1rem !important;
    }
}

/*==============================================
  iOS SAFE AREA FIXES
  ================================================*/
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .floating-buttons {
        bottom: calc(20px + env(safe-area-inset-bottom)) !important;
    }
    .main-footer {
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom)) !important;
    }
}

/*==============================================
  TOUCH DEVICE OPTIMIZATIONS
  ================================================*/
@media (hover: none) and (pointer: coarse) {
    /* Remove hover transforms on touch devices */
    .category-card:hover,
    .room-horizontal-card:hover,
    .attraction-card:hover,
    .ihg-btn-primary:hover {
        transform: none !important;
    }

    /* Larger touch areas for links */
    .mobile-nav-link,
    .mobile-dropdown-item {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    /* Better tap feedback */
    a:active, button:active {
        opacity: 0.8;
    }
}

