/* ===== LEGAL PAGES STYLESHEET ===== */
/* Matches Flight Booking Hotline Bionic Design */

:root {
    --navy: #1a2744;
    --navy-dark: #111c33;
    --navy-deep: #0b1221;
    --gold: #c9a84c;
    --gold-light: #dfc27d;
    --cream: #f9f6f0;
    --white: #ffffff;
    --gray-400: #9ca3af;
    --gray-600: #6b7280;
    --gray-700: #4a4a55;
    --gray-900: #1e1e24;
    --font: 'Inter', sans-serif;
    --serif: 'Playfair Display', serif;
    --shadow: 0 4px 24px rgba(26,39,68,0.08);
    --radius: 12px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-900); background: #fff; line-height: 1.7; font-size: 16px; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy-dark);
    padding: 8px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}
.top-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    gap: 16px;
}
.top-bar-inner i { color: var(--gold); margin-right: 4px; }
.top-bar-phone {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.top-bar-phone:hover { color: var(--gold-light); text-decoration: none; }

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 37px;
    z-index: 99;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}
.logo-name { font-weight: 800; font-size: 1rem; color: var(--navy); line-height: 1.1; }
.logo-tag { font-size: 0.62rem; color: var(--gray-400); letter-spacing: 0.5px; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--gray-700); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); text-decoration: none; }
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--gold);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); text-decoration: none; }

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 64px 24px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}
.page-header-inner { max-width: 700px; margin: 0 auto; }
.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}
.page-header p {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}

/* ===== MAIN CONTENT ===== */
.page-content {
    padding: 64px 24px 80px;
    background: #fff;
}
.content-inner {
    max-width: 820px;
    margin: 0 auto;
}

/* ===== NOTICE BOX ===== */
.notice-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.35);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 40px;
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.6;
}
.notice-box i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.notice-box strong { color: var(--navy); }
.notice-box a { color: var(--gold); font-weight: 600; }

.notice-box-warning {
    background: rgba(239,68,68,0.05);
    border-color: rgba(239,68,68,0.4);
    border-left-color: #ef4444;
}
.notice-box-warning i { color: #ef4444; }

/* ===== TYPOGRAPHY ===== */
.content-inner h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-top: 44px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cream);
    display: flex;
    align-items: center;
    gap: 10px;
}
.content-inner h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}
.content-inner h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 24px;
    margin-bottom: 10px;
}
.content-inner p {
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.75;
    font-size: 0.95rem;
}
.content-inner ul {
    margin: 12px 0 20px 8px;
    padding-left: 0;
    list-style: none;
}
.content-inner ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--gray-700);
    font-size: 0.93rem;
    line-height: 1.65;
}
.content-inner ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}
.content-inner strong { color: var(--navy); font-weight: 700; }
.content-inner a { color: var(--gold); font-weight: 600; }

/* ===== CONTACT BLOCK ===== */
.contact-block {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin: 24px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-left: 4px solid var(--gold);
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 500;
}
.contact-item i { color: var(--gold); width: 18px; text-align: center; }
.contact-item a { color: var(--gold); font-weight: 700; }

/* ===== LEGAL NAV ===== */
.legal-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 52px;
    border-top: 3px solid var(--gold);
}
.legal-nav-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 4px;
}
.legal-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    text-decoration: none;
}
.legal-nav a:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.legal-nav a.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.legal-nav a i { font-size: 0.75rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    padding: 60px 24px 0;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-logo .logo-icon { background: rgba(201,168,76,0.15); }
.footer-logo .logo-name { color: #fff; }
.footer-logo .logo-tag { color: rgba(255,255,255,0.4); }
.footer-brand p {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    line-height: 1.65;
    margin-bottom: 16px;
}
.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
    text-decoration: none;
}
.footer-phone:hover { color: var(--gold-light); }
.footer-links-col h4 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    transition: color 0.2s;
    text-decoration: none;
}
.footer-links-col ul li a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .page-header { padding: 48px 20px; }
    .page-content { padding: 40px 20px 60px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .top-bar-inner span { display: none; }
    .contact-block { padding: 20px; }
    .legal-nav { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .page-header h1 { font-size: 1.8rem; }
    .content-inner h2 { font-size: 1.15rem; }
}