/* Section-specific fonts for Trust boxes only */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Inter:wght@500;600&display=swap');

:root {
    --primary-color: #0d47a1; /* brand blue */
    --secondary-color: #1976d2; /* lighter blue */
    --accent-color: #ff6f00; /* orange */
    --text-light: #fff;
    --text-dark: #333;
    --muted: #6b7b94;
    --card-radius: 16px;
    --shadow: 0 6px 18px rgba(13,71,161,.08);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial,sans-serif;
    background: #f9f9f9;
    color: var(--text-dark);
}

/* ================= HEADER (unchanged) ================= */
.site-header {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1rem;
}

.logo img {
    height: 44px;
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    font-weight: 600;
}

    .nav-links a {
        color: var(--primary-color);
        text-decoration: none;
        font-size: .95rem;
    }

        .nav-links a:hover {
            color: var(--accent-color);
        }

.header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.support-tag {
    font-size: .85rem;
    font-weight: 700;
    color: var(--primary-color);
}

    .support-tag span {
        color: red;
    }

.phone-cta {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--accent-color);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e5e9f2;
    background: #fff;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 860px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 64px;
        flex-direction: column;
        background: #ffffff;
        border: 1px solid #e8eef7;
        border-radius: 12px;
        box-shadow: 0 16px 32px rgba(0,0,0,.12);
        padding: .75rem;
        display: none;
        gap: .75rem;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links a {
            padding: .5rem .75rem;
            border-radius: 8px;
        }

            .nav-links a:active {
                background: #f3f7ff;
            }

    .header-right {
        margin-left: auto;
        gap: .5rem;
    }

    .support-tag {
        display: none;
    }
    /* keep phone CTA primary on small */
    .logo img {
        height: 38px;
    }
}

/* ================= LAYOUT HELPERS ================= */
.section-container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
}

.section-header {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 1.5rem;
}

/* ================= TRUST & BENEFITS (4 boxes) — FIXED & ENHANCED ================= */
.trust-section {
    background: linear-gradient(180deg,#f7faff 0%, #f3f7ff 100%);
}

.trust-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.25rem 1rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.25rem;
}

.trust-item {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 1.25rem;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: var(--shadow);
}

    .trust-item::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(13,71,161,.45), rgba(255,111,0,.45));
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .trust-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 28px rgba(13,71,161,.14);
    }

.trust-icon {
    position: relative;
    width: 68px;
    height: 68px;
    margin: 0 auto .6rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient( circle at 35% 30%, #1a4e8a, #0d274a );
    box-shadow: 0 8px 18px rgba(13,71,161,.25);
    overflow: hidden;
}

    .trust-icon svg {
        width: 30px;
        height: 30px;
        stroke: #ffffff;
        z-index: 2;
    }

.trust-title {
    font-family: 'Poppins',sans-serif;
    color: #0f2f5b;
    font-weight: 700;
    font-size: 1.02rem;
    margin: .1rem 0 .25rem;
}

.trust-sub {
    font-family: 'Inter',sans-serif;
    color: #244061;
    opacity: .9;
    font-size: .92rem;
    font-weight: 500;
    margin: 0;
}

/* Sparkles */
.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    top: 15%;
    left: 15%;
    opacity: 0;
    animation: sparkle-a var(--dur,3s) infinite ease-in-out var(--delay,0s);
}

.sparkle-b {
    animation-name: sparkle-b !important;
}

.sparkle-c {
    animation-name: sparkle-c !important;
}

.trust-icon:hover .sparkle {
    opacity: 1;
}

@keyframes sparkle-a {
    0% {
        transform: scale(0.5) translate(0,0);
        opacity: 0;
    }

    20% {
        transform: scale(1.2) translate(40px,10px);
        opacity: 1;
    }

    40% {
        transform: scale(0.6) translate(20px,40px);
        opacity: 0.6;
    }

    60% {
        transform: scale(1) translate(-10px,20px);
        opacity: 1;
    }

    80% {
        transform: scale(0.4) translate(-30px,-10px);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.5) translate(0,0);
        opacity: 0;
    }
}

