/* ==========================================================
   MyShuttle.ai
   Public Website Styles
   ========================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: #172033;
    background: #ffffff;

    line-height: 1.55;
}

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

button,
input {
    font-family: inherit;
}


/* ==========================================================
   HEADER
   ========================================================== */

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid #e7edf4;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav {
    width: 100%;
    max-width: 1180px;

    min-height: 70px;

    margin: 0 auto;
    padding: 10px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;

    gap: 11px;

    font-size: 22px;
    font-weight: 800;

    color: #132642;
}

.brand-mark {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #1473e6,
            #11a7c8
        );

    color: #ffffff;

    font-size: 21px;

    box-shadow:
        0 6px 16px rgba(20, 115, 230, 0.22);
}

.brand-ai {
    color: #1473e6;
}

.nav-links {
    display: flex;
    align-items: center;

    gap: 25px;

    font-size: 14px;
    font-weight: 650;
}

.nav-links a {
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.nav-links a:hover {
    color: #1473e6;
}

.nav-login {
    padding: 10px 17px;

    border-radius: 9px;

    background: #1473e6;

    color: #ffffff !important;
}

.nav-login:hover {
    background: #0e64cd;
}


/* ==========================================================
   HERO
   ========================================================== */

.hero {
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(17, 167, 200, 0.15),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 10%,
            rgba(20, 115, 230, 0.13),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f7fbff,
            #ffffff
        );
}

.hero-inner {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding: 88px 22px 82px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(320px, 0.88fr);

    gap: 65px;

    align-items: center;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    padding: 7px 12px;

    border-radius: 20px;

    background: #eaf3ff;

    color: #1264c6;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.4px;
}

.hero h1 {
    max-width: 680px;

    margin: 0 0 20px;

    color: #10213b;

    font-size: clamp(40px, 5.5vw, 68px);

    line-height: 1.02;

    letter-spacing: -2.6px;
}

.hero h1 span {
    color: #1473e6;
}

