/* ================================
   IMPERIUM - OPTIMIZED CSS
   Component-Based Styling Only
   ================================ */

/* ================================
   FONTS & VARIABLES
   ================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --imperium-navy: #001F3F;
    --imperium-gold: #C7A052;
    --imperium-light: #F5F5F5;
    --imperium-dark: #000814;
}

/* ================================
   BASE RESET
   ================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--imperium-light);
    color: #1f2937;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }

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

/* Main content wrapper - no nested scrollbars */
main {
    width: 100%;
    overflow: clip;
}

/* Prevent sections from creating scrollbars */
section {
    overflow: clip;
}

/* ================================
   LAYOUT CONTAINER
   ================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ================================
   TOP BAR
   ================================ */
.top-bar {
    background: linear-gradient(to right, var(--imperium-navy), var(--imperium-dark), var(--imperium-navy));
    color: white;
    padding:  0.5rem 0; /* Reduced from 0.5rem */
    border-bottom: 1px solid rgba(199, 160, 82, 0.2);
}

.top-bar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem; /* Reduced from 0.75rem */
}

.top-bar__contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-bar__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar__link:hover {
    color: var(--imperium-gold);
}

.top-bar__icon {
    width: 1.5rem; /* Reduced from 1.5rem */
    height: 1.5rem;
    background: rgba(199, 160, 82, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem; /* Reduced from 0.625rem */
    color: var(--imperium-gold);
}

.top-bar__auth {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.top-bar__user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(199, 160, 82, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(199, 160, 82, 0.2);
}

/* Top bar login button - smaller and compact */
.top-bar__auth .btn--gold {
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    gap: 0.375rem;
    border-radius: 0.375rem;
}

/* Top Bar Mon Compte Dropdown */
.top-bar__dropdown {
    position: relative;
}

.top-bar__dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(199, 160, 82, 0.1);
    border: 1px solid rgba(199, 160, 82, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.top-bar__dropdown-btn:hover {
    background: rgba(199, 160, 82, 0.2);
    border-color: var(--imperium-gold);
}

.top-bar__dropdown-btn i:first-child {
    color: var(--imperium-gold);
}

.top-bar__dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 14rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(199, 160, 82, 0.2);
    overflow: hidden;
    z-index: 1001;
}

.top-bar__dropdown-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    color: white;
}

.top-bar__dropdown-user {
    width: 2rem;
    height: 2rem;
    background: rgba(199, 160, 82, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--imperium-gold);
}

.top-bar__dropdown-name {
    font-weight: 700;
    font-size: 0.8125rem;
}

.top-bar__dropdown-email {
    font-size: 0.6875rem;
    color: var(--imperium-gold);
    opacity: 0.9;
}

.top-bar__dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.625rem 1rem;
    background: none;
    border: none;
    color: #374151;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
}

.top-bar__dropdown-item:hover {
    background: var(--imperium-light);
}

.top-bar__dropdown-item i {
    width: 1rem;
    color: var(--imperium-gold);
}

.top-bar__dropdown-item--gold {
    color: var(--imperium-gold);
}

.top-bar__dropdown-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 0.25rem 0;
}

/* ================================
   NAVIGATION
   ================================ */
.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f1f5f9;
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3.5rem;
    padding: 0 1rem;
}

.nav__logo img {
    width: 170px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s;
}

.nav__link:hover {
    color: var(--imperium-navy);
    background: var(--imperium-light);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--imperium-gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav__link:hover::after {
    transform: scaleX(1);
}

/* Active navigation link */
.nav__link--active {
    color: var(--imperium-navy);
    background: rgba(199, 160, 82, 0.15);
}

.nav__link--active::after {
    transform: scaleX(1);
}

.nav__user-dropdown {
    position: relative;
}

.nav__user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.nav__user-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.3);
    transform: translateY(-2px);
}

.nav__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 16rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(199, 160, 82, 0.2);
    overflow: hidden;
}

.nav__dropdown-header {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    color: white;
}

.nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s;
}

.nav__dropdown-item:hover {
    background: var(--imperium-light);
}

/* Hotels Mega Dropdown */
.nav__dropdown-wrapper {
    position: relative;
}

.nav__dropdown-wrapper::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    height: 0.25rem;
}

.nav__link--dropdown {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.nav__link-chevron {
    font-size: 0.625rem;
    transition: transform 0.3s;
}

.nav__link-chevron.rotate-180 {
    transform: rotate(180deg);
}

/* Simple Dropdown Menu (for Voyages) */
.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 180px;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.12);
    border: 1px solid rgba(199, 160, 82, 0.15);
    overflow: hidden;
    z-index: 1000;
    padding: 0.25rem 0;
}

.nav__dropdown-menu .nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav__dropdown-menu .nav__dropdown-item:hover {
    background: var(--imperium-light);
    color: var(--imperium-navy);
}

.nav__dropdown-menu .nav__dropdown-item i {
    width: 16px;
    font-size: 0.75rem;
    color: var(--imperium-gold);
}

.nav__mega-dropdown {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 500px;
    max-width: calc(100vw - 2rem);
    max-height: 380px;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 15px 50px rgba(0, 31, 63, 0.15);
    border: 2px solid rgba(199, 160, 82, 0.2);
    overflow: hidden;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.nav__mega-dropdown-header {
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.nav__mega-dropdown-header i {
    color: var(--imperium-gold);
}

.nav__mega-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.125rem 0.75rem;
    padding: 0.75rem 1rem;
    overflow-y: auto;
    max-height: 320px;
    flex: 1;
}

.nav__mega-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4rem 0.5rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav__mega-dropdown-item:hover {
    background: var(--imperium-light);
    color: var(--imperium-navy);
}

.nav__mega-dropdown-item i {
    color: var(--imperium-gold);
    font-size: 0.625rem;
}

.nav__mobile-toggle {
    display: none;
    padding: 0.5rem;
    background: var(--imperium-navy);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    cursor: pointer;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    padding-bottom: 10rem;
    margin-bottom: 0;
}

/* Hero with Carousel */
.hero--carousel {
    background: transparent;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 10rem;
    min-height: 75vh;
    margin-bottom: 0;
}

/* Hero Carousel - Swiper Version */
.hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    height: 100%;
}

.hero-carousel__slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-carousel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 31, 63, 0.3) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel__nav:hover {
    background: var(--imperium-gold);
    border-color: var(--imperium-gold);
    color: var(--imperium-navy);
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel__nav--prev {
    left: 1.5rem;
}

.hero-carousel__nav--next {
    right: 1.5rem;
}

/* Hide default Swiper buttons */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.hero-carousel__indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.hero-carousel__indicator {
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-carousel__indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-carousel__indicator.active {
    background: var(--imperium-gold);
    transform: scale(1.2);
}

/* Hero Title Light (for carousel background) */
.hero__title--light {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__subtitle--light {
    color: rgba(255, 255, 255, 0.9);
}

.hero__subtitle--light strong {
    color: var(--imperium-gold);
}

/* Mobile responsive for carousel */
@media (max-width: 768px) {
    .hero,
    .hero--carousel {
        min-height: 60vh;
        padding-bottom: 7rem;
    }
    
    .hero-carousel__nav {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.875rem;
    }

    .hero-carousel__nav--prev {
        left: 0.75rem;
    }

    .hero-carousel__nav--next {
        right: 0.75rem;
    }

    .hero-carousel__indicators {
        bottom: 1rem;
    }

    .hero-carousel__indicator {
        width: 0.625rem;
        height: 0.625rem;
    }
}

@media (max-width: 640px) {
    .hero,
    .hero--carousel {
        min-height: 55vh;
        padding-bottom: 6rem;
    }
}

.hero__bg-effect {
    position: absolute;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.1;
    animation: pulse 3s infinite;
    z-index: 1;
}

.hero__bg-effect--navy {
    top: 3rem;
    left: 2rem;
    background: var(--imperium-navy);
}

.hero__bg-effect--gold {
    top: 5rem;
    right: 3rem;
    background: var(--imperium-gold);
    animation-delay: 1s;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1rem 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--imperium-navy);
    box-shadow: 0 4px 16px rgba(0, 31, 63, 0.1);
    margin-bottom: 1rem;
}

.hero__badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--imperium-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--imperium-navy), var(--imperium-gold), var(--imperium-navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1rem;
    color: #374151;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.hero__subtitle strong {
    color: var(--imperium-gold);
}

/* ================================
   SEARCH BOX - REPLACE THIS ENTIRE BLOCK
   ================================ */
.search-box-wrapper {
    position: relative;
    margin-top: -8rem;
    padding-bottom: 2rem;
    z-index: 100;
    background: transparent;
}

.search-box {
    max-width: 80rem;
    margin: 0 auto;
    background: white;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 31, 63, 0.15);
    position: relative;
}

.search-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.search-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.search-tab:hover {
    text-decoration: none;
}

.search-tab--active {
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.3);
}

.search-tab--inactive {
    background: rgba(255, 255, 255, 0.7);
    color: #374151;
}

.search-tab--inactive:hover {
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.3);
}

.search-form {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1.5fr 2fr 1.5fr;
    gap: 1rem;
    align-items: end;
    position: relative;
}

.search-field {
    position: relative;
}

.search-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--imperium-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: white;
    transition: all 0.3s;
    height: 48px;
}

.search-input:focus {
    outline: none;
    border-color: var(--imperium-navy);
    box-shadow: 0 0 0 4px rgba(0, 31, 63, 0.1);
}

.search-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--imperium-gold);
    pointer-events: none;
    z-index: 10;
}

/* Mobile responsive for search box */
@media (max-width: 768px) {
    .search-box-wrapper {
        margin-top: -7rem;
        padding: 0 0.5rem 1rem;
    }
    
    .search-box {
        padding: 1.25rem;
        border-radius: 0.75rem;
    }
    
    .search-tabs {
        flex-wrap: wrap;
        gap: 0.375rem;
        margin-bottom: 1rem;
    }
    
    .search-tab {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
        min-width: calc(50% - 0.1875rem);
    }
    
    .search-tab i {
        font-size: 0.875rem;
    }
    
    .search-input {
        padding: 0.75rem 0.875rem 0.75rem 2.25rem;
        height: 44px;
    }
}

/* City Autocomplete */
.city-suggestions {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    right: 0;
    z-index: 50;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.15);
    border: 1px solid #e5e7eb;
    max-height: 16rem;
    overflow-y: auto;
}

.city-suggestion {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    background: white;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.city-suggestion:last-child {
    border-bottom: none;
}

.city-suggestion:hover {
    background: var(--imperium-light);
}

/* Guests Dropdown */
.guests-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    background: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    height: 48px;
}

.guests-btn:hover,
.guests-btn--active {
    border-color: var(--imperium-gold);
}

.guests-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    margin-bottom: 0.5rem;
    background: white;
    border: 2px solid var(--imperium-gold);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.room-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.625rem;
    padding: 0.875rem;
    margin-bottom: 0.75rem;
}

.room-card:last-child {
    margin-bottom: 0;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.room-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--imperium-navy);
}

.room-remove {
    width: 1.75rem;
    height: 1.75rem;
    background: #fee2e2;
    color: #ef4444;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.room-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: white;
}

