/* ============================================
   BHURARO - Premium Travel UI Stylesheet
   Style: Premium • Clean • Smart • Travel-Focused
   Palette: Royal Blue (#0B3C5D), Gold (#D4AF37), White
   ============================================ */

:root {
    --color-primary: #0B3C5D;
    --color-primary-light: #134E6F;
    --color-primary-dark: #082C44;
    --color-accent: #D4AF37;
    --color-accent-hover: #C49B2F;
    --color-accent-light: #F5E6B8;
    --color-bg: #FFFFFF;
    --color-bg-light: #F8F9FB;
    --color-bg-section: #F1F3F7;
    --color-text: #1A1A2E;
    --color-text-secondary: #6B7280;
    --color-text-muted: #9CA3AF;
    --color-border: #E5E7EB;
    --color-border-light: #F3F4F6;
    --color-success: #10B981;
    --color-error: #EF4444;
    --color-warning: #F59E0B;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-max: 1280px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== HEADER ==================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.header-logo img {
    height: 180px;
    width: auto;
    object-fit: contain;
}

.header-logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.header-logo-dot {
    color: var(--color-accent);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    border-radius: var(--radius-full);
    transition: var(--transition);
    white-space: nowrap;
}

.header-nav-link:hover {
    color: var(--color-primary);
    background: var(--color-bg-light);
}

.header-nav-link.active {
    color: var(--color-primary);
    background: rgba(11, 60, 93, 0.08);
}

.header-nav-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-currency-btn,
.header-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition);
}

.header-currency-btn:hover,
.header-lang-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.header-currency-btn svg,
.header-lang-btn svg {
    width: 16px;
    height: 16px;
}

#locale-flag {
    font-size: 18px;
    line-height: 1;
}

#locale-text,
#lang-code {
    white-space: nowrap;
}

.header-login-btn {
    padding: 10px 24px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.header-login-btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 60, 93, 0.3);
}

.header-signup-btn {
    padding: 10px 24px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border: none;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.header-signup-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.header-mobile-toggle {
    display: none;
    padding: 8px;
    background: transparent;
    border: none;
    color: var(--color-text);
}

.header-mobile-toggle svg {
    width: 28px;
    height: 28px;
}

/* ==================== HERO ==================== */
.hero {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 32px;
    animation: fadeInDown 0.6s ease-out;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-headline .accent {
    color: var(--color-accent);
}

.hero-subheadline {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Hero Tabs */
.hero-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.hero-tab:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.hero-tab.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.hero-tab svg {
    width: 18px;
    height: 18px;
}

/* Search Card */
.search-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trip-options {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.trip-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.trip-option input[type="radio"] {
    accent-color: var(--color-accent);
    width: 16px;
    height: 16px;
}

.search-fields {
    display: flex;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.search-field {
    flex: 1;
    padding: 16px 20px;
    border-right: 1px solid var(--color-border-light);
    position: relative;
}

.search-field:last-of-type {
    border-right: none;
}

.search-field-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.search-field-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    background: transparent;
    padding: 2px 0;
}

.search-field-input::placeholder {
    color: var(--color-text-muted);
    font-weight: 400;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 40px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    min-width: 160px;
}

.search-btn:hover {
    background: var(--color-accent-hover);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

/* Hotel / Car Tab Content */
.hero-tab-content {
    display: none;
}

.hero-tab-content.active {
    display: block;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.hero-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: left;
    border: 1px solid var(--color-border-light);
    position: relative;
    transition: var(--transition);
    color: var(--color-text);
}

.hero-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.hero-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-accent-light);
    color: var(--color-primary);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
}

.hero-card-title {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-size: 16px;
}

.hero-card-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.hero-card-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.hero-card-btn:hover {
    background: var(--color-accent-hover);
}

/* Autocomplete */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    max-height: 280px;
    overflow-y: auto;
    display: none;
    border-top: 1px solid var(--color-border-light);
}

.autocomplete-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--color-border-light);
}

