/* =========================================================
   TRAVEL ONLINE SERVICES
   Main B2B Travel Services Homepage
   ========================================================= */

:root {
    --navy: #10263f;
    --navy-2: #173a5d;
    --blue: #1379a8;
    --blue-dark: #0c6088;
    --cyan: #36a8c8;
    --sky: #eef8fb;
    --sky-2: #dff3f8;
    --white: #ffffff;
    --text: #203247;
    --muted: #64758a;
    --border: #dce7ed;
    --dark: #0d1824;
    --shadow: 0 18px 50px rgba(16, 38, 63, 0.10);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(220, 231, 237, 0.9);
    backdrop-filter: blur(12px);
    transition: box-shadow .25s ease;
}

.site-header.scrolled {
    box-shadow: 0 8px 25px rgba(16, 38, 63, .08);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: white;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -1px;
    transform: rotate(-4deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-text strong {
    color: var(--navy);
    font-size: 17px;
}

.logo-text small {
    margin-top: 4px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.main-nav > a {
    color: #40536a;
    font-size: 14px;
    font-weight: 600;
    transition: color .2s ease;
}

.main-nav > a:hover {
    color: var(--blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
    color: white;
    background: var(--blue);
    box-shadow: 0 9px 24px rgba(19, 121, 168, .20);
}

.btn-primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 12px 28px rgba(19, 121, 168, .27);
}

.btn-outline {
    border-color: var(--blue);
    color: var(--blue);
    background: white;
}

.btn-outline:hover {
    background: var(--sky);
}

.btn-light {
    color: var(--navy);
    background: white;
    border-color: rgba(255,255,255,.8);
}

.btn-white {
    color: var(--navy);
    background: white;
}

.btn-outline-dark {
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-dark:hover {
    color: white;
    background: var(--navy);
}

.btn-large {
    min-height: 54px;
    padding: 0 25px;
    font-size: 15px;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    margin: 6px 0;
    transition: .2s ease;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 85% 15%, rgba(54,168,200,.17), transparent 30%),
        linear-gradient(135deg, #eaf8fc 0%, #f8fcfd 52%, #e4f5f9 100%);
    padding: 82px 0 90px;
}

.hero-decoration {
    position: absolute;
    border: 1px solid rgba(19,121,168,.12);
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration-one {
    width: 520px;
    height: 520px;
    right: -210px;
    top: -230px;
}

.hero-decoration-two {
    width: 320px;
    height: 320px;
    left: -180px;
    bottom: -220px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 75px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 6px rgba(54,168,200,.12);
}

.hero h1 {
    max-width: 680px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(43px, 5.2vw, 68px);
    line-height: 1.03;
    letter-spacing: -2.5px;
}

.hero h1 span {
    display: block;
    color: var(--blue);
}

.hero-text {
    max-width: 650px;
    margin: 25px 0 30px;
    color: #5b6d80;
    font-size: 17px;
    line-height: 1.75;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #53677c;
    font-size: 13px;
    font-weight: 600;
}

.trust-icon {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--blue);
    font-size: 11px;
}

.hero-card-wrap {
    position: relative;
    max-width: 510px;
    justify-self: end;
}

.hero-card {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 30px 70px rgba(16,38,63,.14);
    backdrop-filter: blur(10px);
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.card-label {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.hero-card h2 {
    margin: 8px 0 0;
    color: var(--navy);
    font-size: 26px;
    line-height: 1.2;
}

.plane-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 15px;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-size: 23px;
}

.quick-service {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    transition: transform .2s ease, box-shadow .2s ease;
}

.quick-service:hover {
    transform: translateX(3px);
    box-shadow: 0 10px 24px rgba(16,38,63,.07);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    font-size: 21px;
}

.flight-icon {
    background: #e9f6fb;
    color: var(--blue);
}

.hotel-icon {
    background: #edf5ff;
    color: #476e9d;
}

.package-icon {
    background: #f2efff;
    color: #6656a8;
}

.quick-service strong,
.quick-service span {
    display: block;
}

.quick-service strong {
    color: var(--navy);
    font-size: 14px;
}

.quick-service div span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.service-arrow {
    color: var(--blue);
    font-weight: 800;
}

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 12px;
}

.hero-card-footer a {
    color: var(--blue);
    font-weight: 700;
}

.floating-badge {
    position: absolute;
    right: -30px;
    bottom: -28px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 17px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow);
}

.floating-badge > span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--sky);
    color: var(--blue);
}

.floating-badge strong,
.floating-badge small {
    display: block;
}

.floating-badge strong {
    color: var(--navy);
    font-size: 12px;
}

.floating-badge small {
    color: var(--muted);
    font-size: 10px;
}

/* COMMON SECTIONS */

.section {
    padding: 95px 0;
}

.section-light {
    background: #f7fbfd;
}

.section-title {
    max-width: 700px;
    margin-bottom: 45px;
}

.section-title.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title h2,
.section-heading h2,
.why-content h2,
.contact h2 {
    margin: 9px 0 0;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.13;
    letter-spacing: -1.2px;
}

.section-title p {
    margin: 15px auto 0;
    max-width: 650px;
    color: var(--muted);
}

/* INTRO */

.intro-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 90px;
    align-items: end;
}

