/*
    File: style2.css
    Purpose: One-page transportation experience with click-based booking.
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&family=Poppins:wght@400;500;600;700&display=swap');

/* --- DESIGN TOKENS --- */
:root {
    --primary: #FE7F2D;
    --accent: #FFB66E;
    --accent-soft: #FFF0DF;
    --navy: #233D4D;
    --teal: #215E61;
    --text: #2F3B4C;
    --muted: #6A7482;
    --surface: #FFFFFF;
    --bg: #F7F8FB;
    --border: #E6E9F0;
    --white: #ffffff;
    --transition-speed: 0.4s;
    --transition-curve: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- GLOBAL RESET AND BASE PAGE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-height: 100%;
    overflow-x: hidden;
    background:
        linear-gradient(180deg, rgba(255, 240, 223, 0.64) 0%, rgba(247, 248, 251, 0) 30%),
        var(--bg);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

a {
    color: inherit;
}

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

/* --- HEADER AND DESKTOP NAVIGATION --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 92px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(230, 233, 240, 0.9);
    backdrop-filter: blur(18px);
    overflow: visible;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
}

.header-left {
    min-width: 0;
}

.header-right {
    flex: 0 0 auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    min-width: 0;
}

.logo span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-mark {
    display: block;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 7px;
    object-fit: cover;
}

.divider {
    width: 1px;
    height: 35px;
    margin: 0 22px;
    background: #e0e0e0;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin: 0 16px;
    color: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: color var(--transition-speed) var(--transition-curve);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transition: width var(--transition-speed) var(--transition-curve);
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--primary);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.header-right {
    gap: 18px;
}

/* --- LANGUAGE SWITCHER --- */
.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.lang-button {
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    padding: 0;
    transition: color var(--transition-speed) var(--transition-curve);
}

.lang-button:hover,
.lang-button.active {
    color: var(--primary);
}

/* --- SHARED BUTTON STYLES --- */
.btn-back,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform var(--transition-speed) var(--transition-curve),
        background var(--transition-speed) var(--transition-curve),
        border-color var(--transition-speed) var(--transition-curve),
        color var(--transition-speed) var(--transition-curve),
        box-shadow var(--transition-speed) var(--transition-curve);
}

.btn-back {
    min-width: 160px;
    padding: 0 22px;
    border: 1px solid var(--navy);
    color: var(--primary);
}

.btn-primary {
    padding: 0 30px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 18px 36px rgba(254, 127, 45, 0.22);
}

.btn-secondary {
    padding: 0 30px;
    border: 1px solid rgba(35, 61, 77, 0.55);
    background: transparent;
    color: var(--navy);
}

.btn-back:hover,
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
}

.btn-back:hover,
.btn-secondary:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    border-color: var(--navy);
    background: var(--navy);
    box-shadow: 0 20px 42px rgba(35, 61, 77, 0.18);
}

/* --- MOBILE MENU TOGGLE --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
}

.bar {
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: var(--navy);
    transition: transform var(--transition-speed) var(--transition-curve), opacity var(--transition-speed) var(--transition-curve);
}

.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- MOBILE NAVIGATION PANEL --- */
.mobile-nav {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 20px 38px rgba(35, 61, 77, 0.08);
    opacity: 0;
    transition: max-height var(--transition-speed) var(--transition-curve), opacity var(--transition-speed) var(--transition-curve);
}

.mobile-nav.active {
    max-height: 360px;
    opacity: 1;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    padding: 0 24px 34px;
}

.mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid #f4f5f8;
    color: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-nav a.active,
.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-back-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 160px;
    height: 44px;
    min-height: 44px;
    margin: 18px 0 0;
    padding: 0 22px !important;
    border: 1px solid var(--navy);
    border-bottom: 1px solid var(--navy) !important;
    border-radius: 999px;
    color: var(--primary) !important;
    line-height: 1;
    overflow: visible;
    transition:
        background var(--transition-speed) var(--transition-curve),
        border-color var(--transition-speed) var(--transition-curve),
        color var(--transition-speed) var(--transition-curve);
}

.mobile-back-link:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white) !important;
}


/* --- HERO SECTION --- */
.transport-hero {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px 44px;
    align-items: center;
    min-height: 560px;
    padding: 34px 6% 42px;
    overflow: hidden;
}

.transport-hero::before {
    content: '';
    position: absolute;
    left: 6%;
    bottom: 64px;
    width: min(720px, 70vw);
    height: 18px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, var(--navy) 0 54px, transparent 54px 78px);
    opacity: 0.13;
}

.hero-copy,
.hero-visual,
.hero-booking,
.trust-strip,
.section-heading,
.service-card,
.process-copy,
.timeline,
.booking-panel,
.request-summary {
    position: relative;
    z-index: 1;
}

