/* ============================================
   JRB Holiday - Clean Dark Theme v3
   No duplicate rules, proper specificity
   ============================================ */

/* Custom Properties */
:root {
    --bg-dark: #06060e;
    --bg-darker: #030308;
    --bg-card: rgba(18, 18, 35, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.06);
    --bg-glass-hover: rgba(255, 255, 255, 0.1);
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(0, 212, 255, 0.25);
    --text-primary: #f0f0f5;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --accent-cyan: #00d4ff;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #7b5ea7 50%, #8b5cf6 100%);
    --accent-gradient-vivid: linear-gradient(135deg, #00d4ff 0%, #3b82f6 35%, #8b5cf6 70%, #ec4899 100%);
    --neon-glow: 0 0 25px rgba(0, 212, 255, 0.35), 0 0 60px rgba(0, 212, 255, 0.1);
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
    --card-shadow-hover: 0 8px 40px rgba(0, 212, 255, 0.2), 0 0 0 1px rgba(0, 212, 255, 0.3);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --radius-pill: 50px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Animated background orbs */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse 800px 600px at 15% 20%, rgba(0, 212, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 600px 600px at 85% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 700px 500px at 50% 80%, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: bgFloat 20s ease-in-out infinite alternate;
}
@keyframes bgFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-20px, 15px) scale(1.02); }
}

/* Grid overlay */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

main { flex: 1; padding-top: 70px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    line-height: 1.3;
}
h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

.text-gradient {
    background: var(--accent-gradient-vivid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

p { color: var(--text-secondary); }

/* ===== TOP BAR ===== */
.top-bar {
    background: rgba(3, 3, 10, 0.95);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}
.top-bar a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.top-bar a:hover { color: var(--accent-cyan); }

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(6, 6, 14, 0.85) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 0;
    transition: all 0.4s ease;
    z-index: 1050 !important;
}
.navbar.scrolled, .navbar.navbar-scrolled {
    background: rgba(6, 6, 14, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(0, 212, 255, 0.15);
}
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--accent-gradient-vivid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}
.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 1.1rem !important;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: #fff !important;
    background: rgba(0, 212, 255, 0.12);
}
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.65rem;
}

/* Brand */
.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}
.brand-text { display: inline-block; vertical-align: middle; }
.brand-jrb {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    background: var(--accent-gradient-vivid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-holiday {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 1px;
}
.nav-register-btn {
    background: var(--accent-gradient) !important;
    color: #fff !important;
    border-radius: var(--radius-pill) !important;
    padding: 0.4rem 1.2rem !important;
    font-weight: 600 !important;
}
.nav-register-btn:hover {
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transform: translateY(-1px);
}

/* Special Promotions Tab */
.nav-promo {
    background: linear-gradient(135deg, #ef4444, #f97316) !important;
    color: #fff !important;
    border-radius: var(--radius-pill) !important;
    padding: 0.4rem 1rem !important;
    font-weight: 700 !important;
    position: relative;
}
.nav-promo:hover {
    background: linear-gradient(135deg, #dc2626, #ea580c) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    transform: translateY(-1px);
}
.promo-badge {
    background: #fff;
    color: #ef4444;
    font-size: 0.6rem;
    padding: 0.15em 0.5em;
    border-radius: 4px;
    font-weight: 800;
    margin-left: 4px;
    animation: promoPulse 2s ease-in-out infinite;
}
@keyframes promoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== ALL DROPDOWNS (dark theme) ===== */
.dropdown-menu {
    background-color: #0d0d1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}
.dropdown-item {
    color: var(--text-secondary) !important;
    padding: 0.5rem 1rem;
}
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(0, 212, 255, 0.1) !important;
    color: var(--text-primary) !important;
}
.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

/* ===== MEGA DROPDOWN (destinations) ===== */
.navbar .dropdown-menu.mega-dropdown {
    background: #0d0d1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-lg) !important;
    padding: 0 !important;
    min-width: 520px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6) !important;
    margin-top: 8px !important;
}
.mega-dropdown .row { margin: 0 !important; }
.mega-col { padding: 1.25rem 1.5rem !important; }
.mega-col:first-child { border-right: 1px solid rgba(255, 255, 255, 0.06); }
.mega-header {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mega-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 1px;
    font-size: 0.88rem;
}
.mega-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--text-primary);
}
.mega-item i {
    font-size: 0.65rem;
    color: var(--accent-cyan);
    opacity: 0.7;
    flex-shrink: 0;
}
.mega-item-title { font-size: 0.88rem; font-weight: 500; color: inherit; }
.mega-item-sub { font-size: 0.72rem; color: var(--text-muted); }

/* Override Bootstrap dropdown colors inside mega-dropdown */
.navbar .dropdown-menu.mega-dropdown .dropdown-item {
    color: var(--text-secondary) !important;
    background: transparent !important;
}
.navbar .dropdown-menu.mega-dropdown .dropdown-item:hover {
    background: rgba(0, 212, 255, 0.1) !important;
    color: var(--text-primary) !important;
}
.navbar .dropdown-menu.mega-dropdown a {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
}
.navbar .dropdown-menu.mega-dropdown a:hover {
    color: var(--text-primary) !important;
}
.navbar .dropdown-menu .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

/* User dropdown (logged in) */
.navbar .dropdown-menu-end {
    background: #0d0d1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 0.5rem !important;
}
.navbar .dropdown-menu-end .dropdown-item {
    color: var(--text-secondary) !important;
    border-radius: 8px;
}
.navbar .dropdown-menu-end .dropdown-item:hover {
    background: rgba(0, 212, 255, 0.1) !important;
    color: var(--text-primary) !important;
}

/* ===== GLASS CARDS ===== */
.glass-card {
    background: linear-gradient(135deg, rgba(18, 18, 40, 0.9) 0%, rgba(12, 12, 25, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), rgba(139, 92, 246, 0.3), transparent);
    border-radius: 50%;
}
.glass-card:hover {
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-6px);
}

