:root {
    --brand: #0f6fb8;
    --brand-dark: #083f75;
    --accent: #f7b731;
    --trust: #00b67a;
    --ink: #172033;
    --soft: #f5f7fb;
}

body {
    background: var(--soft);
    color: var(--ink);
}

a {
    color: var(--brand);
}

.site-logo {
    display: block;
    width: 190px;
    height: 42px;
    object-fit: contain;
}

.navbar-brand {
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    padding-block: .25rem;
}

.admin-login-logo {
    margin-inline: auto;
    height: 56px;
}

.btn-primary {
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand-dark);
    --bs-btn-hover-border-color: var(--brand-dark);
}

.btn-outline-primary {
    --bs-btn-color: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand);
    --bs-btn-hover-border-color: var(--brand);
}

.hero {
    background: linear-gradient(135deg, rgba(15, 118, 110, .95), rgba(23, 32, 51, .92)), url('../img/hero.svg');
    background-size: cover;
    color: #fff;
}

.top-call-strip {
    background: var(--brand-dark);
    color: #fff;
    padding: .65rem 0;
}

.top-call-strip a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.home-hero {
    min-height: 610px;
    padding: 70px 0 115px;
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .92), rgba(15, 111, 184, .52), rgba(23, 32, 51, .18)),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=80') center / cover;
    color: #fff;
}

.hero-copy {
    max-width: 670px;
    padding-bottom: 36px;
}

.hero-copy h1 {
    max-width: 720px;
    font-size: clamp(2.35rem, 5vw, 4.4rem);
    line-height: 1.02;
    font-weight: 800;
}

.hero-copy p:last-child {
    max-width: 610px;
    font-size: 1.18rem;
}

.search-panel,
.content-panel,
.flight-card {
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.home-search {
    padding: 24px;
    border: 0;
    box-shadow: 0 24px 60px rgba(8, 63, 117, .22);
}

.search-tabs,
.trip-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
}

.tab-pill {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: .45rem 1rem;
    border: 0;
    border-radius: 999px;
    background: #edf4fb;
    color: #42546c;
    font-weight: 700;
}

.tab-pill.active {
    background: var(--brand);
    color: #fff;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.agent-deal-intro {
    display: grid;
    gap: .2rem;
    padding: .85rem 1rem;
    border-left: 5px solid var(--accent);
    border-radius: 8px;
    background: #f7f9fc;
}

.agent-deal-intro strong {
    color: var(--brand-dark);
}

.agent-deal-intro span {
    color: #536176;
    font-size: .94rem;
}

.trip-toggle label {
    display: inline-flex;
    gap: .4rem;
    align-items: center;
    font-weight: 700;
    color: #344154;
}

.trust-ribbon {
    margin-top: -56px;
    position: relative;
    z-index: 2;
}

.trust-item {
    min-height: 84px;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    align-items: center;
    justify-content: center;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(23, 32, 51, .08);
    font-weight: 800;
}

.trust-item i {
    color: var(--brand);
    font-size: 1.35rem;
}

.confidence-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.confidence-panel div {
    padding: 1.25rem;
}

.confidence-panel div + div {
    border-left: 1px solid rgba(23, 32, 51, .08);
}

.confidence-panel span,
.confidence-panel strong {
    display: block;
}

