/* ============================================
   CUSTOMER ASSISTANCE MALI - CA77-SARL
   Police: Bricolage Grotesque
   Couleurs de marque: Bleu profond + Or
   ============================================ */

:root {
    /* === BRAND === */
    --brand: #2D2D8B;          /* Bleu profond (logo) */
    --brand-2: #3B69DE;        /* Bleu clair */
    --brand-3: #61ABEB;        /* Bleu ciel */
    --brand-light: #EEF1FB;    /* Bleu très clair (fond) */
    --gold: #DBA726;           /* Or principal */
    --gold-2: #EBB400;          /* Or clair */
    --gold-3: #E17300;          /* Orange-or */
    --gold-light: #FFF7E0;      /* Or très clair (fond) */

    --black: #111111;
    --black-2: #1A1A1A;
    --black-3: #222222;
    --gray-900: #333333;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-400: #AAAAAA;
    --gray-300: #CCCCCC;
    --gray-200: #E5E5E5;
    --gray-100: #F2F2F2;
    --white: #FFFFFF;
    --bg: #FAFAFA;

    --green: #22C55E;
    --green-bg: #F0FDF4;
    --orange: #F59E0B;
    --orange-bg: #FFFBEB;
    --red: #EF4444;
    --red-bg: #FEF2F2;
    --purple: #8B5CF6;
    --purple-bg: #F5F3FF;
    --teal: #14B8A6;
    --teal-bg: #F0FDFA;
    --blue: #3B82F6;
    --blue-bg: #EFF6FF;

    --radius: 10px;
    --radius-lg: 14px;
    --radius-full: 50px;
    --shadow: 0 1px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);

}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--black);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: 0.2s var(--ease); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ============ ICONS SVG ============ */
.icon-svg {
    width: 20px; height: 20px;
    fill: none; stroke: currentColor;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
}
.icon-svg.sm { width: 18px; height: 18px; }
.icon-svg.lg { width: 28px; height: 28px; }
.icon-svg.xl { width: 36px; height: 36px; }

/* ============ ANIMATIONS ============ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
@keyframes flyAcross {
    0% { transform: translateX(-80px); opacity: 0; }
    10% { opacity: 0.08; }
    90% { opacity: 0.08; }
    100% { transform: translateX(calc(100vw + 80px)); opacity: 0; }
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-200);
    height: 68px;
}
.navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; gap: 16px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0; min-width: 0;
}
.logo-img {
    height: 44px; width: auto; display: block;
}
.logo-text-wrap {
    display: flex; flex-direction: column; line-height: 1;
}
.logo-text {
    font-size: 0.95rem; font-weight: 800; color: var(--brand);
    letter-spacing: -0.01em; white-space: nowrap;
}
.logo-sub {
    font-size: 0.62rem; font-weight: 700; color: var(--gold);
    letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px;
}
.nav-links {
    display: flex; align-items: center; gap: 28px;
    margin: 0; padding: 0;
}
.nav-links a {
    font-size: 0.9rem; font-weight: 600; color: var(--gray-700);
    position: relative; padding: 6px 0;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a.active { color: var(--brand); }
.nav-links a.active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta {
    background: var(--brand) !important; color: var(--white) !important;
    padding: 10px 22px !important; border-radius: var(--radius-full);
    font-weight: 700 !important; font-size: 0.85rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--black) !important; }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--brand); border-radius: 2px; transition: 0.2s; }

/* ============ HERO CAROUSEL ============ */
.hero {
    position: relative; overflow: hidden; height: 380px; margin-top: 68px;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-fallback {
    width: 100%; height: 100%;
    background: var(--brand);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: rgba(17,17,17,0.55);
    z-index: 1;
}
.hero-plane {
    position: absolute; z-index: 2; color: rgba(255,255,255,0.10);
    animation: flyAcross 20s linear infinite; top: 25%;
}
.hero-plane svg { width: 50px; height: 50px; fill: currentColor; stroke: none; }
.hero-inner { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; }
.hero-dots {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    z-index: 4; display: flex; gap: 6px;
}
.hero-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.35); border: none; cursor: pointer;
}
.hero-dot.active { background: var(--gold); }
.hero-content { animation: fadeIn 0.6s var(--ease); max-width: 720px; }
.hero h1 {
    font-size: 2.6rem; font-weight: 900; line-height: 1.1;
    color: var(--white); margin-bottom: 12px; letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--gold-2); }
