        :root {
            --blue: #0788e8;
            --blue2: #0067b8;
            --navy: #071827;
            --black: #000;
            --white: #fff;
            --text: #344357;
            --muted: #6b7a8d;
            --light: #f5f8fb;
            --line: #dce6ef;
            --shadow: 0 20px 55px rgba(7, 24, 39, .12)
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: "Segoe UI", system-ui, sans-serif;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden
        }

        h1 {
            font-size: 42px;
            line-height: 1.08;
            font-weight: 700;
            letter-spacing: -.035em
        }

        h2 {
            font-size: 36px;
            line-height: 1.18;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -.025em
        }

        h3 {
            color: var(--navy)
        }

        p,
        li,
        a,
        button,
        input,
        select,
        span {
            font-size: 16px
        }

        img {
            display: block;
            width: 100%
        }

        a {
            color: inherit
        }

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

        .section {
            padding: 86px 0
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 12px;
            color: var(--blue2);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .15em;
            text-transform: uppercase
        }

        .eyebrow:before {
            content: "";
            width: 25px;
            height: 2px;
            background: currentColor
        }

        .btn {
            min-height: 49px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 13px 22px;
            border: 0;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 750;
            cursor: pointer;
            transition: .25s
        }

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

        .btn-blue {
            background: var(--blue);
            color: #fff
        }

        .btn-dark {
            background: var(--navy);
            color: #fff
        }

        .btn-light {
            background: #fff;
            color: var(--navy)
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, .97);
            border-bottom: 1px solid rgba(255, 255, 255, .12)
        }

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

        .logo img {
            width: 305px
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 26px
        }

        .nav-links a {
            color: #e8f2fa;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700
        }

        .nav-links a:hover {
            color: #39aaf8
        }

        .nav-call {
            padding: 11px 17px;
            border-radius: 7px;
            background: var(--blue)
        }

        .menu-btn {
            display: none;
            border: 0;
            background: transparent;
            color: #fff;
            font-size: 27px
        }

        .hero {
            padding: 72px 0 86px;
            color: #fff;
            background: linear-gradient(90deg, rgba(0, 0, 0, .97), rgba(7, 24, 39, .88), rgba(7, 136, 232, .28)), url("https://images.unsplash.com/photo-1556598395-de57c1428e44?q=80&w=1684&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.04fr .96fr;
            gap: 58px;
            align-items: center
        }

        .hero h1 span {
            color: #2da6f8;
            font-size: 42px;
        }

        .hero-copy>p {
            max-width: 650px;
            margin: 20px 0 24px;
            color: #cbd9e5
        }

        .hero-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 20px;
            margin-bottom: 28px;
            list-style: none
        }

        .hero-list li {
            position: relative;
            padding-left: 20px;
            font-weight: 500;
            font-size: 14px;
        }

        .hero-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #35aaf8
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px
        }

        .lead-card {
            padding: 30px;
            border-radius: 18px;
            background: #fff;
            color: var(--text);
            box-shadow: 0 28px 80px rgba(0, 0, 0, .35)
        }

        .lead-card h3 {
            font-size: 25px;
            margin-bottom: 5px
        }

        .lead-card>p {
            color: var(--muted);
            font-size: 14px;
            margin-bottom: 18px
        }

        .lead-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px
        }

        .field {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .field label {
            font-size: 13px;
            font-weight: 700;
            color: var(--navy)
        }

        .lead-form input,
        .lead-form select {
            width: 100%;
            min-height: 48px;
            padding: 11px 13px;
            border: 1px solid var(--line);
            border-radius: 8px;
            outline: none
        }

        .lead-form input:focus,
        .lead-form select:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(7, 136, 232, .12)
        }

        .full {
            grid-column: 1/-1
        }

        .station-results {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            z-index: 100;
            display: none;
            max-height: 245px;
            overflow: auto;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: #fff;
            box-shadow: var(--shadow)
        }

        .station-results.show {
            display: block
        }

        .station-option {
            width: 100%;
            display: grid;
            grid-template-columns: 50px 1fr;
            gap: 11px;
            align-items: center;
            padding: 11px 13px;
            border: 0;
            border-bottom: 1px solid #eef3f7;
            background: #fff;
            text-align: left;
            cursor: pointer
        }

        .station-option:hover,
        .station-option.active {
            background: #eaf6ff
        }

        .station-code {
            padding: 5px 6px;
            border-radius: 6px;
            background: var(--navy);
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            text-align: center
        }

        .station-info strong {
            display: block;
            font-size: 14px
        }

        .station-info span {
            display: block;
            color: var(--muted);
            font-size: 12px
        }

        .trust {
            border-bottom: 1px solid var(--line)
        }

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

        .trust-item {
            padding: 23px
        }

        .trust-item+.trust-item {
            border-left: 1px solid var(--line)
        }

        .trust-item strong {
            display: block;
            color: var(--navy);
            font-size: 18px
        }

        .trust-item span {
            font-size: 13px;
            color: var(--muted)
        }

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

        .section-head p {
            margin-top: 13px;
            color: var(--muted)
        }

        .route-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px
        }

        .route-card {
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 15px;
            background: #fff;
            transition: .25s
        }

        .route-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow)
        }

        .route-card img {
            height: 215px;
            object-fit: cover
        }

        .route-body {
            padding: 22px
        }

        .route-body small {
            color: var(--blue2);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase
        }

        .route-body h3 {
            margin: 7px 0;
            font-size: 21px
        }

        .route-body p {
            color: var(--muted);
            font-size: 14px
        }

        .route-meta {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            margin: 16px 0;
            padding: 12px 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line)
        }

        .route-meta span {
            color: var(--muted);
            font-size: 12px
        }

        .route-body .btn {
            width: 100%
        }

        .assist {
            background: var(--light)
        }

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

        .assist-image {
            position: relative
        }

        .assist-image img {
            height: 570px;
            object-fit: cover;
            border-radius: 20px
        }

        .assist-note {
            position: absolute;
            right: -18px;
            bottom: 28px;
            width: 225px;
            padding: 20px;
            border-radius: 14px;
            background: var(--blue);
            color: #fff;
            box-shadow: var(--shadow)
        }

        .assist-note strong {
            display: block;
            font-size: 20px
        }

        .assist-note span {
            font-size: 13px
        }

        .assist-copy>p {
            margin: 15px 0 23px;
            color: var(--muted)
        }

        .assist-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px
        }

        .assist-item {
            padding: 17px;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: #fff
        }

        .assist-item h3 {
            font-size: 17px;
            margin-bottom: 4px
        }

        .assist-item p {
            font-size: 13px;
            color: var(--muted)
        }

        .process {
            background: var(--navy);
            color: #fff
        }

        .process h2 {
            color: #fff
        }

        .process .section-head p {
            color: #c3d1dc
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border: 1px solid rgba(255, 255, 255, .14)
        }

      .step {
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step + .step {
    border-left: 1px solid rgba(255,255,255,.14);
}

.step strong {
    display: block;
    color: #35aaf8;
    font-size: 13px;
    margin-bottom: 12px;
}

.step h3 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 7px;
}