.add-room-btn {
    width: 100%;
    padding: 0.625rem;
    border: 2px dashed rgba(199, 160, 82, 0.5);
    border-radius: 0.625rem;
    background: rgba(199, 160, 82, 0.05);
    color: var(--imperium-gold);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.add-room-btn:hover {
    background: rgba(199, 160, 82, 0.1);
    border-color: var(--imperium-gold);
}

/* ================================
   PRODUCTION-READY FLATPICKR CALENDAR
   Clean, Professional Design
   ================================ */

/* Main Calendar Container */
.flatpickr-calendar {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
    width: 280px !important;
    padding: 0 !important;
    z-index: 10000 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    overflow: hidden !important;
}

/* Calendar Header - Month & Year Selectors */
.flatpickr-months {
    background: linear-gradient(135deg, #f8fafc, #ffffff) !important;
    border-radius: 12px 12px 0 0 !important;
    padding: 14px 10px !important;
    height: auto !important;
    border-bottom: 1px solid #e5e7eb !important;
    align-items: center !important;
}

.flatpickr-months::after {
    display: none !important;
}

.flatpickr-month {
    height: auto !important;
    color: #1f2937 !important;
    overflow: visible !important;
}

.flatpickr-current-month {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    padding: 0 !important;
    height: auto !important;
    line-height: 1.4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    left: 0 !important;
    position: relative !important;
}

/* Month Dropdown Selector */
.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: #ffffff !important;
    color: #1f2937 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 6px !important;
    padding: 6px 24px 6px 10px !important;
    font-weight: 600 !important;
    font-size: 0.8125rem !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 6px center !important;
    background-size: 14px !important;
    transition: all 0.15s ease !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    border-color: #2563eb !important;
    background-color: #f8fafc !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus {
    outline: none !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1) !important;
}

/* Year Input Selector */
.flatpickr-current-month .numInputWrapper {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 6px !important;
    padding: 0 !important;
    width: 70px !important;
    position: relative !important;
    overflow: hidden !important;
}

.flatpickr-current-month .numInputWrapper:hover {
    border-color: #2563eb !important;
}

.flatpickr-current-month .numInputWrapper input {
    color: #1f2937 !important;
    font-weight: 600 !important;
    font-size: 0.8125rem !important;
    background: transparent !important;
    border: none !important;
    padding: 6px 8px !important;
    width: 100% !important;
    text-align: center !important;
}

.flatpickr-current-month .numInputWrapper input:focus {
    outline: none !important;
}

/* Year increment/decrement arrows */
.flatpickr-current-month .numInputWrapper span {
    display: flex !important;
    position: absolute !important;
    right: 0 !important;
    width: 18px !important;
    padding: 0 !important;
    height: 50% !important;
    line-height: 50% !important;
    opacity: 0 !important;
    cursor: pointer !important;
    background: #f3f4f6 !important;
    border-left: 1px solid #e5e7eb !important;
    transition: opacity 0.15s ease !important;
}

.flatpickr-current-month .numInputWrapper:hover span {
    opacity: 1 !important;
}

.flatpickr-current-month .numInputWrapper span.arrowUp {
    top: 0 !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.flatpickr-current-month .numInputWrapper span.arrowDown {
    bottom: 0 !important;
}

.flatpickr-current-month .numInputWrapper span:hover {
    background: #e5e7eb !important;
}

.flatpickr-current-month .numInputWrapper span:after {
    border-color: #6b7280 transparent transparent !important;
    border-width: 4px 4px 0 !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-color: transparent transparent #6b7280 !important;
    border-width: 0 4px 4px !important;
}

/* Navigation Arrows */
.flatpickr-prev-month,
.flatpickr-next-month {
    top: 10px !important;
    padding: 0 !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f3f4f6 !important;
    border: none !important;
    border-radius: 6px !important;
    transition: all 0.15s ease !important;
}

.flatpickr-prev-month {
    left: 8px !important;
}

.flatpickr-next-month {
    right: 8px !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: #e5e7eb !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    width: 10px !important;
    height: 10px !important;
    fill: #374151 !important;
}

/* Hide Weekdays Header - Show only Month/Year */
.flatpickr-weekdays {
    display: none !important;
}

.flatpickr-weekday {
    display: none !important;
}

/* Days Container */
.flatpickr-days {
    border: none !important;
    width: 280px !important;
    padding: 4px !important;
    background: #ffffff !important;
}

.dayContainer {
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
}

/* Individual Days */
.flatpickr-day {
    border-radius: 6px !important;
    font-size: 0.8125rem !important;
    color: #374151 !important;
    border: none !important;
    transition: all 0.15s ease !important;
    flex: 0 0 calc(100% / 7) !important;
    max-width: calc(100% / 7) !important;
    width: calc(100% / 7) !important;
    height: 36px !important;
    line-height: 36px !important;
    margin: 1px 0 !important;
    font-weight: 500 !important;
    box-sizing: border-box !important;
}

/* Days from other months */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #d1d5db !important;
    pointer-events: none !important;
}

/* Disabled dates */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #d1d5db !important;
    background: transparent !important;
    cursor: not-allowed !important;
    text-decoration: line-through !important;
}

/* Today's date */
.flatpickr-day.today {
    background: #eff6ff !important;
    color: #2563eb !important;
    font-weight: 700 !important;
}

.flatpickr-day.today:hover {
    background: #dbeafe !important;
    color: #2563eb !important;
}

/* Selected date */
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected.today {
    background: #2563eb !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Hover effect */
.flatpickr-day:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay):not(.selected):hover {
    background: #f3f4f6 !important;
    color: #1f2937 !important;
}

/* In range styling */
.flatpickr-day.inRange {
    background: #dbeafe !important;
    border-radius: 0 !important;
}

.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #2563eb !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Calendar Footer */
.flatpickr-innerContainer {
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
    overflow: hidden !important;
}

/* Reduce Guests Dropdown Size */
.guests-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    margin-bottom: 0.5rem;
    background: white;
    border: 2px solid var(--imperium-gold);
    border-radius: 0.75rem;
    padding: 0.75rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    z-index: 100;
    max-height: 280px;
    overflow-y: auto;
}

.guests-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}

.guests-dropdown-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--imperium-navy);
}

.guests-dropdown-badge {
    padding: 0.25rem 0.625rem;
    background: rgba(199, 160, 82, 0.1);
    border-radius: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--imperium-gold);
}

.room-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.625rem;
    margin-bottom: 0.5rem;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.room-number {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--imperium-navy);
}

.room-remove {
    width: 1.5rem;
    height: 1.5rem;
    background: #fee2e2;
    color: #ef4444;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.room-selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.room-select-group {
    display: flex;
    flex-direction: column;
}

.room-select-label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.625rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.room-select {
    padding: 0.375rem 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background: white;
}

.add-room-btn {
    width: 100%;
    padding: 0.5rem;
    border: 2px dashed rgba(199, 160, 82, 0.5);
    border-radius: 0.5rem;
    background: rgba(199, 160, 82, 0.05);
    color: var(--imperium-gold);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.guests-dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 2px solid #f1f5f9;
    font-size: 0.75rem;
}

.guests-dropdown-footer-label {
    color: #64748b;
    font-weight: 600;
}

.guests-dropdown-footer-value {
    font-weight: 700;
    color: var(--imperium-navy);
}

/* Mobile specific adjustments */
@media (max-width: 640px) {
    .flatpickr-calendar {
        width: 260px !important;
    }

    .flatpickr-days,
    .dayContainer {
        width: 260px !important;
        min-width: 260px !important;
        max-width: 260px !important;
    }

    .flatpickr-day {
        height: 32px !important;
        line-height: 32px !important;
        font-size: 0.75rem !important;
    }
    
    .guests-dropdown {
        max-height: 240px;
        padding: 0.625rem;
    }
    
    .room-card {
        padding: 0.5rem;
    }
    
    .guests-btn {
        height: 44px;
    }
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(0, 31, 63, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.4);
}

.btn--gold {
    background: linear-gradient(135deg, var(--imperium-gold), #d4af6a);
    color: var(--imperium-navy);
    box-shadow: 0 4px 14px rgba(199, 160, 82, 0.3);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(199, 160, 82, 0.4);
}

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

/* ================================
   SECTIONS
   ================================ */
.section {
    padding: 4rem 0;
}

.section--white {
    background: white;
}

.section--gradient {
    background: linear-gradient(to bottom, white, var(--imperium-light));
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.section__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(199, 160, 82, 0.1);
    color: var(--imperium-gold);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.section__title {
    font-size: 1.875rem;
    color: var(--imperium-navy);
    margin-bottom: 0.75rem;
}

.section__subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

/* ================================
   DESTINATION CARDS
   ================================ */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.destination-card {
    position: relative;
    height: 280px;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    border: 2px solid white;
    display: block;
}

/* Ensure swiper slides have equal sizing */
.destinations-swiper .swiper-slide {
    height: auto;
}

.destinations-swiper .destination-card {
    height: 280px;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 31, 63, 0.15);
}

.destination-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.destination-card:hover .destination-card__img {
    transform: scale(1.1);
}

.destination-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--imperium-navy), rgba(0, 31, 63, 0.6), transparent);
    opacity: 0.9;
    transition: opacity 0.3s;
}

.destination-card:hover .destination-card__overlay {
    opacity: 0.95;
}

.destination-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, var(--imperium-gold), #d4af6a);
    color: var(--imperium-navy);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(199, 160, 82, 0.4);
}

.destination-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    transform: translateY(0.5rem);
    transition: transform 0.3s;
}

.destination-card:hover .destination-card__content {
    transform: translateY(0);
}

.destination-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.destination-card__region {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.destination-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--imperium-gold);
    color: var(--imperium-navy);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(199, 160, 82, 0.4);
    transition: transform 0.2s;
}

.destination-card:hover .destination-card__cta {
    transform: scale(1.05);
}

/* ================================
   TOUR CARDS
   ================================ */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tour-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 31, 63, 0.15);
    border-color: var(--imperium-gold);
}

.tour-card__img-wrapper {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.tour-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.tour-card:hover .tour-card__img {
    transform: scale(1.1);
}

.tour-card__price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 31, 63, 0.85);
    backdrop-filter: blur(8px);
    color: var(--imperium-gold);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tour-card__content {
    padding: 1.5rem;
}