.hero p {
    font-size: 1rem; color: rgba(255,255,255,0.85);
    margin-bottom: 22px; max-width: 560px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Page hero (destinations, vols, etc.) */
.page-hero {
    position: relative; height: 220px; margin-top: 68px; overflow: hidden;
    display: flex; align-items: center;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg .fallback { width: 100%; height: 100%; background: var(--brand); }
.page-hero-overlay {
    position: absolute; inset: 0;
    background: rgba(17,17,17,0.5);
    z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: 1.9rem; font-weight: 900; color: var(--white); letter-spacing: -0.01em; }
.page-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.78); margin-top: 4px; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 12px 24px; border-radius: var(--radius-full);
    font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.88rem; font-weight: 700;
    cursor: pointer; border: none; transition: all 0.2s var(--ease);
    text-align: center; justify-content: center;
}
.btn-brand {
    background: var(--brand); color: var(--white);
}
.btn-brand:hover { background: var(--black); transform: translateY(-1px); }
.btn-gold {
    background: var(--gold); color: var(--white);
}
.btn-gold:hover { background: var(--gold-3); transform: translateY(-1px); }
.btn-black, .btn-dark { background: var(--black); color: var(--white); }
.btn-black:hover, .btn-dark:hover { background: var(--black-2); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--brand); border: 1px solid var(--gray-200); }
.btn-white:hover { border-color: var(--brand); transform: translateY(-1px); }
.btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ============ SECTIONS ============ */
.section { padding: 64px 0; }
.section-header { margin-bottom: 32px; }
.section-header h2 {
    font-size: 1.55rem; font-weight: 900; color: var(--black);
    letter-spacing: -0.01em;
}
.section-header h2 .underline-gold {
    border-bottom: 3px solid var(--gold); padding-bottom: 2px;
}
.section-header p { color: var(--gray-500); font-size: 0.9rem; margin-top: 4px; }

/* ============ DESTINATION CARDS ============ */
.destinations-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px;
}
.dest-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.dest-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-md);
    border-color: var(--brand-3);
}
.dest-card-img {
    height: 150px; background: var(--brand-light); position: relative; overflow: hidden;
}
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s var(--ease); }
.dest-card:hover .dest-card-img img { transform: scale(1.04); }
.dest-card-img .placeholder-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    color: var(--brand-3);
}
.dest-card-body { padding: 16px; }
.dest-card-route {
    display: flex; align-items: center; gap: 6px; margin-bottom: 8px;
    font-size: 0.72rem; font-weight: 700; color: var(--brand); letter-spacing: 0.06em;
}
.dest-card-route .line { flex: 1; height: 1px; background: var(--gray-200); }
.dest-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--black); }
.dest-card .country { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 12px; }
.dest-card .price-row {
    display: flex; align-items: baseline; justify-content: space-between;
    padding-top: 12px; border-top: 1px solid var(--gray-100);
}
.dest-card .price-label { font-size: 0.68rem; color: var(--gray-400); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.dest-card .price { font-size: 1.15rem; font-weight: 900; color: var(--brand); }
.dest-card .price small { font-size: 0.68rem; font-weight: 500; color: var(--gray-500); }

/* ============ SERVICES ============ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
    background: var(--white); padding: 22px 18px; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.service-card:hover {
    transform: translateY(-3px); box-shadow: var(--shadow-md);
    border-color: var(--brand-3);
}
.service-icon-box {
    width: 44px; height: 44px; border-radius: var(--radius);
    background: var(--brand-light); color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.service-card:nth-child(2n) .service-icon-box { background: var(--gold-light); color: var(--gold-3); }
.service-card h3 { font-size: 0.95rem; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.service-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.55; }

/* ============ FLIGHT BOARD ============ */
.board-filters {
    background: var(--white); padding: 12px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); margin-bottom: 20px;
    display: flex; gap: 8px; flex-wrap: wrap; border: 1px solid var(--gray-200);
}
.filter-input {
    flex: 1; min-width: 140px; padding: 10px 12px;
    border: 1px solid var(--gray-200); border-radius: var(--radius);
    font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.85rem; color: var(--black);
    background: var(--gray-100);
}
.filter-input:focus { outline: none; border-color: var(--brand); background: var(--white); }

/* Date tabs */
.date-tabs {
    display: flex; gap: 8px; margin-bottom: 20px; overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}
