:root {
    --navy: #061D3A;
    --navy-2: #08264A;
    --yellow: #F6B516;
    --yellow-2: #FFC72C;
    --green: #16A637;
    --white: #FFFFFF;
    --bg: #F7F9FC;
    --border: #E6EAF0;
    --text: #101828;
    --muted: #667085;
    --shadow: 0 14px 38px rgba(6, 29, 58, 0.12);
    --soft-shadow: 0 8px 22px rgba(6, 29, 58, 0.10);
    --radius: 12px;
    --font: "Inter", "Manrope", "Poppins", Arial, sans-serif;
    --container: 1336px;
    --gutter: 96px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    font-size: 15px;
    line-height: 1.45;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.icon {
    display: inline-block;
    flex: 0 0 auto;
    width: 1em;
    min-width: 1em;
    text-align: center;
    line-height: 1;
}

.feature-icon {
    width: 16px;
    color: var(--navy);
    font-size: 14px;
    text-align: center;
}

.button-icon {
    width: 16px;
    font-size: 15px;
    text-align: center;
}

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

button,
input,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - var(--gutter)));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(230, 234, 240, 0.95);
    box-shadow: 0 4px 18px rgba(6, 29, 58, 0.08);
}

.header-inner {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand {
    width: 236px;
    display: flex;
    align-items: center;
}

.brand img {
    width: 236px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    height: 100%;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 72px;
    color: #071B34;
    font-size: 13px;
    font-weight: 800;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 22px;
    border: 0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn .icon {
    width: 16px;
    min-width: 16px;
    font-size: 15px;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(6, 29, 58, 0.16);
}

.btn:active {
    transform: translateY(0);
}

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

.btn-yellow {
    color: #06172D;
    background: linear-gradient(180deg, var(--yellow-2), var(--yellow));
}

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

.btn-white {
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
}

.header-btn {
    min-height: 38px;
    padding-inline: 18px;
    border-radius: 6px;
}

.btn-icon,
.wa-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    font-size: 11px;
    font-weight: 900;
}

.btn-icon .icon,
.wa-icon .icon {
    width: 13px;
    min-width: 13px;
    font-size: 12px;
}

.round-action,
.menu-toggle {
    display: none;
}

.round-action .icon {
    width: 17px;
    min-width: 17px;
    font-size: 16px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero {
    position: relative;
    background: var(--bg);
}

.hero-panel {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    isolation: isolate;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 53%;
    background:
        radial-gradient(circle at 14% 78%, rgba(246, 181, 22, 0.18), transparent 24%),
        linear-gradient(135deg, #04172E 0%, var(--navy) 64%, #04162E 100%);
    clip-path: ellipse(92% 92% at 21% 50%);
    z-index: -1;
}

.hero-panel::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    background: #dfe8f3;
    z-index: -2;
}

.hero-grid {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.15fr);
    align-items: stretch;
}

.hero-copy {
    padding: 72px 44px 92px 8px;
    color: var(--white);
    align-self: center;
}

.hero-badge {
    color: #061D3A;
    background: linear-gradient(180deg, var(--yellow-2), var(--yellow));
    border-radius: 999px;
    padding: 7px 15px;
    margin-bottom: 18px;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.16);
}

.hero h1 {
    margin: 0;
    font-size: clamp(42px, 3.75vw, 64px);
    line-height: 0.97;
    font-weight: 950;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--yellow);
    white-space: nowrap;
}

.hero p {
    max-width: 520px;
    margin: 20px 0 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(5, minmax(72px, 1fr));
    gap: 14px;
    max-width: 610px;
    margin-bottom: 28px;
}