.tour-card__title {
    font-size: 1.125rem;
    color: var(--imperium-navy);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.tour-card:hover .tour-card__title {
    color: var(--imperium-gold);
}

.tour-card__description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card__meta {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
}

/* ================================
   FEATURES
   ================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--imperium-gold);
    transform: translateY(-4px);
}

.feature-card__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 31, 63, 0.2);
    transition: transform 0.3s;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1);
}

.feature-card__title {
    font-size: 1.125rem;
    color: var(--imperium-navy);
    margin-bottom: 0.5rem;
}

.feature-card__description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--imperium-navy);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 1rem;
    overflow: hidden;
}

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

.footer__brand {
   margin-left: -24px; 
   margin-top: -75px;
   max-width: 180px;
}

.footer__description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    margin-top: -50px;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    width: 2.25rem;
    height: 2.25rem;
    background: var(--imperium-gold);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--imperium-navy);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer__social-link:hover {
    opacity: 0.8;
}

.footer__title {
    color: var(--imperium-gold);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.footer__link:hover {
    color: var(--imperium-gold);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer__icon {
    color: var(--imperium-gold);
    margin-top: 0.125rem;
}

.footer__bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer__bottom strong {
    color: var(--imperium-gold);
}



/* ================================
   ADDITIONAL MOBILE FIXES
   ================================ */
@media (max-width: 768px) {
    .hero__title {
        font-size: 1.875rem; /* Reduced for mobile */
    }
    
    .hero__subtitle {
        font-size: 0.875rem;
    }
    
    .search-label {
        font-size: 0.625rem;
    }
    
    .search-input {
        padding: 0.5rem 0.75rem 0.5rem 2rem;
        font-size: 0.75rem;
    }
    
    .search-icon {
        left: 0.625rem;
        width: 0.75rem;
        height: 0.75rem;
    }
}

/* ================================
   AUTH PAGES (Login/Register) - REPLACE THIS ENTIRE BLOCK
   ================================ */
.auth-page {
    min-height: calc(100vh - 6rem);
    background: linear-gradient(135deg, var(--imperium-light), white, var(--imperium-light));
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem 1rem;
    position: relative;
    overflow: hidden;
}

.auth-page > .container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

/* Animated Background for Auth Pages */
.auth-page__bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.auth-page__bg-effect {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.15;
    animation: pulse 3s infinite;
}

.auth-page__bg-effect--navy {
    top: 2rem;
    left: 2rem;
    background: var(--imperium-navy);
}

.auth-page__bg-effect--gold {
    bottom: 2rem;
    right: 2rem;
    background: var(--imperium-gold);
    animation-delay: 1s;
}

.auth-container {
    width: 100%;
    max-width: 56rem;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 31, 63, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Auth Visual Side */
.auth-visual {
    position: relative;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark), var(--imperium-navy));
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .auth-visual {
        padding: 2rem;
    }
}

.auth-visual__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.auth-visual__pattern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-visual__decoration {
    position: absolute;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    filter: blur(64px);
}

.auth-visual__decoration--top {
    top: 0;
    right: 0;
    background: rgba(199, 160, 82, 0.2);
}

.auth-visual__decoration--bottom {
    bottom: 0;
    left: 0;
    background: rgba(199, 160, 82, 0.1);
}

.auth-visual__content {
    position: relative;
    z-index: 10;
    color: white;
}

.auth-visual__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(199, 160, 82, 0.2);
    border: 1px solid rgba(199, 160, 82, 0.3);
    border-radius: 0.5rem;
    backdrop-filter: blur(8px);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.auth-visual__badge i {
    color: var(--imperium-gold);
}

.auth-visual__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .auth-visual__title {
        font-size: 1.5rem;
    }
}

.auth-visual__title-highlight {
    color: var(--imperium-gold);
}

.auth-visual__subtitle {
    color: #d1d5db;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.8125rem;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-feature__icon {
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(199, 160, 82, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8125rem;
}

.auth-feature__icon i {
    color: var(--imperium-gold);
}

.auth-feature__title {
    font-size: 0.6875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.125rem;
}

.auth-feature__description {
    font-size: 0.6875rem;
    color: #9ca3af;
}

/* Auth Form Side */
.auth-form-wrapper {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .auth-form-wrapper {
        padding: 2rem;
    }
}

.auth-form__bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.auth-form__bg-effect {
    position: absolute;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: authBgPulse 5s ease-in-out infinite;
}

.auth-form__bg-effect--navy {
    top: -8rem;
    right: -8rem;
    background: linear-gradient(135deg, var(--imperium-navy), #003366);
}

.auth-form__bg-effect--gold {
    bottom: -8rem;
    left: -8rem;
    background: linear-gradient(135deg, var(--imperium-gold), #e6c36a);
    animation-delay: 2.5s;
}

@keyframes authBgPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.3) rotate(10deg);
        opacity: 0.3;
    }
}

.auth-form__header {
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.auth-form__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(199, 160, 82, 0.1);
    border: 1px solid rgba(199, 160, 82, 0.2);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.75rem;
}

.auth-form__badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--imperium-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.auth-form__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.375rem;
}

@media (min-width: 1024px) {
    .auth-form__title {
        font-size: 1.375rem;
    }
}

.auth-form__subtitle {
    color: #4b5563;
    font-size: 0.8125rem;
}

/* Auth Alert Messages */
.auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
}

.auth-alert i {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.auth-alert--success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.auth-alert--success i {
    color: #059669;
}

.auth-alert--error {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fecaca;
    color: #991b1b;
}

.auth-alert--error i {
    color: #dc2626;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    position: relative;
    z-index: 10;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--imperium-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.form-input-wrapper {
    position: relative;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--imperium-gold);
    pointer-events: none;
    z-index: 10;
}

.form-input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    background: white;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--imperium-navy);
    box-shadow: 0 0 0 4px rgba(0, 31, 63, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.auth-form__options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form-checkbox__input {
    width: 0.875rem;
    height: 0.875rem;
    accent-color: var(--imperium-gold);
    border-color: #d1d5db;
    border-radius: 0.25rem;
    cursor: pointer;
}

.form-checkbox__label {
    margin-left: 0.375rem;
    font-size: 0.75rem;
    color: #374151;
    font-weight: 600;
    transition: color 0.3s;
}

.form-checkbox:hover .form-checkbox__label {
    color: var(--imperium-navy);
}

.auth-form__forgot-link {
    font-size: 0.75rem;
    color: var(--imperium-gold);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.auth-form__forgot-link:hover {
    color: var(--imperium-navy);
}

.auth-form__submit,
.auth-form__secondary {
    height: 2.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
}

.auth-form__submit:hover,
.auth-form__secondary:hover {
    transform: scale(1.02);
}

.auth-form__divider {
    position: relative;
    text-align: center;
    /* margin: 0.75rem 0; */
}

.auth-form__divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.auth-form__divider span {
    position: relative;
    display: inline-block;
    padding: 0 0.5rem;
    background: white;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Centered Auth Layout (no visual side) */
.auth-container--centered {
    max-width: 28rem;
    display: block;
}

.auth-container--centered .auth-form-wrapper {
    border-radius: 1.25rem;
}

/* Auth Icon Header */
.auth-form__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.2);
}

.auth-form__icon i {
    font-size: 1.5rem;
    color: white;
}

/* Success/Info Messages */
.auth-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.auth-message--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.auth-message--success i {
    color: #059669;
}

.auth-message--success p {
    color: #065f46;
    font-size: 0.8125rem;
    font-weight: 500;
}

.auth-message--info {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.auth-message--info i {
    color: #d97706;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.auth-message--info p {
    color: #92400e;
    font-size: 0.8125rem;
}

.auth-message--info strong {
    font-weight: 700;
}

/* Auth Secondary Button (outline) */
.btn--outline {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
    box-shadow: none;
}

.btn--outline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: none;
}

/* Back Link */
.auth-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.auth-back-link:hover {
    color: var(--imperium-gold);
}

/* Register Page Specific */
.auth-container--register {
    max-width: 62rem;
}

.auth-form--register {
    gap: 0.875rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-error {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #ef4444;
}

.form-label-optional {
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.75rem;
}

.form-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.625rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
}

.form-hint i {
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.form-hint p {
    font-size: 0.75rem;
    color: #1e40af;
}

@media (max-width: 768px) {
    .auth-container {
        max-width: 100%;
    }
    
    .auth-visual {
        padding: 1.25rem;
    }
    
    .auth-form-wrapper {
        padding: 1.25rem;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* ================================
   MULTI-STEP WIZARD FORM
   ================================ */
.wizard-page {
    min-height: calc(100vh - 6rem);
    background: linear-gradient(135deg, var(--imperium-light), white, var(--imperium-light));
    padding: 1.5rem 1rem;
    position: relative;
    overflow: hidden;
}

.wizard-page--compact {
    padding: 1rem;
}

.wizard-page__bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.wizard-page__bg-effect {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    animation: pulse 3s infinite;
}

.wizard-page__bg-effect--navy {
    top: 5rem;
    left: 5rem;
    background: var(--imperium-navy);
}

.wizard-page__bg-effect--gold {
    bottom: 5rem;
    right: 5rem;
    background: var(--imperium-gold);
    animation-delay: 1s;
}

.wizard-header {
    text-align: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 10;
}

.wizard-header__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.25rem;
}

.wizard-header__subtitle {
    color: #6b7280;
    font-size: 0.8125rem;
    max-width: 36rem;
    margin: 0 auto;
}

.wizard-container {
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Progress Steps */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    position: relative;
}

.wizard-progress__line {
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    border-radius: 2px;
}

.wizard-progress__line-active {
    position: absolute;
    top: 1rem;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--imperium-gold), #d4af6a);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.wizard-step {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wizard-step__circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s;
    background: white;
    border: 2px solid #e5e7eb;
    color: #9ca3af;
}

.wizard-step--active .wizard-step__circle {
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    border-color: var(--imperium-navy);
    color: white;
    box-shadow: 0 0 0 4px rgba(199, 160, 82, 0.25);
}

.wizard-step--completed .wizard-step__circle {
    background: linear-gradient(135deg, var(--imperium-gold), #d4af6a);
    border-color: var(--imperium-gold);
    color: white;
}

.wizard-step__label {
    margin-top: 0.375rem;
    font-size: 0.625rem;
    font-weight: 600;
    color: #9ca3af;
    text-align: center;
    display: none;
}

@media (min-width: 640px) {
    .wizard-step__label {
        display: block;
    }
}

.wizard-step--active .wizard-step__label,
.wizard-step--completed .wizard-step__label {
    color: var(--imperium-navy);
}

/* Wizard Card */
.wizard-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 31, 63, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.wizard-card__content {
    padding: 1.25rem;
}

.wizard-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.wizard-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard-card__icon i {
    font-size: 1rem;
    color: white;
}

.wizard-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.125rem;
}

.wizard-card__subtitle {
    color: #6b7280;
    font-size: 0.8125rem;
}

/* Wizard Form Elements */
.wizard-form-group {
    margin-bottom: 1rem;
}

.wizard-form-group:last-child {
    margin-bottom: 0;
}

.wizard-form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.375rem;
}

.wizard-form-label .required {
    color: #ef4444;
}

.wizard-form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s;
    background: white;
}

.wizard-form-input:focus {
    outline: none;
    border-color: var(--imperium-navy);
    box-shadow: 0 0 0 3px rgba(0, 31, 63, 0.1);
}

.wizard-form-input::placeholder {
    color: #9ca3af;
}

.wizard-form-input--icon {
    padding-left: 2.5rem;
}

.wizard-form-input--readonly {
    background: #f9fafb;
    cursor: not-allowed;
    color: #374151;
}

.wizard-form-input--readonly:focus {
    border-color: #e5e7eb;
    box-shadow: none;
}

.wizard-form-error {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #ef4444;
}

/* Option Cards (Radio/Checkbox selections) */
.wizard-options {
    display: grid;
    gap: 0.5rem;
}

.wizard-options--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.wizard-options--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 640px) {
    .wizard-options--cols-2,
    .wizard-options--cols-3 {
        grid-template-columns: 1fr;
    }
}

.wizard-option {
    position: relative;
    cursor: pointer;
}

.wizard-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.wizard-option__card {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.3s;
    background: white;
}

.wizard-option__card:hover {
    border-color: #d1d5db;
}