.hero-copy {
    max-width: 680px;

    margin: 0 0 29px;

    color: #536276;

    font-size: 19px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


/* ==========================================================
   BUTTONS
   ========================================================== */

.btn {
    min-height: 49px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 22px;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 750;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.btn-primary {
    background: #1473e6;

    color: #ffffff;

    box-shadow:
        0 7px 18px rgba(20, 115, 230, 0.2);
}

.btn-primary:hover {
    background: #0e64cd;

    transform: translateY(-1px);
}

.btn-secondary {
    background: #ffffff;

    color: #263b55;

    border: 1px solid #d6dfe9;
}

.btn-secondary:hover {
    border-color: #1473e6;

    color: #1473e6;

    transform: translateY(-1px);
}


/* ==========================================================
   HOTEL LOGIN
   ========================================================== */

.login-card {
    position: relative;

    padding: 32px;

    border: 1px solid #dfe7f0;

    border-radius: 21px;

    background: #ffffff;

    box-shadow:
        0 25px 70px rgba(16, 33, 59, 0.13);
}

.login-card::before {
    content: "";

    position: absolute;

    top: -8px;
    right: 35px;

    width: 72px;
    height: 8px;

    border-radius: 8px 8px 0 0;

    background:
        linear-gradient(
            90deg,
            #1473e6,
            #11a7c8
        );
}

.login-icon {
    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    border-radius: 13px;

    background: #edf5ff;

    font-size: 24px;
}

.login-card h2 {
    margin: 0 0 7px;

    color: #132642;

    font-size: 25px;
}

.login-card > p {
    margin: 0 0 22px;

    color: #6b788a;

    font-size: 14px;
}

.hotel-code-form {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.hotel-code-form label {
    color: #33465f;

    font-size: 13px;
    font-weight: 750;
}

.hotel-code-form input {
    width: 100%;
    height: 50px;

    padding: 0 14px;

    border: 1px solid #ccd6e2;

    border-radius: 9px;

    outline: none;

    background: #ffffff;

    color: #182a43;

    font-size: 17px;

    text-transform: uppercase;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hotel-code-form input:focus {
    border-color: #1473e6;

    box-shadow:
        0 0 0 3px rgba(20, 115, 230, 0.1);
}

.hotel-code-form button {
    height: 50px;

    margin-top: 5px;

    border: 0;

    border-radius: 9px;

    background: #1473e6;

    color: #ffffff;

    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.hotel-code-form button:hover {
    background: #0d62ca;

    transform: translateY(-1px);
}

.code-help {
    margin-top: 14px !important;
    margin-bottom: 0 !important;

    color: #8994a3 !important;

    text-align: center;

    font-size: 12px !important;
}


/* ==========================================================
   GENERAL SECTIONS
   ========================================================== */

.section {
    padding: 82px 22px;
}

.section-soft {
    background: #f7f9fc;
}

.container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}

.section-head {
    max-width: 740px;

    margin: 0 auto 46px;

    text-align: center;
}

.section-head small {
    display: block;

    margin-bottom: 10px;

    color: #1473e6;

    font-size: 13px;
    font-weight: 850;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.section-head h2 {
    margin: 0 0 14px;

    color: #132642;

    font-size: clamp(30px, 4vw, 43px);

    line-height: 1.12;
}

.section-head p {
    margin: 0;

    color: #657489;

    font-size: 17px;
}


/* ==========================================================
   FEATURES
   ========================================================== */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.feature {
    min-height: 225px;

    padding: 27px;

    border: 1px solid #e2e8ef;

    border-radius: 16px;

    background: #ffffff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.feature:hover {
    transform: translateY(-4px);

    box-shadow:
        0 16px 40px rgba(18, 42, 73, 0.08);
}

.feature-icon {
    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 12px;

    background: #edf5ff;

    font-size: 23px;
}

.feature h3 {
    margin: 0 0 8px;

    color: #162b47;

    font-size: 18px;
}

.feature p {
    margin: 0;

    color: #68788d;

    font-size: 14px;
}


/* ==========================================================
   FLOW
   ========================================================== */

.flow {
    max-width: 970px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;
}

.flow-item {
    position: relative;

    min-height: 205px;

    padding: 24px 16px;

    border: 1px solid #dde5ee;

    border-radius: 14px;

    background: #ffffff;

    text-align: center;
}

.flow-number {
    width: 34px;
    height: 34px;

    position: absolute;

    top: 13px;
    right: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1473e6;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;
}

.flow-icon {
    margin: 14px 0 14px;

    font-size: 32px;
}

.flow-item strong {
    display: block;

    margin-bottom: 7px;

    color: #19324f;

    font-size: 16px;
}

.flow-item span {
    color: #748196;

    font-size: 13px;
}


/* ==========================================================
   AUDIENCE
   ========================================================== */

.audience {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.audience-card {
    min-height: 210px;

    padding: 26px 20px;

    border: 1px solid #e0e6ed;

    border-radius: 14px;

    background: #ffffff;

    text-align: center;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.audience-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 32px rgba(18, 42, 73, 0.07);
}

.audience-icon {
    margin-bottom: 11px;

    font-size: 31px;
}

.audience-card h3 {
    margin: 0 0 7px;

    color: #19304c;

    font-size: 17px;
}

.audience-card p {
    margin: 0;

    color: #6b798d;

    font-size: 13px;
}


/* ==========================================================
   BENEFITS
   ========================================================== */

.benefit-grid {
    max-width: 960px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.benefit {
    display: flex;

    gap: 16px;

    padding: 23px;

    border: 1px solid #e1e7ee;

    border-radius: 15px;

    background: #ffffff;
}

.benefit-check {
    flex: 0 0 auto;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9f7ef;

    color: #1d9b59;

    font-size: 18px;
    font-weight: 900;
}

.benefit h3 {
    margin: 2px 0 6px;

    color: #19304c;

    font-size: 17px;
}

.benefit p {
    margin: 0;

    color: #6c7a8e;

    font-size: 14px;
}


/* ==========================================================
   PLATFORM SECTION
   ========================================================== */

.platform-section {
    padding: 40px 22px 90px;

    background: #ffffff;
}

.platform-card {
    overflow: hidden;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #10294a,
            #0e4e89
        );

    color: #ffffff;

    box-shadow:
        0 24px 60px rgba(12, 42, 75, 0.15);
}

.platform-text {
    padding: 52px;
}

.platform-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #8bd5f2;

    font-size: 12px;
    font-weight: 850;

    letter-spacing: 1px;
}

.platform-text h2 {
    margin: 0 0 14px;

    font-size: 36px;

    line-height: 1.12;
}

.platform-text p {
    max-width: 500px;

    margin: 0 0 25px;

    color: #d3e4f3;

    font-size: 16px;
}

.connection {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 8px;
}

.connection span {
    padding: 8px 10px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.09);

    font-size: 12px;
    font-weight: 700;
}

.connection b {
    color: #84d9f8;
}

.platform-visual {
    padding: 40px 45px 40px 0;
}

.mock-window {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.22);
}

.mock-top {
    min-height: 42px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 0 13px;

    background: #f1f4f8;

    color: #53667a;
}

.mock-top span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #c3cbd5;
}

.mock-top strong {
    margin-left: 7px;

    font-size: 11px;
}

.mock-map {
    position: relative;

    min-height: 315px;

    overflow: hidden;

    background:
        linear-gradient(
            45deg,
            #e9f2e7 25%,
            transparent 25%
        ),
        linear-gradient(
            -45deg,
            #e9f2e7 25%,
            transparent 25%
        ),
        linear-gradient(
            45deg,
            transparent 75%,
            #e9f2e7 75%
        ),
        linear-gradient(
            -45deg,
            transparent 75%,
            #e9f2e7 75%
        ),
        #f4f6ee;

    background-size: 42px 42px;
    background-position:
        0 0,
        0 21px,
        21px -21px,
        -21px 0;
}

.mock-road {
    position: absolute;

    height: 15px;

    border: 4px solid #ffffff;

    border-radius: 20px;

    background: #cfd7df;

    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.08);
}

.road-one {
    width: 130%;

    top: 48%;

    left: -14%;

    transform: rotate(-12deg);
}

.road-two {
    width: 80%;

    top: 39%;

    left: 27%;

    transform: rotate(69deg);
}

.road-three {
    width: 90%;

    top: 70%;

    left: -5%;

    transform: rotate(24deg);
}

.map-hotel {
    position: absolute;

    left: 17%;
    top: 25%;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #1473e6;

    color: #ffffff;

    font-weight: 900;

    box-shadow:
        0 5px 12px rgba(20, 115, 230, 0.28);
}

.map-airport {
    position: absolute;

    right: 8%;
    bottom: 19%;

    padding: 7px 10px;

    border-radius: 8px;

    background: #35495f;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.5px;
}

.map-shuttle {
    position: absolute;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 5px 14px rgba(20, 45, 75, 0.22);

    font-size: 20px;
}

.shuttle-one {
    left: 42%;
    top: 43%;
}

.shuttle-two {
    right: 21%;
    top: 30%;
}

.map-status {
    position: absolute;

    left: 12px;
    bottom: 12px;

    min-width: 125px;

    padding: 10px 12px;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.94);

    color: #21334b;

    box-shadow:
        0 4px 15px rgba(20, 45, 75, 0.13);
}