.confidence-panel span {
    color: var(--brand);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.confidence-panel strong {
    margin-top: .35rem;
    color: var(--brand-dark);
}

.deal-slider-wrap {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 44px rgba(8, 63, 117, .14);
}

.home-deal-slide {
    min-height: 390px;
    display: flex;
    align-items: center;
    padding: clamp(2rem, 5vw, 4rem);
    color: #fff;
    background-position: center;
    background-size: cover;
}

.home-deal-slide > div {
    max-width: 610px;
}

.home-deal-slide span {
    display: inline-flex;
    margin-bottom: .75rem;
    padding: .38rem .7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--brand-dark);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-deal-slide h2 {
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.05;
    font-weight: 900;
}

.home-deal-slide p {
    max-width: 540px;
    font-size: 1.06rem;
}

.family-slide {
    background-image:
        linear-gradient(90deg, rgba(8, 63, 117, .93), rgba(15, 111, 184, .45), rgba(23, 32, 51, .1)),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80');
}

.business-slide {
    background-image:
        linear-gradient(90deg, rgba(8, 63, 117, .93), rgba(15, 111, 184, .45), rgba(23, 32, 51, .1)),
        url('https://images.unsplash.com/photo-1540339832862-474599807836?auto=format&fit=crop&w=1800&q=80');
}

.last-minute-slide {
    background-image:
        linear-gradient(90deg, rgba(8, 63, 117, .93), rgba(15, 111, 184, .45), rgba(23, 32, 51, .1)),
        url('https://images.unsplash.com/photo-1473625247510-8ceb1760943f?auto=format&fit=crop&w=1800&q=80');
}

.icon-service-card {
    height: 100%;
    padding: 1.3rem;
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.icon-service-card i,
.journey-steps i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: #e9f4ff;
    color: var(--brand-dark);
    font-size: 1.35rem;
}

.icon-service-card h3 {
    font-size: 1.08rem;
    font-weight: 900;
}

.icon-service-card p {
    margin-bottom: 0;
    color: #536176;
}

.home-inspiration {
    background: #fff;
    border-top: 1px solid rgba(23, 32, 51, .08);
    border-bottom: 1px solid rgba(23, 32, 51, .08);
}

.home-inspiration h2 {
    font-weight: 900;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.inspiration-tile {
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    background-position: center;
    background-size: cover;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .1);
}

.inspiration-tile span {
    width: 100%;
    padding: .8rem;
    border-radius: 8px;
    background: rgba(8, 63, 117, .9);
    font-weight: 900;
}

.dubai-tile {
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=800&q=80');
}

.newyork-tile {
    background-image: url('https://images.unsplash.com/photo-1485871981521-5b1fd3805eee?auto=format&fit=crop&w=800&q=80');
}

.orlando-tile {
    background-image: url('https://images.unsplash.com/photo-1566737236500-c8ac43014a67?auto=format&fit=crop&w=800&q=80');
}

.istanbul-tile {
    background-image: url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?auto=format&fit=crop&w=800&q=80');
}

.journey-photo {
    min-height: 430px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .28)),
        url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1200&q=80') center / cover;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .08);
}

.journey-steps {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.journey-steps div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border-radius: 8px;
    background: #f7f9fc;
}

.journey-steps i {
    margin-bottom: 0;
}

.journey-steps strong,
.journey-steps span {
    display: block;
}

.journey-steps strong {
    color: var(--brand-dark);
}

.deal-finder {
    background:
        linear-gradient(180deg, #fff, #f5f7fb);
    border-top: 1px solid rgba(23, 32, 51, .08);
    border-bottom: 1px solid rgba(23, 32, 51, .08);
}

.deal-type-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    background-position: center;
    background-size: cover;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .1);
}

.deal-type-card span {
    width: max-content;
    max-width: 100%;
    margin-bottom: .65rem;
    padding: .35rem .65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--brand-dark);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.deal-type-card strong {
    font-size: 1.25rem;
    line-height: 1.2;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .3);
}

.international-deal {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .05), rgba(8, 63, 117, .85)),
        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=900&q=80');
}

.oneway-deal {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .05), rgba(8, 63, 117, .85)),
        url('https://images.unsplash.com/photo-1529074963764-98f45c47344b?auto=format&fit=crop&w=900&q=80');
}

.business-type-deal {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .05), rgba(8, 63, 117, .85)),
        url('https://images.unsplash.com/photo-1540339832862-474599807836?auto=format&fit=crop&w=900&q=80');
}

