* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #e5eef5;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.24), transparent 34rem),
        radial-gradient(circle at 85% 12%, rgba(245, 158, 11, 0.18), transparent 28rem),
        linear-gradient(135deg, #06111d 0%, #071827 42%, #0b1f30 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 82px 0;
    position: relative;
}

.route-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
    opacity: 0.7;
}

.route-line {
    position: absolute;
    width: 42rem;
    height: 42rem;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 44% 56% 62% 38%;
    transform: rotate(-18deg);
}

.route-line-one {
    top: -18rem;
    right: -12rem;
}

.route-line-two {
    bottom: -22rem;
    left: -18rem;
}

.route-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 28px rgba(245, 158, 11, 0.8);
}

.route-dot-one {
    top: 22%;
    left: 8%;
}

.route-dot-two {
    top: 60%;
    right: 12%;
}

.route-dot-three {
    bottom: 18%;
    left: 48%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 24, 39, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
    background: rgba(7, 24, 39, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background:
        linear-gradient(135deg, var(--accent), #ffd166);
    color: #111827;
    font-weight: 900;
    letter-spacing: -0.06em;
    box-shadow: 0 16px 35px rgba(245, 158, 11, 0.32);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 0.98rem;
    line-height: 1.1;
}

.brand small {
    color: #9fb3c8;
    font-size: 0.76rem;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: #c7d7e5;
    font-size: 0.92rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.main-nav .nav-cta {
    color: #0c1724;
    background: var(--accent);
    font-weight: 800;
    padding-inline: 18px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #ffffff;
    border-radius: 99px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    padding-top: 72px;
    min-height: 690px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 54px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: #b6c9d8;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 34px;
    height: 2px;
    background: var(--accent);
    border-radius: 99px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(2.55rem, 7vw, 5.25rem);
    line-height: 0.94;
    letter-spacing: -0.075em;
    margin-bottom: 22px;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.35rem);
    line-height: 1;
    letter-spacing: -0.055em;
    margin-bottom: 18px;
}

h3 {
    font-size: 1.12rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-text,
.section-heading p,
.about-panel p,
.routes-copy p,
.faq-intro p,
.cta-card p {
    color: #b7c9d8;
}

.hero-text {
    max-width: 630px;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #101827;
    background: linear-gradient(135deg, var(--accent), #ffd166);
    box-shadow: 0 18px 38px rgba(245, 158, 11, 0.28);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 560px;
    gap: 12px;
}

.hero-stats div {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats strong {
    display: block;
    font-size: 1.45rem;
    color: #ffffff;
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 6px;
    color: #9fb3c8;
    font-size: 0.82rem;
}

.hero-visual {
    position: relative;
}

.journey-card {
    position: relative;
    padding: 20px;
    min-height: 560px;
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.24), rgba(7, 24, 39, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.journey-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.13);
    border-radius: 30px;
    pointer-events: none;
}

.journey-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.status-pill,
.eta {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.78rem;
    font-weight: 900;
}

.status-pill {
    color: #052e2b;
    background: #8df6de;
}

.eta {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.vehicle-scene {
    position: relative;
    height: 330px;
    margin-top: 30px;
}

.sun {
    position: absolute;
    top: 18px;
    right: 42px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff4bf, var(--accent));
    box-shadow: 0 0 70px rgba(245, 158, 11, 0.45);
}

.road {
    position: absolute;
    left: -60px;
    right: -60px;
    height: 96px;
    border-radius: 50%;
    border-top: 16px solid rgba(255, 255, 255, 0.12);
    transform: rotate(-8deg);
}

.road-back {
    bottom: 84px;
}

.road-front {
    bottom: 22px;
    border-top-color: rgba(245, 158, 11, 0.22);
}

.van {
    position: absolute;
    left: 50%;
    bottom: 92px;
    width: 265px;
    height: 126px;
    transform: translateX(-50%);
    animation: floatVan 4.5s ease-in-out infinite;
}

.van-body {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 28px;
    height: 82px;
    border-radius: 28px 34px 18px 18px;
    background:
        linear-gradient(135deg, #ffffff, #cfe8f3);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.24);
}

.van-body::before {
    content: "";
    position: absolute;
    right: 0;
    top: 26px;
    width: 44px;
    height: 28px;
    border-radius: 18px 0 0 18px;
    background: var(--secondary);
}

.window {
    position: absolute;
    top: 14px;
    height: 27px;
    border-radius: 9px;
    background: linear-gradient(135deg, #0d2538, #1b5770);
}

.window-one {
    left: 28px;
    width: 62px;
}

.window-two {
    left: 102px;
    width: 54px;
}

.door-line {
    position: absolute;
    top: 12px;
    bottom: 10px;
    left: 170px;
    width: 2px;
    background: rgba(7, 24, 39, 0.14);
}

.wheel {
    position: absolute;
    bottom: 13px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background:
        radial-gradient(circle, #cbd5e1 0 25%, #1f2937 26% 100%);
    border: 5px solid #0f172a;
}

.wheel-one {
    left: 44px;
}

.wheel-two {
    right: 44px;
}

.pin {
    position: absolute;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.pin::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.pin-one {
    left: 8px;
    bottom: 110px;
}

.pin-two {
    right: 8px;
    top: 86px;
}

.booking-panel {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    padding: 18px;
    border-radius: 26px;
    background: rgba(5, 18, 30, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-row {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: center;
}

.booking-row small,
.contact-card small {
    display: block;
    color: #93a9ba;
    font-size: 0.76rem;
    margin-bottom: 2px;
}

.booking-row strong {
    display: block;
    color: #ffffff;
    font-size: 0.94rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.pickup {
    background: #22c55e;
}

.dropoff {
    background: var(--accent);
}

.booking-line {
    width: 2px;
    height: 25px;
    margin-left: 6px;
    background: rgba(255, 255, 255, 0.22);
}

.floating-note {
    position: absolute;
    z-index: 3;
    min-width: 160px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.floating-note strong,
.floating-note span {
    display: block;
}

.floating-note span {
    color: #526071;
    font-size: 0.8rem;
}

.note-one {
    left: -20px;
    top: 105px;
}

.note-two {
    right: -18px;
    bottom: 105px;
}

.trust-strip {
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.06);
    border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    text-align: center;
}

.trust-grid span {
    color: #d8e5ef;
    font-weight: 800;
    font-size: 0.9rem;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.service-grid,
.process-grid,
.testimonial-grid {
    display: grid;
    gap: 18px;
}

.service-grid {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.process-step,
.testimonial-card,
.score-card,
.about-panel,
.map-card,
.cta-card {
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.065);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.18);
}

.service-card {
    position: relative;
    min-height: 280px;
    padding: 24px;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -58px;
    bottom: -58px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.16);
    transition: transform 0.24s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.095);
    border-color: rgba(245, 158, 11, 0.32);
}

.service-card:hover::after {
    transform: scale(1.35);
}

.icon-badge {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    color: #101827;
    background: linear-gradient(135deg, var(--accent), #ffe29a);
    font-weight: 900;
    font-size: 1.35rem;
}

.service-card p,
.process-step p,
.testimonial-card p {
    color: #aec2d2;
}

.service-card a {
    position: absolute;
    left: 24px;
    bottom: 22px;
    color: #ffffff;
    font-weight: 900;
}

.about {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.74fr;
    gap: 22px;
    align-items: stretch;
}

.about-panel,
.score-card {
    border-radius: 34px;
    padding: 32px;
}

.about-checks {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.about-checks div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
}

.about-checks strong,
.about-checks span {
    display: block;
}

.about-checks strong {
    color: #ffffff;
    margin-bottom: 4px;
}

.about-checks span {
    color: #a8bdce;
    font-size: 0.92rem;
}

.score-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(145deg, rgba(245, 158, 11, 0.16), rgba(15, 118, 110, 0.13)),
        rgba(255, 255, 255, 0.06);
}

.score-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 26px;
}

.score-header span {
    color: #b8ccdb;
    font-weight: 800;
}

.score-header strong {
    font-size: 4rem;
    line-height: 0.85;
    letter-spacing: -0.08em;
    color: #ffffff;
}

.score-bars {
    display: grid;
    gap: 16px;
    margin-bottom: 26px;
}

.score-bars div {
    display: grid;
    gap: 8px;
}

.score-bars span {
    color: #c6d7e3;
    font-size: 0.84rem;
}

.score-bars div::after {
    content: "";
    display: block;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
}

.score-bars b {
    display: block;
    height: 9px;
    margin-bottom: -17px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    position: relative;
    z-index: 2;
}

.score-card p {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.score-card small {
    color: #a8bdce;
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.process-step {
    padding: 24px;
    border-radius: 28px;
    position: relative;
}

.process-step span {
    display: inline-flex;
    margin-bottom: 26px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.14);
    color: var(--accent);
    font-weight: 900;
}

.routes {
    padding-top: 34px;
}

.routes-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.map-card {
    position: relative;
    height: 500px;
    border-radius: 38px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(245, 158, 11, 0.11)),
        rgba(255, 255, 255, 0.05);
}

.map-card::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 30px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle, black, transparent 82%);
}

.map-road {
    position: absolute;
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
}

.road-a {
    width: 78%;
    left: 11%;
    top: 50%;
    transform: rotate(-24deg);
}

.road-b {
    width: 62%;
    left: 20%;
    top: 50%;
    transform: rotate(28deg);
}

.road-c {
    width: 56%;
    left: 22%;
    top: 50%;
    background: rgba(245, 158, 11, 0.4);
}

.map-point {
    position: absolute;
    display: grid;
    gap: 5px;
    justify-items: center;
    color: #ffffff;
    font-weight: 900;
}

.map-point b {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.map-point span {
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(7, 24, 39, 0.72);
    font-size: 0.75rem;
}

.point-airport {
    left: 12%;
    top: 18%;
}

.point-city {
    right: 15%;
    top: 23%;
}

.point-hotel {
    left: 18%;
    bottom: 18%;
}

.point-home {
    right: 18%;
    bottom: 16%;
}

.route-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.route-list div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.route-list strong,
.route-list span {
    display: block;
}

.route-list span {
    color: #a8bdce;
    margin-top: 4px;
}

.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
    padding: 24px;
    border-radius: 28px;
}

.stars {
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    color: #ffffff;
}

.testimonial-card span {
    color: #93a9ba;
    font-size: 0.86rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 32px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    border: 0;
    padding: 18px;
    background: transparent;
    color: #ffffff;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.faq-item button span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.18);
    color: var(--accent);
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    padding: 0 18px 18px;
    margin: 0;
    color: #a8bdce;
}

.faq-item.active .faq-answer {
    max-height: 180px;
}

.faq-item.active button span {
    transform: rotate(45deg);
}

.final-cta {
    padding-top: 30px;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 0.74fr;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: 38px;
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(15, 118, 110, 0.16)),
        rgba(255, 255, 255, 0.065);
}

.contact-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(7, 24, 39, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card a,
.contact-card div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
}

.contact-card strong {
    display: block;
    color: #ffffff;
    overflow-wrap: anywhere;
}

.contact-card .btn {
    background: linear-gradient(135deg, var(--accent), #ffd166);
    color: #101827;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 999px;
    color: #052e16;
    background: #25d366;
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

.whatsapp-float span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.site-footer {
    padding: 28px 0;
    color: #8fa5b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-wrap p {
    margin: 0;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatVan {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@media (max-width: 980px) {
    .section {
        padding: 68px 0;
    }

    .hero-grid,
    .about-grid,
    .routes-grid,
    .faq-grid,
    .cta-card {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 54px;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .journey-card {
        min-height: 520px;
    }

    .note-one {
        left: 14px;
    }

    .note-two {
        right: 14px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 76px;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 8px;
        padding: 16px;
        border-radius: 24px;
        background: rgba(7, 24, 39, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
        transform: translateY(-16px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 13px 14px;
        border-radius: 16px;
    }

    h1 {
        font-size: clamp(2.45rem, 16vw, 4.2rem);
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        margin-top: 8px;
    }

    .journey-card {
        min-height: 500px;
        border-radius: 30px;
        padding: 16px;
    }

    .vehicle-scene {
        height: 300px;
    }

    .van {
        width: 220px;
    }

    .floating-note {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 12px;
        width: 100%;
    }

    .trust-grid,
    .service-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 240px;
    }

    .score-header strong {
        font-size: 3.3rem;
    }

    .map-card {
        height: 390px;
    }

    .cta-card {
        padding: 24px;
        border-radius: 30px;
    }

    .whatsapp-float strong {
        display: none;
    }

    .whatsapp-float {
        padding: 11px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .brand strong {
        max-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .journey-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .pin-two {
        right: 0;
    }

    .contact-card {
        padding: 12px;
    }
}