.autocomplete-item:hover {
    background: var(--color-bg-light);
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.airport-details {
    display: flex;
    flex-direction: column;
}

.airport-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
}

.airport-sub {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ==================== DEALS SECTION ==================== */
.deals-section {
    padding: 96px 0;
    background: var(--color-bg);
}

.section-header {
    margin-bottom: 48px;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    transition: var(--transition);
    white-space: nowrap;
    background: transparent;
}

.view-all-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.deal-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
    cursor: pointer;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.deal-img-wrap {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.deal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.deal-card:hover .deal-img-wrap img {
    transform: scale(1.05);
}

.deal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-badge-hot {
    background: var(--color-error);
    color: white;
}

.deal-badge-save {
    background: var(--color-success);
    color: white;
}

.deal-badge-special {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.deal-save-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
}

.deal-body {
    padding: 20px;
}

.deal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.deal-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.deal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deal-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
}

.deal-price-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.deal-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border: none;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.deal-cta:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}

/* ==================== POPULAR DESTINATIONS ==================== */
.destinations-section {
    padding: 96px 0;
    background: var(--color-bg-light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    transition: var(--transition);
}

.dest-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.dest-name {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.dest-starting {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.dest-starting strong {
    color: var(--color-accent);
    font-size: 16px;
}

.dest-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: white;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.dest-explore-btn:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}

/* ==================== WHY BHURARO ==================== */
.why-section {
    padding: 96px 0;
    background: var(--color-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(11, 60, 93, 0.06);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.why-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.why-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ==================== PROMO BANNER ==================== */
.promo-section {
    padding: 64px 0;
    background: var(--color-bg-light);
}

.promo-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
}

.promo-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 44, 68, 0.85), rgba(8, 44, 68, 0.3));
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    padding: 0 64px;
    max-width: 500px;
    color: white;
}