.group-type-deal {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .05), rgba(8, 63, 117, .85)),
        url('https://images.unsplash.com/photo-1506869640319-fe1a24fd76dc?auto=format&fit=crop&w=900&q=80');
}

.student-type-deal {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .05), rgba(8, 63, 117, .85)),
        url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=900&q=80');
}

.lastminute-type-deal {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .05), rgba(8, 63, 117, .85)),
        url('https://images.unsplash.com/photo-1473625247510-8ceb1760943f?auto=format&fit=crop&w=900&q=80');
}

.tools-showcase,
.fare-alert-card {
    height: 100%;
    padding: 2rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.tools-showcase h2,
.fare-alert-card h2 {
    font-weight: 900;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.tools-grid a {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: .9rem;
    align-items: start;
    padding: 1rem;
    border-radius: 8px;
    background: #f7f9fc;
    color: var(--ink);
    text-decoration: none;
}

.tools-grid i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e9f4ff;
    color: var(--brand-dark);
    font-size: 1.2rem;
}

.tools-grid strong,
.tools-grid span {
    display: block;
}

.tools-grid strong {
    color: var(--brand-dark);
}

.tools-grid span {
    color: #536176;
}

.fare-alert-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(8, 63, 117, .12), rgba(8, 63, 117, .92)),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=900&q=80') center / cover;
}

.fare-alert-card span {
    width: max-content;
    max-width: 100%;
    margin-bottom: .65rem;
    padding: .35rem .65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--brand-dark);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.fare-alert-card p {
    color: rgba(255, 255, 255, .88);
}

.enhanced-airlines span {
    gap: .45rem;
}

.tools-hero {
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .94), rgba(15, 111, 184, .62)),
        url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.baggage-hero {
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .94), rgba(15, 111, 184, .62)),
        url('https://images.unsplash.com/photo-1553531889-e6cf4d692b1b?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.group-hero {
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .94), rgba(15, 111, 184, .62)),
        url('https://images.unsplash.com/photo-1506869640319-fe1a24fd76dc?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.how-photo-main {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .3)),
        url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1200&q=80');
}

.baggage-photo-main {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .3)),
        url('https://images.unsplash.com/photo-1553531889-e6cf4d692b1b?auto=format&fit=crop&w=1200&q=80');
}

.group-photo-main {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .3)),
        url('https://images.unsplash.com/photo-1506869640319-fe1a24fd76dc?auto=format&fit=crop&w=1200&q=80');
}

.tool-steps {
    display: grid;
    gap: 1rem;
}

.tool-steps div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: #f7f9fc;
}

.tool-steps i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e9f4ff;
    color: var(--brand-dark);
    font-size: 1.2rem;
}

.tool-steps strong,
.tool-steps span {
    display: block;
}

.tool-steps strong {
    color: var(--brand-dark);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 1.35rem;
}

.section-heading h2,
.why-band h2 {
    font-weight: 800;
}

