/* 
   Taj Hotels Inspired Premium Stylesheet
   Created for Luxury, Heritage, and Elegance brand aesthetic
*/


/* -------------------------------------------------------------
   1. IMPORTS & FONTS
------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

/* -------------------------------------------------------------
   2. CSS VARIABLES & SYSTEM TOKENS
------------------------------------------------------------- */

:root {
    --taj-blue-dark: #0A2240;
    --taj-blue-medium: #112E51;
    --taj-gold-primary: #B4975A;
    --taj-gold-light: #C5A880;
    --taj-gold-ultra-light: #F6F0E5;
    --taj-ivory: #F7F4EE;
    --taj-charcoal: #222222;
    --taj-white: #FFFFFF;
    --taj-gray-light: #EBEBEB;
    --taj-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}


/* -------------------------------------------------------------
   3. BASE RESET & GENERAL STYLES
------------------------------------------------------------- */

body {
    background-color: var(--taj-ivory);
    color: var(--taj-charcoal);
    font-family: var(--font-body);
    font-size: 1.25rem;
    /* Increased baseline from 1.15rem */
    font-weight: 400;
    /* Adjusted weight from 600 to 400 for standard luxury legibility */
    line-height: 1.85;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.serif-font {
    font-family: var(--font-heading);
    color: var(--taj-blue-dark);
    font-weight: 500;
    /* Adjusted weight to 500 for clean luxury headers */
    letter-spacing: 0.03em;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    /* Adjusted weight from 600 to 400 */
}


/* Custom Typography Helpers for Bolder & Larger Visuals */

.fs-7 {
    font-size: 1.12rem !important;
    /* Increased from 1.02rem */
    font-weight: 400 !important;
    /* Adjusted weight to 400 */
}

.fs-8 {
    font-size: 1.02rem !important;
    /* Increased from 0.92rem */
    font-weight: 400 !important;
    /* Adjusted weight to 400 */
}

.fs-9 {
    font-size: 0.92rem !important;
    /* Increased from 0.84rem */
    font-weight: 500 !important;
    /* Adjusted weight to 500 */
}

a {
    color: var(--taj-gold-primary);
    text-decoration: none;
    transition: var(--taj-transition);
}

a:hover {
    color: var(--taj-blue-dark);
}


/* Luxury spacing helper */

section {
    padding: 6.5rem 0;
    position: relative;
}


/* -------------------------------------------------------------
   4. TYPOGRAPHY CLASSES
------------------------------------------------------------- */

.tracking-widest {
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gold-text {
    color: var(--taj-gold-primary);
}

.blue-text {
    color: var(--taj-blue-dark);
}

.section-subtitle {
    font-size: 0.9rem;
    /* Increased from 0.8rem */
    font-weight: 600;
    /* Increased from 500 */
    color: var(--taj-gold-primary);
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: 3.2rem;
    /* Increased from 3rem */
    font-weight: 400;
    /* Increased from 300 */
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    section {
        padding: 4.5rem 0;
    }
}


/* -------------------------------------------------------------
   5. CUSTOM BUTTONS (LUXURY)
------------------------------------------------------------- */

.btn-luxury-outline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--taj-gold-primary);
    background-color: transparent;
    border: 1px solid var(--taj-gold-primary);
    padding: 0.85rem 2.2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--taj-transition);
}

.btn-luxury-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--taj-gold-primary);
    z-index: -1;
    transition: var(--taj-transition);
}

.btn-luxury-outline:hover {
    color: var(--taj-white) !important;
}

.btn-luxury-outline:hover::before {
    left: 0;
}

.btn-luxury-solid {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--taj-white);
    background-color: var(--taj-blue-dark);
    border: 1px solid var(--taj-blue-dark);
    padding: 0.85rem 2.2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--taj-transition);
}

.btn-luxury-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--taj-gold-primary);
    z-index: -1;
    transition: var(--taj-transition);
}

.btn-luxury-solid:hover {
    color: var(--taj-white) !important;
    border-color: var(--taj-gold-primary);
}

.btn-luxury-solid:hover::before {
    left: 0;
}


/* -------------------------------------------------------------
   6. PREMIUM LAYOUT ELEMENTS (EDITORIAL)
------------------------------------------------------------- */


/* Overlapping editorial image frames */

.editorial-frame {
    position: relative;
    padding: 15px;
    border: 1px solid var(--taj-gold-light);
    display: inline-block;
    width: 100%;
    transition: var(--taj-transition);
}

.editorial-frame:hover {
    border-color: var(--taj-blue-dark);
}