/* ===== BUTTONS ===== */
.btn-primary-gradient {
    background: var(--accent-gradient);
    background-size: 200% 200%;
    border: none;
    border-radius: var(--radius-pill);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.25);
}
.btn-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}
.btn-primary-gradient:hover {
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.4), 0 0 60px rgba(139, 92, 246, 0.2);
    transform: translateY(-3px);
    color: #fff;
    background-position: 100% 0;
}
.btn-primary-gradient:hover::before { left: 100%; }

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}
.btn-outline-glass:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}
.btn-success {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    border: none !important;
    color: #fff !important;
}

/* ===== FORM CONTROLS ===== */
.form-control, .form-select {
    border-radius: var(--radius-sm);
    padding: 0.8rem 1.1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.form-control::placeholder { color: rgba(156, 163, 175, 0.6); }
.form-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
}
.input-group-text {
    background: rgba(0, 212, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--accent-cyan) !important;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important;
}

/* ===== HERO FULL (Homepage) ===== */
.hero-full {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0 3rem;
    background: #0a0a1a;
}
.hero-bg-slides {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.05);
}
.hero-slide.active {
    opacity: 1 !important;
    animation: heroZoom 8s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(6, 6, 14, 0.3) 0%, rgba(6, 6, 14, 0.5) 50%, rgba(6, 6, 14, 0.85) 100%);
    z-index: 1;
}
.hero-content {
    padding-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HERO SECTION (Other pages) ===== */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    margin-top: -80px;
    padding-top: 140px;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 30%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== SEARCH ENGINE (Homepage only) ===== */
.search-engine {
    background: rgba(18, 18, 35, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 0;
    max-width: 1000px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.search-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.search-tab {
    flex: 1;
    padding: 0.85rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.search-tab.active {
    background: var(--accent-gradient) !important;
    color: #fff !important;
}
.search-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* Search panels - only show active one */
.search-panel {
    display: none !important;
    padding: 1.25rem;
}
.search-panel.active {
    display: block !important;
}

/* Search field containers */
.search-field {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0 0.75rem;
    height: 50px;
    overflow: hidden;
}
.search-field i {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    width: 20px;
}

/* Make form controls inside search-field transparent */
.search-field .form-select,
.search-field .form-control {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0.5rem 0.25rem;
    font-size: 0.88rem;
    height: 100%;
    color: var(--text-primary) !important;
}
.search-field .form-select option {
    background: #0d0d1a;
    color: var(--text-primary);
}

/* Search button */
.search-btn {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    height: 48px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.25);
    transition: all 0.3s ease;
}
.search-btn:hover:not(:disabled) {
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

/* ===== SECTION STYLES ===== */
.section-padding { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}
.section-title { font-size: 2.4rem; font-weight: 900; }
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
    margin: 1rem auto 0;
}

/* ===== HOLIDAY CARDS ===== */
.holiday-card {
    background: rgba(18, 18, 35, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--card-shadow);
}
.holiday-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: var(--card-shadow-hover);
}
.holiday-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.holiday-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.holiday-card:hover .holiday-card-img img { transform: scale(1.08); }
.holiday-card-badge { position: absolute; bottom: 12px; left: 12px; }
.badge-price {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--accent-cyan);
    padding: 0.4em 0.8em;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
}
.badge-hot {
    position: absolute;
    top: 12px; right: 12px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    padding: 0.4em 0.8em;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
}
.holiday-card-body { padding: 1.5rem; }
.holiday-card-dest {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.holiday-card-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.holiday-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.holiday-card-meta i { margin-right: 4px; }
.holiday-card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0.5rem;
}
.holiday-card-highlights span {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    padding: 0.25em 0.6em;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 500;
}

/* ===== TRUST CARDS ===== */
.trust-card { text-align: center; padding: 1.5rem 1rem; }
.trust-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}
.trust-card:hover .trust-icon {
    background: rgba(0, 212, 255, 0.15);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.2);
}
.trust-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}
.trust-desc { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== HOLIDAYS BY MONTH ===== */
.month-scroll-wrapper { position: relative; }
.month-scroll {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 2rem;
    scrollbar-width: none;
}
.month-scroll::-webkit-scrollbar { display: none; }
.month-card {
    flex: 0 0 160px !important;
    min-width: 160px !important;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}
.month-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}
.month-card img { width: 100%; height: 100%; object-fit: cover; }
.month-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}
.month-name {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.month-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}
.month-scroll-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--accent-cyan);
}
.month-scroll-left { left: -15px; }
.month-scroll-right { right: -15px; }

