:root {
    --accent: #0f4c81;
    --ink: #111318;
    --muted: #616872;
    --soft: #f5f6f7;
    --white: #fff;
    --line: #e3e5e8;
    --dark: #12161d;
    --shadow: 0 24px 70px rgba(17, 19, 24, .13)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .22)
}

.compact-header {
    position: relative;
    background: var(--dark)
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -.02em
}
.brand img{
    width: 230px;
    height: auto;
    filter: brightness(0) invert(1);
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 650
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    font-weight: 800;
    transition: .25s ease
}

.nav-cta {
    padding: 12px 18px;
    background: #fff;
    color: var(--ink);
    border-radius: 10px;
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, .5);
    color: inherit;
    padding: 9px 12px
}

.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 780px;
    padding-top: 20px
}

.hero h1 {
    font-size: clamp(28px, 4vw, 60px);
    line-height: 1.02;
    letter-spacing: -.055em;
    margin: 18px 0 24px
}

.hero p {
    font-size: 19px;
    max-width: 700px;
    color: rgba(255, 255, 255, .86)
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 850;
    color: var(--accent)
}

.eyebrow.light {
    color: #fff
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
    justify-content: center;
}

.btn {
    min-height: 54px;
    padding: 0 26px
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    border-radius: 10px;
}

.btn-light {
    background: #fff;
    color: var(--ink);
    border-radius: 10px;
    

}

.btn-ghost {
    border-color: rgba(255, 255, 255, .65);
    color: #fff;
    font-size: 12px;
    border-radius: 10px;
}

.btn:hover,
.nav-cta:hover {
    transform: translateY(-2px)
}

.section {
    padding: 40px 0
}

.section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center
}

.section-head.left {
    text-align: left;
    margin-left: 0
}

.section-head.compact {
    max-width: 620px
}

.section-head h2,
.content-panel h2,
.visual-copy h2,
.editorial-copy h2,
.lux-title h2,
.faq-grid h2,
.final-cta h2,
.cta-lux h2 {
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.08;
    letter-spacing: -.045em;
    margin: 14px 0 20px
}

.section-head p,
.content-panel p,
.visual-copy p,
.editorial-copy p,
.lux-title p,
.faq-grid p {
    color: var(--muted);
    font-size: 18px
}

.soft {
    background: var(--soft)
}

.site-footer {
    background: #0d1015;
    color: #fff;
    padding: 70px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr .8fr;
    gap: 70px
}

.footer-grid h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.footer-grid a,
.footer-grid p {
    display: block;
    color: rgba(255, 255, 255, .68);
    margin: 9px 0
}

.footer-brand {
    color: #fff !important;
    margin-bottom: 16px !important
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 54px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .55);
    font-size: 13px
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 28px 0
}

.check-list li {
    padding: 11px 0 11px 30px;
    border-bottom: 1px solid var(--line);
    position: relative
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900
}

.text-cta {
    color: var(--accent);
    font-weight: 850
}

.legal-shell {
    padding: 40px 0;
    background: var(--soft)
}

.legal-card {

    background: #fff;
    padding: 40px;
    box-shadow: var(--shadow)
}

.legal-card h1 {
    font-size: 42px;
    letter-spacing: -.05em;
    margin: 10px 0
}

.legal-card section {
    padding: 22px 0;
    border-top: 1px solid var(--line)
}

.legal-card h2 {
    font-size: 18px
}

.legal-card p {
    color: var(--muted)
}

.text-link {
    font-weight: 750
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: .7s ease
}

.revealed {
    opacity: 1;
    transform: none
}