.hero-features > span {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.hero-features > span > .icon {
    width: 20px;
    min-width: 20px;
    color: var(--yellow);
    font-size: 18px;
}

.hero-features > span > span {
    display: block;
}

.hero-features strong {
    display: block;
    color: var(--white);
    font-size: 10px;
    font-weight: 900;
}

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

.hero-actions .btn {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 12px;
}

.hero-visual {
    position: relative;
    min-height: 560px;
    margin-right: calc((100vw - min(var(--container), calc(100vw - var(--gutter)))) / -2);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-route-card {
    position: absolute;
    top: 48px;
    right: clamp(36px, 6vw, 88px);
    z-index: 3;
    width: min(392px, 43vw);
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(230, 234, 240, 0.95);
    border-radius: 12px;
    box-shadow: 0 18px 32px rgba(6, 29, 58, 0.22);
    backdrop-filter: blur(3px);
}

.hero-route-link {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
    transition: color 160ms ease, transform 160ms ease;
}

.hero-route-link + .hero-route-link {
    border-top: 1px solid var(--border);
}

.hero-route-link:hover {
    color: #031224;
    transform: translateX(2px);
}

.hero-route-link .icon {
    width: 24px;
    min-width: 24px;
    color: var(--navy);
    font-size: 21px;
}

.hero-route-link b {
    color: var(--yellow);
    font-weight: 950;
}

.fare-section {
    position: relative;
    margin-top: -58px;
    z-index: 5;
    padding-bottom: 26px;
}

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

.fare-card {
    min-height: 188px;
    display: grid;
    grid-template-columns: minmax(128px, 0.82fr) minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--soft-shadow);
}

.fare-image {
    align-self: center;
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fare-image img {
    width: 100%;
    max-width: 158px;
    height: 108px;
    object-fit: contain;
    object-position: center;
}

.fare-content h2,
.fleet-card h3,
.service-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.08;
    font-weight: 950;
    text-transform: uppercase;
}

.fare-content p,
.fleet-card p {
    margin: 3px 0 7px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
}

.fare-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    color: #475467;
    font-size: 11px;
    font-weight: 700;
}

.fare-content li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 2px 0;
}

.fare-content li .icon,
.fleet-meta .icon {
    width: 16px;
    min-width: 16px;
    color: var(--navy);
    font-size: 13px;
    text-align: center;
}

.fare-content strong {
    display: block;
    color: var(--navy);
    font-size: 29px;
    line-height: 1;
    font-weight: 950;
    margin-bottom: 12px;
}

.fare-actions,
.fleet-actions {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 8px;
}

.fare-actions .btn,
.fleet-actions .btn {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 11px;
}

.square-wa {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--green);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 950;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.square-wa .icon {
    width: 18px;
    min-width: 18px;
    font-size: 18px;
}

.square-wa:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(22, 166, 55, 0.25);
}

.fare-note {
    max-width: 920px;
    margin: 12px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.fare-note .icon {
    width: 17px;
    min-width: 17px;
    flex-basis: 17px;
    color: var(--yellow);
    font-size: 15px;
}

.booking-section {
    padding: 8px 0 28px;
}

.booking-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.booking-intro {
    padding: 18px 12px;
    border-right: 1px solid var(--border);
}

.booking-intro h2 {
    max-width: 210px;
    margin: 12px 0 10px;
    color: var(--navy);
    font-size: 36px;
    line-height: 1.03;
    font-weight: 950;
}

.booking-intro p {
    max-width: 210px;
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px 16px;
}

.booking-form label {
    display: grid;
    gap: 6px;
}

.booking-form label span {
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
}

.booking-form input,
.booking-form select {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    color: var(--text);
    background: var(--white);
    border: 1px solid #D6DCE6;
    border-radius: 4px;
    outline: 0;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(246, 181, 22, 0.16);
}

.form-submit {
    align-self: end;
    min-height: 46px;
    border-radius: 6px;
}

.form-error {
    min-height: 18px;
    margin: 10px 0 0;
    color: #B42318;
    font-size: 12px;
    font-weight: 800;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
    padding: 9px 12px;
    color: var(--navy);
    background: #F2F5FA;
    border: 1px solid var(--border);
    border-radius: 7px;
    font-size: 11px;
    font-weight: 800;
}

.trust-strip span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.trust-strip .icon {
    width: 15px;
    min-width: 15px;
    color: var(--yellow);
    font-size: 13px;
}

.section {
    padding: 24px 0;
}

.section-title {
    margin: 6px 0 18px;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.12;
    font-weight: 950;
}

.section-title.centered {
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 17px 17px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(6, 29, 58, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.fleet-card:hover,
.review-card:hover,
.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--soft-shadow);
}

.icon-circle {
    position: relative;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -42px;
    color: var(--white);
    background: var(--navy);
    border: 5px solid #EEF2F8;
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(6, 29, 58, 0.18), 0 0 0 1px rgba(246, 181, 22, 0.45);
}

.icon-circle::after {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(246, 181, 22, 0.38);
    border-radius: inherit;
    pointer-events: none;
}

.icon-circle .icon {
    width: 26px;
    min-width: 26px;
    font-size: 22px;
}

.service-card h3 {
    max-width: 170px;
    margin-top: 12px;
    font-size: 15px;
    text-transform: none;
}

.service-card p {
    flex: 1;
    margin: 10px 0 14px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.service-card .btn {
    width: 100%;
    min-height: 34px;
    padding-inline: 10px;
    font-size: 11px;
}

.route-section {
    padding: 12px 0 28px;
}

.route-card {
    position: relative;
    min-height: 132px;
    display: grid;
    grid-template-columns: 235px 1fr 245px;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(6, 29, 58, 0.72), rgba(6, 29, 58, 0.56)),
        url("../images/route-highlight-bg.webp") center/cover no-repeat;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.route-card .eyebrow {
    color: var(--yellow);
}

.route-card h2 {
    margin: 6px 0 0;
    font-size: 24px;
    line-height: 1.08;
    font-weight: 950;
}

.route-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
}

.route-timeline::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 21px;
    border-top: 2px dashed var(--yellow);
}