.step p {
    color: #c3d1dc;
    font-size: 14px;
    margin-bottom: 20px;
}

.step a {
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 750;
    transition: .25s;
    margin-top: auto;      /* Button bottom */
    align-self: flex-start;
}
        .faq-grid {
            display: grid;
            grid-template-columns: .75fr 1.25fr;
            gap: 50px;
            align-items: start
        }

        .faq-panel {
            padding: 34px;
            border-radius: 16px;
            background: var(--blue);
            color: #fff
        }

        .faq-panel h2 {
            color: #fff;
            margin-bottom: 13px
        }

        .faq-panel p {
            color: #eaf6ff
        }

        .faq-panel .btn {
            margin-top: 22px
        }

        .faq-item {
            border-bottom: 1px solid var(--line)
        }

        .faq-q {
            width: 100%;
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding: 20px 0;
            border: 0;
            background: transparent;
            color: var(--navy);
            text-align: left;
            font-weight: 800;
            cursor: pointer
        }

        .faq-a {
            display: none;
            padding: 0 40px 20px 0;
            color: var(--muted)
        }

        .faq-item.open .faq-a {
            display: block
        }

        .faq-item.open .faq-q span {
            transform: rotate(45deg)
        }

        .cta {
            padding: 64px 0;
            color: #fff;
            background: linear-gradient(rgba(0, 0, 0, .78), rgba(0, 0, 0, .84)), url("https://images.unsplash.com/photo-1426086800127-2601510ca027?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover
        }

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

        .cta h2 {
            color: #fff
        }

        .cta p {
            color: #dbe7f0;
            margin-top: 8px
        }

        footer {
            padding: 64px 0 24px;
            background: #000;
            color: #94a3b8
        }

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

        .footer-logo img {
            width: 285px;
            margin-bottom: 17px
        }

        footer h4 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 14px
        }

        footer p,
        footer a {
            color: #94a3b8;
            font-size: 14px
        }

        footer a {
            display: block;
            margin-bottom: 9px;
            text-decoration: none
        }

        footer a:hover {
            color: #2ba8fb
        }

        .footer-bottom {
            margin-top: 42px;
            padding-top: 20px;
            border-top: 1px solid #1f2937;
            font-size: 13px
        }

        .call-now {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 9999;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 14px 20px;
            border-radius: 10px;
            background: var(--blue);
            color: #fff;
            text-decoration: none;
            font-weight: 800;
            box-shadow: 0 15px 34px rgba(0, 0, 0, .32)
        }

        .call-now:hover {
            background: var(--navy)
        }

        .popup {
            position: fixed;
            inset: 0;
            z-index: 999999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px
        }

        .popup.show {
            display: flex
        }

        .popup-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, .78);
            backdrop-filter: blur(7px)
        }

        .popup-card {
            position: relative;
            z-index: 2;
            width: min(100%, 520px);
            padding: 38px 32px 30px;
            border-radius: 18px;
            background: #fff;
            text-align: center;
            box-shadow: 0 30px 90px rgba(0, 0, 0, .4)
        }

        .popup-close {
            position: absolute;
            top: 12px;
            right: 14px;
            width: 38px;
            height: 38px;
            border: 0;
            border-radius: 50%;
            font-size: 24px
        }

        .popup-icon {
            width: 72px;
            height: 72px;
            display: grid;
            place-items: center;
            margin: 0 auto 18px;
            border-radius: 50%;
            background: #eaf6ff;
            color: var(--blue);
            font-size: 30px
        }

        .popup-card h2 {
            font-size: 30px;
            margin-bottom: 10px
        }

        .popup-card>p {
            color: var(--muted);
            font-size: 15px
        }

        .trip-summary {
            margin: 20px 0;
            padding: 15px;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: var(--light);
            text-align: left;
            font-size: 14px
        }

        .popup-card .btn {
            width: 100%
        }

        .popup-secondary {
            margin-top: 12px;
            border: 0;
            background: transparent;
            color: var(--muted);
            font-weight: 700
        }

        @media(max-width:1000px) {
            .nav-links {
                position: absolute;
                top: 84px;
                left: 0;
                right: 0;
                display: none;
                flex-direction: column;
                align-items: stretch;
                padding: 22px;
                background: #000
            }

            .nav-links.open {
                display: flex
            }

            .menu-btn {
                display: block
            }

            .hero-grid,
            .assist-grid,
            .faq-grid {
                grid-template-columns: 1fr
            }

            .route-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .step:nth-child(3) {
                border-left: 0;
                border-top: 1px solid rgba(255, 255, 255, .14)
            }

            .step:nth-child(4) {
                border-top: 1px solid rgba(255, 255, 255, .14)
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr
            }
        }

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

            h1 {
                font-size: 28px;
                line-height: 1.2
            }

            h2 {
                font-size: 24px;
                line-height: 1.3
            }

            p,
            li,
            a,
            button,
            input,
            select,
            span {
                font-size: 16px
            }

            .logo img {
                width: 210px
            }

            .hero {
                padding: 55px 0 70px
            }

            .hero-list,
            .lead-form,
            .trust-grid,
            .route-grid,
            .assist-list,
            .process-grid,
            .footer-grid {
                grid-template-columns: 1fr
            }

            .full {
                grid-column: auto
            }

            .hero-actions {
                flex-direction: column
            }

            .hero-actions .btn {
                width: 100%
            }

            .trust-item+.trust-item {
                border-left: 0;
                border-top: 1px solid var(--line)
            }

            .assist-image img {
                height: 430px
            }

            .assist-note {
                position: static;
                width: 100%;
                margin-top: 14px
            }

            .step+.step,
            .step:nth-child(3),
            .step:nth-child(4) {
                border-left: 0;
                border-top: 1px solid rgba(255, 255, 255, .14)
            }

            .section {
                padding: 68px 0
            }

            .cta-inner {
                flex-direction: column;
                align-items: flex-start
            }

            .cta .btn {
                width: 100%
            }

            .call-now {
                width: 58px;
                height: 58px;
                right: 14px;
                bottom: 14px;
                justify-content: center;
                padding: 0;
                border-radius: 50%
            }

            .call-now span {
                display: none
            }

            .popup-card {
                padding: 34px 20px 26px
            }
        }

        /* =========================
   LEGAL PAGES
========================= */