.wizard-option input:checked + .wizard-option__card {
    border-color: var(--imperium-gold);
    background: rgba(199, 160, 82, 0.05);
}

.wizard-option__stars {
    display: flex;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.wizard-option__stars i {
    color: var(--imperium-gold);
    font-size: 0.875rem;
}

.wizard-option__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
}

.wizard-option__content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wizard-option__icon {
    color: var(--imperium-navy);
    font-size: 1rem;
}

.wizard-option__text {
    flex: 1;
}

.wizard-option__title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
}

.wizard-option__desc {
    font-size: 0.6875rem;
    color: #6b7280;
}

/* Counter Input */
.wizard-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.wizard-counter:last-child {
    margin-bottom: 0;
}

.wizard-counter__info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wizard-counter__icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.wizard-counter__icon--navy {
    background: rgba(0, 31, 63, 0.1);
    color: var(--imperium-navy);
}

.wizard-counter__icon--gold {
    background: rgba(199, 160, 82, 0.15);
    color: var(--imperium-gold);
}

.wizard-counter__icon--pink {
    background: #fce7f3;
    color: #ec4899;
}

.wizard-counter__icon--blue {
    background: #dbeafe;
    color: #2563eb;
}

.wizard-counter__icon--green {
    background: #dcfce7;
    color: #16a34a;
}

.wizard-counter__icon--purple {
    background: #f3e8ff;
    color: #9333ea;
}

.wizard-counter__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
}

.wizard-counter__sublabel {
    font-size: 0.6875rem;
    color: #6b7280;
}

.wizard-counter__controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wizard-counter__btn {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.75rem;
    color: #374151;
}

.wizard-counter__btn:hover {
    border-color: var(--imperium-gold);
    color: var(--imperium-gold);
}

.wizard-counter__value {
    width: 1.5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--imperium-navy);
}

/* Info Box */
.wizard-info {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.5rem;
    margin-top: 0.75rem;
}

.wizard-info--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.wizard-info--success i {
    color: #059669;
}

.wizard-info--success span {
    color: #065f46;
    font-size: 0.8125rem;
    font-weight: 500;
}

.wizard-info--warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.wizard-info--warning i {
    color: #d97706;
}

.wizard-info--warning span {
    color: #92400e;
    font-size: 0.8125rem;
    font-weight: 500;
}

.wizard-info--highlight {
    background: rgba(199, 160, 82, 0.1);
    border: 1px solid rgba(199, 160, 82, 0.3);
    justify-content: center;
}

.wizard-info--highlight i {
    color: var(--imperium-gold);
}

.wizard-info--highlight span {
    color: var(--imperium-navy);
    font-size: 0.8125rem;
    font-weight: 700;
}

/* OTP Section */
.wizard-otp {
    padding: 1rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.75rem;
    margin-top: 1rem;
}

.wizard-otp__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.375rem;
}

.wizard-otp__hint {
    font-size: 0.8125rem;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.wizard-otp__input-group {
    display: flex;
    gap: 0.75rem;
}

.wizard-otp__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #93c5fd;
    border-radius: 0.75rem;
    font-size: 1.5rem;
    font-family: monospace;
    letter-spacing: 0.25em;
    text-align: center;
    background: white;
}

.wizard-otp__input:focus {
    outline: none;
    border-color: var(--imperium-gold);
}

.wizard-otp__btn {
    padding: 0.75rem 1.25rem;
    background: #2563eb;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.wizard-otp__btn:hover {
    background: #1d4ed8;
}

.wizard-otp__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wizard-otp__error {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: #ef4444;
}

.wizard-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 0.75rem;
    margin-top: 1rem;
}

.wizard-verified i {
    font-size: 1.25rem;
    color: #059669;
}

.wizard-verified span {
    font-weight: 700;
    color: #065f46;
}

/* Summary Section */
.wizard-summary {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wizard-summary__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
}

.wizard-summary__item--highlight {
    background: rgba(0, 31, 63, 0.05);
    border: 1px solid rgba(0, 31, 63, 0.1);
}

.wizard-summary__item--notes {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.wizard-summary__icon {
    color: var(--imperium-gold);
    margin-top: 0.125rem;
}

.wizard-summary__content {
    flex: 1;
}

.wizard-summary__label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.wizard-summary__value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
}

.wizard-summary__badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.125rem 0.5rem;
    background: rgba(199, 160, 82, 0.2);
    color: var(--imperium-navy);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
}

.wizard-summary__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 640px) {
    .wizard-summary__row {
        grid-template-columns: 1fr;
    }
}

/* Wizard Footer/Navigation */
.wizard-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.wizard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.wizard-btn--prev {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.wizard-btn--prev:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.wizard-btn--next {
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(0, 31, 63, 0.3);
}

.wizard-btn--next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.4);
}

.wizard-btn--submit {
    background: linear-gradient(135deg, var(--imperium-gold), #d4af6a);
    color: var(--imperium-navy);
    box-shadow: 0 4px 14px rgba(199, 160, 82, 0.3);
}

.wizard-btn--submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(199, 160, 82, 0.4);
}

.wizard-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Success Popup/Modal - Compact Design */
.success-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 31, 63, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 9999;
    padding: 6rem 1rem 1rem;
}

.success-popup {
    background: white;
    border-radius: 1.25rem;
    max-width: 32rem;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 31, 63, 0.3);
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-popup__header {
    background: linear-gradient(135deg, #059669, #10b981);
    padding: 2rem 1.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.success-popup__confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.success-popup__confetti span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    animation: confettiFall 3s linear infinite;
}

.success-popup__confetti span:nth-child(1) { left: 10%; animation-delay: 0s; }
.success-popup__confetti span:nth-child(2) { left: 25%; animation-delay: 0.3s; }
.success-popup__confetti span:nth-child(3) { left: 40%; animation-delay: 0.6s; }
.success-popup__confetti span:nth-child(4) { left: 55%; animation-delay: 0.9s; }
.success-popup__confetti span:nth-child(5) { left: 70%; animation-delay: 1.2s; }
.success-popup__confetti span:nth-child(6) { left: 85%; animation-delay: 1.5s; }

@keyframes confettiFall {
    0% {
        transform: translateY(-100%) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(200px) rotate(720deg);
        opacity: 0;
    }
}

.success-popup__icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    animation: successBounce 0.5s ease 0.2s;
}

@keyframes successBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.success-popup__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.success-popup__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.success-popup__reference {
    padding: 1rem 1.5rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.success-popup__reference-label {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}

.success-popup__reference-value {
    font-size: 1.25rem;
    font-family: monospace;
    font-weight: 700;
    color: var(--imperium-navy);
    letter-spacing: 0.05em;
}

.success-popup__content {
    padding: 1.5rem;
}

.success-popup__details {
    margin-bottom: 1.25rem;
}

.success-popup__detail {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9375rem;
}

.success-popup__detail:last-child {
    border-bottom: none;
}

.success-popup__detail-label {
    color: #6b7280;
}

.success-popup__detail-label i {
    color: var(--imperium-gold);
    width: 1.25rem;
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

.success-popup__detail-value {
    font-weight: 600;
    color: #1f2937;
}

.success-popup__info {
    padding: 1rem 1.25rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
}

.success-popup__info-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.625rem;
}

.success-popup__info-title i {
    margin-right: 0.375rem;
    font-size: 0.875rem;
}

.success-popup__info-list {
    list-style: decimal;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: #1d4ed8;
}

.success-popup__info-list li {
    margin-bottom: 0.25rem;
}

.success-popup__actions {
    display: flex;
    gap: 0.75rem;
}

.success-popup__actions .btn {
    flex: 1;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
}


/* ================================
   CONFIRMATION PAGE
   ================================ */
.confirmation-header {
    background: linear-gradient(135deg, #059669, #10b981);
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
}

.confirmation-header__icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    backdrop-filter: blur(8px);
}

.confirmation-header__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.confirmation-header__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.confirmation-reference {
    padding: 1.25rem 2rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.confirmation-reference__label {
    display: block;
    font-size: 0.8125rem;
    color: #6b7280;
    margin-bottom: 0.375rem;
}

.confirmation-reference__value {
    font-size: 1.5rem;
    font-family: monospace;
    font-weight: 700;
    color: var(--imperium-navy);
    letter-spacing: 0.05em;
}

.confirmation-details {
    margin-bottom: 1.5rem;
}

.confirmation-details__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.confirmation-details__row:last-child {
    border-bottom: none;
}

.confirmation-details__label {
    color: #6b7280;
    font-size: 0.9375rem;
}

.confirmation-details__label i {
    color: var(--imperium-gold);
    width: 1.25rem;
    margin-right: 0.5rem;
}

.confirmation-details__value {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9375rem;
    text-align: right;
}

.confirmation-details__badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.125rem 0.5rem;
    background: rgba(199, 160, 82, 0.15);
    color: var(--imperium-gold);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
}

.confirmation-next-steps {
    padding: 1.25rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
}

.confirmation-next-steps__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.confirmation-next-steps__title i {
    margin-right: 0.5rem;
}

.confirmation-next-steps__list {
    list-style: decimal;
    padding-left: 1.25rem;
    color: #1d4ed8;
    font-size: 0.875rem;
}

.confirmation-next-steps__list li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

.confirmation-next-steps__list li:last-child {
    margin-bottom: 0;
}

.confirmation-next-steps__list strong {
    font-weight: 700;
}

.confirmation-contact {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.confirmation-contact p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.confirmation-contact__info {
    font-weight: 600;
    color: var(--imperium-navy);
}

.confirmation-contact__info i {
    margin-right: 0.25rem;
    color: var(--imperium-gold);
}

.confirmation-contact__divider {
    margin: 0 0.75rem;
    color: #d1d5db;
}

.confirmation-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .confirmation-actions {
        flex-direction: row;
        justify-content: center;
    }
}


/* ================================
   RESULTS PAGE
   ================================ */
.results-page {
    min-height: 100vh;
    background: #f9fafb;
}

/* Results Summary Bar */
.results-summary {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.results-summary__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.results-summary__info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.results-summary__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.results-summary__item i {
    color: var(--imperium-gold);
}

.results-summary__item span:first-child {
    font-weight: 700;
    color: var(--imperium-navy);
}

.results-summary__divider {
    color: #d1d5db;
}

.results-summary__count {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--imperium-gold);
}

.results-summary__modify-btn {
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
}

/* Results Layout */
.results-content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.results-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Results Sidebar */
.results-sidebar {
    width: 100%;
}

/* Results Main */
.results-main {
    flex: 1;
    min-width: 0;
}

/* Hotels List */
.hotels-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Hotel Card - Horizontal Layout */
.hotel-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.4s;
    position: relative;
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
    min-height: 220px;
    height: 220px;
}

.hotel-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 5;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.15);
    border-color: var(--imperium-gold);
}

.hotel-card:hover::before {
    opacity: 1;
}

/* Hotel Card Image */
.hotel-card__image {
    position: relative;
    width: 280px;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.hotel-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark), var(--imperium-navy));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-card__image-placeholder i {
    font-size: 3rem;
    color: var(--imperium-gold);
    opacity: 0.3;
}

.hotel-card__overlay {
    display: none;
}

.hotel-card__stars {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 5px 10px;
    background: var(--imperium-gold);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(199, 160, 82, 0.4);
    z-index: 10;
}