.intro-copy {
    max-width: 650px;
}

.intro-copy p {
    margin: 0 0 20px;
    color: #5d6f82;
    font-size: 17px;
    line-height: 1.8;
}

.text-link {
    color: var(--blue);
    font-weight: 800;
    font-size: 14px;
}

.text-link span {
    margin-left: 6px;
}

/* SERVICES */

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

.service-card {
    position: relative;
    min-height: 310px;
    padding: 31px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 8px 25px rgba(16,38,63,.035);
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(16,38,63,.10);
}

.service-card.featured {
    border-color: rgba(19,121,168,.35);
    box-shadow: 0 18px 42px rgba(19,121,168,.10);
}

.service-card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--blue);
    background: var(--sky);
    font-size: 24px;
}

.service-number {
    position: absolute;
    right: 27px;
    top: 25px;
    color: #e7eef2;
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
}

.service-card h3 {
    margin: 30px 0 9px;
    color: var(--navy);
    font-size: 22px;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.service-card a {
    position: absolute;
    left: 31px;
    bottom: 27px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.service-card a span {
    margin-left: 5px;
}

/* WHY US */

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

.why-visual {
    position: relative;
    min-height: 460px;
}

.visual-main {
    min-height: 430px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.28), transparent 25%),
        linear-gradient(145deg, #0f3555, #127ea9);
    color: white;
    box-shadow: 0 25px 55px rgba(16,38,63,.18);
}

.visual-plane {
    position: absolute;
    top: 55px;
    left: 55px;
    font-size: 110px;
    opacity: .16;
    transform: rotate(-12deg);
}

.visual-main span {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
    opacity: .8;
}

.visual-main strong {
    margin-top: 10px;
    font-size: 37px;
    line-height: 1.1;
}

.visual-small {
    position: absolute;
    padding: 17px 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow);
}

.visual-small strong,
.visual-small span {
    display: block;
}

.visual-small strong {
    color: var(--blue);
    font-size: 21px;
}

.visual-small span {
    color: var(--muted);
    font-size: 11px;
}

.visual-small-one {
    top: 28px;
    right: -30px;
}

.visual-small-two {
    bottom: 25px;
    left: -30px;
}

.why-lead {
    max-width: 650px;
    margin: 20px 0 30px;
    color: var(--muted);
    font-size: 16px;
}

.benefit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
}

.benefit {
    display: flex;
    gap: 13px;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.benefit h3 {
    margin: 1px 0 4px;
    color: var(--navy);
    font-size: 15px;
}

.benefit p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

/* PROCESS */

.process-grid {
    display: grid;
    grid-template-columns: 1fr 45px 1fr 45px 1fr;
    align-items: center;
}

.process-card {
    position: relative;
    padding: 28px;
    min-height: 260px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
}

.process-number {
    color: #dcebf0;
    font-size: 34px;
    font-weight: 800;
}

.process-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin: 10px 0 18px;
    border-radius: 13px;
    color: var(--blue);
    background: var(--sky);
    font-size: 20px;
}

.process-card h3 {
    margin: 0 0 7px;
    color: var(--navy);
    font-size: 19px;
}

.process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.process-line {
    height: 1px;
    background: #c9dbe3;
}

/* CTA */

.partner-cta {
    padding: 78px 0;
    color: white;
    background: linear-gradient(135deg, #0d3454, #137da7);
}

.partner-cta .section-kicker {
    color: #9ce2f3;
}

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

.partner-cta h2 {
    max-width: 680px;
    margin: 9px 0 10px;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.1;
}

.partner-cta p {
    max-width: 620px;
    margin: 0;
    color: rgba(255,255,255,.78);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    flex-shrink: 0;
}

.cta-phone {
    color: rgba(255,255,255,.8);
    font-size: 12px;
}

.cta-phone strong {
    margin-left: 5px;
    color: white;
}

/* DOCUMENTATION */

.documentation-section {
    padding: 55px 0;
    background: #edf8fb;
    border-bottom: 1px solid var(--border);
}

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

.documentation-inner h2 {
    margin: 7px 0 7px;
    color: var(--navy);
    font-size: 26px;
}

.documentation-inner p {
    margin: 0;
    color: var(--muted);
}

/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 80px;
    align-items: center;
}