.editorial-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--taj-transition);
}

.editorial-frame:hover img {
    transform: scale(1.02);
}


/* Asymmetrical Overlap (for two images) */

.overlap-container {
    position: relative;
    min-height: 480px;
}

.overlap-bg-img {
    width: 75%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.overlap-fg-img {
    width: 55%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    border: 8px solid var(--taj-ivory);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .overlap-container {
        min-height: auto;
        margin-bottom: 2rem;
    }
    .overlap-bg-img,
    .overlap-fg-img {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        border: none;
        box-shadow: none;
        margin-bottom: 1rem;
    }
}


/* Elegant thin golden border line separator */

.luxury-divider {
    width: 80px;
    height: 1px;
    background-color: var(--taj-gold-primary);
    margin: 1.5rem auto;
}

.luxury-divider-left {
    width: 80px;
    height: 1px;
    background-color: var(--taj-gold-primary);
    margin: 1.5rem 0;
}


/* -------------------------------------------------------------
   7. NAVIGATION HEADER SYSTEM
------------------------------------------------------------- */


/* Upper Utility Bar */

.top-utility-bar {
    background-color: var(--taj-blue-dark);
    color: var(--taj-gold-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-utility-bar a {
    color: var(--taj-gold-light);
    transition: var(--taj-transition);
}

.top-utility-bar a:hover {
    color: var(--taj-white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}


/* Main Luxury Navbar */

.navbar-luxury {
    background-color: rgba(10, 34, 64, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    top: 35px;
    /* Prevent overlap with utility bar */
}

.navbar-luxury.navbar-scrolled {
    background-color: rgba(10, 34, 64, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--taj-gold-primary);
    top: 0;
}

@media (max-width: 767.98px) {
    .navbar-luxury {
        top: 56px;
        /* Offset for wrapped utility bar on mobile */
    }
    .navbar-luxury.navbar-scrolled {
        top: 0;
    }
}

.navbar-luxury .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    /* Sized to align with horizontal logo */
    color: var(--taj-white) !important;
    letter-spacing: 0.08em;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    /* Horizontal flex */
    align-items: center;
    line-height: 1.1;
    transition: var(--taj-transition);
}

.navbar-luxury .navbar-brand img {
    height: 100px;
    /* Custom luxury scale height */
    width: auto;
    margin-right: 12px;
    /* filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.15)); */
    transition: var(--taj-transition);
}

.navbar-luxury .navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-luxury .brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left-align brand descriptors */
}

.navbar-luxury .navbar-brand span {
    font-family: var(--font-body);
    font-size: 0.52rem;
    letter-spacing: 0.35em;
    color: var(--taj-gold-primary);
    text-transform: uppercase;
    margin-top: 2px;
}

.navbar-luxury .nav-link {
    font-family: var(--font-body);
    font-size: 1.1rem;
    /* Increased from 0.88rem */
    font-weight: 500;
    color: var(--taj-white) !important;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 0.6rem 1.3rem !important;
    /* Adjusted horizontal padding */
    margin: 0 0.15rem;
    position: relative;
    transition: var(--taj-transition);
}

.navbar-luxury .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--taj-gold-primary);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.navbar-luxury .nav-link:hover::after,
.navbar-luxury .nav-link.active::after {
    width: calc(100% - 2.6rem);
    /* Aligned with new 1.3rem padding */
    left: 1.3rem;
}

.navbar-luxury .nav-link.active,
.navbar-luxury .nav-link:hover {
    color: var(--taj-gold-primary) !important;
}


/* Enhanced Navbar Reserve Button */

.navbar-luxury .btn-navbar-reserve {
    font-family: var(--font-body);
    font-size: 0.82rem !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--taj-gold-primary) !important;
    background-color: transparent;
    border: 1px solid var(--taj-gold-primary);
    padding: 0.55rem 1.4rem !important;
    border-radius: 0;
    transition: var(--taj-transition);
    display: inline-block;
    line-height: 1.2;
}

.navbar-luxury .btn-navbar-reserve:hover {
    background-color: var(--taj-gold-primary) !important;
    color: var(--taj-blue-dark) !important;
    box-shadow: 0 4px 15px rgba(180, 151, 90, 0.35);
}


/* Luxury Dropdown Menu & Mega Menu Enhancements */

@media (min-width: 992px) {
    .navbar-luxury .dropdown-menu {
        background-color: var(--taj-blue-dark) !important;
        border: 1px solid var(--taj-gold-primary) !important;
        border-radius: 0;
        margin-top: 0.5rem;
        padding: 1rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        min-width: 260px;
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .navbar-luxury .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    /* Mega Menu Specific Style */
    .navbar-luxury .dropdown-menu.mega-menu {
        position: absolute;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin-top: 0;
        padding: 2.5rem 1.5rem !important;
    }
    .mega-menu-item {
        color: rgba(255, 255, 255, 0.75) !important;
        font-family: var(--font-body);
        font-size: 0.78rem !important;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        transition: var(--taj-transition);
        text-decoration: none;
    }
    .mega-menu-item:hover {
        color: var(--taj-gold-primary) !important;
        padding-left: 6px;
    }
    .border-gold-light-half {
        border-color: rgba(197, 168, 128, 0.2) !important;
    }
    .mega-menu-featured {
        transition: var(--taj-transition);
    }
    .mega-menu-featured:hover img {
        transform: scale(1.03);
    }
    .mega-menu-featured img {
        transition: var(--taj-transition);
    }
}

@media (max-width: 991.98px) {
    .navbar-luxury .dropdown-menu {
        background-color: rgba(10, 34, 64, 0.95) !important;
        border: none;
        border-left: 2px solid var(--taj-gold-primary);
        border-radius: 0;
        margin-left: 1rem;
        padding: 0.5rem 0;
    }
    /* Mega Menu Mobile Specific Style: Convert to standard single-column dropdown list */
    .navbar-luxury .dropdown-menu.mega-menu {
        background-color: rgba(10, 34, 64, 0.98) !important;
        border-left: 2px solid var(--taj-gold-primary) !important;
        padding: 0.5rem 0 !important;
        display: none;
        box-shadow: none !important;
        margin-left: 1rem;
    }
    .navbar-luxury .dropdown-menu.mega-menu.show {
        display: block !important;
    }
    /* Hide column titles & featured highlights on mobile */
    .navbar-luxury .dropdown-menu.mega-menu .mega-menu-title {
        display: none !important;
    }
    .navbar-luxury .dropdown-menu.mega-menu .mega-menu-featured {
        display: none !important;
    }
    /* Flatten grid columns to stack directly */
    .navbar-luxury .dropdown-menu.mega-menu .container {
        padding: 0 !important;
        max-width: 100% !important;
    }
    .navbar-luxury .dropdown-menu.mega-menu .row {
        margin: 0 !important;
        display: block !important;
    }
    .navbar-luxury .dropdown-menu.mega-menu [class*="col-"] {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    .navbar-luxury .dropdown-menu.mega-menu ul {
        margin: 0 !important;
        padding: 0 !important;
    }
    /* Re-style mega menu items to act exactly like standard dropdown items */
    .navbar-luxury .dropdown-menu.mega-menu .mega-menu-item {
        font-family: var(--font-body) !important;
        font-size: 0.72rem !important;
        font-weight: 500 !important;
        color: var(--taj-white) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        padding: 0.6rem 1.5rem !important;
        display: block !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        text-decoration: none !important;
    }
    .navbar-luxury .dropdown-menu.mega-menu .mega-menu-item:last-child {
        border-bottom: none !important;
    }
    .navbar-luxury .dropdown-menu.mega-menu .mega-menu-item:hover {
        background-color: rgba(197, 168, 128, 0.1) !important;
        color: var(--taj-gold-light) !important;
        padding-left: 1.8rem !important;
    }
}

.navbar-luxury .dropdown-item {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--taj-white) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.6rem 1.5rem !important;
    transition: var(--taj-transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-luxury .dropdown-item:last-child {
    border-bottom: none;
}

.navbar-luxury .dropdown-item:hover {
    background-color: rgba(197, 168, 128, 0.1) !important;
    color: var(--taj-gold-light) !important;
    padding-left: 1.8rem !important;
}

.navbar-toggler {
    border: 1px solid var(--taj-gold-primary);
    padding: 0.4rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(180, 151, 90, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* -------------------------------------------------------------
   8. HERO / CAROUSEL SYSTEM
------------------------------------------------------------- */

.hero-slider {
    height: 100vh;
    position: relative;
    background-color: var(--taj-blue-dark);
}

.hero-slider .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 34, 64, 0.65) 0%, rgba(10, 34, 64, 0.4) 60%, rgba(10, 34, 64, 0.85) 100%);
}

.hero-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -42%);
    width: 80%;
    max-width: 900px;
    z-index: 10;
    text-align: center;
    color: var(--taj-white);
}

.hero-caption h1 {
    font-size: 4.8rem;
    font-weight: 300;
    color: var(--taj-white);
    line-height: 1.1;
    margin-bottom: 1.8rem;
}

.hero-caption p {
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--taj-gold-primary);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-caption h1 {
        font-size: 2.8rem;
    }
    .hero-caption p {
        font-size: 0.8rem;
    }
}