.promo-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.promo-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.promo-desc {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 28px;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border: none;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.promo-cta:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* ==================== POPULAR ROUTES ==================== */
.routes-section {
    padding: 96px 0;
    background: var(--color-bg);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.route-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
    cursor: pointer;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.route-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.route-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.route-card:hover .route-card-img img {
    transform: scale(1.05);
}

.route-price-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.route-price-from {
    display: block;
    font-size: 10px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.route-price-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
}

.route-card-body {
    padding: 20px;
}

.route-path {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.route-city {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
}

.route-arrow {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 18px;
}

.route-airline {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ==================== SERVICES STRIP ==================== */
.services-strip {
    padding: 48px 0;
    background: var(--color-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.service-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.service-link-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-link-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-accent);
}

/* ==================== FAQ ==================== */
.faq-section {
    padding: 96px 0;
    background: var(--color-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 12px;
}

.faq-item:hover {
    border-color: var(--color-accent);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-trigger:hover {
    background: var(--color-bg-light);
}

.faq-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--color-text-muted);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.7;
    display: none;
}

.faq-answer.show {
    display: block;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--color-primary-dark);
    color: white;
}

.footer-top {
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand-col {
    max-width: 300px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-logo-dot {
    color: var(--color-accent);
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.footer-social-btn svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.footer-social-btn:hover svg {
    fill: var(--color-primary-dark);
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright a:hover {
    color: var(--color-accent);
}

.footer-api-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: #10B981;
}

.footer-api-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.footer-bottom-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer aliases (used by footer.php) */
.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
}

.footer-social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-column {}

.footer-column-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: block;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 12px;
    max-width: 600px;
    line-height: 1.5;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-sticky-search {
    display: none;
}

.mobile-sticky-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.mobile-sticky-search-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-sticky-search-btn:hover {
    background: var(--color-accent-hover);
}

@media (max-width: 768px) {
    .mobile-sticky-search {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 16px;
        background: white;
        border-top: 1px solid var(--color-border);
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
}

/* ==================== SEARCH RESULTS PAGE ==================== */
.search-results-page {
    background: var(--color-bg-light);
    min-height: 100vh;
}

.search-summary-bar {
    background: var(--color-primary);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    margin: 24px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.results-layout {
    display: grid;
    grid-template-columns: 280px 1fr 260px;
    gap: 24px;
    padding-bottom: 64px;
}

.filter-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid var(--color-border-light);
}

.filter-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-light);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: var(--transition);
}

.filter-option:hover {
    color: var(--color-text);
}

.filter-option input[type="checkbox"] {
    accent-color: var(--color-accent);
    width: 16px;
    height: 16px;
}

.sort-bar {
    display: flex;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--color-border-light);
}

.sort-btn {
    flex: 1;
    padding: 16px;
    border: none;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-right: 1px solid var(--color-border-light);
    color: var(--color-text-secondary);
    font-size: 14px;
}

.sort-btn:last-child {
    border-right: none;
}

.sort-btn.active {
    color: var(--color-accent);
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 3px solid var(--color-accent);
}

.sort-btn:hover {
    background: var(--color-bg-light);
}

.flight-card {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    display: flex;
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: var(--transition);
}

.flight-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.flight-main {
    flex: 1;
    padding: 24px;
}

.flight-action {
    width: 220px;
    border-left: 1px solid var(--color-border-light);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color-bg-light);
}

.flight-leg {
    display: flex;
    align-items: center;
    gap: 24px;
}

.airline-info {
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.airline-logo {
    height: 32px;
    object-fit: contain;
}

.airline-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-align: center;
}

.leg-times {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
}

.airport {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.duration-box {
    flex: 1;
    margin: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.duration {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.sep-line {
    width: 100%;
    height: 2px;
    background: var(--color-border);
    margin: 4px 0;
    position: relative;
}

.sep-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    border: 4px solid transparent;
    border-left-color: var(--color-border);
}

.stops {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
}

.price-box {
    text-align: center;
    margin-bottom: 16px;
}

.price-amount {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
}

.price-provider {
    font-size: 12px;
    color: var(--color-text-muted);
}

.book-btn {
    display: block;
    width: 100%;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    border: none;
    font-size: 14px;
}

.book-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.loading-state {
    padding: 64px;
    text-align: center;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--color-border-light);
    border-top: 4px solid var(--color-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

.sidebar-promo-card {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
}

.sidebar-promo-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.sidebar-promo-card p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.5;
}

.promo-btn {
    display: block;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: var(--transition);
}

.promo-btn:hover {
    background: var(--color-accent-hover);
}

/* ==================== PAGE HERO (Hotels, Cars, etc.) ==================== */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: white;
    padding: 64px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-hero p {
    font-size: 17px;
    opacity: 0.75;
    max-width: 500px;
    margin: 0 auto;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding: 64px 0;
}

.provider-card {
    background: white;
    border: 1px solid var(--color-border-light);
    padding: 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: block;
    color: var(--color-text);
}

.provider-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.provider-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.provider-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--color-accent-light);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
}

.provider-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.provider-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.provider-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 14px;
}

/* ==================== ABOUT PAGE ==================== */
.about-hero {
    height: 500px;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-heroContent {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.about-heroTitle {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-heroDesc {
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-heroButtons {
    display: flex;
    gap: 16px;
}

/* About Map Section */
.about-mapSection {
    padding: 96px 0;
    background: var(--color-bg-light);
    text-align: center;
}

.about-mapTitle {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.about-mapImage {
    max-width: 800px;
    margin: 0 auto;
}

.about-mapImage img {
    width: 100%;
    height: auto;
}

/* Help Banner */
.help-banner {
    background: var(--color-accent-light);
    color: var(--color-primary);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 24px;
    transition: var(--transition);
}

.back-btn:hover {
    background: var(--color-primary-light);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-bg-light);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--color-primary);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--color-bg-light);
    transform: translateY(-2px);
}

.about-content {
    padding: 96px 0;
    text-align: center;
    background: white;
}

.about-textWrapper {
    max-width: 720px;
    margin: 0 auto;
}

.about-p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.about-p .highlight {
    color: var(--color-accent);
    font-weight: 700;
}

.about-divider {
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 40px auto;
    border-radius: 2px;
}

/* ==================== HELP PAGE ==================== */
.help-hero {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: white;
    padding: 64px 0;
    text-align: center;
}

.help-hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.help-hero p {
    font-size: 17px;
    opacity: 0.75;
    margin-bottom: 32px;
}

.help-search {
    max-width: 560px;
    margin: 0 auto 32px;
    display: flex;
    background: white;
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 24px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.help-search input {
    flex: 1;
    border: none;
    padding: 12px 0;
    font-size: 15px;
    outline: none;
    color: var(--color-text);
}

.help-search button {
    border: none;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.help-search button:hover {
    background: var(--color-accent-hover);
}

.help-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.help-tab-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.help-tab-btn.active,
.help-tab-btn:hover {
    background: white;
    color: var(--color-primary);
    border-color: white;
}

.help-main {
    padding: 64px 0;
    background: white;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.help-card {
    background: white;
    border: 1px solid var(--color-border);
    padding: 32px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.help-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.help-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.help-card h3 {
    font-size: 17px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.help-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.help-card span {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 14px;
}

/* ==================== ADMIN ==================== */
.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    padding: 24px;
}

.admin-login-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-xl);
}

.admin-login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.admin-login-logo h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
}

.admin-login-logo p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--color-text);
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--color-accent-hover);
}

.form-error {
    color: var(--color-error);
    font-size: 13px;
    margin-top: 8px;
    display: none;
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--color-primary-dark);
    color: white;
    padding: 24px 0;
}