.hotel-card__stars i {
    width: 11px;
    height: 11px;
    color: var(--imperium-navy);
    font-size: 0.6875rem;
}

.hotel-card__favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    z-index: 10;
}

.hotel-card__favorite:hover {
    transform: scale(1.1);
    background: #fef2f2;
}

.hotel-card__favorite.active {
    background: #fef2f2;
    color: #ef4444;
}

.hotel-card__favorite i {
    width: 16px;
    height: 16px;
    color: #9ca3af;
    transition: color 0.3s;
    font-size: 1rem;
}

.hotel-card__favorite:hover i,
.hotel-card__favorite.active i {
    color: #ef4444;
}

.hotel-card__photo-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 7px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.hotel-card__photo-count i {
    width: 13px;
    height: 13px;
}

/* Hotel Card Content */
.hotel-card__content {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 220px;
    overflow: hidden;
}

.hotel-card__header {
    margin-bottom: 0.375rem;
}

.hotel-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.hotel-card:hover .hotel-card__title {
    color: var(--imperium-gold);
}

.hotel-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.hotel-card__location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.hotel-card__location i {
    width: 13px;
    height: 13px;
    color: var(--imperium-gold);
}

.hotel-card__category {
    padding: 3px 10px;
    background: rgba(199, 160, 82, 0.1);
    border: 1px solid rgba(199, 160, 82, 0.3);
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--imperium-gold);
}

.hotel-card__description {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: calc(100% - 160px);
}

.hotel-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 0;
    max-width: calc(100% - 160px);
    margin-top: auto;
}

.hotel-card__tag {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 4px 10px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s;
}

.hotel-card__tag:hover {
    border-color: var(--imperium-gold);
    background: rgba(199, 160, 82, 0.05);
}

.hotel-card__tag i {
    width: 12px;
    height: 12px;
    color: var(--imperium-gold);
}

.hotel-card__tag--more {
    background: rgba(199, 160, 82, 0.1);
    border-color: rgba(199, 160, 82, 0.3);
    color: var(--imperium-gold);
    font-weight: 600;
}

/* Hotel Card Features (Boarding + Tags) */
.hotel-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    max-width: calc(100% - 160px);
}

.hotel-card__boardings {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.hotel-card__boarding {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    background: linear-gradient(135deg, var(--imperium-navy), #1e3a5f);
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: white;
}

.hotel-card__boarding i {
    font-size: 0.625rem;
    color: var(--imperium-gold);
}

/* Icon-only tags */
.hotel-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.hotel-card__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #64748b;
    transition: all 0.2s;
}

.hotel-card__tag:hover {
    background: rgba(199, 160, 82, 0.1);
    border-color: var(--imperium-gold);
    color: var(--imperium-gold);
}

.hotel-card__tag i {
    font-size: 0.75rem;
}

.hotel-card__tag--more {
    width: auto;
    padding: 0 0.5rem;
    background: rgba(199, 160, 82, 0.1);
    border-color: rgba(199, 160, 82, 0.3);
    color: var(--imperium-gold);
    font-size: 0.6875rem;
    font-weight: 600;
}

.hotel-card__footer {
    display: none;
}

/* Price Section - Positioned at top-right of card content */
.hotel-card__price {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    text-align: right;
    background: linear-gradient(135deg, #fef9f0, #fefce8);
    border: 2px solid rgba(199, 160, 82, 0.3);
    border-radius: 0.75rem;
    padding: 0.625rem 0.875rem 0.5rem;
    min-width: 130px;
}

.hotel-card__price-label {
    font-size: 0.6875rem;
    color: #92400e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.hotel-card__price-amount {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.25rem;
}

.hotel-card__price-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--imperium-gold);
    line-height: 1;
}

.hotel-card__price-currency {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--imperium-navy);
}

.hotel-card__price-nights {
    font-size: 0.6875rem;
    color: #92400e;
    margin-top: 4px;
    font-weight: 500;
}

.hotel-card__price-unavailable {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid #e5e7eb;
}

/* CTA Button - Positioned at bottom right corner */
.hotel-card__cta {
    position: absolute;
    bottom: 1rem;
    right: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 8px 14px;
    min-width: 130px;
    background: linear-gradient(135deg, var(--imperium-gold), #b8922f);
    color: white;
    font-weight: 700;
    font-size: 0.8125rem;
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(199, 160, 82, 0.4);
    transition: all 0.3s;
    white-space: nowrap;
}

.hotel-card__cta:hover {
    box-shadow: 0 8px 24px rgba(199, 160, 82, 0.5);
    background: linear-gradient(135deg, #d4a843, var(--imperium-gold));
}

.hotel-card__cta i {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
}

.hotel-card__cta:hover i {
    transform: translateX(3px);
}

/* No Results */
.no-results {
    background: white;
    border-radius: 1.5rem;
    padding: 5rem 2.5rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.no-results__icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    border-radius: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.2);
}

.no-results__icon i {
    font-size: 3rem;
    color: var(--imperium-gold);
}

.no-results__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.75rem;
}

.no-results__description {
    font-size: 0.9375rem;
    color: #6b7280;
    max-width: 25rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Filter Sidebar */
.filter-sidebar {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.filter-header {
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-header h2 {
    color: white;
    font-size: 0.9375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin: 0;
}

.filter-header h2 i {
    color: var(--imperium-gold);
}

.filter-reset-btn {
    padding: 6px 12px;
    background: rgba(199, 160, 82, 0.15);
    border: 1px solid rgba(199, 160, 82, 0.3);
    border-radius: 7px;
    color: var(--imperium-gold);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-reset-btn:hover {
    background: var(--imperium-gold);
    color: var(--imperium-navy);
}

.filter-content {
    padding: 1rem;
}

.filter-section {
    margin-bottom: 0;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section-title {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--imperium-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.filter-search-wrapper {
    position: relative;
}

.filter-search-wrapper i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    color: #9ca3af;
}

.filter-search-input {
    width: 100%;
    padding: 9px 12px 9px 36px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.8125rem;
    transition: all 0.3s;
}

.filter-search-input:focus {
    outline: none;
    border-color: var(--imperium-gold);
    box-shadow: 0 0 0 4px rgba(199, 160, 82, 0.1);
}

.filter-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.filter-option:hover {
    background: rgba(199, 160, 82, 0.05);
    border-color: rgba(199, 160, 82, 0.2);
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    width: 14px;
    height: 14px;
    accent-color: var(--imperium-gold);
    cursor: pointer;
}

.filter-option-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.filter-option-label i {
    width: 14px;
    color: var(--imperium-gold);
    font-size: 0.6875rem;
}

.filter-option:hover .filter-option-label {
    color: var(--imperium-navy);
}

.filter-option-favorite {
    border: 2px solid #fecaca;
    background: #fef2f2;
}

.filter-option-favorite:hover {
    border-color: #f87171;
    background: #fee2e2;
}

.filter-option-favorite .filter-option-label {
    color: #ef4444;
    font-weight: 600;
}

.filter-option-favorite i {
    color: #ef4444;
}

.filter-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.625rem 0;
}

/* Search Modal - Already exists in auth pages */
.modal-city-suggestions {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    right: 0;
    z-index: 100;
    background: white;
    border: 2px solid var(--imperium-gold);
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.modal-city-item {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--imperium-navy);
    transition: background 0.15s;
    display: block;
    border-bottom: 1px solid #f1f5f9;
}

.modal-city-item:last-child {
    border-bottom: none;
}

.modal-city-item:hover {
    background: rgba(199, 160, 82, 0.1);
}

.modal-date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.modal-guests-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--imperium-navy);
    background: #f9fafb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s;
}

.modal-guests-btn:hover,
.modal-guests-btn.active {
    border-color: var(--imperium-gold);
    background: white;
}

.modal-guests-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    margin-bottom: 0.5rem;
    background: white;
    border: 2px solid var(--imperium-gold);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.modal-room-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.875rem;
    margin-bottom: 0.75rem;
}

.modal-room-card:last-child {
    margin-bottom: 0;
}

.modal-room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.modal-room-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--imperium-navy);
}

.modal-room-badge {
    width: 24px;
    height: 24px;
    background: var(--imperium-gold);
    color: var(--imperium-navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.modal-room-remove {
    width: 24px;
    height: 24px;
    background: #fee2e2;
    color: #ef4444;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.modal-room-remove:hover {
    background: #fecaca;
}

.modal-room-selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.modal-room-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--imperium-navy);
    background: white;
    cursor: pointer;
}

.modal-room-select:focus {
    outline: none;
    border-color: var(--imperium-gold);
}

.modal-add-room {
    width: 100%;
    padding: 0.625rem;
    border: 2px dashed rgba(199, 160, 82, 0.5);
    border-radius: 10px;
    background: rgba(199, 160, 82, 0.05);
    color: var(--imperium-gold);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    transition: all 0.2s;
}

.modal-add-room:hover {
    background: rgba(199, 160, 82, 0.1);
    border-color: var(--imperium-gold);
}

.search-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.search-modal.hidden {
    display: none !important;
}

.search-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
}

.search-modal-card {
    position: relative;
    z-index: 10000;
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: visible;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

.search-modal-header {
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-modal-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.search-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.2s;
}

.search-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-modal-body {
    padding: 1.5rem;
}

.modal-form-group {
    margin-bottom: 1rem;
}

.modal-form-group:last-child {
    margin-bottom: 0;
}

.modal-form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--imperium-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.modal-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--imperium-navy);
    background: #f9fafb;
    transition: all 0.2s;
}

.modal-form-input:focus {
    outline: none;
    border-color: var(--imperium-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(199, 160, 82, 0.15);
}

.modal-submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    box-shadow: 0 4px 14px rgba(0, 31, 63, 0.3);
    transition: all 0.3s;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.4);
}

/* Responsive */
@media (min-width: 640px) {
    .results-summary__content {
        flex-direction: row;
        align-items: center;
    }
    
    .results-summary__divider {
        display: inline;
    }
}

@media (min-width: 1024px) {
    .results-layout {
        flex-direction: row;
        gap: 2rem;
    }

    .results-sidebar {
        width: 18rem;
        flex-shrink: 0;
    }

    .hotel-card {
        grid-template-columns: 280px 1fr;
    }

    .hotel-card__image {
        min-height: 220px;
    }

    .hotel-card__content {
        padding: 1.25rem;
        padding-right: 180px;
    }

    .hotel-card__footer {
        flex-direction: row;
    }
}

@media (max-width: 1023px) {
    .results-summary__divider {
        display: none;
    }

    .hotel-card {
        grid-template-columns: 1fr;
    }

    .hotel-card__image {
        min-height: 180px;
    }

    .hotel-card__content {
        padding: 1rem;
        padding-top: 6.5rem;
    }

    .hotel-card__price {
        position: absolute;
        top: 1rem;
        right: 1rem;
        min-width: auto;
        padding: 0.5rem 0.75rem 0.375rem;
        border-radius: 0.5rem;
    }

    .hotel-card__price-value {
        font-size: 1.25rem;
    }

    .hotel-card__cta {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        min-width: auto;
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 0.5rem;
    }
}

/* Register Page Specific */
.auth-container--register {
    max-width: 70rem;
}