.map-status strong {
    display: block;

    font-size: 12px;
}

.map-status span {
    color: #728094;

    font-size: 10px;
}


/* ==========================================================
   CTA
   ========================================================== */

.cta {
    padding: 82px 22px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(93, 213, 240, 0.18),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #10294a,
            #0d579b
        );

    color: #ffffff;
}

.cta-inner {
    max-width: 820px;

    margin: 0 auto;

    text-align: center;
}

.cta-label {
    display: block;

    margin-bottom: 11px;

    color: #8bd5f2;

    font-size: 12px;
    font-weight: 850;

    letter-spacing: 1px;
}

.cta h2 {
    margin: 0 0 13px;

    font-size: clamp(30px, 4vw, 43px);
}

.cta p {
    max-width: 650px;

    margin: 0 auto 26px;

    color: #d7e6f7;

    font-size: 17px;
}

.btn-demo {
    background: #ffffff;

    color: #0d579b;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.16);
}

.btn-demo:hover {
    background: #f1f6fb;

    transform: translateY(-1px);
}


/* ==========================================================
   FOOTER
   ========================================================== */

footer {
    padding: 35px 22px;

    background: #09182b;

    color: #98a9bc;
}

.footer-inner {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    font-size: 13px;
}

.footer-left {
    display: flex;
    align-items: center;

    gap: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 800;
}

.footer-mark {
    width: 31px;
    height: 31px;

    border-radius: 8px;

    font-size: 15px;
}