.legal{
    padding:30px 0;
    background:#f5f8fb;
}

.legal article{
   
    margin:auto;
   
}

.legal article>p:first-child{
    font-size:17px;
    color:#4b5c70;
    margin-bottom:18px;
}

.legal article p{
    color:var(--text);
    margin-bottom:18px;
    line-height:1.85;
}

.legal article h2{
    font-size:24px;
    color:var(--navy);
    margin:45px 0 18px;
    line-height:1.25;
    position:relative;
   
}

.legal article h2::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:6px;
    height:34px;
    border-radius:20px;
    background:var(--primary);
}

.legal article ul{
    margin:20px 0;
    padding-left:0;
    list-style:none;
}

.legal article ul li{
    position:relative;
    padding-left:32px;
    margin-bottom:14px;
    color:var(--text);
    line-height:1.8;
}

.legal article ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#e9f5ff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}

.legal article strong{
    color:var(--navy);
}

.legal article a{
    color:var(--primary);
    font-weight:700;
    text-decoration:none;
}

.legal article a:hover{
    text-decoration:underline;
}

/* Hero */

.page-hero{
    background:linear-gradient(135deg,#071827,#0d2d4d);
    color:#fff;
    padding:60px 0;
    
}

.page-hero .eyebrow{
    color:#5ebdff;
    margin-bottom:16px;
    text-transform:uppercase;
    letter-spacing:.18em;
    font-size:12px;
    font-weight:800;
}

.page-hero h1{
    font-size:32px;
    color:#fff;
    margin-bottom:18px;
    line-height:1.1;
}

.page-hero p{
    max-width:720px;
    margin:auto;
    color:#d7e6f2;
    line-height:1.8;
    font-size: 12px;
}

/* Tables (optional future use) */

.legal table{
    width:100%;
    border-collapse:collapse;
    margin:25px 0;
}

.legal table th,
.legal table td{
    padding:14px;
    border:1px solid var(--border);
    text-align:left;
}

.legal table th{
    background:#eef7ff;
    color:var(--navy);
}

/* Highlight Box */

.legal-note{
    margin-top:35px;
    padding:24px;
    border-left:5px solid var(--primary);
    background:#eef8ff;
    border-radius:12px;
}

.legal-note h3{
    margin-bottom:10px;
    color:var(--navy);
    font-size:22px;
}

.legal-note p{
    margin:0;
}

/* Responsive */

@media(max-width:991px){

    .legal{
        padding:60px 0;
    }

    .legal article{
        padding:40px;
    }

}

@media(max-width:768px){

    .page-hero{
        padding:70px 0;
    }

    .page-hero h1{
        font-size:36px;
    }

    .legal article{
        padding:28px 0;
        border-radius:14px;
    }

    .legal article h2{
        font-size:26px;
        margin-top:34px;
    }

}

@media(max-width:576px){

    .page-hero h1{
        font-size:28px;
    }

    .page-hero p{
        font-size:16px;
    }

    .legal article h2{
        font-size:20px;
    }

    .legal article p,
    .legal article li,
    .legal article a,
    .legal article span{
        font-size:16px;
    }

}