/* ===== FAQ ACCORDION ===== */
.faq-item {
    background: rgba(18, 18, 35, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-item .accordion-button {
    background: rgba(18, 18, 35, 0.6) !important;
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.1rem 1.25rem;
    box-shadow: none !important;
}
.faq-item .accordion-button:not(.collapsed) {
    background: rgba(0, 212, 255, 0.06) !important;
    color: var(--accent-cyan) !important;
}
.faq-item .accordion-button::after {
    background-image: none !important;
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-cyan);
}
.faq-item .accordion-button:not(.collapsed)::after { content: '\2212'; }
.faq-item .accordion-body {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    padding: 0 1.25rem 1.25rem;
}

/* ===== REVIEW CARDS ===== */
.review-card {
    background: rgba(18, 18, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}
.review-card:hover {
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-4px);
}
.review-stars { margin-bottom: 0.75rem; }
.review-stars i { color: #fbbf24; font-size: 0.9rem; }
.review-verified { color: #22c55e; font-size: 0.78rem; margin-left: 8px; font-weight: 500; }
.review-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.review-role { font-size: 0.78rem; color: var(--text-muted); }

/* ===== NEWSLETTER ===== */
.newsletter-section { padding: 3rem 0; }
.newsletter-card {
    background: linear-gradient(135deg, #1a5276, #1a6e8e) !important;
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
}
.newsletter-icon {
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}
.newsletter-input {
    background: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    border-radius: 12px 0 0 12px !important;
    color: #333 !important;
    padding: 0.8rem 1.2rem !important;
    font-size: 0.9rem;
}
.newsletter-input::placeholder { color: #999; }
.newsletter-btn {
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 0 12px 12px 0;
    padding: 0.8rem 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.newsletter-btn:hover { background: #c2185b; color: #fff; }

/* ===== CTA CARD ===== */
.cta-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
}

/* ===== JARO CHAT ===== */
.jaro-chat {
    background: linear-gradient(135deg, rgba(18, 18, 40, 0.95) 0%, rgba(10, 10, 25, 0.98) 100%);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.jaro-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.jaro-avatar {
    width: 42px; height: 42px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}
.jaro-messages {
    padding: 1.5rem;
    max-height: 380px;
    overflow-y: auto;
}
.jaro-message {
    margin-bottom: 1rem;
    padding: 0.85rem 1.2rem;
    border-radius: 16px;
    max-width: 85%;
    font-size: 0.92rem;
    line-height: 1.6;
}
.jaro-message.bot {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.12);
    margin-right: auto;
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}
.jaro-message.user {
    background: var(--accent-gradient);
    margin-left: auto;
    color: #fff;
    border-bottom-right-radius: 4px;
}
.jaro-input {
    display: flex;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.15);
}
.jaro-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-pill) !important;
    padding: 0.6rem 1.2rem !important;
    color: #fff !important;
}
.jaro-input .btn {
    border-radius: 50%;
    width: 42px; height: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== STAT CARDS ===== */
.stat-card {
    background: linear-gradient(135deg, rgba(18, 18, 40, 0.9) 0%, rgba(12, 12, 28, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}
.stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient-vivid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
}

/* ===== TABLES (Admin + Agent) ===== */
.table { color: var(--text-primary); }
.table > :not(caption) > * > * {
    color: var(--text-primary);
    background-color: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.06);
    padding: 0.9rem 1rem;
}
.table-dark-custom {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.table thead th {
    background: rgba(0, 0, 0, 0.4) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--text-secondary) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    padding: 1rem;
}
.table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    vertical-align: middle;
}
.table tbody tr { transition: background 0.2s ease; }
.table tbody tr:hover { background: rgba(0, 212, 255, 0.06) !important; }

/* ===== BADGES ===== */
.badge { font-weight: 500; font-size: 0.75rem; padding: 0.4em 0.8em; }
.badge-new { background: rgba(0, 212, 255, 0.15); color: #00d4ff; border: 1px solid rgba(0, 212, 255, 0.3); }
.badge-review { background: rgba(251, 191, 36, 0.15); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.3); }
.badge-quoted { background: rgba(139, 92, 246, 0.15); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.3); }
.badge-confirmed { background: rgba(34, 197, 94, 0.15); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); }

/* ===== FOOTER ===== */
.footer {
    background: rgba(3, 3, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2), transparent);
}
.footer h5, .footer h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 0.95rem;
}
.footer a { transition: all 0.3s ease; }
.footer a:hover { color: var(--accent-cyan) !important; }