/* --- SHARED SECTION LABEL --- */
.section-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 9px 15px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

/* --- HERO COPY AND SECTION HEADINGS --- */
.hero-copy h1,
.section-heading h2,
.process-copy h2,
.booking-copy h2,
.request-summary h2 {
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 0.98;
}

.hero-copy h1 {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 5.6vw, 5.2rem);
}

.hero-copy p {
    max-width: 610px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

/* --- HERO ACTION BUTTON ROW --- */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

/* --- HERO PHOTO AREA --- */
.hero-visual {
    min-height: 390px;
}

/* Main transportation hero photo with a soft overlay and floating animation. */
.transport-photo {
    position: absolute;
    inset: 0;
    min-height: 390px;
    border: 10px solid var(--white);
    border-radius: 30px;
    background-image:
        linear-gradient(90deg, rgba(15, 23, 32, 0.06), rgba(15, 23, 32, 0.2)),
        url('https://res.cloudinary.com/dx6dhuqw2/image/upload/f_auto,q_auto/JKWORLD/transportation-Main.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 32px 80px rgba(35, 61, 77, 0.18);
    animation: photoFloat 7s ease-in-out infinite;
}

/* Accent bar layered over the hero photo to tie the image back to the brand palette. */
.transport-photo::after {
    content: '';
    position: absolute;
    inset: auto 30px 28px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--teal));
}

/* Small route cards floating on top of the hero photo. */
.route-card {
    position: absolute;
    z-index: 2;
    width: 174px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 54px rgba(35, 61, 77, 0.16);
    backdrop-filter: blur(16px);
}

.route-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.route-card strong {
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
}

.route-card-top {
    top: 28px;
    left: -28px;
}

.route-card-bottom {
    right: -18px;
    bottom: 44px;
}

/* --- CLICK-ONLY WHATSAPP BOOKING PANEL --- */
.hero-booking {
    grid-column: 1 / -1;
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
    gap: 22px;
    align-items: stretch;
    margin: 0 auto;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(35, 61, 77, 0.14);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(35, 61, 77, 0.98), rgba(33, 94, 97, 0.94)),
        var(--navy);
    box-shadow: 0 28px 72px rgba(35, 61, 77, 0.18);
}

.hero-booking .booking-panel,
.hero-booking .request-summary {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.hero-booking .booking-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    padding: 0;
}

.hero-booking .booking-copy {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    max-width: none;
    margin: 0;
}

.hero-booking .booking-copy .section-kicker {
    margin: 0;
    background: rgba(255, 182, 110, 0.16);
    color: var(--accent);
}

/* WhatsApp request label and logo inside the booking panel header. */
.whatsapp-kicker {
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 9px 20px 9px 12px;
    font-size: 1.05rem;
    letter-spacing: 1.2px;
}

.whatsapp-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    aspect-ratio: 1;
    border-radius: 14px;
    background: transparent;
    overflow: hidden;
}

.whatsapp-logo svg {
    width: 100%;
    height: 100%;
}

.booking-copy-text {
    display: grid;
    gap: 6px;
}

.hero-booking .booking-copy h2 {
    margin: 0;
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1.1;
}

.hero-booking .booking-copy p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    line-height: 1.5;
}

.hero-booking .option-group {
    padding: 10px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-booking .option-group h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 0.82rem;
}

.hero-booking .option-row {
    gap: 8px;
}

.hero-booking .option-chip {
    min-height: 34px;
    padding: 0 12px;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.76rem;
}

.hero-booking .option-chip:hover {
    border-color: rgba(255, 182, 110, 0.75);
    background: rgba(255, 255, 255, 0.13);
}

.hero-booking .option-chip.active {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--navy);
}

.hero-booking .request-summary {
    position: relative;
    top: auto;
    padding: 16px 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-booking .request-summary .section-kicker {
    margin-bottom: 12px;
    background: rgba(255, 182, 110, 0.16);
    color: var(--accent);
}

.hero-booking .request-summary h2 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 1.55rem;
    line-height: 1.1;
}

.hero-booking .request-summary ul {
    gap: 0;
    margin-bottom: 16px;
}

.hero-booking .request-summary li {
    padding: 9px 0;
    border-bottom-color: rgba(255, 255, 255, 0.14);
    font-size: 0.84rem;
}

.hero-booking .request-summary strong {
    color: var(--white);
}

.hero-booking .request-summary span {
    color: rgba(255, 255, 255, 0.72);
}

.hero-booking .summary-action {
    min-height: 40px;
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    font-size: 0.72rem;
}

/* --- TRUST HIGHLIGHT STRIP --- */
.trust-strip {
    width: min(1180px, 90%);
    margin: -26px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--border);
    box-shadow: 0 24px 55px rgba(35, 61, 77, 0.07);
}