.route-timeline span {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
    text-align: center;
}

.route-timeline .route-stop-icon {
    width: 39px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--navy-2);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(6, 29, 58, 0.9);
}

.route-timeline .route-stop-icon .icon {
    width: 19px;
    min-width: 19px;
    font-size: 17px;
}

.route-card .btn {
    min-height: 58px;
    justify-self: end;
    text-align: left;
    white-space: normal;
}

.fleet-section {
    padding-top: 0;
}

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

.fleet-card {
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(6, 29, 58, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.fleet-card img {
    width: 100%;
    height: 112px;
    object-fit: contain;
    margin-bottom: 14px;
}

.fleet-card h3 {
    font-size: 18px;
    text-transform: none;
}

.fleet-card p {
    color: var(--muted);
    min-height: 35px;
}

.fleet-meta {
    display: flex;
    gap: 22px;
    margin: 10px 0 16px;
    color: #475467;
    font-size: 12px;
    font-weight: 800;
}

.fleet-meta span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.corporate-section {
    padding: 8px 0 20px;
}

.corporate-card {
    min-height: 228px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 22px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 83% 28%, rgba(255, 255, 255, 0.15), transparent 30%),
        linear-gradient(90deg, var(--navy) 0%, #06274E 58%, #0B3767 100%);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.corporate-copy {
    padding: 30px 0 28px 28px;
}

.corporate-copy .eyebrow {
    color: var(--yellow);
}

.corporate-copy h2 {
    max-width: 470px;
    margin: 8px 0 16px;
    font-size: 34px;
    line-height: 1.04;
    font-weight: 950;
}

.corporate-copy ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 800;
}

.corporate-copy li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.corporate-copy li .icon {
    width: 14px;
    min-width: 14px;
    margin-top: 2px;
    color: var(--yellow);
    font-size: 12px;
}

.corporate-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 18px 24px 18px 0;
}

.corporate-visual .btn {
    position: absolute;
    left: 0;
    bottom: 34px;
    z-index: 2;
}

.corporate-visual img {
    width: min(60%, 430px);
    height: 188px;
    object-fit: contain;
    object-position: center;
}

.why-section {
    padding: 4px 0 18px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 8px;
}

.why-card {
    min-height: 78px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 8px;
    padding: 10px 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 7px;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.why-card span {
    position: relative;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    border: 1px solid rgba(246, 181, 22, 0.55);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(246, 181, 22, 0.18), rgba(6, 29, 58, 0.06));
}

.why-card .icon {
    width: 24px;
    min-width: 24px;
    font-size: 22px;
}

.why-card strong {
    color: var(--navy);
    font-size: 11px;
    line-height: 1.12;
    font-weight: 950;
}

.cta-band {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
    margin-bottom: 24px;
    padding: 18px 36px;
    color: #06172D;
    background: linear-gradient(180deg, var(--yellow-2), var(--yellow));
    border-radius: 9px;
}

.cta-band h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 950;
}

.cta-band p {
    margin: 4px 0 0;
    font-weight: 800;
}

.cta-actions {
    display: flex;
    gap: 22px;
}

.cta-actions .btn {
    min-width: 245px;
}

.reviews-section {
    padding-top: 6px;
}

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

