/* ==========================================================================
   Travel Away With Us — Design Tokens
   ========================================================================== */
:root {
    --primary: #4682b4;       /* Steel Blue — brand primary */
    --primary-dark: #386a94;  /* Deeper steel blue for hovers/gradients */
    --navy: #1c3652;          /* Deep navy — footer & high-contrast text */
    --bg-light: #f3f8fb;      /* Brand light background */
    --gold: #d9a441;          /* Accent gold, pulled from the logo mark */
    --gold-dark: #bb8a30;     /* Gold hover/active */
    --text: #33475b;          /* Body copy */
    --muted: #6b8098;         /* Secondary/muted text */
    --white: #ffffff;

    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 26px;

    --shadow-soft: 0 10px 30px rgba(28, 54, 82, 0.08);
    --shadow-card: 0 14px 40px rgba(28, 54, 82, 0.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, .display-font {
    font-family: var(--font-display);
    color: var(--navy);
    font-weight: 700;
}

.eyebrow {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
}

.section-pad { padding: 90px 0; }
@media (max-width: 767.98px) { .section-pad { padding: 56px 0; } }

.text-primary-brand { color: var(--primary) !important; }
.bg-brand-light { background: var(--bg-light); }

/* Buttons */
.btn-gold {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--navy);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.7rem 1.6rem;
    transition: all 0.25s ease;
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-brand {
    border: 1.5px solid var(--white);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    background: transparent;
    transition: all 0.25s ease;
}
.btn-outline-brand:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.btn-outline-navy {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    background: transparent;
    transition: all 0.25s ease;
}
.btn-outline-navy:hover { background: var(--primary); color: var(--white); }

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.navbar-brand-logo { height: 46px; width: auto; }

.site-header {
    background: var(--white);
    box-shadow: 0 2px 18px rgba(28, 54, 82, 0.07);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-nav .nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--navy);
    margin: 0 0.5rem;
    position: relative;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover { color: var(--primary); }

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    right: 0; bottom: -4px;
    height: 3px;
    border-radius: 3px;
    background: var(--gold);
}

.brand-wordmark { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1.1; }
.brand-wordmark .b1 { color: var(--primary); }
.brand-wordmark .b2 { color: var(--gold); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 60%, var(--primary-dark) 100%);
    overflow: hidden;
    padding: 80px 0 130px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}
.hero::before { width: 420px; height: 420px; top: -160px; right: -120px; }
.hero::after { width: 260px; height: 260px; bottom: -120px; left: -80px; background: rgba(217,164,65,0.14); }

.hero-cloud-path {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    pointer-events: none;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}
.hero p.lead-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.08rem;
    max-width: 480px;
}
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.hero-stats .stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}
.hero-stats .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* Decorative flight path (fixed pixel box so the SVG viewBox and the
   offset-path coordinate space always match, regardless of viewport) */
.hero-cloud-path {
    position: absolute;
    top: 10px;
    right: -10px;
    width: 560px;
    height: 380px;
    opacity: 0.55;
    pointer-events: none;
}
@media (max-width: 991.98px) { .hero-cloud-path { display: none; } }

.plane-marker {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.5rem;
    color: var(--gold);
    offset-path: path('M 30 330 C 140 250, 250 290, 330 190 S 500 70, 540 30');
    offset-rotate: 0deg;
    offset-distance: 0%;
    animation: fly-path 3.6s cubic-bezier(.45,.05,.55,.95) 0.4s 1 forwards;
}
@keyframes fly-path {
    0%   { offset-distance: 0%;   opacity: 0; }
    12%  { opacity: 1; }
    100% { offset-distance: 100%; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .plane-marker { animation: none; offset-distance: 100%; opacity: 1; }
}

/* Static hero visual — boarding-pass style ticket + floating trust badges */
.ticket-visual {
    position: relative;
    padding: 3rem 1rem;
    margin-top: -20px;
}

.boarding-pass {
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    padding: 1.7rem 1.8rem 1.5rem;
    max-width: 400px;
    margin: 0 auto;
    transform: rotate(-3deg);
    position: relative;
    z-index: 3;
}

.bp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.bp-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}
.bp-brand img { height: 22px; width: auto; }
.bp-header > .bi-airplane-fill { color: var(--gold); font-size: 1.15rem; }