@keyframes sparkle-b {
    0% {
        transform: scale(0.4) translate(0,0);
        opacity: 0;
    }

    25% {
        transform: scale(1.1) translate(-25px,15px);
        opacity: 1;
    }

    50% {
        transform: scale(0.7) translate(10px,35px);
        opacity: 0.6;
    }

    75% {
        transform: scale(1) translate(30px,-15px);
        opacity: 1;
    }

    100% {
        transform: scale(0.4) translate(0,0);
        opacity: 0;
    }
}

@keyframes sparkle-c {
    0% {
        transform: scale(0.6) translate(0,0);
        opacity: 0;
    }

    30% {
        transform: scale(1.2) translate(25px,-20px);
        opacity: 1;
    }

    55% {
        transform: scale(0.6) translate(-15px,25px);
        opacity: 0.6;
    }

    85% {
        transform: scale(1) translate(20px,10px);
        opacity: 1;
    }

    100% {
        transform: scale(0.6) translate(0,0);
        opacity: 0;
    }
}

@media(max-width:992px) {
    .trust-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= START PACKING (6 cards) — RESTORED ================= */
.deals-eyebrow {
    text-align: center;
    font-size: .8rem;
    font-weight: 700;
    color: #8a97ad;
    letter-spacing: 2px;
    margin-bottom: .5rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}

.card {
    background: #000;
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 240px;
    padding: 1.5rem;
}

    .card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,rgba(0,0,0,.9),rgba(0,0,0,.3));
        z-index: 0;
    }

.deal-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .35rem .75rem;
    border-radius: 999px;
    z-index: 2;
}

.deal-blue {
    background: #0052cc;
}

.deal-green {
    background: #2e8b57;
}

.deal-orange {
    background: #ff6f00;
}

.deal-red {
    background: #d32f2f;
}

.card h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    z-index: 1;
    color: #fff !important;
}

.card p {
    margin: .25rem 0 .75rem;
    font-size: .9rem;
    z-index: 1;
}

.tag-group {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .25rem;
    z-index: 1;
}

.tag {
    background: #fff;
    color: #000;
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .6rem;
    border-radius: 999px;
}

.discount-btn {
    align-self: flex-end;
    background: var(--accent-color);
    color: #fff;
    padding: .45rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    z-index: 1;
    box-shadow: 0 6px 16px rgba(255,111,0,.35);
}

    .discount-btn:hover {
        background: #e65c00;
    }

@media(max-width:992px) {
    .cards-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= NEWSLETTER — RESTORED ================= */
.newsletter-section {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #133d7a 100%);
    color: var(--text-light);
    padding: 3rem 1rem;
    text-align: center;
}

    .newsletter-section::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center,rgba(255,255,255,.08) 0%,transparent 70%);
        animation: pulse 12s linear infinite;
    }

@keyframes pulse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.newsletter-wrap {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 .5rem;
}

.newsletter-sub {
    margin: 0 0 1.5rem;
    opacity: .9;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
}

    .newsletter-form input {
        border: none;
        outline: none;
        padding: .75rem 1rem;
        border-radius: 8px;
        min-width: 220px;
        font-size: .95rem;
        flex: 1;
    }

.newsletter-btn {
    border: none;
    border-radius: 8px;
    background: var(--accent-color);
    color: var(--text-light);
    padding: .75rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .25s ease;
}

    .newsletter-btn:hover {
        background: #e65c00;
    }

/* ================= FOOTER — RESTORED ================= */
.site-footer {
    background: #0b2f57;
    color: var(--text-light);
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
    gap: 2rem;
}

.footer-title {
    color: #ff8a2a!important;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.footer-brand {
    font-weight: 700;
    margin: .35rem 0 .25rem;
}