.review-card {
    min-height: 134px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 7px;
    box-shadow: 0 8px 22px rgba(6, 29, 58, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--yellow);
    font-size: 18px;
    line-height: 1;
}

.stars .icon {
    width: 17px;
    min-width: 17px;
    font-size: 16px;
}

.review-card p {
    margin: 10px 0 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.review-card strong {
    color: var(--navy);
    font-size: 13px;
    font-weight: 950;
}

.faq-section {
    padding: 0 0 24px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 22px;
}

.faq-item {
    border: 1px solid #D7DDE8;
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
}

.faq-item button {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 16px;
    color: var(--navy);
    background: var(--white);
    border: 0;
    font-size: 13px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.faq-item button span {
    width: 18px;
    min-width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 13px;
}

.faq-item button[aria-expanded="true"] span {
    transform: rotate(45deg);
}

.faq-answer {
    border-top: 1px solid var(--border);
    background: #FBFCFE;
}

.faq-answer p {
    margin: 0;
    padding: 12px 16px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

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

.final-cta {
    background:
        linear-gradient(90deg, rgba(6, 29, 58, 0.74), rgba(6, 29, 58, 0.58)),
        url("../images/final-cta-bg.webp") center/cover no-repeat;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta-inner {
    min-height: 170px;
    display: grid;
    grid-template-columns: 330px 1fr 270px;
    align-items: center;
    gap: 28px;
}

.final-car img {
    width: 320px;
    height: 128px;
    object-fit: contain;
    object-position: center;
}

.final-copy h2 {
    margin: 0 0 6px;
    color: var(--white);
    font-size: 29px;
    line-height: 1.08;
    font-weight: 950;
}

.final-copy p {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
}

.final-actions {
    display: grid;
    gap: 12px;
}

.footer-main {
    padding: 28px 0 0;
    background: #041830;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr 0.95fr 1fr;
    gap: 42px;
    padding-bottom: 24px;
}

.footer-logo-frame {
    display: inline-flex;
    max-width: 230px;
    padding: 5px 8px;
    background: var(--white);
    border-radius: 5px;
}

.footer-brand p {
    max-width: 260px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 700;
}

.footer-main h3 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 950;
}

.footer-main ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-main li,
.footer-main a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
}

.contact-list li,
.contact-list a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-list .icon {
    width: 15px;
    min-width: 15px;
    color: var(--yellow);
    font-size: 13px;
}

.footer-main li + li {
    margin-top: 7px;
}

.footer-main a:hover {
    color: var(--yellow);
}

.footer-bottom {
    min-height: 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.footer-bottom > p {
    text-align: center;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
}

.developer-credit {
    justify-self: end;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
    text-align: right;
}

.developer-credit a {
    color: var(--yellow);
    font-weight: 950;
}

.developer-credit a:hover {
    color: var(--white);
}

.developer-credit a:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 3px;
    border-radius: 3px;
}

.mobile-sticky-cta {
    display: none;
}

.page-lite {
    min-height: 62vh;
    padding: 72px 0;
    background: var(--bg);
}

.page-card {
    max-width: 900px;
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
}

.page-card h1 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 40px;
    line-height: 1.05;
    font-weight: 950;
}

.page-card h2 {
    margin: 26px 0 8px;
    color: var(--navy);
    font-size: 22px;
}

.page-card p,
.page-card li {
    color: var(--muted);
    font-weight: 700;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 1180px) {
    .container {
        width: min(100% - 40px, 1140px);
    }

    .main-nav {
        gap: 16px;
    }

    .brand,
    .brand img {
        width: 210px;
    }

    .header-btn {
        padding-inline: 13px;
    }

    .hero-copy {
        padding-left: 0;
    }

    .service-grid,
    .fare-grid,
    .fleet-grid {
        gap: 14px;
    }
}

@media (max-width: 1024px) {
    .header-inner {
        grid-template-columns: auto 1fr;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        display: grid;
        height: auto;
        max-height: 0;
        overflow: hidden;
        padding: 0 24px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 16px 28px rgba(6, 29, 58, 0.12);
        transition: max-height 220ms ease, padding 220ms ease;
    }

    .main-nav.open {
        max-height: 460px;
        padding: 12px 24px 18px;
    }

    .nav-link {
        height: 44px;
        justify-content: center;
    }

    .header-actions {
        justify-self: end;
    }

    .header-btn {
        display: none;
    }

    .round-action,
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        color: var(--white);
        border: 0;
        font-size: 11px;
        font-weight: 950;
    }

    .round-action.call {
        background: var(--navy);
        font-size: 17px;
    }

    .round-action.whatsapp {
        background: var(--green);
    }

.menu-toggle {
    flex-direction: column;
    gap: 4px;
    background: var(--yellow);
    cursor: pointer;
}

.menu-toggle .icon {
    width: 20px;
    min-width: 20px;
    color: var(--navy);
    font-size: 18px;
}

    .hero-panel,
    .hero-grid,
    .hero-visual {
        min-height: auto;
    }

    .hero-panel::before {
        width: 100%;
        clip-path: none;
    }

    .hero-panel::after {
        display: none;
    }

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

    .hero-copy {
        padding: 42px 0 22px;
    }

    .hero-visual {
        margin: 0 0 52px;
        border-radius: 12px;
        overflow: hidden;
    }

    .hero-visual img {
        height: auto;
        min-height: 260px;
        object-fit: cover;
    }

    .hero-route-card {
        top: 18px;
        right: 16px;
        width: min(360px, calc(100% - 44px));
    }

    .fare-section {
        margin-top: -34px;
    }

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

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

    .booking-intro {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding: 4px 0 18px;
    }

    .booking-intro h2,
    .booking-intro p {
        max-width: none;
    }

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

    .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 38px;
    }

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

    .route-card .btn {
        justify-self: start;
    }

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

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

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

    .corporate-visual {
        min-height: 210px;
    }

    .corporate-visual img {
        width: min(100%, 560px);
    }

    .cta-band {
        grid-template-columns: 1fr;
    }

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

    .cta-actions .btn {
        min-width: 0;
    }

    .final-cta-inner {
        grid-template-columns: 180px 1fr;
    }

    .final-actions {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 720px) {
    body {
        padding-bottom: 62px;
    }

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

    .site-header {
        box-shadow: 0 3px 14px rgba(6, 29, 58, 0.10);
    }

    .header-inner {
        min-height: 64px;
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }

    .brand,
    .brand img {
        width: 168px;
    }

    .brand {
        flex: 0 1 168px;
        min-width: 0;
        max-width: calc(100vw - 138px);
    }

    .header-actions {
        position: fixed;
        top: 15px;
        right: clamp(8px, calc(100vw - 382px), 80px);
        z-index: 1002;
        flex: 0 0 auto;
        gap: 6px;
    }

    .main-nav {
        top: 64px;
    }

    .round-action,
    .menu-toggle {
        width: 34px;
        height: 34px;
    }

    .hero-copy {
        padding-top: 34px;
        min-width: 0;
    }

    .hero-badge {
        padding: 6px 12px;
        font-size: 10px;
    }

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

    .hero h1 span {
        white-space: normal;
    }

    .hero p {
        max-width: 100%;
        font-size: 15px;
    }

    .hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
    }

    .hero-features > span {
        display: grid !important;
        grid-template-columns: 22px minmax(0, 1fr);
        align-items: start;
        justify-items: start;
        gap: 6px;
        padding-left: 0 !important;
        min-height: 44px;
        text-align: left !important;
        line-height: 1.35;
    }

    .hero-features > span > .icon {
        position: static;
        width: 18px;
        min-width: 18px;
        margin-top: 2px;
        font-size: 17px;
    }

    .hero-features > span > span {
        min-width: 0;
    }

    .hero-features strong {
        line-height: 1.25;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        min-height: 44px;
    }

    .hero-visual {
        margin-bottom: 42px;
    }

    .hero-visual img {
        min-height: 212px;
    }

    .hero-route-card {
        position: absolute;
        top: 16px;
        right: 12px;
        width: min(340px, calc(100% - 24px));
        margin: 0;
        padding: 11px 14px;
        border-radius: 10px;
    }

    .hero-route-link {
        grid-template-columns: 22px 1fr;
        gap: 9px;
        min-height: 35px;
        font-size: 11px;
    }

    .hero-route-link .icon {
        width: 18px;
        min-width: 18px;
        font-size: 16px;
    }

    .fare-grid,
    .fleet-grid,
    .review-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .fare-card {
        grid-template-columns: 126px 1fr;
        padding: 14px;
    }

    .fare-image {
        min-height: 94px;
    }

    .fare-image img {
        max-width: 126px;
        height: 92px;
    }

    .fare-content strong {
        font-size: 27px;
    }

    .booking-card {
        padding: 18px;
    }

    .booking-intro h2 {
        font-size: 31px;
    }

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

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .service-card {
        min-height: 0;
    }

    .icon-circle {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .icon-circle .icon {
        width: 22px;
        min-width: 22px;
        font-size: 20px;
    }

    .route-card {
        padding: 20px 16px;
    }

    .route-card h2 {
        font-size: 21px;
    }

    .route-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }

    .route-timeline::before {
        display: none;
    }

    .route-card .btn {
        width: 100%;
        min-height: 48px;
        text-align: center;
    }

    .fleet-card img {
        height: 100px;
    }

    .corporate-copy {
        padding: 24px 18px 0;
    }

    .corporate-copy h2 {
        font-size: 28px;
    }

    .corporate-copy ul {
        grid-template-columns: 1fr;
    }

    .corporate-visual {
        min-height: 210px;
        padding: 18px 18px 0;
        display: grid;
        align-items: end;
    }

    .corporate-visual .btn {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-bottom: 8px;
    }

    .corporate-visual img {
        width: 100%;
        height: 160px;
    }

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

    .cta-band {
        padding: 18px;
    }

    .cta-band h2 {
        font-size: 22px;
    }

    .cta-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .final-cta-inner {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .final-car img {
        width: min(100%, 290px);
        height: 116px;
    }

    .final-copy h2 {
        font-size: 24px;
    }

    .final-actions {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 12px;
        padding: 14px 0 18px;
    }

    .footer-bottom p {
        text-align: left;
    }

    .developer-credit {
        justify-self: start;
        text-align: left;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 50% !important;
        transform: translateX(-50%);
        bottom: 16px;
        z-index: 1001;
        width: calc(100% - 32px) !important;
        max-width: 380px !important;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 8px;
        box-sizing: border-box;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 10px 30px rgba(6, 29, 58, 0.16), 0 2px 10px rgba(6, 29, 58, 0.08);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .mobile-sticky-cta a {
        min-width: 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: var(--white);
        background: linear-gradient(135deg, var(--navy) 0%, #0d386b 100%);
        border-radius: 12px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.2px;
        text-decoration: none;
        box-shadow: 0 2px 4px rgba(6, 29, 58, 0.08);
        transition: transform 0.1s ease, box-shadow 0.1s ease;
        white-space: nowrap;
    }

    .mobile-sticky-cta a:active {
        transform: scale(0.95);
    }

    .mobile-sticky-cta a .icon {
        width: 16px;
        min-width: 16px;
        font-size: 15px;
    }

    .mobile-sticky-cta a:nth-child(2) {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        box-shadow: 0 2px 6px rgba(18, 140, 126, 0.2);
    }

    .mobile-sticky-cta a:nth-child(3) {
        color: var(--navy);
        background: linear-gradient(135deg, var(--yellow) 0%, #ffc400 100%);
        box-shadow: 0 2px 6px rgba(255, 196, 0, 0.2);
    }

    .page-lite {
        padding: 42px 0;
    }

    .page-card {
        padding: 24px;
    }

    .page-card h1 {
        font-size: 32px;
    }
}

@media (max-width: 420px) {
    .container {
        width: calc(100% - 22px);
    }

    .brand,
    .brand img {
        width: 140px;
    }

    .brand {
        flex-basis: 140px;
        max-width: calc(100vw - 118px);
    }

    .header-actions {
        top: 14px;
        right: 6px;
        gap: 4px;
    }

    .round-action,
    .menu-toggle {
        width: 30px;
        height: 30px;
    }

    .round-action .icon {
        width: 15px;
        min-width: 15px;
        font-size: 14px;
    }

    .menu-toggle .icon {
        width: 18px;
        min-width: 18px;
        font-size: 16px;
    }

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

    .fare-card {
        grid-template-columns: 106px 1fr;
        gap: 8px;
    }

    .fare-image img {
        max-width: 106px;
        height: 82px;
    }

    .fare-actions,
    .fleet-actions {
        grid-template-columns: 1fr 40px;
    }
}

/* Section Reveal Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}