.route-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.route-skyline {
    min-height: 130px;
    background:
        linear-gradient(180deg, rgba(8, 63, 117, .15), rgba(8, 63, 117, .55)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80') center / cover;
}

.route-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.why-band {
    background: #fff;
    border-top: 1px solid rgba(23, 32, 51, .08);
    border-bottom: 1px solid rgba(23, 32, 51, .08);
}

.benefit-box {
    min-height: 86px;
    display: grid;
    align-items: center;
    padding: 1rem 1.2rem;
    border-left: 5px solid var(--accent);
    background: #f7f9fc;
    border-radius: 8px;
    font-weight: 800;
}

.trustpilot-summary,
.review-grid {
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.trustpilot-summary {
    overflow: hidden;
    padding: 0;
}

.trustpilot-word {
    color: var(--trust);
    font-size: 1.55rem;
    font-weight: 900;
}

.trust-badge {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 1.75rem 2rem 1.45rem;
    background: #fff;
}

.trust-score-block {
    min-width: 110px;
}

.trust-score {
    color: #161616;
    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
}

.trust-score-block strong,
.trust-score-block p {
    display: block;
}

.trust-score-block strong {
    margin-top: .35rem;
    font-size: .95rem;
    color: var(--ink);
}

.trust-score-block p {
    margin: .45rem 0 0;
    color: #3d4655;
    font-size: .82rem;
}

.trustpilot-stars {
    display: flex;
    gap: 2px;
    margin-top: .4rem;
}

.trustpilot-stars span {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    background: var(--trust);
    color: #fff;
    font-size: .75rem;
    line-height: 1;
}

.rating-breakdown {
    display: grid;
    flex: 1;
    gap: .65rem;
    padding-top: .15rem;
}

.rating-breakdown > div {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: .8rem;
    align-items: center;
    color: #161616;
    font-size: .9rem;
}

.rating-bar {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #d8d8d8;
}

.rating-bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--trust);
}

.rating-bar.low i {
    background: #c92127;
}

.trust-score-link {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid rgba(23, 32, 51, .16);
    background: #f7f7f7;
}

.trust-score-link a {
    color: #333;
    text-decoration: underline;
}

.trustpilot-summary > p,
.trustpilot-summary > .btn {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.trustpilot-summary > .btn {
    margin-bottom: 1.5rem;
}

.rating-stars {
    color: var(--trust);
    font-size: 1.5rem;
    letter-spacing: 0;
    margin: .5rem 0;
}

.small-stars {
    font-size: 1.05rem;
    margin: 0 0 .65rem;
}

.review-score {
    margin: 1rem 0 1.25rem;
    padding: .9rem;
    background: #f3fbf8;
    border: 1px solid rgba(0, 182, 122, .2);
    border-radius: 8px;
}

.review-score strong,
.review-score span {
    display: block;
}

.review-score strong {
    font-size: 1.5rem;
    color: var(--ink);
}

.review-score span {
    color: #5d6a7c;
    font-size: .92rem;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.review-card {
    min-height: 230px;
    padding: 1.1rem;
    background: #f8fafc;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
}

.review-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
}

.review-card p {
    color: #536176;
}

.review-card span {
    color: var(--trust);
    font-size: .82rem;
    font-weight: 800;
}

.airline-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    justify-content: center;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
}

.airline-strip span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: .55rem 1rem;
    background: #f3f6fa;
    border-radius: 999px;
    color: #344154;
    font-weight: 800;
}

.about-hero {
    padding: 76px 0 112px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .94), rgba(15, 111, 184, .68)),
        url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.about-hero h1 {
    font-size: clamp(2.35rem, 5vw, 4.1rem);
    line-height: 1.04;
    font-weight: 900;
}

.about-hero p:last-child {
    max-width: 660px;
    font-size: 1.15rem;
}

.about-call-box {
    padding: 1.4rem;
    background: rgba(255, 255, 255, .95);
    color: var(--ink);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(8, 63, 117, .22);
}

.about-call-box span,
.about-call-box small {
    display: block;
}

.about-call-box a {
    display: block;
    margin: .35rem 0;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--brand-dark);
    text-decoration: none;
}

.about-trust-row {
    margin-top: -44px;
    position: relative;
    z-index: 2;
}

.about-photo {
    min-height: 430px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(8, 63, 117, .05), rgba(8, 63, 117, .38)),
        url('https://images.unsplash.com/photo-1522199710521-72d69614c702?auto=format&fit=crop&w=1200&q=80') center / cover;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.service-card {
    height: 100%;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.service-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: #e9f4ff;
    color: var(--brand-dark);
    font-weight: 900;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 900;
}

.service-card p {
    margin-bottom: 0;
    color: #5d6a7c;
}

.stats-band {
    color: #fff;
    background: var(--brand-dark);
}