.admin-sidebar-logo {
    padding: 0 24px 24px;
    font-size: 22px;
    font-weight: 800;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.admin-sidebar-logo span {
    color: var(--color-accent);
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.admin-nav-link:hover,
.admin-nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.06);
}

.admin-nav-link.active {
    border-left: 3px solid var(--color-accent);
}

.admin-nav-link svg {
    width: 20px;
    height: 20px;
}

.admin-main {
    background: var(--color-bg-light);
    padding: 32px;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.admin-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.admin-stat-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--color-border-light);
}

.admin-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.admin-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
}

.admin-stat-change {
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

.admin-stat-change.positive {
    color: var(--color-success);
}

.admin-stat-change.negative {
    color: var(--color-error);
}

.admin-table {
    width: 100%;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    border-collapse: collapse;
}

.admin-table th {
    background: var(--color-bg-light);
    padding: 16px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 16px 20px;
    font-size: 14px;
    border-top: 1px solid var(--color-border-light);
    color: var(--color-text-secondary);
}

.admin-table tr:hover td {
    background: var(--color-bg-light);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .header-mobile-toggle {
        display: block;
    }

    .header-currency-btn,
    .header-lang-btn {
        display: none;
    }

    .hero-headline {
        font-size: 40px;
    }

    .search-fields {
        flex-direction: column;
    }

    .search-field {
        border-right: none;
        border-bottom: 1px solid var(--color-border-light);
    }

    .search-btn {
        padding: 16px;
        min-width: auto;
    }

    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .results-layout {
        grid-template-columns: 1fr;
    }

    .results-filters,
    .results-promo {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        display: none;
    }

    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 48px 0 64px;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-subheadline {
        font-size: 15px;
    }

    .hero-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-tab {
        padding: 10px 16px;
        font-size: 12px;
    }

    .section-title {
        font-size: 26px;
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dest-card {
        height: 240px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .promo-banner {
        height: 350px;
    }

    .promo-banner-content {
        padding: 0 24px;
    }

    .promo-title {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .about-heroTitle {
        font-size: 40px;
    }

    .flight-card {
        flex-direction: column;
    }

    .flight-action {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--color-border-light);
        padding: 16px;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-login-card {
        padding: 32px 24px;
    }

    .providers-grid {
        grid-template-columns: 1fr;
    }

    .mobile-search-sticky {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 16px;
        background: white;
        border-top: 1px solid var(--color-border);
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .mobile-search-sticky .search-btn {
        width: 100%;
        padding: 16px;
        border-radius: var(--radius-full);
        justify-content: center;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

.mobile-search-sticky {
    display: none;
}

/* Mobile Navigation */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    display: block;
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: white;
    z-index: 10000;
    padding: 24px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-bg-light);
    border: none;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 20px;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: var(--color-bg-light);
    color: var(--color-primary);
}

.mobile-nav-link svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
}

.mobile-nav-divider {
    height: 1px;
    background: var(--color-border-light);
    margin: 16px 0;
}

.mobile-nav-auth {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

/* ==================== AFFILIATE PAGE ==================== */
.affiliate-hero {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    position: relative;
    padding: 120px 0 160px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.affiliate-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 60%);
    pointer-events: none;
}

.affiliate-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.affiliate-hero h1 .accent {
    color: var(--color-accent);
}

.affiliate-hero p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.affiliate-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Adventure Nav */
.adventure-nav-container {
    position: sticky;
    top: 72px;
    z-index: 900;
    transition: all 0.3s ease;
    margin-top: -40px;
    margin-bottom: 40px;
}

.adventure-nav-container.is-sticky {
    top: 72px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    margin-top: 0;
}

.adventure-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    background: white;
    padding: 8px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    width: fit-content;
    margin: 0 auto;
    border: 1px solid var(--color-border-light);
}

.adventure-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-secondary);
    transition: var(--transition);
}

.adventure-nav-link:hover,
.adventure-nav-link.active {
    background: var(--color-primary);
    color: white;
}

.adventure-nav-link svg {
    width: 18px;
    height: 18px;
}

/* FAB - Adventure Compass */
.adventure-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-site);
    border: none;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.adventure-fab svg {
    width: 32px;
    height: 32px;
}