.footer-tag {
    padding-left: 14px;

    border-left: 1px solid #314157;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .hero-inner {
        grid-template-columns: 1fr;

        padding-top: 58px;
        padding-bottom: 62px;

        gap: 43px;
    }

    .login-card {
        max-width: 620px;
    }

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

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

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

    .platform-card {
        grid-template-columns: 1fr;
    }

    .platform-visual {
        padding:
            0 40px 40px;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .nav {
        min-height: 62px;

        padding-left: 15px;
        padding-right: 15px;
    }

    .brand {
        font-size: 19px;
    }

    .brand-mark {
        width: 37px;
        height: 37px;

        font-size: 18px;
    }

    .nav-links {
        gap: 0;
    }

    .nav-links a:not(.nav-login) {
        display: none;
    }

    .nav-login {
        padding: 8px 12px;

        font-size: 12px;
    }

    .hero-inner {
        padding:
            50px 17px 54px;
    }

    .hero h1 {
        font-size: 41px;

        letter-spacing: -1.8px;
    }

    .hero-copy {
        font-size: 17px;
    }

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

    .btn {
        width: 100%;
    }

    .login-card {
        padding: 25px 20px;
    }

    .section {
        padding:
            62px 17px;
    }

    .section-head {
        margin-bottom: 35px;
    }

    .section-head p {
        font-size: 15px;
    }

    .feature-grid,
    .flow,
    .audience,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        min-height: auto;
    }

    .audience-card {
        min-height: auto;
    }

    .platform-section {
        padding:
            20px 17px 65px;
    }

    .platform-text {
        padding:
            35px 24px;
    }

    .platform-text h2 {
        font-size: 30px;
    }

    .connection {
        gap: 6px;
    }

    .connection span {
        font-size: 11px;
    }

    .platform-visual {
        padding:
            0 17px 22px;
    }

    .mock-map {
        min-height: 245px;
    }

    .cta {
        padding:
            65px 17px;
    }

    .footer-inner {
        flex-direction: column;

        text-align: center;
    }

    .footer-left {
        flex-direction: column;

        gap: 8px;
    }

    .footer-tag {
        padding-left: 0;

        border-left: 0;
    }

}
/* ==========================================================
   REAL PRODUCT SCREENSHOT
   Added for MyShuttle live dispatch image
   ========================================================== */

.product-preview {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.22);
}

.preview-top {
    min-height: 44px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0 14px;

    background: #f1f4f8;

    color: #53667a;
}

.preview-top strong {
    font-size: 12px;
    font-weight: 750;
}

.preview-dots {
    display: flex;
    align-items: center;

    gap: 6px;
}

.preview-dots span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #c3cbd5;
}

.preview-image-link {
    display: block;

    overflow: hidden;

    background: #eef2f6;
}

.product-screenshot {
    display: block;

    width: 100%;
    height: auto;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.preview-image-link:hover .product-screenshot {
    transform: scale(1.015);
    opacity: 0.97;
}

.preview-caption {
    display: flex;
    flex-direction: column;

    gap: 3px;

    padding: 13px 16px 15px;

    border-top: 1px solid #e6ebf1;

    background: #ffffff;
}

.preview-caption strong {
    color: #19304c;

    font-size: 13px;
}

.preview-caption span {
    color: #718094;

    font-size: 11px;
}
/* ==================================================
   TERMS / PRIVACY MODAL
   ================================================== */

body.legal-modal-open {
    overflow: hidden;
}

.legal-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.78);
}

.legal-modal.open {
    display: flex;
}

.legal-modal-window {
    width: 100%;
    max-width: 900px;

    height: 88vh;
    max-height: 900px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;

    border-radius: 12px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.55);
}

.legal-modal-header {
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 16px;

    background: #19304c;
    color: #fff;
}

.legal-modal-header strong {
    font-size: 15px;
}

.legal-modal-close {
    width: 38px;
    height: 38px;

    padding: 0;

    border: none;

    background: transparent;
    color: #fff;

    font-size: 30px;
    line-height: 38px;

    cursor: pointer;
}

.legal-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.legal-modal-frame {
    width: 100%;
    flex: 1;

    border: none;

    background: #fff;
}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 600px) {

    .legal-modal {
        padding: 8px;
    }

    .legal-modal-window {
        height: 94vh;

        border-radius: 10px;
    }

}