.trust-strip div {
    min-height: 116px;
    padding: 24px;
    background: var(--white);
}

.trust-strip strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
}

.trust-strip span {
    color: var(--muted);
    line-height: 1.65;
}

/* --- SERVICES AND PROCESS SECTIONS --- */
.services-section,
.process-section {
    padding: 86px 5%;
}

.section-heading {
    max-width: 850px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading h2,
.process-copy h2,
.booking-copy h2,
.request-summary h2 {
    font-size: clamp(2.2rem, 4.8vw, 4.6rem);
}

/* Worker transport service card grid. */
.service-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 20px 48px rgba(35, 61, 77, 0.06);
    transition: transform var(--transition-speed) var(--transition-curve), box-shadow var(--transition-speed) var(--transition-curve), border-color var(--transition-speed) var(--transition-curve);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(254, 127, 45, 0.32);
    box-shadow: 0 28px 64px rgba(35, 61, 77, 0.11);
}

.card-number {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.84rem;
    font-weight: 900;
}

.service-card h3 {
    margin: 38px 0 12px;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.38rem;
    line-height: 1.15;
}

.service-card p,
.process-copy p,
.booking-copy p {
    color: var(--muted);
    line-height: 1.75;
}

/* Process band with simple three-step timeline. */
.process-section {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 36px;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 246, 235, 0.65), rgba(247, 248, 251, 0.2));
}

.process-copy {
    max-width: 520px;
}

.process-copy p {
    margin-top: 20px;
}

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

.timeline-step {
    position: relative;
    min-height: 240px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(35, 61, 77, 0.08);
    border-radius: 22px;
    background: var(--white);
}

.timeline-step::after {
    content: '';
    position: absolute;
    right: -36px;
    bottom: -36px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(254, 127, 45, 0.12);
}

.timeline-step span {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.timeline-step h3 {
    margin: 42px 0 10px;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
}

.timeline-step p {
    color: var(--muted);
    line-height: 1.65;
}

/* Shared booking and summary card styling used by the request builder. */
.booking-panel,
.request-summary {
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 24px 64px rgba(35, 61, 77, 0.08);
}

.booking-panel {
    padding: 30px;
}

.booking-copy {
    max-width: 680px;
    margin-bottom: 30px;
}

.booking-copy h2 {
    margin-bottom: 14px;
}

.option-group {
    padding: 22px 0;
    border-top: 1px solid var(--border);
}

.option-group h3 {
    margin-bottom: 14px;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.02rem;
}

.option-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.option-chip {
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(35, 61, 77, 0.16);
    border-radius: 999px;
    background: var(--bg);
    color: var(--navy);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform var(--transition-speed) var(--transition-curve), background var(--transition-speed) var(--transition-curve), border-color var(--transition-speed) var(--transition-curve), color var(--transition-speed) var(--transition-curve);
}

.option-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(254, 127, 45, 0.42);
}

.option-chip.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.request-summary {
    position: sticky;
    top: 116px;
    padding: 28px;
}

.request-summary h2 {
    margin-bottom: 22px;
}

.request-summary ul {
    display: grid;
    gap: 14px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.request-summary li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.request-summary strong {
    color: var(--navy);
}

.request-summary span {
    color: var(--muted);
    text-align: right;
}

.summary-action {
    width: 100%;
}

/* --- FOOTER SECTION --- */
.transport-footer {
    margin-top: 20px;
    padding: 42px 5% 0;
    background: #0f1720;
    color: #dbe7f1;
    border-top: 4px solid rgba(254, 127, 45, 0.82);
}

.footer-content {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(35, 61, 77, 0.82), rgba(33, 94, 97, 0.56));
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.18);
}

.footer-main .section-kicker {
    background: rgba(255, 182, 110, 0.16);
    color: var(--accent);
}

.footer-main h2 {
    max-width: 760px;
    margin-bottom: 14px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1;
}

.footer-main p,
.footer-brand p {
    color: #a8b7c8;
    line-height: 1.75;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.footer-whatsapp {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
}

.footer-whatsapp:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.72fr 1fr 0.78fr;
    gap: 34px;
    padding: 42px 0 34px;
}

.footer-brand h3,
.footer-links h4,
.footer-info h4,
.footer-qr h4 {
    margin-bottom: 16px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.footer-brand h3 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.55rem;
}

.footer-logo-mark {
    width: 46px;
    height: 46px;
}

.footer-links,
.footer-info,
.footer-qr {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-links a,
.footer-info span,
.footer-qr p,
.footer-bottom p,
.footer-bottom a {
    color: #a8b7c8;
    text-decoration: none;
}

.footer-info strong {
    color: #dbe7f1;
}

.footer-links a {
    transition: color var(--transition-speed) var(--transition-curve);
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--white);
}

