/* Google Fonts Import - Plus Jakarta Sans & Inter */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Premium Dark-Mode Theme ("Antigravity Style") */
:root {
    --bg-main: #0a0e1a;            /* Deep space navy background */
    --bg-surface: rgba(15, 22, 42, 0.85); /* Translucent surface */
    --bg-card: rgba(20, 29, 58, 0.65);    /* Glassmorphic card backgrounds */
    --border-color: rgba(59, 130, 246, 0.12); /* Subtle electric blue border */
    --border-hover: rgba(59, 130, 246, 0.35); /* Active glow border */
    
    --primary: #3b82f6;            /* Electric vibrant royal blue */
    --primary-hover: #60a5fa;      /* Lighter electric blue for hover */
    --primary-glow: rgba(59, 130, 246, 0.15); /* Glowing shadow tint */
    --primary-dark: #f1f5f9;       /* Crisp light text for headings */
    
    --accent: #f59e0b;             /* Neon amber/gold accent */
    --accent-hover: #fbbf24;       /* Lighter gold for hover */
    --accent-glow: rgba(245, 158, 11, 0.22); /* Glowing gold tint */
    
    --text-main: #f1f5f9;          /* High contrast light gray/white */
    --text-muted: #94a3b8;         /* Soft slate navy for descriptions */
    --text-dark: #64748b;          /* Medium grey details */
    --text-light: #475569;         /* Dark placeholder text */
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
    --shadow-primary: 0 8px 24px rgba(59, 130, 246, 0.25);
    --shadow-accent: 0 8px 24px rgba(245, 158, 11, 0.3);
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
}

/* Light theme override (applied via <html data-theme="light">) */
html[data-theme="light"] {
    --bg-main: #f6f7fb;
    --bg-surface: rgba(255, 255, 255, 0.78);
    --bg-card: rgba(255, 255, 255, 0.72);
    --border-color: rgba(15, 23, 42, 0.10);
    --border-hover: rgba(59, 130, 246, 0.35);

    --primary: #2563eb;
    --primary-hover: #3b82f6;
    --primary-glow: rgba(37, 99, 235, 0.10);
    --primary-dark: #0f172a;

    --accent: #d97706;
    --accent-hover: #f59e0b;
    --accent-glow: rgba(217, 119, 6, 0.16);

    --text-main: #0b1220;
    --text-muted: rgba(15, 23, 42, 0.72);
    --text-dark: rgba(15, 23, 42, 0.58);
    --text-light: rgba(15, 23, 42, 0.45);

    --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 18px 55px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 22px 70px rgba(15, 23, 42, 0.14);
    --shadow-primary: 0 12px 34px rgba(37, 99, 235, 0.18);
    --shadow-accent: 0 12px 34px rgba(217, 119, 6, 0.18);
}

/* Global Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-image: 
        radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.02) 0px, transparent 50%);
}

/* Improve selection contrast across themes */
::selection {
    background: rgba(59, 130, 246, 0.25);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}