.footer-text {
    margin: .35rem 0;
    opacity: .9;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer-list li {
        display: flex;
        align-items: center;
        gap: .6rem;
        margin: .45rem 0;
    }

    .footer-list a {
        color: #e6eefb;
        text-decoration: none;
        opacity: .9;
    }

        .footer-list a:hover {
            opacity: 1;
            text-decoration: underline;
        }

.chev {
    opacity: .6;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin: .5rem 0;
}

    .contact-line a {
        color: #e6eefb;
        text-decoration: none;
    }

        .contact-line a:hover {
            text-decoration: underline;
        }



.socials {
    display: flex;
    gap: .75rem;
    margin-top: .5rem;
}

    .socials a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        border: 1.5px solid rgba(255,255,255,.6);
        color: #e6eefb;
        text-decoration: none;
    }

        .socials a:hover {
            background: rgba(255,255,255,.08);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 1rem 0;
    color: #cfe0ff;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

    .bottom-row a {
        color: #cfe0ff;
        text-decoration: none;
    }

        .bottom-row a:hover {
            text-decoration: underline;
        }

@media(max-width:920px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:520px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= HERO FLIGHT SEARCH (new, sits below header) ================= */

.main_header_area {
    position: static;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 22;
    background-color: #fff !important;
}


.header_menu .navbar.navbar-default .nav.navbar-nav li a {
    color: var(--primary-color) !important;
    font-weight: 600!important;
    font-size: .95rem!important;
}

.header_menu .navbar.navbar-default .nav.navbar-nav li a:hover {
    color: var(--accent-color)!important;
}

.hs-hero {
    position: relative;
    min-height: 360px;
    background: #0b2f57;
    color: var(--text-light);
}

    .hs-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('https://images.unsplash.com/photo-1558981403-c5f9899a28bc?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
        filter: brightness(.7);
    }
    /* London bg */
    .hs-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(13,47,87,.25) 0%, rgba(13,47,87,.6) 60%, rgba(13,47,87,.75) 100%);
    }

.hs-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1rem;
}

.hs-card {
    backdrop-filter: blur(6px);
    background: rgba(5,21,40,.6);
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 14px 40px rgba(0,0,0,.25);
    border-radius: 18px;
    padding: 1.25rem;
}

.hs-head {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: #eaf2ff;
    font-weight: 800;
    letter-spacing: .3px;
    margin-bottom: .75rem;
}

    .hs-head svg {
        width: 18px;
        height: 18px;
    }

.hs-underline {
    height: 3px;
    width: 120px;
    background: #ff6f00;
    border-radius: 2px;
    margin: .35rem 0 1rem;
}

.hs-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hs-trip {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
    color: #fff;
    font-weight: 700;
}

.hs-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
}

    .hs-pill.active {
        background: #133d7a;
        border-color: #2a5fb8;
        box-shadow: inset 0 0 0 2px rgba(255,255,255,.06);
    }

.hs-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.4fr 1fr 1fr 1.4fr .9fr;
    gap: .75rem;
    margin-top: .5rem;
}

.hs-field {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
}

    .hs-field input, .hs-field select {
        border: none;
        outline: none;
        font: 600 0.95rem/1.2 system-ui,-apple-system,Segoe UI,Roboto,Arial;
        background: transparent;
        width: 100%;
        color: #1b2b45;
    }

.hs-icon {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    color: #0d47a1;
}

.hs-swap {
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6f00;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 16px rgba(255,111,0,.35);
}

.hs-btn {
    background: #ff2e2e;
    border: none;
    border-radius: 14px;
    color: #fff;
    font-weight: 800;
    padding: 0 1.2rem;
    min-height: 48px;
    box-shadow: 0 10px 24px rgba(255,46,46,.35);
}

    .hs-btn:hover {
        filter: brightness(.95);
    }

@media(max-width:1100px) {
    .hs-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .hs-btn {
        grid-column: span 2;
    }


}
@media (min-width: 786px) and (max-width:830px) {
    .header_menu .navbar.navbar-default .nav.navbar-nav {
        
        margin-left: inherit!important;
    }
}

@media(max-width:720px) {
    .header_menu .navbar.navbar-default .nav.navbar-nav {
        display: contents !important;
    }

    .hs-grid {
        grid-template-columns: 1fr;
    }

    .hs-swap {
        right: 10px;
        top: 10px;
        transform: none;
    }

    .hs-trip {
        width: 100%;
        justify-content: flex-start;
        margin: 0;
    }
}