.qr-frame {
    display: inline-flex;
    width: 168px;
    max-width: 100%;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(255, 182, 110, 0.35);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-speed) var(--transition-curve), border-color var(--transition-speed) var(--transition-curve);
}

.qr-frame:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
}

.qr-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-qr p {
    max-width: 190px;
    line-height: 1.55;
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

/* --- SCROLL TO TOP BUTTON --- */
.scroll-top-button {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 900;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(35, 61, 77, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity var(--transition-speed) var(--transition-curve), visibility var(--transition-speed) var(--transition-curve), transform var(--transition-speed) var(--transition-curve), background var(--transition-speed) var(--transition-curve);
}

.scroll-top-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-button:hover {
    background: var(--navy);
    transform: translateY(-3px);
}

.scroll-top-button svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.75s var(--transition-curve), transform 0.75s var(--transition-curve);
}

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

/* Gentle movement for the hero transportation photo. */
@keyframes photoFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(0.8deg);
    }
}

/* --- REDUCED MOTION ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* --- RESPONSIVE: SMALL DESKTOP --- */
@media (max-width: 1180px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .transport-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-visual {
        min-height: 460px;
    }

    .transport-photo {
        min-height: 460px;
    }
}

/* --- RESPONSIVE: TABLET --- */
@media (max-width: 992px) {
    .site-header {
        min-height: 82px;
    }

    .divider,
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        top: 82px;
    }

    .btn-back {
        min-width: 138px;
        min-height: 40px;
        padding: 0 15px;
        font-size: 0.68rem;
    }

    .site-header > .header-right > .btn-back {
        display: none;
    }

    .transport-hero,
    .services-section,
    .process-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .trust-strip,
    .hero-booking,
    .process-section {
        grid-template-columns: 1fr;
    }

    .hero-booking .request-summary {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }

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

    .hero-booking .booking-copy {
        align-items: flex-start;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .request-summary {
        position: relative;
        top: auto;
    }

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

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

    .footer-actions {
        justify-content: flex-start;
    }
}

/* --- RESPONSIVE: LARGE PHONES --- */
@media (max-width: 720px) {
    .transport-hero {
        padding-top: 42px;
        padding-bottom: 46px;
    }

    .hero-copy h1 {
        font-size: 2.75rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-visual,
    .transport-photo {
        min-height: 340px;
    }

    .transport-photo {
        border-width: 6px;
        border-radius: 22px;
    }

    .route-card {
        width: 146px;
        padding: 14px 16px;
        border-radius: 16px;
    }

    .route-card strong {
        font-size: 1.18rem;
    }

    .route-card-top {
        left: 10px;
        top: 10px;
    }

    .route-card-bottom {
        right: 10px;
        bottom: 22px;
    }

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

    .services-section,
    .process-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .booking-panel,
    .request-summary {
        border-radius: 20px;
        padding: 22px;
    }

    .hero-booking {
        padding: 18px;
    }

    .hero-booking .request-summary {
        padding: 18px 0 0;
    }

    .option-chip {
        flex: 1 1 auto;
    }

    .transport-footer {
        padding-top: 34px;
    }

    .footer-main {
        padding: 24px;
        border-radius: 20px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* --- RESPONSIVE: SMALL PHONES --- */
@media (max-width: 520px) {
    .site-header {
        min-height: 78px;
        padding: 0 16px;
        gap: 14px;
    }

    .header-left {
        flex: 1 1 auto;
    }

    .header-right {
        gap: 14px;
        margin-left: auto;
    }

    .mobile-nav {
        top: 78px;
    }

    .logo {
        font-size: 1.02rem;
        letter-spacing: 0.6px;
        line-height: 1.15;
        gap: 8px;
        max-width: 185px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
    }

    .btn-back {
        display: none;
    }

    .header-right > .language-switcher {
        gap: 7px;
        padding: 0;
        font-size: 0.76rem;
        margin-left: 2px;
    }

    .transport-hero,
    .services-section,
    .process-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-copy h1 {
        font-size: 2.35rem;
    }

    .hero-copy p,
    .service-card p,
    .process-copy p,
    .booking-copy p {
        font-size: 0.95rem;
    }

    .section-heading h2,
    .process-copy h2,
    .booking-copy h2,
    .request-summary h2 {
        font-size: 2rem;
    }

    .service-card,
    .timeline-step {
        min-height: auto;
        padding: 22px;
        border-radius: 18px;
    }

    .request-summary li {
        display: grid;
        gap: 6px;
    }

    .request-summary span {
        text-align: left;
    }

    .scroll-top-button {
        right: 18px;
        bottom: 18px;
        width: 46px;
        height: 46px;
    }

    .footer-actions,
    .footer-actions .btn-primary,
    .footer-actions .btn-secondary {
        width: 100%;
    }

    .footer-grid {
        gap: 28px;
    }
}