.adventure-fab:hover {
    transform: scale(1.1) rotate(45deg);
}

/* Sections */
.affiliate-section {
    padding: 48px 0;
    scroll-margin-top: 140px;
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.affiliate-grid-dense {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.affiliate-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-text);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.affiliate-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(11, 60, 93, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--color-primary);
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.affiliate-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.copy-link-text {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.affiliate-card:hover .copy-link-text {
    opacity: 1;
    transform: translateY(0);
}

/* Dest Card Specifics */
.card-dest {
    height: 180px;
    justify-content: flex-end;
    padding: 20px;
    background: var(--color-primary-dark);
    color: white;
    border: none;
}

.card-dest .card-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.card-dest .card-content {
    position: relative;
    z-index: 2;
}

.card-dest h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 4px;
}

.card-dest .copy-link-text {
    color: var(--color-accent);
    opacity: 0.8;
    transform: none;
}

.affiliate-banner {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--color-border);
}

/* ===================================================================
   BHURARO HERO DESIGN SYSTEM — Shared across all pages
   =================================================================== */

/* Hero Section */
.kayak-hero {
    padding: 60px 0 100px;
    background: #FAFAFA;
    overflow: hidden;
}

.kayak-container {
    display: flex;
    align-items: center;
    gap: 48px;
}

.kayak-search-col {
    flex: 1.2;
    z-index: 2;
}

.kayak-visual-col {
    flex: 0.8;
    position: relative;
    height: 400px;
}

/* Headline */
.kayak-headline {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.orange-dot {
    color: #00BCD4;
}

.kayak-subheadline {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Tabs */
.kayak-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.kayak-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 72px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    text-decoration: none;
}

.kayak-tab:hover {
    background: #f0f0f0;
}

.kayak-tab.active {
    background: #00BCD4;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.tab-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
}

/* Search Bar */
.kayak-search-bar {
    display: flex;
    align-items: stretch;
    /* Fix button height alignment */
    background: white;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    min-height: 64px;
    height: auto;
    border: 1px solid #d1d5db;
    overflow: visible;
    /* Show dropdowns */
    position: relative;
    max-width: 900px;
    width: 100%;
    margin-right: auto;
    z-index: 10;
}

.k-input-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 12px;
    min-height: 64px;
    height: auto;
    position: relative;
}