/* ===== ADMIN SIDEBAR ===== */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px;
    background: rgba(3, 3, 12, 0.98);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    overflow-y: auto;
    z-index: 100;
}
.admin-sidebar::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 1px; height: 100%;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.2), transparent 30%, transparent 70%, rgba(139, 92, 246, 0.2));
}
.admin-sidebar .sidebar-brand {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 1rem;
}
.admin-sidebar .nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    border-radius: 0;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}
.admin-sidebar .nav-link:hover {
    background: rgba(0, 212, 255, 0.08);
    color: var(--accent-cyan);
    border-left-color: rgba(0, 212, 255, 0.4);
}
.admin-sidebar .nav-link.active {
    background: rgba(0, 212, 255, 0.12);
    color: var(--accent-cyan);
    border-left-color: var(--accent-cyan);
    font-weight: 600;
}
.admin-sidebar .nav-link i { width: 24px; margin-right: 12px; font-size: 1.1rem; }
.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 2rem;
    background: var(--bg-dark);
    min-height: 100vh;
}
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.admin-topbar h4 { font-size: 1.3rem; }

/* ===== LOGIN PAGE ===== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-dark);
}
.login-card {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(135deg, rgba(18, 18, 40, 0.95) 0%, rgba(10, 10, 25, 0.98) 100%);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.login-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

/* ===== MODAL ===== */
.modal-content {
    background: #0d0d1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-lg) !important;
}
.modal-header { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.modal-footer { border-top: 1px solid rgba(255, 255, 255, 0.08); }

/* ===== NAV PILLS ===== */
.nav-pills .nav-link {
    border-radius: var(--radius-pill);
    color: var(--text-secondary) !important;
    border: 1px solid transparent;
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem;
}
.nav-pills .nav-link.active {
    background: var(--accent-gradient) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.25);
}

/* ===== ALERTS ===== */
.alert-danger {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
    border-radius: var(--radius-md);
}
.alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #86efac;
    border-radius: var(--radius-md);
}

/* ===== PROGRESS ===== */
.progress { background: rgba(255, 255, 255, 0.05); border-radius: 4px; }
.progress-bar { background: var(--accent-gradient); border-radius: 4px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(0, 212, 255, 0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 212, 255, 0.35); }
::selection { background: rgba(0, 212, 255, 0.3); color: #fff; }

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    display: inline-block;
    width: 18px; height: 18px;
    border: 2.5px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    border-top-color: var(--accent-cyan);
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== UTILITIES ===== */
.pill-btn { border-radius: var(--radius-pill) !important; }
.glow-text { text-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
.border-glow {
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.08), inset 0 0 20px rgba(0, 212, 255, 0.03);
}
hr.border-secondary { border-color: rgba(255, 255, 255, 0.08) !important; opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
        margin-top: -60px;
        padding-top: 110px;
    }
}
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero-full { min-height: 50vh; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .section-title { font-size: 1.8rem; }
    .section-padding { padding: 3rem 0; }
    .search-field { height: 44px; }
    .search-tab { font-size: 0.82rem; padding: 0.7rem 0.75rem; }
    .mega-dropdown { min-width: auto; width: 100%; }
    .mega-col:first-child { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
    .month-card { flex: 0 0 120px; height: 180px; }
    .newsletter-card { padding: 2rem 1.5rem; }
    .cta-card { padding: 3rem 1.5rem; }
    .top-bar { display: none !important; }
    .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
    .admin-sidebar.show { transform: translateX(0); }
    .admin-content { margin-left: 0; padding: 1.5rem; }
    .login-card { padding: 2rem 1.5rem; border-radius: var(--radius-lg); }
    .stat-card .stat-number { font-size: 2rem; }
}