.bp-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}
.bp-city { display: flex; flex-direction: column; }
.bp-city .code {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--navy);
    line-height: 1;
}
.bp-city .name { font-size: 0.76rem; color: var(--muted); margin-top: 3px; }
.bp-route-line {
    flex: 1;
    position: relative;
    height: 2px;
    background-image: repeating-linear-gradient(to right, var(--primary) 0 8px, transparent 8px 14px);
    margin: 0 14px;
}
.bp-route-line i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    background: var(--white);
    color: var(--primary);
    font-size: 1.15rem;
    padding: 0 6px;
}

.bp-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    padding-top: 1.2rem;
    border-top: 1.5px dashed #e3edf4;
    margin-bottom: 1.2rem;
}
.bp-details > div { display: flex; flex-direction: column; min-width: 70px; }
.bp-details .lbl {
    font-size: 0.63rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 2px;
}
.bp-details .val { font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; color: var(--navy); }

.bp-stub {
    border-top: 1.5px dashed #e3edf4;
    padding-top: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.bp-barcode {
    flex: 1;
    height: 32px;
    background-image: repeating-linear-gradient(
        to right,
        var(--navy) 0 2px, transparent 2px 5px,
        var(--navy) 5px 6px, transparent 6px 11px
    );
    opacity: 0.85;
}
.bp-ref { font-size: 0.6rem; letter-spacing: 0.04em; color: var(--muted); white-space: nowrap; }

.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: 50px;
    padding: 0.55rem 1.1rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--navy);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
    white-space: nowrap;
}
.floating-badge i { color: var(--gold); }
.floating-badge.badge-top { top: 6px; left: 4%; }
.floating-badge.badge-bottom { bottom: 6px; right: 2%; }

@media (max-width: 767.98px) {
    .ticket-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
        margin-top: 0;
    }
    .floating-badge { position: static; white-space: normal; text-align: center; }
    .boarding-pass { transform: none; max-width: 100%; }
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.6rem;
    height: 100%;
    border: 1px solid #eaf1f6;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.why-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
}
.why-icon.gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }

/* ==========================================================================
   Flash Deals
   ========================================================================== */
.deals-section {
    background: linear-gradient(180deg, var(--navy) 0%, #234a6e 100%);
    position: relative;
}
.deals-section .section-title-light { color: var(--white); }
.deals-section .eyebrow { color: var(--gold); }
.deals-section .subtext { color: rgba(255,255,255,0.7); }

.countdown-wrap {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.countdown-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.9rem;
    min-width: 68px;
    text-align: center;
}
.countdown-box .num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    display: block;
}
.countdown-box .lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.6);
}

.deal-reason {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.deal-reason-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(217, 164, 65, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.deal-reason h5 {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}
.deal-reason p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}

.deal-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-card);
    position: relative;
}
.deal-card .deal-banner {
    background: linear-gradient(120deg, var(--primary), var(--primary-dark));
    padding: 1.4rem 1.4rem 2rem;
    color: var(--white);
    position: relative;
}
.deal-card .deal-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.deal-card .route {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
}
.deal-card .route .bi { color: var(--gold); }
.deal-card .deal-body { padding: 1.3rem 1.4rem 1.5rem; }
.deal-card .price-old {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 0.85rem;
}
.deal-card .price-new {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--primary);
}
.deal-card .save-pill {
    background: #fdf1de;
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
}

/* ==========================================================================
   Services
   ========================================================================== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.7rem;
    height: 100%;
    border: 1px solid #eaf1f6;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: transparent;
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
}
.service-card ul { list-style: none; padding: 0; margin: 1rem 0 1.4rem; }
.service-card ul li {
    font-size: 0.9rem;
    color: var(--muted);
    padding-left: 1.4rem;
    position: relative;
    margin-bottom: 0.45rem;
}
/*.service-card ul li::before {*/
/*    content: "\F633";*/
/*    font-family: "bootstrap-icons";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    color: var(--gold);*/
/*    font-size: 0.8rem;*/
/*    top: 2px;*/
/*}*/
.service-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-link:hover { color: var(--gold-dark); gap: 10px; }
.service-link .bi { transition: gap 0.2s ease; }

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
    background: linear-gradient(120deg, var(--primary) 0%, var(--navy) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin: 0 auto;
    color: var(--white);
    text-align: center;
}
.cta-banner h2 { color: var(--white); }
@media (max-width: 767.98px) { .cta-banner { padding: 2.2rem 1.4rem; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 0;
}
.site-footer h6 {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}
.site-footer a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.65rem; font-size: 0.92rem; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2.5rem;
    padding: 1.4rem 0;
    font-size: 0.85rem;
    text-align: center;
}
.footer-contact-item {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
}
.footer-contact-item .bi { color: var(--gold); margin-top: 3px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}