.date-tab {
    padding: 10px 18px; border-radius: var(--radius);
    background: var(--white); border: 1px solid var(--gray-200);
    font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.85rem; font-weight: 700;
    color: var(--gray-500); cursor: pointer; white-space: nowrap;
    transition: all 0.2s; flex-shrink: 0;
}
.date-tab:hover { border-color: var(--brand); color: var(--brand); }
.date-tab.active {
    background: var(--brand); color: var(--white); border-color: var(--brand);
}
.date-tab .day { display: block; font-size: 1.2rem; font-weight: 900; color: inherit; line-height: 1; }
.date-tab .label { display: block; font-size: 0.7rem; font-weight: 500; margin-top: 2px; }

/* ============ FLIGHT CARDS ============ */
.flights-list { display: flex; flex-direction: column; gap: 10px; padding-bottom: 40px; }
.flight-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 18px;
    border: 1px solid var(--gray-200); display: block;
    transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s;
}
.flight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--brand-3); }
.flight-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 10px; }
.flight-airline { display: flex; align-items: center; gap: 10px; min-width: 0; }
.flight-airline-logo {
    width: 42px; height: 42px; border-radius: 8px; overflow: hidden;
    background: var(--gray-100); display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gray-200); padding: 3px; flex-shrink: 0;
}
.flight-airline-logo img { width: 100%; height: 100%; object-fit: contain; }
.flight-airline-logo .code-fallback { font-size: 0.68rem; font-weight: 900; color: var(--brand); }
.flight-airline-name { font-size: 0.82rem; color: var(--gray-700); font-weight: 600; }
.flight-number {
    font-size: 0.8rem; font-weight: 900; color: var(--brand);
    letter-spacing: 0.04em; background: var(--brand-light); padding: 5px 12px; border-radius: 6px;
    flex-shrink: 0;
}
.flight-card-route { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.flight-point { min-width: 60px; }
.flight-point .time { font-size: 1.45rem; font-weight: 900; color: var(--black); line-height: 1; }
.flight-point .city { font-size: 0.78rem; color: var(--gray-700); font-weight: 500; margin-top: 3px; }
.flight-point .code { font-size: 0.7rem; color: var(--gold); font-weight: 800; letter-spacing: 0.06em; }
.flight-line { flex: 1; height: 2px; position: relative; display: flex; align-items: center; min-width: 30px; }
.flight-line::before { content: ''; position: absolute; left: 0; right: 0; height: 1px; border-top: 1.5px dashed var(--gray-300); }
.flight-line .plane-icon {
    position: absolute; left: 50%; transform: translateX(-50%);
    background: var(--white); padding: 0 4px; color: var(--brand); z-index: 1;
}
.flight-card:hover .flight-line .plane-icon { color: var(--gold-3); transform: translateX(-50%) translateX(6px); transition: 0.3s; }
.flight-card-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 8px; padding-top: 12px; border-top: 1px solid var(--gray-100);
}
.flight-info { display: flex; gap: 12px; flex-wrap: wrap; }
.flight-info-item { font-size: 0.78rem; color: var(--gray-700); display: flex; align-items: center; gap: 3px; }
.flight-info-item strong { color: var(--black); font-weight: 700; }

.flight-countdown {
    font-size: 0.75rem; font-weight: 700; color: var(--brand);
    background: var(--brand-light); padding: 4px 10px; border-radius: var(--radius-full);
    font-variant-numeric: tabular-nums;
}
.flight-countdown.urgent { color: var(--gold-3); background: var(--gold-light); animation: pulse 1.5s infinite; }
.flight-countdown.past { color: var(--gray-400); background: var(--gray-100); animation: none; }

/* ============ STATUS BADGES ============ */
.status-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px; border-radius: var(--radius-full);
    font-size: 0.72rem; font-weight: 700;
}
.status-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; }
.status-scheduled { background: var(--gray-100); color: var(--gray-700); }
.status-scheduled::before { background: var(--gray-400); }
.status-confirmed { background: var(--green-bg); color: var(--green); }
.status-confirmed::before { background: var(--green); }
.status-boarding { background: var(--purple-bg); color: var(--purple); }
.status-boarding::before { background: var(--purple); }
.status-delayed { background: var(--orange-bg); color: var(--orange); }
.status-delayed::before { background: var(--orange); }
.status-rescheduled { background: var(--red-bg); color: var(--red); }
.status-rescheduled::before { background: var(--red); }
.status-inflight { background: var(--blue-bg); color: var(--blue); }
.status-inflight::before { background: var(--blue); animation: pulse 2s infinite; }
.status-landed { background: var(--teal-bg); color: var(--teal); }
.status-landed::before { background: var(--teal); }
.status-cancelled { background: var(--red-bg); color: var(--red); }
.status-cancelled::before { background: var(--red); }