/* -------------------------------------------------------------
   9. BOOKING ENGINE WIDGET
------------------------------------------------------------- */

.booking-widget-container {
    margin-top: -80px;
    position: relative;
    z-index: 20;
    padding: 0 15px;
}

.booking-widget {
    background-color: var(--taj-blue-dark);
    border: 1px solid var(--taj-gold-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 2.2rem;
    color: var(--taj-white);
}

.booking-widget label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taj-gold-light);
    margin-bottom: 0.6rem;
    display: block;
}

.booking-widget .form-control,
.booking-widget .form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: var(--taj-white);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    transition: var(--taj-transition);
}

.booking-widget .form-control:focus,
.booking-widget .form-select:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--taj-gold-primary);
    box-shadow: none;
    color: var(--taj-white);
}

.booking-widget .form-select option {
    background-color: var(--taj-blue-dark);
    color: var(--taj-white);
}


/* -------------------------------------------------------------
   10. CAROUSELS & LUXURY SLIDERS
------------------------------------------------------------- */

.suite-carousel .card {
    background-color: var(--taj-white);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 0;
    transition: var(--taj-transition);
}

.suite-carousel .card:hover {
    border-color: var(--taj-gold-primary);
    box-shadow: 0 15px 35px rgba(180, 151, 90, 0.08);
}

