:root {
    --orb-bg: #ffffff;
    --orb-bg-soft: #f7f9fc;
    --orb-ink: #4e5258;
    --orb-muted: #6a6f77;
    --orb-secondary: #4e5258;
    --orb-line: rgba(78, 82, 88, 0.18);
    --orb-primary: #186ac2;
    --orb-primary-dark: #145aa4;
    --orb-card: #ffffff;
    --orb-shadow: 0 24px 70px rgba(24, 106, 194, 0.14);
    --orb-radius-lg: 32px;
    --orb-radius-md: 20px;
    --orb-radius-sm: 12px;
    --orb-container: min(1160px, calc(100vw - 36px));
    --orb-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--orb-font);
    background: var(--orb-bg);
    color: var(--orb-ink);
    line-height: 1.6;
}

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

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

.container {
    width: var(--orb-container);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--orb-line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--orb-primary), var(--orb-primary-dark));
    box-shadow: 0 12px 24px rgba(24, 106, 194, 0.28);
}

.brand-text {
    font-size: 1.05rem;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav a {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--orb-muted);
}

.primary-nav a:hover,
.primary-nav a:focus {
    color: var(--orb-primary);
}

.nav-cta {
    color: #fff !important;
    background: var(--orb-primary);
    padding: 11px 18px;
    border-radius: 999px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 86px 0 70px;
    background:
        radial-gradient(circle at 12% 12%, rgba(24, 106, 194, 0.16), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(78, 82, 88, 0.10), transparent 32%),
        linear-gradient(135deg, #ffffff, #ffffff);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto -10% -28% 50%;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: rgba(24, 106, 194, 0.12);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 52px;
    align-items: center;
}

.hero-copy h1,
.section-heading h2,
.map-copy h2 {
    margin: 0;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.hero-copy h1 {
    max-width: 760px;
    font-size: clamp(3rem, 7vw, 6.2rem);
}

.hero-lede {
    max-width: 660px;
    margin: 24px 0 0;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    color: var(--orb-muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: #fff;
    background: var(--orb-secondary);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--orb-primary);
    background: rgba(24, 106, 194, 0.11);
}

.hero-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn,
button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 900;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary,
.btn-whatsapp {
    color: #fff;
    background: linear-gradient(135deg, var(--orb-primary), var(--orb-primary-dark));
    box-shadow: 0 18px 34px rgba(24, 106, 194, 0.28);
}

.btn-secondary {
    color: #fff;
    background: var(--orb-secondary);
    border: 1px solid var(--orb-secondary);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.trust-row span {
    background: #ffffff;
    border: 1px solid var(--orb-line);
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--orb-muted);
    font-weight: 800;
    font-size: 0.9rem;
}

.booking-card {
    background: #ffffff;
    border: 1px solid rgba(24, 106, 194, 0.10);
    border-radius: var(--orb-radius-lg);
    box-shadow: var(--orb-shadow);
    padding: 28px;
}

.booking-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.booking-card h2 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: -0.04em;
    line-height: 1;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    color: var(--orb-primary);
    background: rgba(24, 106, 194, 0.11);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
}

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

.booking-form label {
    font-weight: 850;
    color: var(--orb-ink);
    font-size: 0.9rem;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    border: 1px solid var(--orb-line);
    border-radius: var(--orb-radius-sm);
    background: var(--orb-bg-soft);
    color: var(--orb-ink);
    padding: 13px 14px;
    font: inherit;
    outline: none;
}

.booking-form textarea {
    resize: vertical;
}

.booking-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--orb-secondary) 50%),
        linear-gradient(135deg, var(--orb-secondary) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(1em + 5px),
        calc(100% - 13px) calc(1em + 5px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    border-color: var(--orb-primary);
    box-shadow: 0 0 0 4px rgba(24, 106, 194, 0.16);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-note {
    margin-top: 8px;
    padding: 14px 16px;
    background: rgba(24, 106, 194, 0.08);
    border: 1px solid rgba(24, 106, 194, 0.16);
    border-radius: 18px;
    color: var(--orb-secondary);
    font-weight: 800;
    font-size: 0.92rem;
}

.map-section,
.services-section {
    padding: 78px 0;
}

.map-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: stretch;
    gap: 26px;
}

.map-copy,
.booking-map,
.service-card,
.content-card {
    border: 1px solid var(--orb-line);
    border-radius: var(--orb-radius-lg);
    background: #fff;
    box-shadow: 0 16px 44px rgba(78, 82, 88, 0.08);
}

.map-copy {
    padding: 34px;
}

.map-copy h2,
.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.map-copy p:not(.eyebrow) {
    color: var(--orb-muted);
    margin: 18px 0 0;
}

.booking-map {
    min-height: 430px;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: var(--orb-muted);
    background:
        linear-gradient(45deg, rgba(78,82,88,0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(78,82,88,0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(78,82,88,0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(78,82,88,0.05) 75%);
    background-size: 32px 32px;
    background-position: 0 0, 0 16px, 16px -16px, -16px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

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

.service-card {
    padding: 30px;
}

.service-card span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    color: #fff;
    background: var(--orb-primary);
    font-weight: 900;
    margin-bottom: 26px;
}

.service-card h3 {
    margin: 0;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.service-card p {
    margin: 14px 0 0;
    color: var(--orb-muted);
}

.site-footer {
    position: relative;
    padding: 54px 0 74px;
    background: var(--orb-secondary);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr;
    gap: 34px;
}

.footer-brand,
.footer-heading {
    margin: 0 0 12px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.site-footer p,
.site-footer span,
.site-footer a {
    color: rgba(255,255,255,0.78);
}

.site-footer a,
.site-footer span {
    display: block;
    margin-top: 8px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    color: #fff !important;
    background: var(--orb-primary);
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(24, 106, 194, 0.32);
}

.page-content {
    padding: 72px 0;
}

.content-card {
    padding: 34px;
}

@media (max-width: 980px) {
    .hero-grid,
    .map-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding-top: 56px;
    }

    .primary-nav ul {
        display: none;
    }

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

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .nav-wrap {
        min-height: 68px;
    }

    .brand-text {
        max-width: 160px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero-copy h1 {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .booking-card,
    .map-copy,
    .service-card {
        padding: 22px;
        border-radius: 24px;
    }

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

    .form-actions .btn {
        width: 100%;
    }

    .booking-map {
        min-height: 320px;
    }
}

.nav-login {
    color: var(--orb-primary) !important;
    background: rgba(24, 106, 194, 0.10);
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 900;
}

.oppad-account-wrap {
    padding: 64px 0;
}

.oppad-account-card,
.content-card {
    background: var(--orb-card);
    border: 1px solid var(--orb-line);
    border-radius: var(--orb-radius-lg);
    box-shadow: var(--orb-shadow);
    padding: clamp(22px, 4vw, 34px);
}

.oppad-account-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.oppad-account-header h1,
.oppad-account-card h1,
.oppad-account-card h2 {
    margin: 0 0 14px;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.oppad-account-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.25fr);
    gap: 22px;
    align-items: start;
}

.oppad-login-card {
    max-width: 620px;
    margin-inline: auto;
}

.oppad-login-card input[type="text"],
.oppad-login-card input[type="password"],
.oppad-profile-form input,
.oppad-profile-form textarea {
    width: 100%;
    border: 1px solid var(--orb-line);
    border-radius: var(--orb-radius-sm);
    padding: 12px 14px;
    min-height: 46px;
    font: inherit;
}

.oppad-profile-form label {
    display: block;
    margin-bottom: 14px;
}

.oppad-profile-form label span {
    display: block;
    font-weight: 900;
    margin-bottom: 6px;
}

.oppad-account-notice {
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: var(--orb-radius-sm);
    background: rgba(24, 106, 194, 0.10);
    color: var(--orb-primary);
    font-weight: 900;
}

.oppad-trip-table-wrap {
    overflow-x: auto;
}

.oppad-trip-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.94rem;
}

.oppad-trip-table th,
.oppad-trip-table td {
    text-align: left;
    vertical-align: top;
    padding: 10px;
    border-bottom: 1px solid var(--orb-line);
}

.oppad-trip-table th {
    color: var(--orb-secondary);
    font-weight: 900;
}

@media (max-width: 900px) {
    .oppad-account-grid,
    .oppad-account-header {
        grid-template-columns: 1fr;
        display: grid;
    }
}

.ride-calculator {
    margin: 8px 0 4px;
    padding: 18px;
    border: 1px solid rgba(24, 106, 194, 0.16);
    border-radius: var(--orb-radius-md);
    background: linear-gradient(180deg, rgba(24, 106, 194, 0.06), rgba(255, 255, 255, 0.92));
}

.ride-calculator-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.ride-calculator h3 {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.ride-calculator .eyebrow {
    margin-bottom: 8px;
}

.calculator-note {
    margin: 10px 0 0;
    color: var(--orb-muted);
    font-size: 0.9rem;
    font-weight: 750;
}

.calculator-result {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.calc-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: var(--orb-primary);
    color: #fff;
}

.calc-total span {
    font-weight: 900;
}

.calc-total strong {
    font-size: clamp(1.55rem, 4vw, 2.2rem);
    line-height: 1;
}

.calc-breakdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.calc-breakdown div {
    padding: 12px;
    border: 1px solid var(--orb-line);
    border-radius: 14px;
    background: #fff;
}

.calc-breakdown dt {
    margin: 0 0 4px;
    color: var(--orb-muted);
    font-weight: 850;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calc-breakdown dd {
    margin: 0;
    color: var(--orb-ink);
    font-weight: 950;
}

button.btn:disabled,
.btn[disabled] {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
    box-shadow: none;
}

@media (max-width: 620px) {
    .ride-calculator-head,
    .calc-total,
    .route-distance-display {
        align-items: stretch;
        flex-direction: column;
    }

    .calc-breakdown {
        grid-template-columns: 1fr;
    }
}


.route-distance-display {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(24, 106, 194, 0.18);
    border-radius: 18px;
    background: #fff;
    color: var(--orb-secondary);
}

.route-distance-display span {
    font-weight: 900;
}

.route-distance-display strong {
    color: var(--orb-primary);
    font-size: 1.05rem;
    text-align: right;
}

.route-distance-display.is-loading strong {
    color: var(--orb-secondary);
}

.route-distance-display.is-error {
    border-color: rgba(190, 45, 45, 0.28);
    background: rgba(190, 45, 45, 0.06);
}

.route-distance-display.is-error strong {
    color: #9f1d1d;
}

/* Google Places outovul: Oppad-styl. Google-attribution word doelbewus nie versteek nie. */
.pac-container {
    z-index: 99999 !important;
    border: 1px solid rgba(24, 106, 194, 0.22) !important;
    border-radius: 18px !important;
    margin-top: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 48px rgba(24, 106, 194, 0.18) !important;
    overflow: hidden !important;
    font-family: var(--orb-font) !important;
}

.pac-item {
    padding: 12px 14px !important;
    border-top: 1px solid rgba(78, 82, 88, 0.12) !important;
    color: var(--orb-muted) !important;
    cursor: pointer !important;
    line-height: 1.35 !important;
}

.pac-item:first-child {
    border-top: 0 !important;
}

.pac-item:hover,
.pac-item-selected {
    background: rgba(24, 106, 194, 0.08) !important;
}

.pac-item-query,
.pac-matched {
    color: var(--orb-primary) !important;
    font-weight: 900 !important;
}

.manual-distance-fallback {
    margin-top: 14px;
    padding: 16px;
    border: 1px dashed rgba(24, 106, 194, 0.35);
    border-radius: var(--orb-radius-md);
    background: rgba(24, 106, 194, 0.07);
}

.calculator-note.strong {
    margin-top: 0;
    color: var(--orb-secondary);
    font-weight: 900;
}

.manual-distance-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: end;
    margin-top: 10px;
}

.manual-distance-row label {
    align-self: center;
}

@media (max-width: 720px) {
    .manual-distance-row {
        grid-template-columns: 1fr;
    }
}