.auth-form--register {
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-error {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #ef4444;
}

.form-label-optional {
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.75rem;
}

.form-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.625rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
}

.form-hint i {
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.form-hint p {
    font-size: 0.75rem;
    color: #1e40af;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .nav__menu {
        display: none;
    }
    
    .nav__mobile-toggle {
        display: block;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .search-field--destination,
    .search-field--dates,
    .search-field--guests,
    .search-field--submit {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.25rem; }
    
    .hero {
        min-height: 50vh;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .top-bar__auth {
        display: none;
    }
    
    .auth-page {
        padding: 1rem;
    }
}

/* ================================
   PAGE HERO SECTIONS WITH IMAGES
   ================================ */
.page-hero {
    position: relative;
    height: 160px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.page-hero__overlay {
    display: none;
}

.page-hero__content {
    display: none;
}

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.page-hero__badge i {
    color: var(--imperium-gold);
}

.page-hero__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero__title-highlight {
    color: var(--imperium-gold);
}

.page-hero__subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Mobile responsive for page hero */
@media (max-width: 768px) {
    .page-hero {
        height: 130px;
    }

    .page-hero__title {
        font-size: 1.125rem;
    }

    .page-hero__subtitle {
        font-size: 0.6875rem;
    }

    .page-hero__badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.5625rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 110px;
    }

    .page-hero__title {
        font-size: 1rem;
    }

    .page-hero__subtitle {
        display: none;
    }

    .page-hero__content {
        padding: 0.5rem;
    }
}

/* ================================
   HOTELS BROWSE GRID
   ================================ */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.hotel-browse-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.hotel-browse-card:hover {
    border-color: var(--imperium-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 31, 63, 0.15);
}

.hotel-browse-card__image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.hotel-browse-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hotel-browse-card:hover .hotel-browse-card__image img {
    transform: scale(1.05);
}

.hotel-browse-card__stars {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.125rem;
    padding: 0.375rem 0.625rem;
    background: rgba(0, 31, 63, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
}

.hotel-browse-card__stars i {
    color: var(--imperium-gold);
    font-size: 0.625rem;
}

.hotel-browse-card__content {
    padding: 1.25rem;
}

.hotel-browse-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hotel-browse-card__location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.hotel-browse-card__location i {
    color: var(--imperium-gold);
}

/* ================================
   VOYAGE/OMRA LISTING CARDS
   ================================ */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.listing-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.listing-card:hover {
    border-color: var(--imperium-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 31, 63, 0.15);
}

.listing-card__image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-gold));
}

.listing-card__image img,
.listing-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-card__image-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.listing-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--imperium-gold);
    color: var(--imperium-navy);
    border-radius: 2rem;
    font-size: 0.6875rem;
    font-weight: 700;
}

.listing-card__price {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.5rem 0.875rem;
    background: rgba(0, 31, 63, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    color: var(--imperium-gold);
    font-size: 1rem;
    font-weight: 700;
}

.listing-card__content {
    padding: 1.25rem;
}

.listing-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.listing-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.listing-card__meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #6b7280;
}

.listing-card__meta-item i {
    color: var(--imperium-gold);
    width: 1rem;
}

.listing-card__meta-item--warning {
    color: #f59e0b;
}

/* ================================
   EMPTY STATE
   ================================ */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.empty-state__icon {
    width: 4rem;
    height: 4rem;
    background: rgba(199, 160, 82, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.empty-state__icon i {
    font-size: 1.5rem;
    color: var(--imperium-gold);
}

.empty-state__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.5rem;
}

.empty-state__text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* ================================
   VOYAGE DETAIL PAGE - DAYS TIMELINE
   ================================ */
.voyage-detail {
    padding: 1rem 0;
    background: linear-gradient(to bottom, white, var(--imperium-light));
    overflow: hidden;
}

.voyage-detail__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
}

.voyage-detail__grid > * {
    min-width: 0;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .voyage-detail__grid {
        grid-template-columns: 2fr 1fr;
    }
}

.voyage-program {
    background: white;
    border-radius: 0.5rem;
    padding: 0.875rem;
    box-shadow: 0 1px 6px rgba(0, 31, 63, 0.05);
}

.voyage-program__title {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.625rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--imperium-light);
}

.voyage-program__title i {
    color: var(--imperium-gold);
    font-size: 0.75rem;
}

/* Days Timeline */
.days-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.days-timeline::before {
    content: '';
    position: absolute;
    left: 0.4rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--imperium-gold), var(--imperium-navy));
    border-radius: 1px;
}

.day-item {
    position: relative;
    padding-bottom: 0.625rem;
    margin-bottom: 0.625rem;
    overflow: hidden;
    min-width: 0;
}

.day-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.day-item__marker {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 1.125rem;
    height: 1.125rem;
    background: var(--imperium-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--imperium-navy);
    box-shadow: 0 0 0 3px white, 0 0 0 4px rgba(199, 160, 82, 0.2);
}

.day-item__header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.375rem;
}

.day-item__number {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--imperium-navy);
    background: rgba(199, 160, 82, 0.1);
    padding: 0.125rem 0.5rem;
    border-radius: 2rem;
}

.day-item__content {
    background: var(--imperium-light);
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    border-left: 2px solid var(--imperium-gold);
    overflow: hidden;
    min-width: 0;
}

.day-item__content p {
    font-size: 0.75rem;
    color: #4b5563;
    line-height: 1.5;
    white-space: pre-line;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Voyage Sidebar */
.voyage-sidebar {
    position: sticky;
    top: 5rem;
}

.voyage-price-card {
    background: white;
    border-radius: 0.5rem;
    padding: 0.875rem;
    box-shadow: 0 1px 6px rgba(0, 31, 63, 0.05);
    border: 1px solid rgba(199, 160, 82, 0.2);
}

.voyage-price-card__header {
    text-align: center;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 0.625rem;
}

.voyage-price-card__label {
    font-size: 0.6875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.voyage-price-card__amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--imperium-navy);
    line-height: 1;
    margin-top: 0.25rem;
}

.voyage-price-card__child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.375rem;
    padding-top: 0.375rem;
    border-top: 1px dashed #e5e7eb;
    font-size: 0.75rem;
    color: #6b7280;
}

.voyage-price-card__child strong {
    color: var(--imperium-navy);
    font-weight: 700;
}

.voyage-price-card__discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 2rem;
    margin-bottom: 0.5rem;
}

.voyage-price-card__original {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.voyage-price-card__original s {
    color: #ef4444;
}

.voyage-price-card__amount span {
    font-size: 0.8125rem;
}

.voyage-price-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.voyage-price-card__info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.voyage-price-card__info-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #6b7280;
}

.voyage-price-card__info-label i {
    color: var(--imperium-gold);
    font-size: 0.6875rem;
}

.voyage-price-card__info-value {
    font-weight: 700;
    color: var(--imperium-navy);
}

.voyage-price-card__warning {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 0.375rem;
    margin-bottom: 0.625rem;
    font-size: 0.75rem;
    color: #92400e;
}

.voyage-price-card__warning i {
    flex-shrink: 0;
}

.voyage-back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--imperium-navy);
    text-decoration: none;
    transition: color 0.3s;
}

.voyage-back-link:hover {
    color: var(--imperium-gold);
}

/* Arabic Program */
.voyage-program--arabic {
    direction: rtl;
    text-align: right;
}

.voyage-program--arabic .days-timeline {
    padding-left: 0;
    padding-right: 2rem;
}

.voyage-program--arabic .days-timeline::before {
    left: auto;
    right: 0.5rem;
}

.voyage-program--arabic .day-item__marker {
    left: auto;
    right: -2rem;
}

.voyage-program--arabic .day-item__content {
    border-left: none;
    border-right: 3px solid var(--imperium-gold);
}

/* Voyage Gallery */
.voyage-gallery {
    background: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 1px 6px rgba(0, 31, 63, 0.05);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.voyage-gallery__title {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.625rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--imperium-light);
}

.voyage-gallery__title i {
    color: var(--imperium-gold);
}

/* Voyage Carousel - Alpine.js Based */
.voyage-carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.75rem;
}

.voyage-carousel-wrapper {
    position: relative;
    border-radius: 0.375rem;
    overflow: hidden;
    background: var(--imperium-light);
    height: 240px;
}

.voyage-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.voyage-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    max-width: 100%;
}

.voyage-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .voyage-carousel-wrapper {
        height: 280px;
    }
}

@media (max-width: 640px) {
    .voyage-carousel-wrapper {
        height: 180px;
    }
}

.voyage-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--imperium-navy);
    transition: all 0.3s;
}

.voyage-carousel-nav:hover {
    background: var(--imperium-gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.voyage-carousel-nav--prev {
    left: 0.5rem;
}

.voyage-carousel-nav--next {
    right: 0.5rem;
}

.voyage-carousel-dots {
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.375rem;
    z-index: 10;
}

.voyage-carousel-dot {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.voyage-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

.voyage-carousel-dot.active {
    background: var(--imperium-gold);
    width: 20px;
    border-radius: 4px;
}

/* Legacy Grid Support */
.voyage-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .voyage-gallery__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.voyage-gallery__item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--imperium-light);
}

.voyage-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.voyage-gallery__item:hover .voyage-gallery__image {
    transform: scale(1.05);
}

/* Voyage Inclusions */
.voyage-inclusions {
    background: white;
    border-radius: 0.5rem;
    padding: 0.875rem;
    box-shadow: 0 1px 6px rgba(0, 31, 63, 0.05);
    margin-bottom: 0.75rem;
}

.voyage-inclusions__section {
    margin-bottom: 0.625rem;
}

.voyage-inclusions__section:last-child {
    margin-bottom: 0;
}

.voyage-inclusions__title {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 0.5rem;
    padding-bottom: 0.375rem;
    border-bottom: 1px solid #dcfce7;
}

.voyage-inclusions__title i {
    font-size: 0.75rem;
}

.voyage-inclusions__title--excludes {
    color: #dc2626;
    border-bottom-color: #fee2e2;
}

.voyage-inclusions__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.voyage-inclusions__item {
    display: flex;
    align-items: flex-start;
    gap: 0.375rem;
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
    line-height: 1.4;
}

.voyage-inclusions__item:last-child {
    margin-bottom: 0;
}

.voyage-inclusions__item--included i {
    color: #16a34a;
    margin-top: 0.125rem;
}

.voyage-inclusions__item--excluded i {
    color: #dc2626;
    margin-top: 0.125rem;
}

.voyage-inclusions__item span {
    color: #4b5563;
}

/* ================================
   HOTELS BY CITY - SEARCH & FILTERS
   ================================ */
.hotels-search-section {
    background: linear-gradient(135deg, var(--imperium-navy) 0%, var(--imperium-dark) 100%);
    padding: 2rem 0;
}

.hotels-search-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hotels-search-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.hotels-search-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

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

/* Hotels Layout with Sidebar */
.hotels-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 992px) {
    .hotels-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Filters */
.hotels-sidebar {
    position: sticky;
    top: 5rem;
}

.filters-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 31, 63, 0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    color: white;
}