.suite-carousel .card-img-top {
    border-radius: 0;
}

.suite-carousel .card-title {
    font-size: 1.6rem;
    color: var(--taj-blue-dark);
}

.card-spec {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
}


/* -------------------------------------------------------------
   11. ROOMS CATALOG & FILTERING
------------------------------------------------------------- */

.filter-tabs {
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--taj-charcoal);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.8rem 1.8rem;
    transition: var(--taj-transition);
    border-bottom: 2px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--taj-gold-primary);
    border-bottom: 2px solid var(--taj-gold-primary);
}

.room-card-premium {
    background-color: var(--taj-white);
    border: 1px solid var(--taj-gray-light);
    transition: var(--taj-transition);
    height: 100%;
}

.room-card-premium:hover {
    transform: translateY(-5px);
    border-color: var(--taj-gold-primary);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.room-card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.room-card-img-wrapper img {
    transition: var(--taj-transition);
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.room-card-premium:hover .room-card-img-wrapper img {
    transform: scale(1.06);
}

.room-card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--taj-blue-dark);
    color: var(--taj-gold-light);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.4rem 1rem;
    font-weight: 500;
}

.room-card-content {
    padding: 2.2rem;
}

.room-card-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.room-amenity-icon {
    font-size: 0.8rem;
    color: var(--taj-gold-primary);
    margin-right: 0.4rem;
}

.room-card-price {
    font-size: 1.3rem;
    color: var(--taj-blue-dark);
    font-family: var(--font-heading);
}


/* -------------------------------------------------------------
   12. BANNER INTERIOR PAGES
------------------------------------------------------------- */

.banner-interior {
    height: 45vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-interior::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 34, 64, 0.7) 0%, rgba(10, 34, 64, 0.85) 100%);
}

.banner-caption {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    color: var(--taj-white);
}

.banner-caption h1 {
    font-size: 3.8rem;
    color: var(--taj-white);
}


/* -------------------------------------------------------------
   13. DINING SECTIONS
------------------------------------------------------------- */

.restaurant-showcase {
    background-color: var(--taj-white);
    border: 1px solid var(--taj-gray-light);
    margin-bottom: 4rem;
    overflow: hidden;
}

.restaurant-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 991px) {
    .restaurant-img-wrapper img {
        height: auto;
    }
}

.restaurant-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 100%;
}

@media (max-width: 576px) {
    .restaurant-content {
        padding: 2rem;
    }
}

.restaurant-meta-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
    border-top: 1px solid var(--taj-gray-light);
    border-bottom: 1px solid var(--taj-gray-light);
    padding: 1rem 0;
}

.restaurant-meta-list li {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.restaurant-meta-list strong {
    color: var(--taj-blue-dark);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}


/* -------------------------------------------------------------
   14. LUXURY ACCORDIONS & FORMS
------------------------------------------------------------- */

.accordion-luxury .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--taj-gold-light);
    margin-bottom: 0.5rem;
    border-radius: 0;
}