.k-input-group:first-child {
    border-radius: 8px 0 0 8px;
}

.k-input-group:hover {
    background: #f9fafb;
}

.k-input-group:focus-within {
    box-shadow: inset 0 0 0 2px #00BCD4;
    background: white;
}

.location-group {
    flex: 2;
    min-width: 260px;
}

.k-from-group {
    border: 1px solid #d1d5db;
    border-radius: 8px 0 0 8px;
    margin-right: -1px;
}

.k-pill-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    align-items: center;
    width: auto;
    flex-shrink: 1;
}

.k-pill-container::-webkit-scrollbar {
    display: none;
}

.k-pill {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}

.k-pill-remove {
    cursor: pointer;
    color: #9ca3af;
    font-size: 16px;
    line-height: 1;
}

.k-pill-remove:hover {
    color: #111827;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    margin-top: 4px;
    overflow: hidden;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
    border-bottom: 1px solid #f3f4f6;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: #f9fafb;
}

.autocomplete-icon {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    flex-shrink: 0;
}

.autocomplete-details {
    flex-grow: 1;
}

.autocomplete-main {
    font-weight: 700;
    color: #111827;
    font-size: 14px;
}

.autocomplete-sub {
    font-size: 12px;
    color: #6b7280;
}

.autocomplete-code {
    color: #9ca3af;
    font-weight: 500;
    margin-left: 4px;
}

.autocomplete-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    flex-shrink: 0;
}

.autocomplete-item.selected .autocomplete-checkbox {
    background: #00BCD4;
    border-color: #00BCD4;
    position: relative;
}