/* ============ DETAIL ============ */
.detail-content { padding: 24px 0 48px; }
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; }
.detail-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 22px; border: 1px solid var(--gray-200);
}
.detail-card h3 {
    font-size: 0.82rem; font-weight: 900; color: var(--brand);
    margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    text-transform: uppercase; letter-spacing: 0.04em; display: inline-block;
}
.detail-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 0; border-bottom: 1px solid var(--gray-100); gap: 12px;
}
.detail-row:last-child { border-bottom: none; }
.detail-row .label { font-size: 0.82rem; color: var(--gray-500); }
.detail-row .value { font-size: 0.85rem; font-weight: 700; color: var(--black); text-align: right; }
.next-step-box {
    background: var(--brand-light); border-radius: var(--radius);
    padding: 14px; margin-top: 14px; border-left: 3px solid var(--brand);
}
.next-step-box .label { font-size: 0.68rem; font-weight: 900; color: var(--brand); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.next-step-box .value { font-size: 0.85rem; font-weight: 700; color: var(--black); }

/* ============ FORMS ============ */
.form-section { padding: 48px 0; }
.form-container { max-width: 580px; margin: 0 auto; }
.form-container h1 { font-size: 1.5rem; font-weight: 900; color: var(--black); margin-bottom: 4px; }
.form-container > p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 22px; }
.form-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 26px; border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.form-input, .form-card input, .form-card textarea, .form-card select {
    width: 100%; padding: 11px 13px;
    border: 1px solid var(--gray-200); border-radius: var(--radius);
    font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.9rem; color: var(--black);
    background: var(--gray-100);
    transition: border-color 0.2s, background 0.2s;
}
.form-input:focus, .form-card input:focus, .form-card textarea:focus, .form-card select:focus {
    outline: none; border-color: var(--brand); background: var(--white);
    box-shadow: 0 0 0 3px rgba(45,45,139,0.08);
}
textarea.form-input, .form-card textarea { resize: vertical; min-height: 70px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ============ ALERTS ============ */
.alert { padding: 11px 16px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; margin: 12px 20px; }
.alert-success { background: var(--green-bg); color: var(--green); border: 1px solid #BBF7D0; }
.alert-error { background: var(--red-bg); color: var(--red); border: 1px solid #FECACA; }
.alert-info { background: var(--brand-light); color: var(--brand); border: 1px solid #C7D2FE; }

/* ============ CTA ============ */
.cta-section {
    background: var(--brand); padding: 56px 0; text-align: center; color: var(--white);
    position: relative; overflow: hidden;
    border-top: 4px solid var(--gold);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 8px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 22px; font-size: 0.95rem; }

/* ============ DASHBOARD ============ */
.dash-layout { display: flex; min-height: 100vh; padding-top: 68px; }
.dash-sidebar {
    width: 230px; background: var(--brand); padding: 18px;
    position: fixed; top: 68px; bottom: 0; left: 0;
    overflow-y: auto; display: flex; flex-direction: column;
    border-right: 3px solid var(--gold);
}
.dash-sidebar a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: var(--radius);
    color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 600; margin-bottom: 4px;
}
.dash-sidebar a:hover, .dash-sidebar a.active {
    background: rgba(255,255,255,0.12); color: var(--white);
}
.dash-sidebar a.active { box-shadow: inset 3px 0 0 var(--gold); }
.dash-sidebar .badge-count {
    margin-left: auto; background: var(--gold); color: var(--white);
    font-size: 0.68rem; font-weight: 900; padding: 2px 7px; border-radius: var(--radius-full);
}
.dash-main { flex: 1; margin-left: 230px; padding: 28px; background: var(--bg); min-width: 0; }
.dash-title { font-size: 1.3rem; font-weight: 900; color: var(--black); margin-bottom: 20px; }
.dash-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; margin-bottom: 26px; }
.dash-stat-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 20px;
    border: 1px solid var(--gray-200);
    transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.dash-stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.dash-stat-card .label { font-size: 0.78rem; color: var(--gray-500); font-weight: 600; margin-bottom: 4px; }
.dash-stat-card .value { font-size: 1.7rem; font-weight: 900; color: var(--brand); }
.dash-table {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--gray-200);
}
.dash-table table { width: 100%; border-collapse: collapse; }
.dash-table th {
    text-align: left; padding: 11px 14px; font-size: 0.7rem; font-weight: 800;
    color: var(--brand); text-transform: uppercase; letter-spacing: 0.05em;
    background: var(--brand-light); border-bottom: 1px solid var(--gray-200);
}
.dash-table td { padding: 11px 14px; font-size: 0.85rem; border-bottom: 1px solid var(--gray-100); }
.dash-table tr:hover td { background: var(--gray-100); }

/* ============ EMPTY ============ */
.empty-state { text-align: center; padding: 56px 16px; color: var(--gray-400); }
.empty-state .icon { margin-bottom: 12px; }
.empty-state p { font-size: 0.9rem; font-weight: 500; }

/* ============ LEGAL PAGES ============ */
.legal-content {
    max-width: 820px; margin: 0 auto; padding: 36px 20px 56px;
}
.legal-content h1 {
    font-size: 1.8rem; font-weight: 900; color: var(--black);
    margin-bottom: 8px; letter-spacing: -0.01em;
}
.legal-content .updated {
    font-size: 0.82rem; color: var(--gray-500); margin-bottom: 28px;
    padding-bottom: 16px; border-bottom: 1px solid var(--gray-200);
}
.legal-content h2 {
    font-size: 1.1rem; font-weight: 800; color: var(--brand);
    margin-top: 32px; margin-bottom: 10px;
    padding-bottom: 6px; border-bottom: 2px solid var(--gold); display: inline-block;
}
.legal-content h3 {
    font-size: 0.98rem; font-weight: 700; color: var(--black);
    margin-top: 18px; margin-bottom: 8px;
}
.legal-content p, .legal-content li {
    font-size: 0.92rem; color: var(--gray-900); line-height: 1.7;
    margin-bottom: 10px;
}
.legal-content ul { padding-left: 22px; margin-bottom: 12px; }
.legal-content ul li { list-style: disc; margin-bottom: 6px; }
.legal-content strong { color: var(--black); font-weight: 700; }
.legal-content a { color: var(--brand); font-weight: 600; text-decoration: underline; }
.legal-content a:hover { color: var(--gold-3); }

/* ============ FOOTER ============ */
.footer { background: var(--black); color: var(--white); padding: 48px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 32px; }
.footer-desc { font-size: 0.85rem; color: var(--gray-400); margin-top: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
    font-size: 0.78rem; font-weight: 900; margin-bottom: 14px;
    letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold);
}
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li, .footer-col ul li a { font-size: 0.85rem; color: var(--gray-400); }
.footer-col ul li a:hover { color: var(--white); }
.footer .logo-text { color: var(--white); }
.footer .logo-sub { color: var(--gold); }
.footer-bottom {
    padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray-500); }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--gray-500); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none; position: absolute; top: 68px; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 16px; gap: 4px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 12px 8px; width: 100%; }
    .nav-links a.active::after { display: none; }
    .nav-links a.active { background: var(--brand-light); border-radius: var(--radius); padding: 12px; }
    .nav-cta { width: 100%; text-align: center; margin-top: 6px; }

    .logo-img { height: 38px; }
    .logo-text { font-size: 0.82rem; }
    .logo-sub { font-size: 0.55rem; letter-spacing: 0.14em; }

    .hero { height: 320px; }
    .hero h1 { font-size: 1.9rem; }
    .hero p { font-size: 0.92rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }

    .page-hero { height: 170px; }
    .page-hero h1 { font-size: 1.4rem; }

    .destinations-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .flight-card-route { gap: 10px; }
    .flight-point .time { font-size: 1.2rem; }
    .flight-card-bottom { flex-direction: column; align-items: flex-start; }
    .detail-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 22px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .dash-layout { padding-top: 68px; }
    .dash-sidebar {
        position: relative; width: 100%; top: 0;
        flex-direction: row; flex-wrap: nowrap; overflow-x: auto;
        padding: 10px; gap: 6px;
        border-right: none; border-bottom: 3px solid var(--gold);
    }
    .dash-sidebar a { white-space: nowrap; flex-shrink: 0; padding: 8px 12px; font-size: 0.78rem; }
    .dash-sidebar > div { display: none !important; }
    .dash-main { margin-left: 0; padding: 18px; }
    .dash-cards { grid-template-columns: 1fr 1fr; }

    .board-filters { flex-direction: column; }
    .board-filters .filter-input { min-width: 100%; }
    .date-tabs { gap: 6px; }

    .section { padding: 48px 0; }
    .section-header h2 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { height: 280px; }
    .hero h1 { font-size: 1.55rem; }
    .services-grid { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr; }
    .btn { width: 100%; }
    .form-card { padding: 18px; }
    .dash-cards { grid-template-columns: 1fr; }
    .logo-text-wrap { display: none; }
    .logo-img { height: 40px; }
}