.stats-band strong,
.stats-band span {
    display: block;
}

.stats-band strong {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    font-weight: 900;
}

.stats-band span {
    margin-top: .45rem;
    color: rgba(255, 255, 255, .78);
}

.office-photo {
    min-height: 260px;
    margin-top: 1.25rem;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(8, 63, 117, .08), rgba(8, 63, 117, .42)),
        url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=1200&q=80') center / cover;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.office-card {
    min-height: 210px;
    padding: 1.2rem;
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.office-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: .9rem;
    border-radius: 8px;
    background: #e9f4ff;
    color: var(--brand-dark);
    font-weight: 900;
}

.office-card h3 {
    font-size: 1.08rem;
    font-weight: 900;
}

.office-card p {
    color: #5d6a7c;
}

.office-card p:last-child {
    margin-bottom: 0;
}

.value-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.value-list div {
    display: grid;
    gap: .15rem;
    padding-left: 1rem;
    border-left: 4px solid var(--accent);
}

.value-list strong {
    color: var(--brand-dark);
}

.value-list span {
    color: #5d6a7c;
}

.contact-lines {
    display: grid;
    gap: .75rem;
    margin-top: 1.25rem;
}

.contact-lines a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: .7rem .9rem;
    border-radius: 8px;
    background: #f3f6fa;
    color: var(--brand-dark);
    font-weight: 800;
    text-decoration: none;
}

.legal-hero {
    padding: 64px 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .96), rgba(15, 111, 184, .75)),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.legal-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
}

.legal-hero p:last-child {
    max-width: 760px;
    font-size: 1.1rem;
}

.legal-sidebar {
    position: sticky;
    top: 92px;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.legal-sidebar ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: #5d6a7c;
}

.legal-sidebar li + li {
    margin-top: .5rem;
}

.legal-content h2 {
    margin-top: 1.6rem;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--brand-dark);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #536176;
}

.page-hero {
    padding: 74px 0 96px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .94), rgba(15, 111, 184, .68)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.page-hero h1 {
    max-width: 820px;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.04;
    font-weight: 900;
}

.page-hero p:last-child {
    max-width: 720px;
    font-size: 1.1rem;
}

.destination-hero {
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .94), rgba(15, 111, 184, .62)),
        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.destination-dubai-hero {
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .94), rgba(15, 111, 184, .54)),
        url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.destination-new-york-hero {
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .94), rgba(15, 111, 184, .54)),
        url('https://images.unsplash.com/photo-1485871981521-5b1fd3805eee?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.destination-orlando-hero {
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .94), rgba(15, 111, 184, .54)),
        url('https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.destination-istanbul-hero {
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .94), rgba(15, 111, 184, .54)),
        url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.tips-hero {
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .94), rgba(15, 111, 184, .62)),
        url('https://images.unsplash.com/photo-1473625247510-8ceb1760943f?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.destination-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.destination-image {
    min-height: 156px;
    background-position: center;
    background-size: cover;
}

.destination-meta {
    display: block;
    color: var(--brand);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.destination-card h2 {
    font-weight: 900;
}

.destination-card p,
.article-layout p {
    color: #536176;
}

.article-layout {
    padding: 2rem;
}

.article-photo,
.side-photo,
.feature-story-image {
    min-height: 280px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    background-position: center;
    background-size: cover;
}

.side-photo {
    min-height: 190px;
    margin-bottom: 0;
}

.feature-story {
    height: 100%;
    overflow: hidden;
}

.feature-story-image {
    min-height: 260px;
    margin-bottom: 0;
    border-radius: 0;
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .32)),
        url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1200&q=80');
}

.dubai-photo-main {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .3)),
        url('https://images.unsplash.com/photo-1518684079-3c830dcef090?auto=format&fit=crop&w=1200&q=80');
}

.dubai-photo-side {
    background-image: url('https://images.unsplash.com/photo-1580674684081-7617fbf3d745?auto=format&fit=crop&w=700&q=80');
}