.autocomplete-item.selected .autocomplete-checkbox::after {
    content: '✔';
    color: white;
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search-icon {
    width: 20px;
    height: 20px;
    color: #555;
    flex-shrink: 0;
}



.date-display,
.guests-display {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.k-divider {
    width: 1px;
    height: 32px;
    background: #e0e0e0;
    flex-shrink: 0;
}

.k-search-btn {
    background: linear-gradient(135deg, #FF6E40, #FF5722);
    color: white;
    border: none;
    padding: 0 24px;
    height: auto;
    /* Explicit rounded corners since parent overflow is visible */
    border-radius: 0 8px 8px 0;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: inset -4px 0 10px rgba(0, 0, 0, 0.05);
}

.k-search-btn svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.k-search-btn:hover {
    background: linear-gradient(135deg, #FF8A65, #FF7043);
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.1);
}

.k-search-btn:active {
    transform: scale(0.98);
    opacity: 0.9;
}



/* Compare Row */
.k-compare-row {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #555;
}

.k-compare-label {
    font-weight: 500;
}

.k-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.k-checkbox input {
    display: none;
}

.k-checkbox .checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.k-checkbox input:checked+.checkmark {
    background: #00BCD4;
    border-color: #00BCD4;
}

.k-checkbox input:checked+.checkmark::after {
    content: '✔';
    color: white;
    font-size: 10px;
}

/* Collage */
.collage-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 100%;
}

.collage-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.large {
    grid-row: span 2;
    border-top-left-radius: 160px;
    border-bottom-left-radius: 24px;
}

.small-top {
    border-top-right-radius: 24px;
}

.small-bottom {
    border-bottom-right-radius: 160px;
}

/* Mobile responsive adjustments */
@media (max-width: 900px) {
    .kayak-container {
        flex-direction: column;
    }

    .kayak-visual-col {
        display: none;
    }

    .kayak-headline {
        font-size: 32px;
    }

    .kayak-search-bar {
        flex-direction: column;
        height: auto;
        padding: 16px;
        gap: 12px;
    }

    .k-divider {
        display: none;
    }

    .k-input-group {
        width: 100%;
        padding: 12px;
        background: #f5f5f5;
        border-radius: 8px;
    }

    .k-search-btn {
        width: 100%;
        margin-left: 0;
    }

    .kayak-tabs {
        flex-wrap: wrap;
    }

    .kayak-tab {
        width: 60px;
        height: 56px;
        font-size: 11px;
    }

    .tab-icon {
        width: 18px;
        height: 18px;
    }
}

/* ========================= */
/* Interactive Search Elements */
/* ========================= */

.k-trip-type {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.k-select-mini {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    background: white;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.k-select-mini:hover,
.k-select-mini:focus {
    border-color: #00BCD4;
}

.k-swap-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: white;
    color: #00BCD4;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
}

.k-swap-btn:hover {
    background: #00BCD4;
    color: white;
    border-color: #00BCD4;
}

.k-date-input {
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    outline: none;
    width: 90px;
    padding: 2px 0;
    font-family: inherit;
}

.k-date-input::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
}

.k-date-sep {
    color: #999;
    font-size: 14px;
    margin: 0 4px;
    flex-shrink: 0;
}

.k-time-select {
    padding: 4px 6px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    outline: none;
    font-family: inherit;
}

.k-time-select:focus {
    color: #00BCD4;
}

.k-dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    height: 100%;
    width: 100%;
}

.k-dropdown-trigger svg {
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform 0.2s;
}

.k-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 100;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.k-dropdown.show {
    display: block;
}

.k-dd-done {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    text-align: right;
}

.k-btn-done {
    background: #FF690F;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}

.k-btn-done:hover {
    background: #e65a00;
}

.k-dd-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

.k-dd-row:last-child {
    border-bottom: none;
}

.k-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.k-counter button {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: white;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}

.k-counter button:hover {
    border-color: #00BCD4;
    color: #00BCD4;
}

.k-counter span {
    font-size: 16px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* ========================= */
/* Search Results Modal */
/* ========================= */

.k-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.k-modal-overlay.show {
    display: flex;
}

.k-modal {
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.k-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.k-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.k-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.k-modal-close:hover {
    color: #00BCD4;
}

.k-modal-body {
    padding: 24px;
    overflow-y: auto;
    background: #fafafa;
}

/* Flight Card */
.k-flight-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}

.k-flight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #00BCD4;
}

.k-airline-info {
    flex: 1.2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.k-airline-logo {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #666;
    font-size: 12px;
}

.k-airline-name {
    font-weight: 600;
    color: #333;
}

.k-flight-path {
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.k-time-block {
    flex: 1;
}

.k-flight-time {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.k-flight-code {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.k-path-line {
    flex: 1.5;
    position: relative;
    padding: 0 10px;
}

.k-path-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    height: 1px;
    background: #ddd;
}

.k-duration {
    font-size: 11px;
    color: #888;
    background: #fff;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}

.k-stops {
    font-size: 11px;
    color: #00BCD4;
    font-weight: 600;
}

.k-price-block {
    flex: 1.2;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.k-flight-price {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.k-select-btn {
    margin-top: 8px;
    padding: 8px 20px;
    background: #00BCD4;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.k-select-btn:hover {
    background: #0097A7;
}

/* Loading State */
.k-loading {
    padding: 40px;
    text-align: center;
}

.k-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #00BCD4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.k-loading-text {
    color: #666;
    font-size: 14px;
}

@media (max-width: 600px) {
    .k-flight-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .k-price-block {
        align-items: center;
        border-top: 1px solid #eee;
        padding-top: 12px;
        width: 100%;
    }

    .k-modal {
        width: 95%;
    }
}

.location-group {
    position: relative;
}

.k-input-group .k-input {
    border: none !important;
    background: transparent !important;
    height: 100%;
    flex: 1;
    min-width: 80px;
    /* Slightly more room for clicking */
    padding: 0 12px;
    font-size: 14px;
    outline: none;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.k-from-group .k-input {
    padding-right: 40px;
    /* Space for the swap button */
}

.k-input-group .k-input::placeholder {
    color: #888;
    opacity: 1;
}