.accordion-luxury .accordion-button {
    background-color: transparent;
    color: var(--taj-blue-dark);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    padding: 1.5rem 0;
    box-shadow: none;
    border-radius: 0;
}

.accordion-luxury .accordion-button:not(.collapsed) {
    color: var(--taj-gold-primary);
}

.accordion-luxury .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B4975A'%3e%3cpath fill-rule='evenodd' d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3e%3cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e");
    background-size: 1.2rem;
    transition: var(--taj-transition);
}

.accordion-luxury .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A2240'%3e%3cpath fill-rule='evenodd' d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3e%3cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-luxury .accordion-body {
    padding: 0 0 1.5rem 0;
    font-size: 0.9rem;
    color: #555;
    font-family: var(--font-body);
}


/* Contact/Inquiry forms */

.form-luxury .form-control,
.form-luxury .form-select {
    background-color: var(--taj-white);
    border: 1px solid var(--taj-gray-light);
    color: var(--taj-charcoal);
    border-radius: 0;
    padding: 0.85rem 1.2rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    transition: var(--taj-transition);
}

.form-luxury .form-control:focus,
.form-luxury .form-select:focus {
    border-color: var(--taj-gold-primary);
    box-shadow: none;
}

.form-luxury label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taj-blue-dark);
    margin-bottom: 0.5rem;
}


/* -------------------------------------------------------------
   15. INTRO ANIMATIONS / INTERSECTION OBSERVER
------------------------------------------------------------- */

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}


/* -------------------------------------------------------------
   16. LUXURY FOOTER
------------------------------------------------------------- */

.footer-luxury {
    background-color: var(--taj-blue-dark);
    color: var(--taj-white);
    padding: 5rem 0 2rem 0;
    border-top: 3px solid var(--taj-gold-primary);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--taj-white);
    letter-spacing: 0.08em;
    line-height: 1;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-brand span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--taj-gold-primary);
    text-transform: uppercase;
    margin-top: 5px;
}

.footer-luxury h5 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taj-gold-primary);
    margin-bottom: 1.8rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    padding-bottom: 0.8rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: var(--taj-transition);
}

.footer-links a:hover {
    color: var(--taj-gold-primary);
    padding-left: 5px;
}

.footer-contact-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.footer-contact-info i {
    color: var(--taj-gold-primary);
    margin-right: 0.8rem;
}

.footer-social-icons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.2rem;
}

.footer-social-icons a {
    color: var(--taj-gold-primary);
    font-size: 1.1rem;
    transition: var(--taj-transition);
}

.footer-social-icons a:hover {
    color: var(--taj-white);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--taj-gold-primary);
}


/* =============================================================
   17. PHASE 2 - UI LAYOUT EXTENSIONS & STYLING
   ============================================================= */


/* --- A. Booking Stepper Flow --- */

.booking-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 3rem;
}

.booking-stepper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--taj-gray-light);
    z-index: 1;
}

.stepper-progress-bar {
    position: absolute;
    top: 25px;
    left: 0;
    height: 1px;
    background-color: var(--taj-gold-primary);
    z-index: 2;
    transition: width 0.6s ease;
    width: 0%;
}

.step-node {
    position: relative;
    z-index: 3;
    text-align: center;
    flex: 1;
}

.step-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--taj-white);
    border: 1px solid var(--taj-gray-light);
    color: var(--taj-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem auto;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--taj-transition);
}

.step-node.active .step-dot {
    background-color: var(--taj-blue-dark);
    border-color: var(--taj-gold-primary);
    color: var(--taj-gold-primary);
    box-shadow: 0 0 15px rgba(180, 151, 90, 0.25);
}

.step-node.completed .step-dot {
    background-color: var(--taj-gold-primary);
    border-color: var(--taj-gold-primary);
    color: var(--taj-white);
}

.step-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    transition: var(--taj-transition);
}

.step-node.active .step-label,
.step-node.completed .step-label {
    color: var(--taj-blue-dark);
}

.checkout-summary-card {
    background-color: var(--taj-white);
    border: 1px solid var(--taj-gold-light);
    padding: 2.2rem;
    position: sticky;
    top: 110px;
}

.checkout-summary-title {
    font-size: 1.6rem;
    border-bottom: 1px solid var(--taj-gray-light);
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
}

.summary-line-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}


/* --- B. Left Filter Sidebar --- */

.sidebar-filter-widget {
    background-color: var(--taj-white);
    border: 1px solid var(--taj-gray-light);
    padding: 2rem;
    position: sticky;
    top: 110px;
}

.sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    border-bottom: 1px solid var(--taj-gold-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    margin-bottom: 1.8rem;
}

.filter-group label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--taj-blue-dark);
    margin-bottom: 0.6rem;
    display: block;
}


/* Range slider custom look */

.range-slider-value {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--taj-gold-primary);
    margin-top: 0.4rem;
}


/* --- C. Editorial Row Cards --- */

.editorial-row-card {
    background-color: var(--taj-white);
    border: 1px solid var(--taj-gray-light);
    margin-bottom: 4rem;
    overflow: hidden;
    transition: var(--taj-transition);
}

.editorial-row-card:hover {
    border-color: var(--taj-gold-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.editorial-row-img-wrapper {
    overflow: hidden;
    position: relative;
}

.editorial-row-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
    transition: var(--taj-transition);
}

.editorial-row-card:hover .editorial-row-img-wrapper img {
    transform: scale(1.04);
}

.editorial-row-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .editorial-row-content {
        padding: 2rem;
    }
}


/* --- D. Room Details Extensions --- */

.room-details-spec-table {
    width: 100%;
    margin-bottom: 2rem;
}

.room-details-spec-table td {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--taj-gray-light);
    font-size: 0.85rem;
}

.room-details-spec-table td:first-child {
    font-weight: 500;
    color: var(--taj-blue-dark);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    width: 40%;
}

.room-details-gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--taj-transition);
}

.room-details-gallery-grid img:hover {
    opacity: 0.9;
}

.butler-perk-card {
    background-color: var(--taj-gold-ultra-light);
    border: 1px dashed var(--taj-gold-primary);
    padding: 2.2rem;
    margin-bottom: 2rem;
}


/* --- E. Offers Page Styles --- */

.offer-card {
    background-color: var(--taj-white);
    border: 1px solid var(--taj-gray-light);
    overflow: hidden;
    position: relative;
    transition: var(--taj-transition);
    height: 100%;
}

.offer-card:hover {
    border-color: var(--taj-gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(180, 151, 90, 0.06);
}

.offer-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--taj-gold-primary);
    color: var(--taj-white);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 2.5rem;
    transform: rotate(45deg);
    z-index: 10;
}

.offer-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.offer-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--taj-transition);
}

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

.offer-content {
    padding: 2rem;
}

.offer-card-title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}


/* --- F. Services Features & Columns --- */

.service-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--taj-gold-primary);
    color: var(--taj-gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem auto;
    transition: var(--taj-transition);
}

.service-feature-card {
    background-color: var(--taj-white);
    border: 1px solid var(--taj-gray-light);
    padding: 3rem 2rem;
    transition: var(--taj-transition);
}

.service-feature-card:hover {
    border-color: var(--taj-gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.service-feature-card:hover .service-icon-box {
    background-color: var(--taj-gold-primary);
    color: var(--taj-white);
}


/* --- G. Restaurant Menus (dining.html extensions) --- */

.menu-section {
    padding: 3rem 0;
}

.menu-section-title {
    font-size: 1.8rem;
    color: var(--taj-blue-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--taj-blue-dark);
    white-space: nowrap;
}

.menu-item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted var(--taj-gold-light);
    margin: 0 1rem;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--taj-gold-primary);
    font-weight: 500;
}

.menu-item-description {
    font-size: 0.78rem;
    color: #666;
    margin-top: -0.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}


/* --- H. WhatsApp Floating Icon --- */

.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--taj-white) !important;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--taj-transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background-color: #20BA5A;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


/* -------------------------------------------------------------
   13. CUSTOMER AUTHENTICATION PAGES (LOGIN / REGISTER)
   ------------------------------------------------------------- */

.auth-wrapper {
    min-height: calc(100vh - 450px);
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.auth-card {
    background-color: var(--taj-white);
    border: 1px solid var(--taj-gold-primary);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    padding: 3.5rem 3rem;
    transition: var(--taj-transition);
}

.auth-card:hover {
    box-shadow: 0 20px 50px rgba(180, 151, 90, 0.08);
}

@media (max-width: 576px) {
    .auth-card {
        padding: 2.2rem 1.5rem;
    }
}

.auth-card h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--taj-blue-dark);
}

.auth-card .subtitle {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2rem;
}

.auth-form label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--taj-blue-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.auth-form .form-control {
    background-color: transparent;
    border: 1px solid var(--taj-gray-light);
    border-radius: 0;
    color: var(--taj-charcoal);
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    transition: var(--taj-transition);
}

.auth-form .form-control:focus {
    border-color: var(--taj-gold-primary);
    box-shadow: none;
    background-color: transparent;
}