.filters-title {
    font-size: 0.9375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.filters-title i {
    color: var(--imperium-gold);
}

.filters-reset {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.filters-reset:hover {
    color: var(--imperium-gold);
}

.filter-section {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.75rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.filter-checkbox:hover {
    background: var(--imperium-light);
}

.filter-checkbox input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--imperium-gold);
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.filter-checkbox-label i {
    font-size: 0.75rem;
}

.filter-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-city-link {
    padding: 0.375rem 0.75rem;
    background: var(--imperium-light);
    color: var(--imperium-navy);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.filter-city-link:hover,
.filter-city-link.active {
    background: var(--imperium-gold);
    color: var(--imperium-navy);
}

/* Hotels Content */
.hotels-content {
    min-height: 400px;
}

.hotels-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.hotels-results-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--imperium-navy);
}

.hotels-results-count i {
    color: var(--imperium-gold);
}

/* Mobile Filters */
@media (max-width: 992px) {
    .hotels-sidebar {
        position: relative;
        top: 0;
    }

    .filter-section {
        padding: 0.75rem 1rem;
    }
}

/* ================================
   HOME PAGE CAROUSELS & SECTIONS
   ================================ */

/* Section Dark Theme */
.section--dark {
    background: linear-gradient(135deg, var(--imperium-navy) 0%, var(--imperium-dark) 50%, var(--imperium-navy) 100%);
    position: relative;
    overflow: hidden;
}

.section--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c7a052' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.section__header--light .section__title,
.section__header--light .section__subtitle {
    color: white;
}

.section__badge--gold {
    background: rgba(199, 160, 82, 0.2);
    color: var(--imperium-gold);
    border: 1px solid rgba(199, 160, 82, 0.3);
}

.section__badge--gold i {
    margin-right: 0.375rem;
}

.section__badge i {
    margin-right: 0.375rem;
}

.section__cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    padding: 0 3rem;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    color: var(--imperium-navy);
    font-size: 1rem;
}

.carousel-nav:hover {
    background: var(--imperium-gold);
    border-color: var(--imperium-gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav--prev {
    left: 0;
}

.carousel-nav--next {
    right: 0;
}

.carousel-nav--light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.carousel-nav--light:hover {
    background: var(--imperium-gold);
    border-color: var(--imperium-gold);
}

/* Offer Card */
.offer-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.offer-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.offer-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.offer-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-card__image-placeholder i {
    font-size: 3rem;
    color: var(--imperium-gold);
    opacity: 0.3;
}

.offer-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 2rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.offer-card__badge i {
    color: var(--imperium-gold);
}

.offer-card__price-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--imperium-gold);
    border-radius: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--imperium-navy);
    box-shadow: 0 4px 12px rgba(199, 160, 82, 0.4);
}

.offer-card__content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.offer-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: #6b7280;
}

.offer-card__meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.offer-card__meta i {
    color: var(--imperium-gold);
}

.offer-card__content .btn {
    margin-top: auto;
}

/* Button Outline Light */
.btn--outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn--outline-light:hover {
    background: white;
    border-color: white;
    color: var(--imperium-navy);
}

/* ================================
   WHY CHOOSE US - MODERN DESIGN
   ================================ */
.why-us {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(199, 160, 82, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-us__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.why-us__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(199, 160, 82, 0.1), rgba(199, 160, 82, 0.05));
    border: 1px solid rgba(199, 160, 82, 0.2);
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--imperium-gold);
    margin-bottom: 1rem;
}

.why-us__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--imperium-navy);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.why-us__subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.why-us__card {
    position: relative;
    background: white;
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.why-us__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.12);
    border-color: rgba(199, 160, 82, 0.3);
}

.why-us__card-icon {
    position: relative;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
}

.why-us__card-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(199, 160, 82, 0.15), rgba(199, 160, 82, 0.05));
    border-radius: 1rem;
    transform: rotate(-5deg);
    transition: transform 0.3s;
}

.why-us__card:hover .why-us__card-icon-bg {
    transform: rotate(5deg);
}

.why-us__card-icon i {
    position: relative;
    z-index: 1;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--imperium-gold);
}

.why-us__card-content {
    position: relative;
    z-index: 1;
}

.why-us__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.5rem;
}

.why-us__card-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

.why-us__card-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(199, 160, 82, 0.08);
    line-height: 1;
}

/* Stats Bar */
.why-us__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.25);
}

.why-us__stat {
    text-align: center;
}

.why-us__stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--imperium-gold);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.why-us__stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.why-us__stat-divider {
    width: 1px;
    height: 3rem;
    background: rgba(255, 255, 255, 0.15);
}

/* ================================
   SCROLL REVEAL ANIMATIONS
   ================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.scroll-reveal-item.revealed,
.revealed .scroll-reveal-item {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grid items */
.why-us__grid .why-us__card:nth-child(1) { --delay: 0.1s; }
.why-us__grid .why-us__card:nth-child(2) { --delay: 0.2s; }
.why-us__grid .why-us__card:nth-child(3) { --delay: 0.3s; }
.why-us__grid .why-us__card:nth-child(4) { --delay: 0.4s; }

/* Responsive for Home Page */
@media (max-width: 1024px) {
    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us__stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .why-us__stat-divider {
        display: none;
    }

    .carousel-container {
        padding: 0 2rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .why-us__title {
        font-size: 1.75rem;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-us__card {
        padding: 1.5rem;
    }

    .why-us__stats {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .why-us__stat-number {
        font-size: 1.75rem;
    }

    .carousel-container {
        padding: 0;
    }

    .carousel-nav {
        display: none;
    }
}

/* ================================
   FLIGHT CARD STYLES
   ================================ */
.listing-card--flight {
    display: flex;
    flex-direction: column;
}

.listing-card__flight-header {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--imperium-navy) 0%, var(--imperium-dark) 100%);
    border-radius: 1rem 1rem 0 0;
}

.flight-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.flight-route__point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 80px;
}

.flight-route__time {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.flight-route__city {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--imperium-gold);
    margin-top: 0.25rem;
}

.flight-route__date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.flight-route__path {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.flight-route__line {
    position: relative;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--imperium-gold), rgba(255, 255, 255, 0.3), var(--imperium-gold));
    border-radius: 1px;
}

.flight-route__line::before,
.flight-route__line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--imperium-gold);
    border-radius: 50%;
}

.flight-route__line::before {
    left: 0;
}

.flight-route__line::after {
    right: 0;
}

.flight-route__line i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--imperium-gold);
    font-size: 1rem;
    background: var(--imperium-navy);
    padding: 0.25rem;
}

.flight-route__duration {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.listing-card--flight .listing-card__price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--imperium-gold);
    color: var(--imperium-navy);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
}

.listing-card--flight .listing-card__content {
    padding: 1.25rem;
    background: white;
    border-radius: 0 0 1rem 1rem;
}

.listing-card--flight .listing-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.listing-card--flight .listing-card__meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #6b7280;
}

.listing-card--flight .listing-card__meta-item i {
    color: var(--imperium-gold);
    width: 14px;
}

/* ================================
   BOOKING LIST STYLES
   ================================ */
.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.booking-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--imperium-gold);
}

.booking-card__status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.booking-card__status--confirmed {
    background: #dcfce7;
    color: #166534;
}

.booking-card__status--pending {
    background: #fef3c7;
    color: #92400e;
}

.booking-card__status--cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.booking-card__status--expired {
    background: #f3f4f6;
    color: #6b7280;
}

.booking-card__content {
    padding-top: 2rem;
}

.booking-card__hotel {
    margin-bottom: 1rem;
}

.booking-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.25rem;
}

.booking-card__location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.booking-card__location i {
    color: var(--imperium-gold);
}

.booking-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.booking-card__detail {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.booking-card__detail > i {
    color: var(--imperium-gold);
    margin-top: 0.125rem;
}

.booking-card__detail-label {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.booking-card__detail-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--imperium-navy);
}

.booking-card__sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    min-width: 180px;
}

.booking-card__price {
    text-align: right;
    margin-bottom: 1rem;
}

.booking-card__price-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.booking-card__price-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--imperium-gold);
}

.booking-card__price-currency {
    font-size: 0.875rem;
    color: var(--imperium-navy);
    font-weight: 600;
}

.booking-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

/* ================================
   BOOKING DETAIL STYLES
   ================================ */
.booking-detail {
    padding: 1.5rem 0;
    background: var(--imperium-light);
}

.booking-detail__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    margin-top: 1.5rem;
}

.booking-detail__main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-detail__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.breadcrumb__link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb__link:hover {
    color: var(--imperium-gold);
}

.breadcrumb__separator {
    color: #d1d5db;
}

.breadcrumb__current {
    color: var(--imperium-navy);
    font-weight: 600;
}

/* Alert Styles */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.alert__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert__icon i {
    font-size: 1.125rem;
}

.alert__content {
    flex: 1;
}

.alert__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.alert__text {
    font-size: 0.8125rem;
}

.alert--warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.alert--warning .alert__icon {
    background: #fef3c7;
}

.alert--warning .alert__icon i {
    color: #d97706;
}

.alert--warning .alert__title {
    color: #92400e;
}

.alert--warning .alert__text {
    color: #a16207;
}

.alert--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.alert--success .alert__icon {
    background: #dcfce7;
}

.alert--success .alert__icon i {
    color: #16a34a;
}

.alert--success .alert__title {
    color: #166534;
}

.alert--success .alert__text {
    color: #15803d;
}

.alert--danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.alert--danger .alert__icon {
    background: #fee2e2;
}

.alert--danger .alert__icon i {
    color: #dc2626;
}

.alert--danger .alert__title {
    color: #991b1b;
}

.alert--danger .alert__text {
    color: #b91c1c;
}

.alert--muted {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.alert--muted .alert__icon {
    background: #f3f4f6;
}

.alert--muted .alert__icon i {
    color: #6b7280;
}

.alert--muted .alert__title {
    color: #4b5563;
}

.alert--muted .alert__text {
    color: #6b7280;
}

/* Detail Card */
.detail-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.detail-card__header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    color: white;
}

.detail-card__header i {
    color: var(--imperium-gold);
}

.detail-card__header h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0;
}

.detail-card__body {
    padding: 1.25rem;
}

.detail-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 0.375rem;
}

.detail-card__subtitle {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    color: #6b7280;
}

.detail-card__subtitle i {
    color: var(--imperium-gold);
}

.detail-card--info .detail-card__header {
    background: linear-gradient(135deg, #0284c7, #0369a1);
}

/* Dates Grid */
.dates-grid {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.date-box {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: var(--imperium-light);
    border-radius: 0.75rem;
}

.date-box__label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.375rem;
}

.date-box__value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--imperium-navy);
}

.date-box__info {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.date-box__separator {
    color: var(--imperium-gold);
    font-size: 1.25rem;
}

.nights-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(199, 160, 82, 0.1);
    border-radius: 0.5rem;
    color: var(--imperium-gold);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Room Item */
.room-item {
    background: var(--imperium-light);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.room-item:last-child {
    margin-bottom: 0;
}

.room-item__header {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
}

.room-item__number {
    font-size: 0.8125rem;
    font-weight: 700;
    color: white;
}

.room-item__content {
    padding: 1rem;
}

.room-item__guests {
    margin-bottom: 0.75rem;
}

.room-item__guests:last-child {
    margin-bottom: 0;
}

.room-item__label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.room-item__label i {
    color: var(--imperium-gold);
}

.room-item__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.guest-tag {
    padding: 0.375rem 0.75rem;
    background: white;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--imperium-navy);
    border: 1px solid #e5e7eb;
}

.guest-tag--child {
    background: rgba(199, 160, 82, 0.1);
    border-color: rgba(199, 160, 82, 0.3);
    color: var(--imperium-gold);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    padding: 1rem;
    background: var(--imperium-light);
    border-radius: 0.75rem;
}

.info-item__label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.375rem;
}