@media(max-width:800px) {
    .container {
        width: min(100% - 28px, 1180px)
    }

    .site-header {
        position: absolute
    }

    .nav-wrap {
        min-height: 72px
    }

    .menu-toggle {
        display: block
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 14px;
        right: 14px;
        background: #fff;
        color: var(--ink);
        padding: 22px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        box-shadow: var(--shadow)
    }

    .nav-links.open {
        display: flex
    }

    .hero {
        min-height: 720px
    }

    .hero h1 {
        font-size: 36px
    }

    .section {
        padding: 76px 0
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-bottom {
        flex-direction: column
    }

    .legal-card {
       padding: 20px 20px 0;
       margin-top: 50px;
    }

    .legal-card h1 {
        font-size: 28px
    }
}

.flight-hero {
    background-image: url('https://images.unsplash.com/photo-1724013341920-5b8500f004b6?q=80&w=1674&auto=format&fit=crop');
    background-position: center 42%
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: rgba(4, 19, 34, .62)
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    justify-content: center;

}

.hero-points span {
    border: 1px solid rgba(255, 255, 255, .35);
    padding: 9px 13px;
    font-size: 13px;
    border-radius: 10px;
}

.trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.trust-grid div {
    padding: 30px;
    border-right: 1px solid var(--line)
}

.trust-grid strong,
.trust-grid span {
    display: block
}

.trust-grid span {
    color: var(--muted);
    font-size: 14px;
    margin-top: 6px
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 82px
}

.image-frame {
    height: 500px
}

.content-panel {
    max-width: 500px
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 20px;
    min-height: 260px
}

.service-card span {
    font-weight: 900;
    color: var(--accent)
}

.service-card h3 {
    font-size: 20px;
    margin: 42px 0 12px
}

.service-card p {
    color: var(--muted)
}

.feature-band {
    background: var(--accent);
    color: #fff
}

.feature-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center
}

.feature-grid h2 {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -.045em
}

.feature-grid p {
    color: rgba(255, 255, 255, .8);
    font-size: 18px
}

.feature-image {
    height: 330px
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line)
}

.step {
    padding: 38px 28px;
    border-right: 1px solid var(--line)
}

.step b {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff
}

.step p {
    color: var(--muted)
}

.final-cta {
    background: var(--dark);
    color: #fff;
    padding: 78px 0
}

.final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.final-cta h2 {
    margin-bottom: 8px
}

.final-cta p {
    color: rgba(255, 255, 255, .65)
}

@media(max-width:900px) {

    .trust-grid,
    .card-grid,
    .steps {
        grid-template-columns: 1fr 1fr
    }

    .split-grid,
    .feature-grid {
        grid-template-columns: 1fr
    }

    .image-frame {
        height: 430px
    }
}

@media(max-width:600px) {

    .trust-grid,
    .card-grid,
    .steps {
        grid-template-columns: 1fr
    }

    .trust-grid div,
    .step {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .final-inner {
        align-items: flex-start;
        flex-direction: column
    }
}
.service-card{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.service-card p{
    margin-bottom:24px;
}

.card-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:auto;
    padding:12px 28px;
    background:#0F4C81;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    border-radius:8px;
    transition:.3s ease;
}

.card-btn:hover{
    background:#08365d;
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(15,76,129,.25);
}
.step{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    height:100%;
}

.step p{
    margin-bottom:24px;
}

.step-btn{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 26px;
    background:#0F4C81;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    border-radius:8px;
    transition:all .3s ease;
}

.step-btn:hover{
    background:#08365d;
    transform:translateY(-3px);
    box-shadow:0 12px 24px rgba(15,76,129,.25);
}


/* ===========================
   FIXED CALL BUTTON
=========================== */

.call-now-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    height: 60px;
    padding: 0 22px;

    background: #0A375F;
    color: #fff;
    border-radius: 10px;

    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .2px;

    transition: .3s ease;
    overflow: hidden;
}

.call-now-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    animation: callPulse 1.8s infinite;
}

.call-now-btn span {
    white-space: nowrap;
}

.call-now-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-4px);
}

.call-now-btn:active {
    transform: scale(.96);
}

/* Mobile */

@media (max-width:768px){

    .call-now-btn{
        right:16px;
        bottom:16px;

        height:54px;
        padding:0 18px;

        font-size:15px;
    }

    .call-now-btn svg{
        width:20px;
        height:20px;
    }

}

@media (max-width:480px){

    .call-now-btn{
        right:14px;
        bottom:14px;

        width:56px;
        height:56px;
        padding:0;
        justify-content:center;
        border-radius:50%;
    }

    .call-now-btn span{
        display:none;
    }

    .call-now-btn svg{
        width:24px;
        height:24px;
    }

}