.auth-form .form-check-input {
    border-radius: 0;
    border-color: var(--taj-gold-primary);
}

.auth-form .form-check-input:checked {
    background-color: var(--taj-gold-primary);
    border-color: var(--taj-gold-primary);
}

.auth-form .form-check-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--taj-charcoal);
}

.auth-form .forgot-link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--taj-gold-primary);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--taj-transition);
}

.auth-form .forgot-link:hover {
    color: var(--taj-blue-dark);
}

.social-login-btn {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--taj-gray-light);
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    color: var(--taj-charcoal);
    background-color: var(--taj-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--taj-transition);
    width: 100%;
}

.social-login-btn:hover {
    border-color: var(--taj-gold-primary);
    color: var(--taj-gold-primary);
}


/* -------------------------------------------------------------
   14. FLOATING CALL NOW RES_WIDGET
   ------------------------------------------------------------- */

.phone-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 30px;
    left: 30px;
    /* Aligned to the bottom left for page balance */
    background-color: var(--taj-gold-primary);
    color: var(--taj-white) !important;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--taj-transition);
}

.phone-float:hover {
    transform: scale(1.08);
    background-color: var(--taj-blue-dark);
    color: var(--taj-gold-light) !important;
    box-shadow: 0 6px 20px rgba(180, 151, 90, 0.25);
}


/* -------------------------------------------------------------
   15. GALLERY UPGRADES & LIGHTBOX OVERLAY SYSTEM
   ------------------------------------------------------------- */

.gallery-grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(197, 168, 128, 0.2);
    background-color: var(--taj-blue-dark);
}

.gallery-grid-item img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
    width: 100%;
}

.gallery-grid-item:hover img {
    transform: scale(1.06);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 34, 64, 0.1) 0%, rgba(10, 34, 64, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    z-index: 2;
}

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

.gallery-item-overlay .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    border: 1px solid var(--taj-gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--taj-gold-primary);
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: rgba(10, 34, 64, 0.6);
}

.gallery-grid-item:hover .gallery-item-overlay .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
    color: var(--taj-white);
    background-color: var(--taj-gold-primary);
}

.gallery-item-info {
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-grid-item:hover .gallery-item-info {
    transform: translateY(0);
}

.gallery-item-info .category {
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: var(--taj-gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.gallery-item-info .title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--taj-white);
    margin-bottom: 0;
}


/* Custom Lightbox Overlay */

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 34, 64, 0.96);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 1px solid var(--taj-gold-primary);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
    color: var(--taj-gold-light);
    margin-top: 1.2rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-align: center;
    font-weight: 400;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--taj-gold-primary);
    font-size: 2.8rem;
    cursor: pointer;
    transition: var(--taj-transition);
    line-height: 1;
    z-index: 100000;
}

.lightbox-close:hover {
    color: var(--taj-white);
    transform: scale(1.05);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--taj-gold-primary);
    font-size: 3.5rem;
    cursor: pointer;
    transition: var(--taj-transition);
    user-select: none;
    z-index: 100000;
}

.lightbox-arrow:hover {
    color: var(--taj-white);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow-left {
    left: 30px;
}

.lightbox-arrow-right {
    right: 30px;
}

@media (max-width: 767.98px) {
    .lightbox-content {
        max-width: 92%;
    }
    .lightbox-arrow {
        font-size: 2.2rem;
    }
    .lightbox-arrow-left {
        left: 10px;
    }
    .lightbox-arrow-right {
        right: 10px;
    }
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2.2rem;
    }
}


/* -------------------------------------------------------------
   16. 5-STAR LUXURY VISUAL DESIGN CLEANLINESS
   ------------------------------------------------------------- */


/* Alternating Section Backgrounds for clear content separation */

section,
.section-luxury {
    background-color: var(--taj-white);
    border-bottom: 1px solid rgba(180, 151, 90, 0.08);
}


/* Sandstone background for sections with listings, catalog cards, or checkout steppers */

.catalog-with-sidebar,
.celebrations-venues,
.checkout-stepper-section,
.confirmation-section,
.editorial-list,
.exclusive-offers,
.gallery-catalog,
.loyalty-tiers-details,
.offers-catalog,
.palace-privileges,
.palace-services,
.rooms-catalog,
.services-features,
.spa-menu-section,
.wedding-packages-details,
.suites-showcase,
.bespoke-experiences {
    background-color: var(--taj-ivory) !important;
}


/* Clean, crisp styling for all premium content cards */