.info-item__value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--imperium-navy);
}

/* Hotel Notes */
.hotel-notes {
    font-size: 0.875rem;
    color: #0369a1;
    line-height: 1.6;
}

/* Summary Card */
.summary-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(199, 160, 82, 0.3);
    position: sticky;
    top: 5rem;
}

.summary-card__header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
    color: white;
}

.summary-card__header i {
    color: var(--imperium-gold);
}

.summary-card__header h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0;
}

.summary-card__price {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.summary-card__price-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.summary-card__price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.summary-card__price-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--imperium-gold);
    line-height: 1;
}

.summary-card__price-currency {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--imperium-navy);
}

.summary-card__section {
    padding: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.summary-card__actions {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Payment Deadline */
.payment-deadline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fffbeb;
    border-radius: 0.75rem;
    border: 1px solid #fde68a;
    margin-bottom: 1rem;
}

.payment-deadline > i {
    color: #d97706;
    font-size: 1.25rem;
}

.payment-deadline__label {
    display: block;
    font-size: 0.75rem;
    color: #92400e;
}

.payment-deadline__value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #78350f;
}

/* Agency Info */
.agency-info {
    background: #f0fdf4;
    border-radius: 0.75rem;
    border: 1px solid #bbf7d0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.agency-info__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #dcfce7;
    color: #166534;
    font-weight: 700;
    font-size: 0.875rem;
}

.agency-info__content {
    padding: 1rem;
}

.agency-info__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #15803d;
    margin-bottom: 0.5rem;
}

.agency-info__item:last-child {
    margin-bottom: 0;
}

.agency-info__item i {
    width: 14px;
    color: #22c55e;
}

/* Checklist */
.checklist {
    background: #eff6ff;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #bfdbfe;
}

.checklist__title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.checklist__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checklist__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.checklist__list li:last-child {
    margin-bottom: 0;
}

.checklist__list li i {
    color: #3b82f6;
}

/* Payment Confirmed */
.payment-confirmed {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 0.75rem;
    border: 1px solid #bbf7d0;
}

.payment-confirmed > i {
    color: #22c55e;
    font-size: 1.5rem;
}

.payment-confirmed__title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #166534;
}

.payment-confirmed__text {
    display: block;
    font-size: 0.8125rem;
    color: #15803d;
}

/* Back Link */
.back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--imperium-gold);
}

/* Button Variants */
.btn--outline {
    background: white;
    border: 2px solid #e5e7eb;
    color: #374151;
}

.btn--outline:hover {
    border-color: var(--imperium-gold);
    color: var(--imperium-gold);
}

.btn--outline-danger {
    background: white;
    border: 2px solid #fecaca;
    color: #dc2626;
}

.btn--outline-danger:hover {
    background: #fef2f2;
    border-color: #f87171;
}

/* Page Hero Compact */
.page-hero--compact {
    min-height: 120px;
    height: 120px;
    padding: 1.5rem 0;
    background: linear-gradient(135deg, var(--imperium-navy), var(--imperium-dark));
}

.page-hero--compact .page-hero__overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 37, 56, 0.85), rgba(26, 37, 56, 0.7));
}

.page-hero--compact .page-hero__content {
    display: block;
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-hero--compact .page-hero__title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.page-hero--compact .page-hero__subtitle {
    font-size: 0.8125rem;
}

.page-hero--compact .page-hero__badge {
    margin-bottom: 0.375rem;
}

/* Responsive Booking Styles */
@media (max-width: 992px) {
    .booking-detail__grid {
        grid-template-columns: 1fr;
    }

    .booking-detail__sidebar {
        order: -1;
    }

    .summary-card {
        position: relative;
        top: 0;
    }

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

    .booking-card__sidebar {
        align-items: stretch;
        border-top: 1px solid #f1f5f9;
        padding-top: 1rem;
    }

    .booking-card__price {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .dates-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .date-box__separator {
        transform: rotate(90deg);
    }

    .flight-route {
        flex-direction: column;
        gap: 1.5rem;
    }

    .flight-route__path {
        width: 100%;
        flex-direction: row;
    }

    .flight-route__line {
        flex: 1;
    }

    .listing-card--flight .listing-card__price {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 1rem;
        text-align: center;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ================================
   FILTER COMPONENTS - BUDGET & TAGS
   ================================ */

/* Budget Filter - Dual Thumb Slider */
.filter-budget {
    margin-top: 0.375rem;
}

.filter-budget-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--imperium-navy);
}

.filter-budget-display span {
    color: var(--imperium-gold);
}

.filter-budget-display .separator {
    color: #9ca3af;
    font-weight: 400;
}

/* Dual Range Slider Container */
.dual-range-slider {
    position: relative;
    height: 6px;
    margin: 0.75rem 0;
}

.dual-range-slider__track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
}

.dual-range-slider__range {
    position: absolute;
    height: 6px;
    background: linear-gradient(90deg, var(--imperium-gold), #d4a843);
    border-radius: 3px;
}

.dual-range-slider__input {
    position: absolute;
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    margin: 0;
}

.dual-range-slider__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--imperium-gold);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(199, 160, 82, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid white;
}

.dual-range-slider__input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(199, 160, 82, 0.6);
}

.dual-range-slider__input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--imperium-gold);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(199, 160, 82, 0.5);
}

.filter-budget-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.6875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Filter Stars */
.filter-stars {
    display: flex;
    gap: 0.125rem;
}

.filter-stars i {
    color: #fbbf24;
    font-size: 0.75rem;
}

/* Filter Tags List */
.filter-tags-list {
    max-height: 200px;
    overflow-y: auto;
}

.filter-tags-list::-webkit-scrollbar {
    width: 4px;
}

.filter-tags-list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}

.filter-tags-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.filter-section-title i {
    margin-right: 0.375rem;
    color: var(--imperium-gold);
}

/* ================================
   PAGINATION STYLES
   ================================ */

.results-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pagination-info {
    font-size: 0.8125rem;
    color: #6b7280;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--imperium-navy);
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--imperium-light);
    border-color: var(--imperium-gold);
    color: var(--imperium-gold);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pagination-page {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--imperium-navy);
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-page:hover:not(.active) {
    background: var(--imperium-light);
    border-color: var(--imperium-gold);
}

.pagination-page.active {
    background: var(--imperium-gold);
    border-color: var(--imperium-gold);
    color: white;
}

.pagination-ellipsis {
    padding: 0 0.5rem;
    color: #9ca3af;
}

/* Admin Panel Pagination */
.admin-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 0;
}

.admin-pagination .page-link {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
}

.admin-pagination .page-link:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.admin-pagination .page-item.active .page-link {
    background: var(--imperium-navy, #001F3F);
    border-color: var(--imperium-navy, #001F3F);
    color: white;
}

.admin-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive Pagination */
@media (max-width: 640px) {
    .results-pagination {
        padding: 1rem;
    }

    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .pagination-page {
        min-width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

/* ================================
   VOYAGE BOOKING MODAL
   ================================ */
.voyage-price-card__book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    padding: 0.625rem;
    background: linear-gradient(135deg, var(--imperium-gold), #d4af6a);
    color: var(--imperium-navy);
    border: none;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.625rem;
    text-decoration: none;
}

.voyage-price-card__book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 160, 82, 0.4);
}

.voyage-price-card__unavailable {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 0.75rem;
    font-weight: 600;
    margin-top: 1rem;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.booking-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 31, 63, 0.7);
    backdrop-filter: blur(4px);
}

.booking-modal__content {
    position: relative;
    background: white;
    border-radius: 1.25rem;
    max-width: 32rem;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 31, 63, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.booking-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--imperium-navy), #002a54);
    color: white;
}

.booking-modal__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.booking-modal__title i {
    color: var(--imperium-gold);
}

.booking-modal__close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.booking-modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.booking-modal__body {
    padding: 1.5rem;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
}

.booking-modal__summary {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.booking-modal__summary h3 {
    font-size: 1rem;
    color: var(--imperium-navy);
    margin-bottom: 0.5rem;
}

.booking-modal__summary p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.25rem 0;
}

.booking-modal__summary i {
    color: var(--imperium-gold);
    width: 1rem;
    margin-right: 0.5rem;
}

.booking-form-section {
    margin-bottom: 1.5rem;
}

.booking-form-section__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--imperium-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.booking-form-section__title i {
    color: var(--imperium-gold);
}

.booking-form-counters {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.booking-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.booking-counter__info {
    display: flex;
    flex-direction: column;
}

.booking-counter__label {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.booking-counter__sublabel {
    font-size: 0.75rem;
    color: #6b7280;
}

.booking-counter__controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-counter__btn {
    width: 2rem;
    height: 2rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--imperium-navy);
    transition: all 0.2s;
}

.booking-counter__btn:hover {
    border-color: var(--imperium-gold);
    color: var(--imperium-gold);
}

.booking-counter__value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--imperium-navy);
    min-width: 1.5rem;
    text-align: center;
}

.booking-total-travelers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--imperium-gold), #d4af6a);
    color: var(--imperium-navy);
    border-radius: 0.5rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
}

.booking-form-group {
    margin-bottom: 1rem;
}

.booking-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.375rem;
}

.booking-form-label .required {
    color: #ef4444;
}

.booking-form-label .optional {
    color: #9ca3af;
    font-weight: 400;
}

.booking-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.booking-form-input:focus {
    outline: none;
    border-color: var(--imperium-gold);
    box-shadow: 0 0 0 3px rgba(199, 160, 82, 0.1);
}

.booking-form-input--disabled {
    background: #f3f4f6;
    cursor: not-allowed;
}

.booking-form-error {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.booking-email-row {
    display: flex;
    gap: 0.5rem;
}

.booking-email-row .booking-form-input {
    flex: 1;
}

.booking-otp-btn {
    padding: 0.75rem 1rem;
    background: var(--imperium-navy);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.booking-otp-btn:hover:not(:disabled) {
    background: #002a54;
}

.booking-otp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.booking-otp-section {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #fef3c7;
    border-radius: 0.5rem;
}

.booking-otp-hint {
    font-size: 0.75rem;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.booking-verified-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.booking-verified-badge--success {
    background: #dcfce7;
    color: #166534;
}

.booking-price-estimate {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.booking-price-estimate__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-price-estimate__amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--imperium-gold);
}

.booking-price-estimate__note {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.booking-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--imperium-gold), #d4af6a);
    color: var(--imperium-navy);
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.booking-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 160, 82, 0.4);
}

.booking-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.booking-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 31, 63, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.booking-success-popup {
    background: white;
    border-radius: 1.25rem;
    max-width: 24rem;
    width: 100%;
    text-align: center;
    padding: 2rem;
    animation: modalSlideIn 0.3s ease;
}

.booking-success-popup__icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.booking-success-popup__title {
    font-size: 1.5rem;
    color: var(--imperium-navy);
    margin-bottom: 0.5rem;
}

.booking-success-popup__text {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.booking-success-popup__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}