.new-york-photo-main {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .3)),
        url('https://images.unsplash.com/photo-1496588152823-86ff7695e68f?auto=format&fit=crop&w=1200&q=80');
}

.new-york-photo-side {
    background-image: url('https://images.unsplash.com/photo-1534430480872-3498386e7856?auto=format&fit=crop&w=700&q=80');
}

.orlando-photo-main {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .3)),
        url('https://images.unsplash.com/photo-1566737236500-c8ac43014a67?auto=format&fit=crop&w=1200&q=80');
}

.orlando-photo-side {
    background-image: url('https://images.unsplash.com/photo-1533929736458-ca588d08c8be?auto=format&fit=crop&w=700&q=80');
}

.istanbul-photo-main {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .3)),
        url('https://images.unsplash.com/photo-1541432901042-2d8bd64b4a9b?auto=format&fit=crop&w=1200&q=80');
}

.istanbul-photo-side {
    background-image: url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?auto=format&fit=crop&w=700&q=80');
}

.tips-photo-main {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .3)),
        url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?auto=format&fit=crop&w=1200&q=80');
}

.article-layout h2 {
    margin-top: 1.5rem;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--brand-dark);
}

.article-layout h2:first-child {
    margin-top: 0;
}

.info-list {
    display: grid;
    gap: .75rem;
    margin-bottom: 0;
    padding-left: 1.1rem;
    color: #536176;
}

.info-list.compact {
    gap: .55rem;
}

.location-grid,
.guide-checklist {
    display: grid;
    gap: 1rem;
}

.location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-grid div,
.guide-checklist span {
    padding: 1rem;
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    background: #f7f9fc;
}

.location-grid strong,
.location-grid span {
    display: block;
}

.location-grid strong {
    color: var(--brand-dark);
}

.location-grid span {
    margin-top: .25rem;
    color: #536176;
    font-size: .94rem;
}

.guide-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-checklist span {
    font-weight: 800;
    color: var(--brand-dark);
}

.sticky-info {
    position: sticky;
    top: 92px;
}

.cta-band {
    color: #fff;
    background: var(--brand-dark);
}

.cta-band h2 {
    font-weight: 900;
}

.promo-hero,
.deal-detail-hero {
    padding: 82px 0 112px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .95), rgba(15, 111, 184, .58), rgba(23, 32, 51, .18)),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.promo-hero-inner {
    max-width: 780px;
}

.promo-hero h1,
.deal-detail-hero h1 {
    max-width: 880px;
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    line-height: 1.04;
    font-weight: 900;
}

.promo-hero p:last-of-type,
.deal-detail-hero p:last-of-type {
    max-width: 720px;
    font-size: 1.12rem;
}

.promo-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.promo-card-image {
    min-height: 178px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: .85rem;
    background-position: center;
    background-size: cover;
}

.promo-card-image span {
    padding: .35rem .65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--brand-dark);
    font-size: .76rem;
    font-weight: 900;
}

.promo-card h2 {
    font-weight: 900;
}

.promo-card p {
    color: #536176;
}

.promo-card strong {
    display: block;
    color: var(--brand-dark);
}

.promo-strip {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: #fff;
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.promo-strip h2 {
    font-weight: 900;
}

.promo-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.promo-steps span,
.deal-price-box {
    padding: 1rem;
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    background: #f7f9fc;
    color: var(--brand-dark);
    font-weight: 900;
}

.family-deal-hero {
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .95), rgba(15, 111, 184, .52)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.business-deal-hero {
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .95), rgba(15, 111, 184, .52)),
        url('https://images.unsplash.com/photo-1540339832862-474599807836?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.last-minute-hero {
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .95), rgba(15, 111, 184, .52)),
        url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.student-deal-hero {
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .95), rgba(15, 111, 184, .52)),
        url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.family-deal-photo {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .3)),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80');
}