.suite-carousel .card,
.room-card-premium,
.editorial-row-card,
.offer-card,
.service-feature-card,
.auth-card,
.checkout-summary-card,
.sidebar-widget,
.form-luxury,
.checkout-billing-card,
.sitemap-card {
    background-color: var(--taj-white) !important;
    border: 1px solid rgba(180, 151, 90, 0.16) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015) !important;
    border-radius: 0 !important;
    transition: var(--taj-transition) !important;
}


/* Hover transitions for gold shadow and elevation */

.suite-carousel .card:hover,
.room-card-premium:hover,
.editorial-row-card:hover,
.offer-card:hover,
.service-feature-card:hover,
.auth-card:hover {
    border-color: var(--taj-gold-primary) !important;
    box-shadow: 0 18px 45px rgba(180, 151, 90, 0.08) !important;
    transform: translateY(-5px);
}


/* Premium Form Input field upgrades */

.form-luxury .form-control,
.form-luxury .form-select,
.auth-form .form-control {
    background-color: var(--taj-white) !important;
    border: 1px solid rgba(180, 151, 90, 0.22) !important;
    color: var(--taj-charcoal) !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important;
    padding: 0.85rem 1.15rem !important;
    transition: var(--taj-transition) !important;
}

.form-luxury .form-control:focus,
.form-luxury .form-select:focus,
.auth-form .form-control:focus {
    border-color: var(--taj-gold-primary) !important;
    background-color: var(--taj-white) !important;
    box-shadow: 0 4px 18px rgba(180, 151, 90, 0.09) !important;
}


/* Soft styling adjustments for card details */

.room-card-content,
.offer-content,
.editorial-row-content {
    background-color: var(--taj-white) !important;
}


/* Clean divider lines in lists */

.list-unstyled.border-top.border-bottom {
    border-color: rgba(180, 151, 90, 0.12) !important;
}


/* =========================================================================
   10-STAR ULTRA-LUXURY OVERRIDES
   ========================================================================= */

:root {
    --taj-blue-dark: #050B14;
    /* Deep Midnight */
    --taj-blue-medium: #0D1B2A;
    --taj-gold-primary: #D4AF37;
    /* True metallic gold */
    --taj-gold-light: #E5C158;
    --taj-ivory: #FAFAFA;
    /* Purer Ivory */
}


/* Extreme Whitespace */

section {
    padding: 10rem 0 !important;
}

@media (max-width: 768px) {
    section {
        padding: 6rem 0 !important;
    }
}


/* Magazine Cover Typography */

.section-title {
    font-size: 4.5rem !important;
    letter-spacing: 0.05em !important;
    line-height: 1.1 !important;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 3rem !important;
    }
}


/* Tracked out subheadings */

.section-subtitle {
    letter-spacing: 0.3em !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
}


/* Cinematic Slow Zoom on Images */

.editorial-frame img {
    transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.editorial-frame:hover img {
    transform: scale(1.06) !important;
}


/* Elegant Soft Borders instead of harsh ones */

.editorial-frame {
    border: none !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05) !important;
    padding: 0 !important;
    border-radius: 4px !important;
}


/* Elegant Buttons */

.btn-luxury-solid {
    background: linear-gradient(135deg, var(--taj-gold-light) 0%, var(--taj-gold-primary) 100%) !important;
    color: var(--taj-blue-dark) !important;
    border: none !important;
    font-weight: 600 !important;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.btn-luxury-solid:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4) !important;
    transform: translateY(-2px) !important;
    color: var(--taj-blue-dark) !important;
}

.btn-luxury-solid::before {
    display: none !important;
}


/* Navbar enhancements for 10-star */

.navbar-luxury {
    background-color: rgba(5, 11, 20, 0.6) !important;
}

.navbar-luxury.navbar-scrolled {
    background-color: rgba(5, 11, 20, 0.95) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
}


/* Fix for footer text visibility against dark background */

.footer-luxury .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}


/* Remove background from top navigation */

.top-utility-bar {
    background-color: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    position: absolute !important;
    width: 100% !important;
    z-index: 1040 !important;
}

.navbar-luxury {
    background-color: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
}


/* Ensure it still gets a background when scrolled down so text remains readable */

.navbar-luxury.navbar-scrolled {
    background-color: rgba(5, 11, 20, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
}

@media screen and (max-width: 720px) {
    .banner-caption h1 {
        font-size: 22px !important;
    }
    .navbar-luxury .navbar-brand img {
        height: 60px !important;
    }
    #navbarContent {
        background-color: #000 !important;
        /* opacity: 0.8; */
    }
}