/* Typography & Layout Spacing */
h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--primary-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 70px 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-align: center;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Glow Effects (Soft light accents) */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, rgba(10, 14, 26, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* Header & Navigation */
header {
    background-color: rgba(10, 14, 26, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

html[data-theme="light"] header {
    background-color: rgba(246, 247, 251, 0.82);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo layout structure */
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.logo-svg {
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.logo:hover .logo-svg {
    transform: rotate(-10deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.logo-accent-blue {
    color: var(--primary);
}

.logo-accent-gold {
    color: var(--accent);
}

/* Footer logo text color override */
footer .logo-text {
    color: #f8fafc;
}

/* Ensure footer logo mark stays bright in light mode too */
footer .logo-svg {
    color: #f8fafc;
}

/* Page Header Title with Premium blue-cyan gradient */
.page-header-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* Search Tabs Component */
.search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: -1px;
    padding-left: 12px;
    position: relative;
    z-index: 11;
}

.search-tab {
    background: rgba(15, 22, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 10px 20px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-tab.active {
    background: rgba(15, 22, 42, 0.95);
    border: 1px solid var(--border-hover);
    border-bottom: 1px solid rgba(15, 22, 42, 0.95);
    color: var(--primary);
    font-weight: 700;
}

/* Tailwind-like helper for "hidden" used by sticky search */
.hidden {
    display: none !important;
}

/* Light theme input backgrounds */
html[data-theme="light"] .search-bar,
html[data-theme="light"] .flight-search-panel {
    background: rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] .flight-input,
html[data-theme="light"] .search-suggestions {
    background: rgba(255, 255, 255, 0.92);
}

html[data-theme="light"] .search-input::placeholder,
html[data-theme="light"] .flight-input::placeholder {
    color: rgba(15, 23, 42, 0.42);
}

.search-tab:not(.active):hover {
    background: rgba(59, 130, 246, 0.08);
    color: var(--text-main);
    border-color: rgba(59, 130, 246, 0.2);
    border-bottom: none;
}

/* Premium Rating Badge for Detail Page */
.detail-rating-badge {
    background-color: var(--primary-glow);
    color: var(--primary);
    border: 1.5px solid rgba(59, 130, 246, 0.2);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    min-width: 100px;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-cta {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px; /* Modern fully rounded capsule button */
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 90px 0 70px 0;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.08) 0%, rgba(10, 14, 26, 0) 75%);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary-glow);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-tag-pulse {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 36px auto;
}

/* Search Bar Component (Glassmorphic Floating Panel) */
.search-container {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.search-bar {
    background: rgba(15, 22, 42, 0.75);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
    gap: 4px;
    transition: var(--transition-fast);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.search-bar:focus-within {
    border-color: var(--border-hover);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    position: relative;
}

.search-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.search-input {
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    color: var(--text-main);
}

.search-input::placeholder {
    color: var(--text-dark);
}

.search-btn {
    background-color: var(--accent);
    color: #0a0e1a; /* Dark text on gold for high contrast */
    padding: 14px 26px;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.search-btn:hover {
    background-color: var(--accent-hover);
    color: #0a0e1a;
    box-shadow: var(--shadow-accent);
}

/* Auto-suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: rgba(15, 22, 42, 0.95);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    list-style: none;
    text-align: left;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    backdrop-filter: blur(20px);
}

.suggestion-item {
    padding: 14px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.06);
    color: var(--text-muted);
}

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

.suggestion-item:hover {
    background-color: rgba(59, 130, 246, 0.08);
    color: var(--text-main);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
    transform: translateY(-4px);
}

.benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--primary-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 1.35rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.5;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.city-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.city-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.85);
}

.city-card:hover .city-img {
    transform: scale(1.06);
    filter: brightness(0.95);
}

.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.city-name {
    font-size: 1.35rem;
    color: white;
    margin-bottom: 2px;
}

.city-count {
    font-size: 0.8rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Hotel Listings Page */
.listings-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    margin-top: 36px;
}

.filters-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.filter-group {
    margin-bottom: 24px;
}

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

.filter-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    color: var(--text-main);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.checkbox-label:hover {
    color: var(--text-main);
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(59, 130, 246, 0.3);
    border-radius: 4px;
    cursor: pointer;
    display: grid;
    place-content: center;
}

.checkbox-label input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--primary);
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.checkbox-label input[type="checkbox"]:checked {
    border-color: var(--primary);
    background-color: var(--primary-glow);
}

.checkbox-label input[type="checkbox"]:checked::before {
    transform: scale(1);
}

/* Hotel Cards Listing */
.listings-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hotel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.hotel-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
    transform: translateY(-2px);
}

.hotel-img-wrapper {
    position: relative;
    height: 100%;
}

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

.hotel-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(10, 14, 26, 0.85);
    color: var(--primary-hover);
    border: 1px solid rgba(59, 130, 246, 0.3);
    font-size: 0.7rem;
    font-family: var(--font-sans);
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.hotel-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 8px;
}

.hotel-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}

.hotel-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-rating-badge {
    background-color: var(--primary-glow);
    color: var(--primary);
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 6px;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.amenity-tag {
    background-color: rgba(59, 130, 246, 0.06);
    color: var(--text-muted);
    border: 1px solid rgba(59, 130, 246, 0.12);
    font-size: 0.725rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.08);
    padding-top: 14px;
}

.hotel-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hotel-price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
}

.hotel-price-unit {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.book-btn {
    background-color: var(--accent);
    color: #0a0e1a;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}

.book-btn:hover {
    background-color: var(--accent-hover);
    color: #0a0e1a;
    box-shadow: var(--shadow-accent);
    transform: translateY(-1px);
}

/* Hotel Details Page Specifics */
.hotel-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    height: 420px;
    margin: 24px 0 32px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.gallery-main {
    height: 100%;
}

.gallery-sub {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 100%;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.gallery-img:hover {
    filter: brightness(0.9);
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
}

.detail-info {
    text-align: left;
}

.detail-section {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.detail-section-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
    border-left: 4px solid var(--primary);
    padding-left: 12px;
    color: var(--text-main);
}

.detail-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.detail-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.detail-amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-amenity-icon {
    color: var(--primary);
    font-weight: bold;
}

.rules-list {
    list-style: none;
}

.rules-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rules-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.booking-sticky-card {
    background: rgba(20, 29, 58, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
}

.booking-card-price {
    margin-bottom: 20px;
}

.booking-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.slot-btn {
    border: 1.5px solid rgba(59, 130, 246, 0.15);
    background-color: rgba(15, 22, 42, 0.6);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slot-btn:hover {
    border-color: var(--primary);
    color: var(--text-main);
    background-color: var(--primary-glow);
}

.slot-btn.active {
    border-color: var(--primary);
    background-color: var(--primary-glow);
    color: var(--primary);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 36px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    padding: 20px 24px;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.6;
    display: none;
    border-top: 1px solid rgba(59, 130, 246, 0.08);
    padding-top: 12px;
}

.faq-icon {
    font-size: 1.2rem;
    transition: var(--transition-fast);
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer Section */
footer {
    background-color: #050812;
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);
}

html[data-theme="light"] footer {
    background-color: #0b1220;
}

footer h4 {
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo-desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 0.88rem;
    color: #cbd5e1;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-compliance {
    border-top: 1px solid rgba(59, 130, 246, 0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.8rem;
}

.footer-disclaimer {
    color: #64748b;
    font-size: 0.78rem;
    max-width: 100%;
    margin-top: 12px;
    line-height: 1.5;
    text-align: justify;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.45);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* -------------------------------------------------------------
 * FUTURISTIC HUD/TICKER/PORTAL CSS CLASSES
 * -------------------------------------------------------------
 */

/* Glow line decoration */
.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.45), transparent);
    margin: 0 auto;
    max-width: 600px;
}

/* Floating particles in hero background */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

/* Live Stays Radar Pulse styles */
@keyframes radar-ping {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.8); opacity: 0; }
}

.radar-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.radar-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #22c55e;
    animation: radar-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Live Stats Ticker Bar style */
.live-ticker {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    background: rgba(15, 22, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ticker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ticker-value {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.ticker-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hub transit tags */
.transit-hubs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.hub-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(15, 22, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

.hub-tag:hover {
    border-color: rgba(59, 130, 246, 0.45);
    color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

/* Flight search panel tabs & inputs */
.flight-search-panel {
    display: none;
    background: rgba(15, 22, 42, 0.65);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(16px);
    text-align: left;
    margin-top: 10px;
    box-shadow: var(--shadow-md);
}

.flight-search-panel.active {
    display: block;
}

.flight-inputs-grid {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 12px;
    align-items: center;
}

.flight-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.flight-input-group label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.flight-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 14, 26, 0.85);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.flight-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.flight-input::placeholder {
    color: var(--text-light);
}

.flight-result-box {
    margin-top: 20px;
    padding: 20px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-md);
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.flight-result-box.visible {
    display: block;
}

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

/* -------------------------------------------------------------
 * AI AGENT & DEVELOPER CONSOLE PAGE CSS
 * -------------------------------------------------------------
 */
.agent-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.agent-terminal {
    background: #050811;
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-md);
    padding: 24px;
    font-family: monospace, sans-serif;
    color: #4ade80; /* Terminal Green */
    box-shadow: var(--shadow-lg), 0 0 30px rgba(74, 222, 128, 0.05);
    position: relative;
    overflow: hidden;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    padding-bottom: 12px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.terminal-controls {
    display: flex;
    gap: 6px;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-body {
    height: 380px;
    overflow-y: auto;
    font-size: 0.88rem;
    line-height: 1.5;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--text-main);
}

.terminal-prompt {
    color: var(--primary);
    font-weight: bold;
}

.terminal-text-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #4ade80;
    font-family: inherit;
    font-size: inherit;
}

.agent-factor-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-fast);
}

.agent-factor-card:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.05);
}

.factor-num {
    background: var(--primary-glow);
    color: var(--primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    flex-shrink: 0;
}

.factor-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.factor-content p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.json-block {
    background: #030712;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    font-family: monospace;
    font-size: 0.82rem;
    color: #cbd5e1;
    overflow-x: auto;
    max-height: 400px;
}

/* -------------------------------------------------------------
 * RESPONSIVE LAYOUTS
 * -------------------------------------------------------------
 */
@media (max-width: 1024px) {
    .listings-layout {
        grid-template-columns: 1fr;
    }
    .filters-panel {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .booking-sticky-card {
        position: relative;
        top: 0;
        margin-top: 24px;
    }
    .agent-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
    }
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hotel-card {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .live-ticker {
        flex-wrap: wrap;
        gap: 20px;
    }
    .transit-hubs {
        gap: 6px;
    }
    .flight-inputs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .search-bar {
        flex-direction: column;
        padding: 12px;
    }
    .search-btn {
        width: 100%;
        justify-content: center;
    }
    .flight-search-panel {
        padding: 16px;
    }
}

/* -------------------------------------------------------------
 * PREMIUM FLOATING AI CHATBOT WIDGET STYLING
 * -------------------------------------------------------------
 */
.chatbot-launcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chatbot-launcher:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6);
}

.chatbot-window {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 380px;
    height: 520px;
    background: rgba(15, 22, 42, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(59, 130, 246, 0.15);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.chatbot-window.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.chatbot-header {
    background: linear-gradient(135deg, rgba(20, 29, 58, 0.9) 0%, rgba(10, 14, 26, 0.9) 100%);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-header-title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
}

.chatbot-status {
    font-size: 0.7rem;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chatbot-close {
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.chatbot-close:hover {
    color: var(--text-main);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    line-height: 1.4;
    position: relative;
    animation: bubbleFadeIn 0.3s ease-out;
}

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

.chat-bubble.bot {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-bubble.user {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.chat-suggestion-btn {
    background: rgba(15, 22, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.chat-suggestion-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
}

.chat-hotel-card {
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 8px;
    padding: 12px;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.chat-hotel-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-main);
}

.chat-hotel-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.chatbot-input-area {
    padding: 14px 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    background: rgba(10, 14, 26, 0.95);
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-text-input {
    flex: 1;
    background: rgba(15, 22, 42, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.15);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.85rem;
}

.chatbot-text-input:focus {
    border-color: var(--primary);
}

.chatbot-send-btn {
    background: var(--primary);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chatbot-send-btn:hover {
    background: var(--primary-hover);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 8px;
    align-self: flex-start;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing 1s infinite alternate;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    from { transform: translateY(0); opacity: 0.3; }
    to { transform: translateY(-5px); opacity: 1; }
}

@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100% - 40px);
        height: 460px;
        bottom: 90px;
        right: 20px;
    }
    .chatbot-launcher {
        bottom: 20px;
        right: 20px;
    }
}