.contact h2 {
    max-width: 650px;
}

.contact p {
    max-width: 600px;
    color: var(--muted);
    font-size: 16px;
}

.contact-card {
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #f8fbfc;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--blue);
    background: white;
    font-weight: 800;
}

.contact-item small,
.contact-item strong {
    display: block;
}

.contact-item small {
    color: var(--muted);
    font-size: 11px;
    margin-bottom: 2px;
}

.contact-item strong {
    color: var(--navy);
    font-size: 14px;
}

/* FOOTER */

.site-footer {
    padding: 70px 0 0;
    color: rgba(255,255,255,.72);
    background: #0c1620;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;
    padding-bottom: 55px;
}

.footer-logo .logo-text strong {
    color: white;
}

.footer-brand p {
    max-width: 320px;
    margin-top: 20px;
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h3 {
    margin: 0 0 8px;
    color: white;
    font-size: 14px;
}

.footer-column a {
    color: rgba(255,255,255,.58);
    font-size: 13px;
    transition: color .2s ease;
}

.footer-column a:hover {
    color: #7fd7eb;
}

.footer-bottom {
    min-height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.42);
    font-size: 11px;
}

/* RESPONSIVE */

@media (max-width: 1000px) {

    .main-nav {
        gap: 17px;
    }

    .hero-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-card-wrap {
        justify-self: stretch;
        max-width: 650px;
    }

    .intro-grid {
        gap: 35px;
    }

    .why-visual {
        max-width: 600px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-line {
        display: none;
    }

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

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

@media (max-width: 780px) {

    .container {
        width: min(100% - 28px, 680px);
    }

    .header-inner {
        min-height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: white;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a {
        padding: 13px 12px;
        border-radius: 9px;
    }

    .main-nav > a:hover {
        background: var(--sky);
    }

    .nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin: 5px 0 0;
        padding-top: 10px;
        border-top: 1px solid var(--border);
    }

    .nav-actions .btn {
        min-height: 43px;
    }

    .hero {
        padding: 65px 0 75px;
    }

    .hero-grid {
        gap: 55px;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero-text {
        font-size: 15px;
    }

    .floating-badge {
        right: 10px;
    }

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

    .service-card {
        min-height: 290px;
    }

    .benefit-list {
        grid-template-columns: 1fr;
    }

    .documentation-inner,
    .contact-grid,
    .intro-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .documentation-inner {
        gap: 25px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 15px 0;
    }
}

@media (max-width: 500px) {

    .hero h1 {
        font-size: 43px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-card {
        padding: 21px;
    }

    .hero-card h2 {
        font-size: 22px;
    }

    .hero-card-footer {
        flex-direction: column;
        gap: 7px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 9px;
    }

    .visual-main {
        min-height: 350px;
        padding: 32px;
    }

    .visual-main strong {
        font-size: 29px;
    }

    .visual-small-one {
        right: 8px;
    }

    .visual-small-two {
        left: 8px;
    }

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

    .footer-brand {
        grid-column: auto;
    }
}


/* =========================================================
   B2B V3 DESKTOP POLISH
   Keeps the original Travel Online Services visual system
   while improving desktop spacing and navigation balance.
   ========================================================= */

@media (min-width: 1001px) {
    .container {
        width: min(1240px, calc(100% - 64px));
    }

    .header-inner {
        min-height: 78px;
        gap: 34px;
    }

    .main-nav {
        gap: 22px;
    }

    .main-nav > a {
        font-size: 14px;
        white-space: nowrap;
    }

    .nav-actions {
        margin-left: 2px;
        gap: 8px;
    }

    .nav-actions .btn {
        min-height: 42px;
        padding: 0 16px;
        font-size: 13px;
    }

    .hero {
        min-height: 670px;
        padding: 78px 0 92px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
        gap: 64px;
    }

    .hero-card-wrap {
        width: 100%;
        max-width: 540px;
    }

    .hero-card {
        padding: 32px;
    }

    .intro-grid {
        grid-template-columns: .9fr 1.1fr;
        gap: 75px;
    }

    .services-grid {
        gap: 24px;
    }

    .service-card {
        min-height: 325px;
    }

    .why-grid {
        grid-template-columns: .95fr 1.05fr;
        gap: 78px;
    }

    .process-grid {
        grid-template-columns: 1fr 42px 1fr 42px 1fr;
        gap: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr .82fr;
        gap: 90px;
    }
}

/* Prevent accidental horizontal overflow on all sizes. */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Keep the original logo proportions and make the brand feel crisp. */
.logo-mark {
    flex: 0 0 46px;
}

.logo-text strong {
    white-space: nowrap;
}

@media (max-width: 780px) {
    .hero-card-wrap {
        width: 100%;
    }

    .floating-badge {
        right: 12px;
    }
}