.business-deal-photo {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .3)),
        url('https://images.unsplash.com/photo-1542296332-2e4473faf563?auto=format&fit=crop&w=1200&q=80');
}

.last-minute-photo {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .3)),
        url('https://images.unsplash.com/photo-1473625247510-8ceb1760943f?auto=format&fit=crop&w=1200&q=80');
}

.student-deal-photo {
    background-image:
        linear-gradient(180deg, rgba(8, 63, 117, .04), rgba(8, 63, 117, .3)),
        url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1200&q=80');
}

.site-footer {
    color: #dbeafe;
    background: #062f59;
}

.footer-cta {
    padding: 2rem 0;
    background:
        linear-gradient(90deg, rgba(8, 63, 117, .96), rgba(15, 111, 184, .8)),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80') center / cover;
}

.footer-cta h2 {
    color: #fff;
    font-weight: 900;
}

.footer-main {
    padding: 3rem 0 1.25rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: .5rem .75rem;
    border-radius: 8px;
    background: #fff;
}

.footer-logo img {
    width: 190px;
    height: 42px;
    object-fit: contain;
}

.footer-about {
    max-width: 390px;
    margin: 1rem 0;
    color: #b9cbe1;
}

.site-footer h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
}

.footer-links {
    display: grid;
    gap: .6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.footer-bottom a {
    color: #dbeafe;
    text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.footer-certificates,
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.footer-certificates a,
.footer-socials a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: .45rem;
    padding: .48rem .75rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: .86rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-certificates a {
    min-height: 48px;
    padding: .55rem .9rem .55rem .62rem;
    border: 0;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.footer-certificates a i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 1rem;
}

.footer-certificates a span {
    letter-spacing: .02em;
}

.cert-iata {
    background: linear-gradient(135deg, #0f6fb8, #21a4d8);
}

.cert-abta {
    background: linear-gradient(135deg, #7c3aed, #db2777);
}

.cert-atol {
    background: linear-gradient(135deg, #047857, #10b981);
}

.cert-esta {
    background: linear-gradient(135deg, #c2410c, #f59e0b);
}

.footer-socials a {
    width: 42px;
    justify-content: center;
    padding: 0;
    font-size: 1.1rem;
}

.footer-contact-card {
    display: grid;
    gap: .65rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.footer-contact-card span {
    display: inline-flex;
    gap: .55rem;
    align-items: center;
    color: #fff;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #b9cbe1;
    font-size: .86rem;
}

.flight-code {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #e7f6f4;
    color: var(--brand);
    display: grid;
    place-items: center;
    font-weight: 700;
}

.status-pill {
    border-radius: 999px;
    padding: .25rem .65rem;
    background: #eef2f7;
    color: #46556b;
    font-size: .8rem;
}

.form-label {
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .home-hero {
        min-height: auto;
        padding: 46px 0 88px;
    }

    .home-search {
        padding: 18px;
    }

    .trust-ribbon {
        margin-top: -40px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .office-grid {
        grid-template-columns: 1fr;
    }

    .trust-badge {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .home-deal-slide {
        min-height: 430px;
    }

    .confidence-panel,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .confidence-panel div + div {
        border-top: 1px solid rgba(23, 32, 51, .08);
        border-left: 0;
    }

    .inspiration-grid {
        grid-template-columns: 1fr;
    }

    .location-grid,
    .guide-checklist,
    .promo-strip,
    .promo-steps {
        grid-template-columns: 1fr;
    }

    .article-layout {
        padding: 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .review-grid {
        grid-template-columns: 1fr;
    }

    .office-grid {
        grid-template-columns: 1fr;
    }

    .inspiration-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .confidence-panel {
        grid-template-columns: 1fr;
    }

    .confidence-panel div + div {
        border-top: 1px solid rgba(23, 32, 51, .08);
        border-left: 0;
    }
}
