: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;
}

.quickhop-selected-rate {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 22px;
    align-items: center;
    margin: 0 0 14px;
    color: #4e5258;
}

.quickhop-selected-rate[hidden] {
    display: none !important;
}

.quickhop-selected-rate span {
    font-weight: 900;
}

.quickhop-selected-rate strong {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 9px 14px;
    border: 5px solid #186ac2;
    background: #ffffff;
    color: #4e5258;
    font-size: 0.95rem;
    font-weight: 900;
}

.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;
    }
}
: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;
}

.quickhop-selected-rate {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 22px;
    align-items: center;
    margin: 0 0 14px;
    color: #4e5258;
}

.quickhop-selected-rate[hidden] {
    display: none !important;
}

.quickhop-selected-rate span {
    font-weight: 900;
}

.quickhop-selected-rate strong {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 9px 14px;
    border: 5px solid #186ac2;
    background: #ffffff;
    color: #4e5258;
    font-size: 0.95rem;
    font-weight: 900;
}

.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;
    }
}

/* QuickHop-prentjie voorbladstilering */
body.home .site-header,
body.front-page .site-header,
body.page-template-front-page .site-header,
body:has(.quickhop-front-page) .site-header,
body.home .site-footer,
body.front-page .site-footer,
body.page-template-front-page .site-footer,
body:has(.quickhop-front-page) .site-footer {
    display: none !important;
}

.quickhop-front-page {
    min-height: 100vh;
    background: #ffffff;
    color: #4e5258;
    font-family: Arial, Helvetica, sans-serif;
}

.quickhop-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(42px, 7vh, 90px) 24px;
    background: #ffffff;
}

.quickhop-shell {
    width: min(100%, 960px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: clamp(48px, 7vw, 92px);
    align-items: center;
}

.quickhop-copy {
    text-align: center;
    max-width: 420px;
    justify-self: end;
    padding-top: 72px;
}

.quickhop-copy h1 {
    margin: 0;
    color: #4e5258;
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    line-height: 1.16;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.quickhop-copy p {
    margin: 4px auto 0;
    color: #4e5258;
    font-size: clamp(1.25rem, 2.2vw, 1.62rem);
    line-height: 1.14;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.quickhop-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.quickhop-btn,
.quickhop-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 11px 24px;
    background: #ffffff;
    border: 7px solid #186ac2;
    color: #4e5258;
    font-size: 0.95rem;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.quickhop-btn:hover,
.quickhop-book-btn:hover {
    background: #186ac2;
    color: #ffffff;
    transform: none;
}

.quickhop-form-panel {
    width: 100%;
    max-width: 490px;
    background: #ffffff;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    color: #4e5258;
}

.quickhop-form-panel h2 {
    margin: 0 0 28px;
    color: #4e5258;
    text-align: center;
    font-size: clamp(3rem, 5.6vw, 4.35rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.quickhop-rule {
    display: block;
    height: 2px;
    margin: 0 0 22px;
    border: 0;
    background: rgba(78, 82, 88, 0.24);
}

.quickhop-rule-tight {
    margin: 18px 0 24px;
}

.quickhop-booking-form,
.booking-form.quickhop-booking-form {
    display: block;
}

.quickhop-calendar-row {
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 34px;
    align-items: start;
    min-height: 170px;
}

.quickhop-month-select {
    width: 138px !important;
    height: 52px !important;
    margin-left: 12px;
    padding: 0 38px 0 30px !important;
    border: 7px solid #186ac2 !important;
    border-radius: 0 !important;
    background-color: #ffffff !important;
    color: #4e5258 !important;
    font-size: 0.86rem !important;
    font-weight: 500 !important;
    outline: 0;
}

.quickhop-mini-calendar {
    width: 180px;
    justify-self: start;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.quickhop-mini-calendar > strong {
    display: inline-block;
    margin-bottom: 4px;
    padding: 5px 10px;
    background: #186ac2;
    border-radius: 4px;
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1;
}

.quickhop-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #186ac2;
    color: #4e5258;
    font-size: 0.56rem;
    font-weight: 900;
    text-align: center;
}

.quickhop-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-top: 3px;
}

.quickhop-days span {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    background: #4e5258;
    color: #ffffff;
    font-size: 0.88rem;
    line-height: 1;
    font-weight: 900;
}

.quickhop-field-row,
.quickhop-price-row {
    display: grid !important;
    grid-template-columns: 210px 1fr;
    gap: 22px;
    align-items: center;
    margin-bottom: 10px;
}

.quickhop-field-row label,
.quickhop-price-row label {
    margin: 0;
    color: #4e5258;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 900;
}

.quickhop-field-row input,
.quickhop-field-row select,
.quickhop-price-box {
    width: 100% !important;
    min-height: 52px;
    padding: 10px 14px !important;
    border: 5px solid #186ac2 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: #4e5258 !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    box-shadow: none !important;
    outline: none !important;
}

.quickhop-field-row input::placeholder {
    color: #4e5258;
    opacity: 1;
}

.quickhop-calculator,
.ride-calculator.quickhop-calculator {
    margin: 28px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.quickhop-calculator h3 {
    margin: 0 0 32px;
    text-align: center;
    color: #4e5258;
    font-size: 1.55rem;
    line-height: 1;
    letter-spacing: -0.035em;
    font-weight: 900;
}

.quickhop-distance-display,
.route-distance-display.quickhop-distance-display {
    margin: -14px 0 18px;
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 22px;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #4e5258;
}

.quickhop-distance-display span {
    color: #4e5258;
    font-weight: 900;
}

.quickhop-distance-display strong {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 9px 14px;
    border: 5px solid #186ac2;
    background: #ffffff;
    color: #4e5258;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 900;
}

.quickhop-price-row[hidden],
.calculator-result.quickhop-price-row[hidden] {
    display: none !important;
}

.quickhop-price-box {
    display: flex;
    align-items: center;
}

.quickhop-price-box span {
    display: block;
    color: #4e5258;
    font-size: 1rem;
    line-height: 1;
    font-weight: 900;
}

.quickhop-hidden-calc {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.quickhop-note,
.form-note.quickhop-note {
    display: none !important;
}

.quickhop-submit-wrap,
.form-actions.quickhop-submit-wrap {
    margin: 42px 0 0;
    display: flex;
    justify-content: flex-end;
}

.quickhop-book-btn {
    min-width: 236px;
    min-height: 52px;
    padding: 11px 30px;
}

.quickhop-book-btn:disabled {
    opacity: 0.58;
    cursor: not-allowed;
}


.quickhop-vehicle-preview {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 14px;
    align-items: center;
    margin: 4px 0 18px;
    padding: 12px;
    border: 5px solid #186ac2;
    background: #ffffff;
    color: #4e5258;
}

.quickhop-vehicle-preview[hidden] {
    display: none !important;
}

.quickhop-vehicle-preview img {
    width: 116px;
    height: 78px;
    object-fit: cover;
    display: block;
    border: 0;
    background: rgba(78, 82, 88, 0.08);
}

.quickhop-vehicle-preview strong,
.quickhop-vehicle-preview span,
.quickhop-vehicle-preview p {
    display: block;
    margin: 0;
    color: #4e5258;
    line-height: 1.2;
}

.quickhop-vehicle-preview strong {
    font-size: 1rem;
    font-weight: 900;
}

.quickhop-vehicle-preview span {
    margin-top: 3px;
    font-size: 0.86rem;
    font-weight: 900;
}

.quickhop-vehicle-preview p {
    margin-top: 5px;
    font-size: 0.86rem;
    font-weight: 700;
}

.quickhop-vehicle-empty-note {
    margin: -2px 0 16px 232px;
    color: #4e5258;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.25;
}

.quickhop-selected-rate {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 22px;
    align-items: center;
    margin: 0 0 14px;
    color: #4e5258;
}

.quickhop-selected-rate[hidden] {
    display: none !important;
}

.quickhop-selected-rate span {
    font-weight: 900;
}

.quickhop-selected-rate strong {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 9px 14px;
    border: 5px solid #186ac2;
    background: #ffffff;
    color: #4e5258;
    font-size: 0.95rem;
    font-weight: 900;
}

.manual-distance-fallback {
    margin: 20px 0 0;
    padding: 14px;
    border: 2px dashed rgba(24, 106, 194, 0.45);
    border-radius: 0;
    background: #ffffff;
}

.manual-distance-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.manual-distance-row .quickhop-btn {
    width: 100%;
    min-height: 44px;
    border-width: 5px;
}

.pac-container {
    border-radius: 0 !important;
    border: 5px solid #186ac2 !important;
    box-shadow: 0 14px 28px rgba(24, 106, 194, 0.16) !important;
}

@media (max-width: 920px) {
    .quickhop-hero {
        padding-block: 36px;
    }

    .quickhop-shell {
        grid-template-columns: 1fr;
        gap: 44px;
        width: min(100%, 560px);
    }

    .quickhop-copy {
        justify-self: center;
        padding-top: 0;
    }

    .quickhop-calendar-row {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: auto;
    }

    .quickhop-month-select {
        margin-left: 0;
    }

    .quickhop-mini-calendar {
        justify-self: center;
    }
}

@media (max-width: 560px) {
    .quickhop-hero {
        padding-inline: 16px;
    }

    .quickhop-form-panel h2 {
        font-size: clamp(2.5rem, 14vw, 3.25rem);
    }

    .quickhop-field-row,
    .quickhop-price-row,
    .quickhop-distance-display,
    .route-distance-display.quickhop-distance-display {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 14px;
    }

    .quickhop-submit-wrap,
    .form-actions.quickhop-submit-wrap {
        justify-content: stretch;
    }

    .quickhop-book-btn,
    .quickhop-actions .quickhop-btn {
        width: 100%;
    }


    .quickhop-vehicle-preview {
        grid-template-columns: 1fr;
    }

    .quickhop-vehicle-preview img {
        width: 100%;
        height: auto;
        max-height: 180px;
    }

    .quickhop-vehicle-empty-note {
        margin-left: 0;
    }
}
body.oppad-quickhop-home .site-header,
body.oppad-quickhop-home .site-footer {
    display: none !important;
}

/* Voorblad styl 2 met header/footer, werkende kalender en roetekaart. */
body:has(.quickhop-front-page) .site-header,
body.home .site-header,
body.front-page .site-header,
body.page-template-front-page .site-header,
body.oppad-quickhop-home .site-header {
    display: block !important;
}

body:has(.quickhop-front-page) .site-footer,
body.home .site-footer,
body.front-page .site-footer,
body.page-template-front-page .site-footer,
body.oppad-quickhop-home .site-footer {
    display: block !important;
}

body:has(.quickhop-front-page) .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(78,82,88,0.16);
    box-shadow: 0 12px 34px rgba(78,82,88,0.08);
}

body:has(.quickhop-front-page) .nav-wrap {
    min-height: 86px;
}

body:has(.quickhop-front-page) .brand img,
body:has(.quickhop-front-page) .custom-logo {
    max-height: 62px;
    width: auto;
}

body:has(.quickhop-front-page) .primary-nav a {
    font-weight: 900;
}

.quickhop-front-page.oppad-picture-front {
    background: #ffffff;
}

.oppad-picture-front .quickhop-hero {
    min-height: calc(100vh - 86px);
    padding: clamp(54px, 8vh, 96px) 24px clamp(64px, 9vh, 110px);
}

.oppad-picture-front .quickhop-shell {
    width: min(100%, 1020px);
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(54px, 7vw, 98px);
}

.oppad-picture-front .quickhop-copy {
    padding-top: 34px;
}

.oppad-picture-front .quickhop-form-panel {
    max-width: 540px;
}

.quickhop-map-wrap {
    margin: 12px 0 20px;
    padding-left: 232px;
}

.quickhop-route-map {
    width: 100%;
    height: 210px;
    border: 5px solid #186ac2;
    background: #f5f6f7;
}

.quickhop-route-map:empty::before {
    content: "Kaart laai...";
    display: grid;
    place-items: center;
    height: 100%;
    color: #4e5258;
    font-weight: 900;
}

.quickhop-days button.quickhop-calendar-day,
.quickhop-days span.quickhop-empty-day {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #4e5258;
    color: #ffffff;
    font: inherit;
    font-size: 0.88rem;
    line-height: 1;
    font-weight: 900;
}

.quickhop-days button.quickhop-calendar-day {
    cursor: pointer;
}

.quickhop-days span.quickhop-empty-day {
    visibility: hidden;
}

.quickhop-days button.quickhop-calendar-day:hover,
.quickhop-days button.quickhop-calendar-day:focus,
.quickhop-days button.quickhop-calendar-day.is-selected {
    background: #186ac2;
    color: #ffffff;
    outline: 2px solid #186ac2;
    outline-offset: 1px;
}

.quickhop-month-select {
    cursor: pointer;
}

/* Professionele Navraag / Sien Dienste bladsye. */
.oppad-info-page {
    background: #ffffff;
    color: #4e5258;
}

.oppad-info-hero {
    padding: clamp(70px, 10vw, 120px) 0;
    border-bottom: 1px solid rgba(78,82,88,0.14);
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.oppad-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: clamp(34px, 6vw, 78px);
    align-items: center;
}

.oppad-info-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    margin: 0 0 18px;
    border-radius: 999px;
    background: #186ac2;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.oppad-info-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #4e5258;
    font-size: clamp(2.6rem, 6vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
    font-weight: 950;
}

.oppad-info-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: #5f646b;
    font-size: 1.12rem;
    line-height: 1.65;
    font-weight: 650;
}

.oppad-info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.oppad-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 24px;
    border: 5px solid #186ac2;
    background: #ffffff;
    color: #4e5258;
    font-weight: 900;
    text-decoration: none;
}

.oppad-info-btn.primary,
.oppad-info-btn:hover {
    background: #186ac2;
    color: #ffffff;
}

.oppad-info-card {
    padding: 34px;
    border: 1px solid rgba(78,82,88,0.15);
    border-top: 7px solid #186ac2;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(24,106,194,0.12);
}

.oppad-info-card h2 {
    margin: 0 0 16px;
    font-size: 1.7rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.oppad-info-card ul {
    margin: 0;
    padding-left: 20px;
    color: #5f646b;
    font-weight: 700;
    line-height: 1.7;
}

.oppad-process-section,
.oppad-services-list {
    padding: 74px 0 90px;
}

.oppad-process-section h2 {
    margin: 0 0 26px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.oppad-process-grid,
.oppad-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.oppad-process-grid article,
.oppad-services-grid article {
    padding: 30px;
    border: 1px solid rgba(78,82,88,0.14);
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(78,82,88,0.08);
}

.oppad-process-grid span,
.oppad-services-grid span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    background: #186ac2;
    color: #ffffff;
    font-weight: 900;
}

.oppad-process-grid h3,
.oppad-services-grid h2 {
    margin: 0 0 10px;
    color: #4e5258;
    font-size: 1.35rem;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.oppad-process-grid p,
.oppad-services-grid p {
    margin: 0;
    color: #6a6f77;
    font-weight: 650;
    line-height: 1.55;
}

@media (max-width: 920px) {
    .oppad-picture-front .quickhop-shell,
    .oppad-info-grid,
    .oppad-process-grid,
    .oppad-services-grid {
        grid-template-columns: 1fr;
    }

    .quickhop-map-wrap {
        padding-left: 0;
    }

    .oppad-picture-front .quickhop-copy {
        justify-self: center;
        padding-top: 0;
    }
}

@media (max-width: 680px) {
    body:has(.quickhop-front-page) .nav-wrap {
        min-height: auto;
        padding-block: 14px;
        align-items: flex-start;
    }

    body:has(.quickhop-front-page) .primary-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 9px;
    }

    body:has(.quickhop-front-page) .primary-nav ul {
        display: none;
    }

    .oppad-picture-front .quickhop-hero {
        padding: 36px 16px 54px;
    }

    .oppad-picture-front .quickhop-form-panel h2 {
        font-size: clamp(2.4rem, 15vw, 3.4rem);
    }

    .quickhop-route-map {
        height: 240px;
    }

    .oppad-info-hero,
    .oppad-process-section,
    .oppad-services-list {
        padding: 48px 0;
    }

    .oppad-info-card,
    .oppad-process-grid article,
    .oppad-services-grid article {
        padding: 24px;
    }
}

/* My Rekening admin buttons and the two frontend admin pages. */
.oppad-account-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.oppad-account-actions .btn {
    min-height: 44px;
    padding: 12px 18px;
}

body.oppad-user-admin-page {
    background: #ffffff;
}

body.oppad-user-admin-page .site-header {
    position: static;
    border-bottom: 0;
    background: #ffffff;
    backdrop-filter: none;
}

body.oppad-user-admin-page .nav-wrap {
    width: min(1120px, calc(100vw - 80px));
    min-height: 118px;
    padding-top: 24px;
}

body.oppad-user-admin-page .brand img,
body.oppad-user-admin-page .custom-logo {
    max-width: 178px;
    height: auto;
}

body.oppad-user-admin-page .primary-nav {
    gap: 12px;
}

body.oppad-user-admin-page .primary-nav ul {
    display: none;
}

body.oppad-user-admin-page .primary-nav a,
body.oppad-user-admin-page .nav-login,
body.oppad-user-admin-page .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 18px;
    border: 6px solid #186ac2;
    border-radius: 0;
    background: #ffffff;
    color: #4e5258 !important;
    font-size: 0.88rem;
    line-height: 1;
    font-weight: 900;
    box-shadow: none;
}

body.oppad-user-admin-page .primary-nav a:hover,
body.oppad-user-admin-page .nav-login:hover,
body.oppad-user-admin-page .nav-cta:hover {
    background: #186ac2;
    color: #ffffff !important;
}

.oppad-admin-screen {
    min-height: 76vh;
    padding: 34px 0 84px;
    background: #ffffff;
    color: #4e5258;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.oppad-admin-page-shell {
    width: min(1120px, calc(100vw - 80px));
    margin: 0 auto;
}

.oppad-admin-page-shell h1 {
    margin: 0 0 26px;
    color: #4e5258;
    font-size: clamp(2.35rem, 4.8vw, 4.25rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.oppad-admin-notice {
    width: min(520px, 100%);
    margin: 0 0 22px;
    padding: 12px 16px;
    border: 5px solid #186ac2;
    background: #ffffff;
    color: #4e5258;
    font-weight: 900;
}

.oppad-admin-notice.is-error {
    border-color: #a30000;
}

.oppad-booking-grid {
    display: grid;
    grid-template-columns: 520px minmax(360px, 1fr);
    gap: 112px;
    align-items: start;
}

.oppad-admin-form {
    max-width: 520px;
}

.oppad-admin-choice-row {
    display: grid;
    grid-template-columns: 230px 230px;
    gap: 38px;
    align-items: center;
    margin-bottom: 18px;
}

.oppad-admin-box-button,
.oppad-admin-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    padding: 9px 18px;
    border: 5px solid #186ac2;
    border-radius: 0;
    background: #ffffff;
    color: #4e5258;
    font: inherit;
    font-size: 0.95rem;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
}

.oppad-admin-box-button:hover,
.oppad-admin-submit:hover {
    background: #186ac2;
    color: #ffffff;
}

.oppad-admin-field-row {
    display: grid;
    grid-template-columns: 230px 230px;
    gap: 38px;
    align-items: center;
    margin-bottom: 10px;
}

.oppad-admin-field-row label {
    margin: 0;
    color: #4e5258;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.15;
}

.oppad-admin-input,
.oppad-admin-field-row input,
.oppad-admin-field-row select {
    width: 100%;
    min-height: 47px;
    padding: 9px 13px;
    border: 4px solid #186ac2;
    border-radius: 0;
    background: #ffffff;
    color: #4e5258;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.15;
    box-shadow: none;
    outline: none;
}

.oppad-admin-input::placeholder,
.oppad-admin-field-row input::placeholder {
    color: #4e5258;
    opacity: 1;
}

.oppad-admin-submit {
    width: 230px;
    margin-top: 22px;
}

.oppad-ledger-side {
    padding-top: 62px;
}

.oppad-ledger-tools {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-bottom: 12px;
}

.oppad-ledger-month-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
}

.oppad-ledger-month-nav .oppad-ledger-month-form {
    margin-bottom: 0;
}

.oppad-ledger-month-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    min-width: 47px;
    min-height: 47px;
    border: 5px solid #186ac2;
    background: #ffffff;
    color: #186ac2;
    text-decoration: none;
    font-size: 2.15rem;
    line-height: 1;
    font-weight: 900;
    box-shadow: 0 9px 22px rgba(24, 106, 194, 0.12);
}

.oppad-ledger-month-arrow:hover,
.oppad-ledger-month-arrow:focus {
    background: #186ac2;
    color: #ffffff;
}

.oppad-ledger-month-form {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 13px;
}

.oppad-ledger-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 136px;
    min-height: 76px;
    padding: 8px 18px;
    border-radius: 8px;
    background: #186ac2;
    color: #ffffff;
    font-size: 2.55rem;
    line-height: 1;
    font-weight: 900;
}

.oppad-ledger-month-form select.oppad-admin-input {
    width: 130px;
    min-height: 47px;
}

.oppad-ledger-calendar {
    width: 418px;
    max-width: 100%;
    margin-bottom: 22px;
    font-family: Arial, Helvetica, sans-serif;
}

.oppad-ledger-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    min-height: 30px;
    align-items: center;
    background: #186ac2;
    color: #1d314b;
    font-size: 1.02rem;
    font-weight: 900;
    text-align: center;
}

.oppad-ledger-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px;
    margin-top: 7px;
}

.oppad-ledger-day {
    display: grid;
    place-items: center;
    min-height: 52px;
    background: #858c8c;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.95rem;
    line-height: 1;
    font-weight: 900;
    border-radius: 3px;
}

.oppad-ledger-day.is-empty {
    background: transparent;
    pointer-events: none;
}

.oppad-ledger-day.has-total {
    outline: 4px solid rgba(24, 106, 194, 0.4);
    outline-offset: -4px;
}

.oppad-ledger-day.is-selected,
.oppad-ledger-day:hover {
    background: #186ac2;
    color: #ffffff;
}

.oppad-ledger-total-row {
    display: grid;
    grid-template-columns: 175px 230px;
    gap: 20px;
    align-items: center;
    margin-bottom: 10px;
}

.oppad-ledger-total-row span {
    color: #4e5258;
    font-size: 0.98rem;
    font-weight: 900;
}

.oppad-ledger-total-row strong {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 9px 13px;
    border: 4px solid #186ac2;
    background: #ffffff;
    color: #4e5258;
    font-size: 1rem;
    font-weight: 900;
}

.oppad-admin-quote-shell {
    width: min(920px, calc(100vw - 80px));
}

.oppad-admin-quote-screen .oppad-admin-form {
    max-width: 430px;
}

.oppad-admin-quote-screen .oppad-admin-choice-row,
.oppad-admin-quote-screen .oppad-admin-field-row {
    grid-template-columns: 160px 160px;
    gap: 28px;
}

.oppad-admin-quote-screen .oppad-admin-submit {
    width: 188px;
    min-height: 46px;
    margin-top: 26px;
}

.oppad-admin-form-note {
    margin: 12px 0 0 188px;
    width: 230px;
    color: #4e5258;
    font-size: 0.82rem;
    line-height: 1.35;
    font-weight: 800;
}

.oppad-quote-calculator .manual-distance-fallback {
    width: 348px;
    margin: 16px 0 0;
}

.oppad-quote-calculator .quickhop-price-row,
.oppad-quote-calculator .quickhop-distance-display {
    grid-template-columns: 160px 160px;
    gap: 28px;
    margin: 8px 0;
}

.oppad-admin-access-card {
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 980px) {
    body.oppad-user-admin-page .nav-wrap,
    .oppad-admin-page-shell,
    .oppad-admin-quote-shell {
        width: min(100% - 32px, 620px);
    }

    body.oppad-user-admin-page .nav-wrap,
    body.oppad-user-admin-page .primary-nav,
    .oppad-booking-grid,
    .oppad-admin-choice-row,
    .oppad-admin-field-row,
    .oppad-ledger-total-row,
    .oppad-admin-quote-screen .oppad-admin-choice-row,
    .oppad-admin-quote-screen .oppad-admin-field-row,
    .oppad-quote-calculator .quickhop-price-row,
    .oppad-quote-calculator .quickhop-distance-display {
        grid-template-columns: 1fr;
    }

    body.oppad-user-admin-page .nav-wrap {
        display: grid;
        justify-items: start;
    }

    body.oppad-user-admin-page .primary-nav {
        display: flex;
        flex-wrap: wrap;
    }

    .oppad-booking-grid {
        gap: 32px;
    }

    .oppad-ledger-side {
        padding-top: 0;
    }

    .oppad-admin-form,
    .oppad-admin-quote-screen .oppad-admin-form,
    .oppad-admin-submit,
    .oppad-ledger-calendar,
    .oppad-admin-form-note,
    .oppad-quote-calculator .manual-distance-fallback {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .oppad-admin-choice-row,
    .oppad-admin-field-row {
        gap: 8px;
        margin-bottom: 14px;
    }

    .oppad-ledger-tools,
    .oppad-ledger-month-nav,
    .oppad-ledger-month-form {
        flex-wrap: wrap;
    }

    .oppad-ledger-month-nav {
        gap: 8px;
    }

    .oppad-ledger-month-arrow {
        width: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 1.9rem;
    }
}

.oppad-ledger-cost-panel {
    margin: 12px 0 14px;
    padding: 14px 0 4px;
    border-top: 4px solid #186ac2;
    border-bottom: 4px solid #186ac2;
}

.oppad-ledger-cost-panel .oppad-admin-field-row:last-child {
    margin-bottom: 0;
}

.oppad-ledger-day-panel,
.oppad-month-account-panel {
    margin: 42px 0 0;
    padding: 22px;
    border: 4px solid #186ac2;
    background: #ffffff;
}

.oppad-ledger-section-heading {
    margin-bottom: 18px;
}

.oppad-ledger-section-heading h2 {
    margin: 0 0 6px;
    color: #4e5258;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 900;
}

.oppad-ledger-section-heading p {
    margin: 0;
    color: #4e5258;
    font-weight: 800;
}

.oppad-ledger-empty {
    padding: 16px;
    border: 3px solid #858c8c;
    color: #4e5258;
    font-weight: 900;
}

.oppad-day-trip-list {
    display: grid;
    gap: 18px;
}

.oppad-day-trip-card,
.oppad-month-account-card {
    padding: 16px;
    border: 3px solid #858c8c;
    background: #f8fbff;
}

.oppad-day-trip-topline {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.oppad-day-trip-topline h3 {
    margin: 0;
    color: #4e5258;
    font-size: 1.25rem;
    line-height: 1.15;
    font-weight: 900;
}

.oppad-day-trip-topline strong {
    min-width: 130px;
    padding: 8px 12px;
    border: 3px solid #186ac2;
    background: #ffffff;
    color: #4e5258;
    text-align: center;
    font-weight: 900;
}

.oppad-trip-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.oppad-trip-detail-grid span {
    display: block;
    min-height: 44px;
    padding: 8px 10px;
    border: 2px solid #d6e7fa;
    background: #ffffff;
    color: #4e5258;
    font-weight: 800;
}

.oppad-trip-detail-grid b {
    display: block;
    color: #186ac2;
    font-size: 0.78rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.oppad-trip-detail-grid .is-wide {
    grid-column: 1 / -1;
}

.oppad-invoice-text {
    width: 100%;
    min-height: 150px;
    margin-top: 14px;
    padding: 12px;
    border: 3px solid #186ac2;
    background: #ffffff;
    color: #4e5258;
    font: 800 0.92rem/1.45 Arial, Helvetica, sans-serif;
    resize: vertical;
}

.oppad-trip-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.oppad-admin-mini-button,
.oppad-inline-action-form button.oppad-admin-mini-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 12px;
    border: 3px solid #186ac2;
    background: #ffffff;
    color: #4e5258;
    text-decoration: none;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    cursor: pointer;
}

.oppad-admin-mini-button:hover,
.oppad-inline-action-form button.oppad-admin-mini-button:hover {
    background: #186ac2;
    color: #ffffff;
}

.oppad-inline-action-form {
    margin: 0;
}

.oppad-admin-mini-button.oppad-admin-danger-button,
.oppad-inline-action-form button.oppad-admin-danger-button {
    border-color: #b42318;
    color: #b42318;
}

.oppad-admin-mini-button.oppad-admin-danger-button:hover,
.oppad-inline-action-form button.oppad-admin-danger-button:hover {
    background: #b42318;
    color: #ffffff;
}

.oppad-month-account-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.oppad-month-account-form select.oppad-admin-input {
    width: min(100%, 360px);
}

.oppad-month-range-fields {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 10px;
    width: 100%;
}

.oppad-month-range-fields label {
    display: grid;
    gap: 4px;
    font-weight: 900;
    color: #4e5258;
}

.oppad-month-range-fields label span {
    font-size: 0.82rem;
    text-transform: uppercase;
    color: #186ac2;
}

.oppad-month-range-fields .oppad-admin-input {
    width: 100%;
}

@media (max-width: 760px) {
    .oppad-month-range-fields {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}

.oppad-client-month-list {
    display: grid;
    gap: 8px;
    margin: 14px 0 18px;
}

.oppad-client-month-row {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(170px, auto) 130px;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border: 2px solid #d6e7fa;
    background: #ffffff;
    color: #4e5258;
    text-decoration: none;
    font-weight: 900;
}

.oppad-client-month-row:hover {
    border-color: #186ac2;
}

.oppad-client-month-row small {
    color: #4e5258;
    font-weight: 800;
}

.oppad-client-month-row strong {
    text-align: right;
}

.oppad-account-trip-lines {
    display: grid;
    gap: 7px;
    margin-top: 12px;
}

.oppad-account-trip-lines div {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr) 110px;
    gap: 10px;
    padding: 8px 10px;
    border-bottom: 1px solid #d6e7fa;
    color: #4e5258;
    font-weight: 800;
}

.oppad-account-trip-lines strong {
    text-align: right;
}

@media (max-width: 980px) {
    .oppad-trip-detail-grid,
    .oppad-client-month-row,
    .oppad-account-trip-lines div {
        grid-template-columns: 1fr;
    }

    .oppad-day-trip-topline {
        display: grid;
    }

    .oppad-day-trip-topline strong {
        width: 100%;
    }
}

.oppad-ledger-google-note {
    max-width: 500px;
    margin: -2px 0 12px 268px;
    color: #4e5258;
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.35;
}

.pac-container {
    z-index: 999999 !important;
    border: 3px solid #186ac2;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    font-family: Arial, sans-serif;
}

.pac-item {
    padding: 8px 10px;
    color: #4e5258;
    font-weight: 700;
}

.pac-item-query {
    color: #4e5258;
    font-weight: 900;
}

@media (max-width: 760px) {
    .oppad-ledger-google-note {
        margin-left: 0;
    }
}

/* Boekhou en Bespreking: Google Maps km-knoppie */
.oppad-ledger-km-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: -6px 0 14px;
}

.oppad-ledger-km-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.oppad-ledger-km-status {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
}

.oppad-ledger-km-status.is-loading {
    color: #0369a1;
}

.oppad-ledger-km-status.is-success {
    color: #15803d;
}

.oppad-ledger-km-status.is-error {
    color: #b91c1c;
}

/* Invoice correction controls */
.oppad-admin-correction-button {
    border-color: rgba(245, 158, 11, 0.55) !important;
    background: rgba(245, 158, 11, 0.14) !important;
}
.oppad-correction-notice {
    border-color: rgba(245, 158, 11, 0.5) !important;
    background: rgba(245, 158, 11, 0.12) !important;
}
.oppad-ledger-form.is-correcting-invoice {
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.25), 0 20px 60px rgba(15, 23, 42, 0.12);
}

.oppad-inline-correction-form {
    margin-top: 14px;
    padding: 14px;
    border: 3px solid #d6a647;
    background: #fffaf0;
}

.oppad-inline-correction-form[hidden] {
    display: none !important;
}

.oppad-inline-correction-heading {
    display: grid;
    gap: 4px;
    margin-bottom: 12px;
    color: #4e5258;
    font-weight: 900;
}

.oppad-inline-correction-heading strong {
    color: #186ac2;
    font-size: 1rem;
}

.oppad-inline-correction-heading span {
    font-size: 0.85rem;
}

.oppad-inline-correction-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.oppad-inline-correction-grid label {
    display: grid;
    gap: 5px;
    color: #4e5258;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.oppad-inline-correction-grid label.is-wide {
    grid-column: 1 / -1;
}

.oppad-inline-correction-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.oppad-admin-correction-button[aria-expanded="true"],
.oppad-admin-correction-save {
    border-color: #d6a647;
    background: #fff4d8;
}

@media (max-width: 980px) {
    .oppad-inline-correction-grid {
        grid-template-columns: 1fr;
    }
}

.oppad-client-month-item {
    border: 2px solid #d6e7fa;
    background: #ffffff;
}

.oppad-client-month-item[open] {
    border-color: #186ac2;
}

.oppad-client-month-item > summary {
    list-style: none;
    cursor: pointer;
}

.oppad-client-month-item > summary::-webkit-details-marker {
    display: none;
}

.oppad-client-month-amount {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.oppad-client-month-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 2px solid #186ac2;
    color: #186ac2;
    font-weight: 900;
    line-height: 1;
    transform: rotate(-90deg);
    transition: transform 0.18s ease;
}

.oppad-client-month-item[open] .oppad-client-month-arrow {
    transform: rotate(0deg);
}

.oppad-client-month-trips {
    display: grid;
    gap: 7px;
    padding: 0 12px 12px;
}

.oppad-client-month-select-link,
.oppad-client-month-trip-link,
.oppad-account-trip-lines a {
    color: #4e5258;
    text-decoration: none;
    font-weight: 900;
}

.oppad-client-month-select-link {
    display: inline-flex;
    width: fit-content;
    padding: 7px 10px;
    border: 3px solid #186ac2;
    background: #ffffff;
}

.oppad-client-month-select-link:hover {
    background: #186ac2;
    color: #ffffff;
}

.oppad-client-month-trip-link,
.oppad-account-trip-lines a {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr) 110px;
    gap: 10px;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid #d6e7fa;
    background: #f8fbff;
}

.oppad-client-month-trip-link:hover,
.oppad-account-trip-lines a:hover {
    border-color: #186ac2;
    background: #ffffff;
}

.oppad-client-month-trip-link small {
    color: #4e5258;
    font-weight: 800;
}

.oppad-client-month-trip-link strong,
.oppad-account-trip-lines a strong {
    text-align: right;
}

.oppad-day-trip-card:target {
    border-color: #d99b21;
    box-shadow: 0 0 0 4px rgba(217, 155, 33, 0.18);
    scroll-margin-top: 90px;
}

@media (max-width: 980px) {
    .oppad-client-month-trip-link,
    .oppad-account-trip-lines a {
        grid-template-columns: 1fr;
    }

    .oppad-client-month-trip-link strong,
    .oppad-account-trip-lines a strong {
        text-align: left;
    }
}

/* Compact expandable day-trip cards */
.oppad-day-trip-collapse {
    display: block;
}

.oppad-day-trip-collapse > summary {
    list-style: none;
    cursor: pointer;
    margin-bottom: 0;
}

.oppad-day-trip-collapse > summary::-webkit-details-marker {
    display: none;
}

.oppad-day-trip-summary-text {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.oppad-day-trip-summary-text h3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.oppad-day-trip-summary-text small {
    display: block;
    color: #4e5258;
    font-size: 0.88rem;
    line-height: 1.35;
    font-weight: 800;
    word-break: break-word;
}

.oppad-day-trip-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 2px solid #186ac2;
    background: #ffffff;
    color: #186ac2;
    font-size: 0.85rem;
    line-height: 1;
    transition: transform 0.18s ease;
    flex: 0 0 24px;
}

.oppad-day-trip-collapse[open] .oppad-day-trip-arrow {
    transform: rotate(90deg);
}

.oppad-day-trip-expanded {
    margin-top: 14px;
}

.oppad-day-trip-collapse:not([open]) .oppad-day-trip-topline {
    margin-bottom: 0;
}

.oppad-day-trip-collapse:not([open]) .oppad-day-trip-topline strong {
    align-self: center;
}

@media (max-width: 680px) {
    .oppad-day-trip-summary-text small {
        font-size: 0.8rem;
    }

    .oppad-day-trip-arrow {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
    }
}

/* Maand Rekening: professionele maandfaktuur en saldo's */
.oppad-month-account-card:target {
    border-color: #d99b21;
    box-shadow: 0 0 0 4px rgba(217, 155, 33, 0.18);
    scroll-margin-top: 90px;
}

.oppad-client-month-row small br {
    display: block;
    margin-top: 3px;
}

.oppad-month-account-card .oppad-trip-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 760px) {
    .oppad-month-account-card .oppad-trip-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Publieke voorblad: sterker sel-styl, sonder interne AA/wins woorde */
.oppad-picture-front .quickhop-hero {
    background: #ffffff;
}

.oppad-picture-front .quickhop-copy {
    padding: clamp(22px, 3.4vw, 34px);
    border: 5px solid #186ac2;
    background: #ffffff;
    box-shadow: 14px 14px 0 rgba(24, 106, 194, 0.10);
    text-align: left;
}

.oppad-picture-front .quickhop-copy h1 {
    color: #30343a;
    font-size: clamp(2.2rem, 4vw, 3.15rem);
    letter-spacing: -0.06em;
}

.oppad-picture-front .quickhop-copy p {
    margin-top: 16px;
    color: #4e5258;
    font-size: clamp(1.1rem, 2vw, 1.42rem);
    line-height: 1.22;
    letter-spacing: -0.035em;
}

.oppad-picture-front .quickhop-actions {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 24px;
}

.oppad-picture-front .quickhop-actions .quickhop-btn,
.oppad-picture-front .quickhop-book-btn {
    min-height: 54px;
    border-width: 5px;
    box-shadow: 6px 6px 0 rgba(24, 106, 194, 0.12);
}

.oppad-picture-front .quickhop-actions .quickhop-btn:first-child,
.oppad-picture-front .quickhop-book-btn {
    background: #186ac2;
    color: #ffffff;
}

.oppad-picture-front .quickhop-actions .quickhop-btn:hover,
.oppad-picture-front .quickhop-book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 8px 8px 0 rgba(24, 106, 194, 0.14);
}

.oppad-picture-front .quickhop-form-panel {
    padding: clamp(22px, 3.5vw, 34px);
    border: 5px solid #186ac2;
    background: #ffffff;
    box-shadow: 14px 14px 0 rgba(24, 106, 194, 0.10);
}

.oppad-picture-front .quickhop-form-panel h2 {
    color: #30343a;
    text-align: left;
    margin-bottom: 22px;
}

.oppad-picture-front .quickhop-rule {
    height: 5px;
    background: #186ac2;
    opacity: 1;
}

.oppad-picture-front .quickhop-field-row input,
.oppad-picture-front .quickhop-field-row select,
.oppad-picture-front .quickhop-price-box,
.oppad-picture-front .quickhop-distance-display strong,
.oppad-picture-front .quickhop-selected-rate strong,
.oppad-picture-front .quickhop-route-map {
    background: #fbfdff !important;
    box-shadow: 5px 5px 0 rgba(24, 106, 194, 0.08) !important;
}

.oppad-picture-front .quickhop-vehicle-preview {
    background: #fbfdff;
    box-shadow: 6px 6px 0 rgba(24, 106, 194, 0.08);
}

.oppad-picture-front .quickhop-vehicle-preview strong {
    color: #30343a;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.oppad-picture-front .quickhop-price-box span,
.oppad-picture-front .quickhop-selected-rate strong {
    color: #30343a;
    font-size: 1.08rem;
}

@media (max-width: 920px) {
    .oppad-picture-front .quickhop-copy,
    .oppad-picture-front .quickhop-form-panel {
        box-shadow: 8px 8px 0 rgba(24, 106, 194, 0.10);
    }
}

@media (max-width: 560px) {
    .oppad-picture-front .quickhop-copy,
    .oppad-picture-front .quickhop-form-panel {
        padding: 18px;
        border-width: 4px;
    }

    .oppad-picture-front .quickhop-actions {
        justify-content: stretch;
    }
}

/* Oppad voorblad volgens aangehegde verwysingsprent. */
body:has(.oppad-poster-front) {
    background: #ffffff;
    overflow-x: hidden;
}

body:has(.oppad-poster-front) .site-header,
body:has(.oppad-poster-front) .site-footer {
    display: none !important;
}

.oppad-poster-front {
    --oppad-blue: #0969d7;
    --oppad-blue-dark: #004fb7;
    --oppad-text: #071833;
    --oppad-copy: #1b2535;
    --oppad-muted: #415064;
    --oppad-line: #0969d7;
    min-height: 100vh;
    background: #ffffff;
    color: var(--oppad-copy);
    font-family: Arial, Helvetica, sans-serif;
}

.oppad-poster-stage {
    position: relative;
    width: min(1280px, calc(100vw - 28px));
    margin: 0 auto;
    padding: clamp(22px, 3.2vw, 42px) clamp(18px, 3.5vw, 48px) clamp(34px, 4.5vw, 64px);
    overflow: hidden;
    background: #ffffff;
}

.oppad-poster-top {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.oppad-poster-logo,
.oppad-poster-logo a,
.oppad-poster-logo .custom-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.oppad-poster-logo img,
.oppad-poster-logo .custom-logo {
    display: block;
    max-width: clamp(170px, 22vw, 300px);
    max-height: 104px;
    width: auto;
    height: auto;
}

.oppad-logo-mark {
    display: inline-grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border: 9px solid var(--oppad-blue);
    border-radius: 50%;
    color: var(--oppad-blue);
    font-size: 3rem;
    line-height: 1;
    font-weight: 950;
}

.oppad-logo-text {
    color: var(--oppad-text);
    font-size: clamp(3.4rem, 8vw, 6.2rem);
    line-height: 0.86;
    font-weight: 950;
    font-style: italic;
    letter-spacing: -0.08em;
}

.oppad-poster-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.oppad-poster-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 17px;
    border: 4px solid var(--oppad-blue);
    background: rgba(255,255,255,0.90);
    color: var(--oppad-copy);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(9,105,215,0.08);
}

.oppad-poster-nav a:hover,
.oppad-poster-nav a:focus {
    background: var(--oppad-blue);
    color: #ffffff;
}

.oppad-poster-rule {
    position: relative;
    z-index: 3;
    height: 4px;
    margin: 12px 0 22px;
    background: var(--oppad-blue);
    box-shadow: 0 4px 14px rgba(9,105,215,0.16);
}

.oppad-blue-corners {
    position: absolute;
    top: 0;
    right: -40px;
    width: min(420px, 43vw);
    height: 260px;
    pointer-events: none;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(96,180,255,0.45) 0 48%, transparent 48.3%) left top / 55% 70% no-repeat,
        linear-gradient(135deg, rgba(9,105,215,0.25) 0 49%, transparent 49.3%) 28% 0 / 56% 70% no-repeat,
        linear-gradient(135deg, transparent 0 42%, var(--oppad-blue-dark) 42.2% 100%) right bottom / 74% 96% no-repeat;
}

.oppad-poster-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.76fr);
    gap: clamp(24px, 3.2vw, 42px);
    align-items: start;
}

.oppad-poster-copy {
    position: relative;
    min-width: 0;
    padding-top: clamp(12px, 2vw, 22px);
}

.oppad-poster-copy h1 {
    position: relative;
    z-index: 2;
    max-width: 580px;
    margin: 0;
    color: var(--oppad-text);
    font-size: clamp(3rem, 6.4vw, 6.4rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
    font-weight: 950;
}

.oppad-title-line {
    display: block;
    width: 206px;
    height: 5px;
    margin: clamp(16px, 1.7vw, 22px) 0 clamp(16px, 2vw, 24px);
    background: var(--oppad-blue);
}

.oppad-front-lede {
    position: relative;
    z-index: 2;
    max-width: 390px;
    margin: 0 0 clamp(28px, 3.5vw, 42px);
    color: var(--oppad-copy);
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    line-height: 1.24;
    font-weight: 900;
}

.oppad-hero-art {
    position: absolute;
    top: 30px;
    right: -150px;
    width: min(720px, 72vw);
    height: 284px;
    pointer-events: none;
    opacity: 0.9;
    z-index: 0;
}

.oppad-plane {
    position: absolute;
    top: 12px;
    left: 26%;
    color: rgba(9,105,215,0.55);
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    transform: rotate(10deg);
    text-shadow: 0 8px 24px rgba(9,105,215,0.16);
}

.oppad-plane::after {
    content: "";
    position: absolute;
    left: 58px;
    top: 54%;
    width: 280px;
    height: 3px;
    background: linear-gradient(90deg, rgba(9,105,215,0.34), transparent);
    transform: rotate(9deg);
    transform-origin: left center;
}

.oppad-skyline {
    position: absolute;
    left: 20px;
    right: 56px;
    bottom: 0;
    height: 148px;
    opacity: 0.28;
    background:
        linear-gradient(to top, rgba(9,105,215,0.7), rgba(9,105,215,0.2)) 0 78px / 7% 70px no-repeat,
        linear-gradient(to top, rgba(9,105,215,0.7), rgba(9,105,215,0.2)) 9% 48px / 8% 100px no-repeat,
        linear-gradient(to top, rgba(9,105,215,0.7), rgba(9,105,215,0.2)) 20% 65px / 6% 82px no-repeat,
        linear-gradient(to top, rgba(9,105,215,0.7), rgba(9,105,215,0.2)) 30% 28px / 8% 120px no-repeat,
        linear-gradient(to top, rgba(9,105,215,0.7), rgba(9,105,215,0.2)) 42% 58px / 7% 90px no-repeat,
        linear-gradient(to top, rgba(9,105,215,0.7), rgba(9,105,215,0.2)) 52% 22px / 9% 126px no-repeat,
        linear-gradient(to top, rgba(9,105,215,0.7), rgba(9,105,215,0.2)) 65% 54px / 7% 94px no-repeat,
        linear-gradient(to top, rgba(9,105,215,0.7), rgba(9,105,215,0.2)) 76% 18px / 8% 130px no-repeat,
        linear-gradient(to top, rgba(9,105,215,0.55), rgba(9,105,215,0.14)) 0 100% / 100% 44px no-repeat;
}

.oppad-tower {
    position: absolute;
    right: 4px;
    bottom: 0;
    width: 70px;
    height: 210px;
    opacity: 0.60;
    background:
        radial-gradient(ellipse at center, rgba(5,55,125,0.95) 0 55%, transparent 56%) 50% 0 / 84px 54px no-repeat,
        linear-gradient(90deg, transparent 0 22%, rgba(9,105,215,0.85) 22% 78%, transparent 78%) 50% 42px / 78px 24px no-repeat,
        linear-gradient(90deg, transparent 0 30%, rgba(9,105,215,0.55) 30% 70%, transparent 70%) 50% 63px / 58px 146px no-repeat;
}

.oppad-service-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 780px;
}

.oppad-service-card {
    min-height: 228px;
    padding: clamp(18px, 2.2vw, 26px);
    border: 3px solid var(--oppad-blue);
    border-radius: 6px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 38px rgba(9,105,215,0.10);
}

.oppad-service-card:nth-child(2) {
    min-height: 260px;
}

.oppad-service-icon {
    float: left;
    display: inline-grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 0 18px 10px 0;
    border: 4px solid var(--oppad-blue);
    border-radius: 999px;
    color: var(--oppad-blue);
    font-size: 2.05rem;
    line-height: 1;
    font-weight: 900;
}

.oppad-service-card h2 {
    margin: 0 0 10px;
    color: var(--oppad-blue);
    font-size: clamp(1.28rem, 2vw, 2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 950;
}

.oppad-service-card ul {
    clear: both;
    margin: 8px 0 0 92px;
    padding: 0 0 0 18px;
    color: var(--oppad-copy);
    font-size: clamp(0.96rem, 1.25vw, 1.16rem);
    line-height: 1.35;
    font-weight: 700;
}

.oppad-service-card p {
    clear: both;
    margin: 26px 0 0 92px;
    color: var(--oppad-copy);
    font-size: clamp(1.05rem, 1.45vw, 1.28rem);
    line-height: 1.35;
    font-weight: 700;
}

.oppad-poster-form-panel.quickhop-form-panel {
    position: relative;
    width: 100%;
    max-width: 430px;
    margin-top: clamp(60px, 9vw, 172px);
    padding: clamp(20px, 2.4vw, 32px);
    border: 3px solid var(--oppad-blue);
    border-radius: 6px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 24px 60px rgba(9,105,215,0.17);
    justify-self: end;
}

.oppad-poster-form-panel.quickhop-form-panel h2 {
    margin: 0 0 14px;
    color: var(--oppad-text);
    text-align: left;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 0.94;
    letter-spacing: -0.075em;
    font-weight: 950;
}

.oppad-poster-form-panel .quickhop-rule {
    height: 4px;
    margin: 0 0 20px;
    background: var(--oppad-blue);
    opacity: 1;
}

.oppad-poster-form-panel .quickhop-calendar-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    min-height: 136px;
    align-items: start;
}

.oppad-poster-form-panel .quickhop-month-select {
    width: 116px !important;
    height: 46px !important;
    margin: 0;
    padding: 0 28px 0 13px !important;
    border: 3px solid var(--oppad-blue) !important;
    color: var(--oppad-copy) !important;
    font-size: 0.86rem !important;
    font-weight: 800 !important;
}

.oppad-poster-form-panel .quickhop-mini-calendar {
    width: 170px;
    justify-self: end;
}

.oppad-poster-form-panel .quickhop-mini-calendar > strong {
    display: block;
    width: fit-content;
    margin: 0 0 4px auto;
    padding: 5px 10px;
    border-radius: 0;
    background: var(--oppad-blue);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 950;
}

.oppad-poster-form-panel .quickhop-weekdays {
    grid-template-columns: repeat(7, 1fr);
    background: transparent;
    color: var(--oppad-copy);
    gap: 1px;
    font-size: 0.56rem;
    line-height: 1;
    font-weight: 950;
    text-transform: none;
}

.oppad-poster-form-panel .quickhop-days {
    gap: 2px;
    margin-top: 3px;
}

.oppad-poster-form-panel .quickhop-days button.quickhop-calendar-day,
.oppad-poster-form-panel .quickhop-days span.quickhop-empty-day,
.oppad-poster-form-panel .quickhop-days span {
    width: 21px;
    height: 21px;
    background: #4f545b;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 900;
}

.oppad-poster-form-panel .quickhop-days button.quickhop-calendar-day:hover,
.oppad-poster-form-panel .quickhop-days button.quickhop-calendar-day:focus,
.oppad-poster-form-panel .quickhop-days button.quickhop-calendar-day.is-selected {
    background: var(--oppad-blue);
    color: #ffffff;
    outline: 2px solid var(--oppad-blue);
    outline-offset: 1px;
}

.oppad-poster-form-panel .quickhop-field-row,
.oppad-poster-form-panel .quickhop-price-row,
.oppad-poster-form-panel .quickhop-distance-display,
.oppad-poster-form-panel .route-distance-display.quickhop-distance-display,
.oppad-poster-form-panel .quickhop-selected-rate {
    display: grid !important;
    grid-template-columns: 142px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.oppad-poster-form-panel .quickhop-field-row label,
.oppad-poster-form-panel .quickhop-price-row label,
.oppad-poster-form-panel .quickhop-distance-display span,
.oppad-poster-form-panel .quickhop-selected-rate span {
    color: var(--oppad-copy);
    font-size: 0.93rem;
    line-height: 1.1;
    font-weight: 950;
}

.oppad-poster-form-panel .quickhop-field-row input,
.oppad-poster-form-panel .quickhop-field-row select,
.oppad-poster-form-panel .quickhop-price-box,
.oppad-poster-form-panel .quickhop-distance-display strong,
.oppad-poster-form-panel .quickhop-selected-rate strong {
    min-height: 42px;
    padding: 8px 12px !important;
    border: 3px solid var(--oppad-blue) !important;
    background: #ffffff !important;
    color: var(--oppad-copy) !important;
    font-size: 0.94rem !important;
    line-height: 1.1;
    font-weight: 850 !important;
}

.oppad-poster-form-panel .quickhop-map-wrap {
    margin: 12px 0 18px;
    padding-left: 154px;
}

.oppad-poster-form-panel .quickhop-route-map {
    height: 150px;
    border: 3px solid var(--oppad-blue);
}

.oppad-poster-form-panel .quickhop-calculator,
.oppad-poster-form-panel .ride-calculator.quickhop-calculator {
    margin-top: 18px;
}

.oppad-poster-form-panel .quickhop-calculator h3 {
    margin: 0 0 14px;
    padding-top: 0;
    color: var(--oppad-text);
    text-align: center;
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 950;
}

.oppad-poster-form-panel .quickhop-price-box span {
    color: var(--oppad-copy);
    font-size: 0.98rem;
    font-weight: 950;
}

.oppad-poster-form-panel .quickhop-selected-rate strong {
    white-space: normal;
}

.oppad-poster-form-panel .quickhop-vehicle-preview {
    grid-template-columns: 92px 1fr;
    gap: 12px;
    margin: 2px 0 12px;
    padding: 10px;
    border: 3px solid var(--oppad-blue);
}

.oppad-poster-form-panel .quickhop-vehicle-preview img {
    width: 92px;
    height: 60px;
    object-fit: cover;
}

.oppad-poster-form-panel .quickhop-vehicle-preview strong {
    color: var(--oppad-text);
}

.oppad-poster-form-panel .quickhop-vehicle-preview span,
.oppad-poster-form-panel .quickhop-vehicle-preview p {
    color: var(--oppad-copy);
}

.oppad-poster-form-panel .quickhop-submit-wrap,
.oppad-poster-form-panel .form-actions.quickhop-submit-wrap {
    margin-top: 20px;
    display: flex;
    justify-content: stretch;
}

.oppad-poster-form-panel .quickhop-book-btn {
    width: 100%;
    min-height: 60px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--oppad-blue), var(--oppad-blue-dark));
    color: #ffffff;
    font-size: 1.18rem;
    font-weight: 950;
    box-shadow: 0 16px 30px rgba(9,105,215,0.24);
}

.oppad-poster-form-panel .quickhop-book-btn:hover,
.oppad-poster-form-panel .quickhop-book-btn:focus {
    background: linear-gradient(135deg, var(--oppad-blue-dark), #003f94);
    color: #ffffff;
}

.oppad-poster-form-panel .quickhop-book-btn:disabled {
    opacity: 0.62;
    box-shadow: none;
}

.oppad-poster-form-panel .manual-distance-fallback {
    border: 3px dashed rgba(9,105,215,0.48);
}

@media (max-width: 1120px) {
    .oppad-poster-grid {
        grid-template-columns: 1fr;
    }

    .oppad-poster-form-panel.quickhop-form-panel {
        justify-self: center;
        margin-top: 10px;
        max-width: 640px;
    }

    .oppad-hero-art {
        right: -80px;
    }
}

@media (max-width: 760px) {
    .oppad-poster-stage {
        width: 100%;
        padding: 18px 14px 44px;
    }

    .oppad-poster-top {
        align-items: flex-start;
        gap: 12px;
    }

    .oppad-poster-nav {
        max-width: 168px;
        gap: 6px;
    }

    .oppad-poster-nav a {
        min-height: 34px;
        padding: 7px 10px;
        border-width: 3px;
        font-size: 0.75rem;
    }

    .oppad-poster-copy h1 {
        max-width: 390px;
        font-size: clamp(2.9rem, 13vw, 4.4rem);
    }

    .oppad-front-lede {
        max-width: 330px;
        font-size: 1.06rem;
    }

    .oppad-hero-art {
        top: 110px;
        right: -260px;
        opacity: 0.55;
        transform: scale(0.82);
        transform-origin: top right;
    }

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

    .oppad-service-card,
    .oppad-service-card:nth-child(2) {
        min-height: auto;
    }

    .oppad-service-icon {
        width: 52px;
        height: 52px;
        margin-right: 14px;
        font-size: 1.65rem;
    }

    .oppad-service-card ul,
    .oppad-service-card p {
        margin-left: 68px;
    }

    .oppad-poster-form-panel.quickhop-form-panel {
        padding: 18px 14px;
        max-width: 100%;
    }

    .oppad-poster-form-panel .quickhop-calendar-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .oppad-poster-form-panel .quickhop-mini-calendar {
        justify-self: start;
    }

    .oppad-poster-form-panel .quickhop-field-row,
    .oppad-poster-form-panel .quickhop-price-row,
    .oppad-poster-form-panel .quickhop-distance-display,
    .oppad-poster-form-panel .route-distance-display.quickhop-distance-display,
    .oppad-poster-form-panel .quickhop-selected-rate {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .oppad-poster-form-panel .quickhop-map-wrap {
        padding-left: 0;
    }

    .oppad-poster-form-panel .quickhop-route-map {
        height: 210px;
    }
}

@media (max-width: 430px) {
    .oppad-poster-logo img,
    .oppad-poster-logo .custom-logo {
        max-width: 148px;
    }

    .oppad-logo-mark {
        width: 50px;
        height: 50px;
        border-width: 6px;
        font-size: 2.1rem;
    }

    .oppad-logo-text {
        font-size: 3.1rem;
    }

    .oppad-poster-nav {
        max-width: 142px;
    }

    .oppad-poster-nav a {
        width: 100%;
    }

    .oppad-poster-copy h1 {
        font-size: clamp(2.55rem, 15vw, 3.35rem);
    }

    .oppad-service-card h2 {
        font-size: 1.34rem;
    }

    .oppad-service-card ul,
    .oppad-service-card p {
        margin-left: 0;
        clear: both;
    }

    .oppad-poster-form-panel.quickhop-form-panel h2 {
        font-size: 2.55rem;
    }
}

/* Maandrekening: inline account cards and payment badges */
.oppad-month-account-cards {
    margin-top: 16px;
}

.oppad-month-account-card[hidden] {
    display: none !important;
}

.oppad-month-account-card.is-active {
    border-color: #186ac2;
    box-shadow: 0 10px 28px rgba(24, 106, 194, 0.12);
}

button.oppad-client-month-select-link {
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.oppad-payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 7px;
    padding: 2px 7px;
    border-radius: 999px;
    border: 2px solid currentColor;
    font-style: normal;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
}

.oppad-payment-badge.is-paid {
    color: #1f7a3b;
}

.oppad-payment-badge.is-unpaid {
    color: #c62828;
}

.oppad-client-month-trip-link strong,
.oppad-account-trip-lines a strong {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .oppad-payment-badge {
        margin-left: 0;
        font-size: 10px;
    }
}


/* App/voorblad agtergrond wit soos versoek. */
html:has(.oppad-poster-front),
body:has(.oppad-poster-front),
.oppad-poster-front,
.oppad-poster-stage,
.quickhop-front-page,
.quickhop-hero {
    background-color: #ffffff !important;
}

/* Eerste-besoek mobiele app installeer popup. */
.oppad-install-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px;
    background: rgba(15, 23, 42, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.oppad-install-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.oppad-install-popup__card {
    position: relative;
    width: min(520px, 100%);
    padding: 22px;
    border: 5px solid #1e70ca;
    border-radius: 24px;
    background: #ffffff;
    color: #454a53;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.22);
    transform: translateY(18px);
    transition: transform 0.22s ease;
}

.oppad-install-popup.is-visible .oppad-install-popup__card {
    transform: translateY(0);
}

.oppad-install-popup__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 2px solid #1e70ca;
    border-radius: 999px;
    background: #ffffff;
    color: #1e70ca;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}

.oppad-install-popup__brand {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    align-items: center;
    padding-right: 24px;
}

.oppad-install-popup__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 4px solid #1e70ca;
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
}

.oppad-install-popup__icon-image {
    display: block;
    width: 82%;
    height: auto;
}

.oppad-install-popup strong {
    display: block;
    color: #1f2937;
    font-size: clamp(22px, 5vw, 30px);
    line-height: 1.08;
}

.oppad-install-popup p {
    margin: 7px 0 0;
    font-size: 15px;
    line-height: 1.45;
}

.oppad-install-popup__steps {
    margin-top: 16px;
    padding: 14px;
    border: 2px solid #d8e8f8;
    border-radius: 14px;
    background: #f8fbff;
}

.oppad-install-popup__steps p {
    margin: 0 0 8px;
}

.oppad-install-popup__steps p:last-child {
    margin-bottom: 0;
}

.oppad-install-popup__actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 18px;
}

.oppad-install-popup__primary,
.oppad-install-popup__secondary {
    min-height: 52px;
    padding: 12px 18px;
    border: 4px solid #1e70ca;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}

.oppad-install-popup__primary {
    background: #1e70ca;
    color: #ffffff;
    border-radius: 16px;
}

.oppad-install-popup__secondary {
    background: #ffffff;
    color: #454a53;
    border-radius: 14px;
}

@media (max-width: 520px) {
    .oppad-install-popup {
        padding: 12px;
    }

    .oppad-install-popup__card {
        padding: 18px;
        border-width: 4px;
        border-radius: 20px;
    }

    .oppad-install-popup__brand {
        grid-template-columns: 54px 1fr;
        gap: 12px;
    }

    .oppad-install-popup__icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
    }

    .oppad-install-popup__actions {
        grid-template-columns: 1fr;
    }
}


/* Admin-user vehicle manager on My Rekening. Uses the same blue cell style. */
.oppad-admin-vehicles-manager {
    margin-top: 28px;
}

.oppad-admin-vehicles-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.oppad-admin-vehicles-heading p:last-child {
    max-width: 780px;
    margin-bottom: 0;
}

.oppad-admin-vehicle-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.oppad-admin-vehicle-item {
    border: 3px solid #1e70ca;
    background: #fff;
}

.oppad-admin-vehicle-item > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
}

.oppad-admin-vehicle-item > summary::-webkit-details-marker {
    display: none;
}

.oppad-admin-vehicle-summary-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.oppad-admin-vehicle-summary-main img {
    width: 72px;
    height: 52px;
    object-fit: contain;
    border: 2px solid #d8e8f8;
    background: #fff;
}

.oppad-admin-vehicle-summary-main span {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.oppad-admin-vehicle-summary-main small {
    font-weight: 700;
    color: #606771;
}

.oppad-admin-vehicle-body {
    padding: 18px;
    border-top: 2px solid #d8e8f8;
}

.oppad-admin-vehicle-form {
    display: grid;
    gap: 14px;
}

.oppad-admin-vehicle-form label {
    display: grid;
    gap: 6px;
    font-weight: 800;
}

.oppad-admin-vehicle-form input[type="text"],
.oppad-admin-vehicle-form input[type="number"],
.oppad-admin-vehicle-form input[type="date"],
.oppad-admin-vehicle-form input[type="file"],
.oppad-admin-vehicle-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 3px solid #1e70ca;
    border-radius: 0;
    background: #fff;
    color: #454a53;
    font: inherit;
}

.oppad-admin-vehicle-form textarea {
    min-height: 90px;
    resize: vertical;
}

.oppad-admin-vehicle-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.oppad-admin-vehicle-fields--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oppad-admin-vehicle-cost-box {
    margin: 4px 0 0;
    padding: 16px;
    border: 3px solid #1e70ca;
}

.oppad-admin-vehicle-cost-box legend {
    padding: 0 8px;
    font-weight: 900;
    color: #1e70ca;
}

.oppad-admin-vehicle-current-image {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.oppad-admin-vehicle-current-image img {
    width: 160px;
    height: 100px;
    object-fit: contain;
    border: 3px solid #1e70ca;
    background: #fff;
}

.oppad-admin-vehicle-active {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 9px !important;
}

.oppad-admin-vehicle-active input {
    width: 22px;
    height: 22px;
}

.oppad-admin-vehicle-delete-form {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px solid #d8e8f8;
}

.oppad-admin-vehicle-delete {
    border-color: #b42318 !important;
    color: #b42318 !important;
}

.oppad-admin-vehicle-new {
    margin-bottom: 18px;
    background: #f8fbff;
}

@media (max-width: 760px) {
    .oppad-admin-vehicles-heading {
        display: grid;
    }

    .oppad-admin-vehicle-fields,
    .oppad-admin-vehicle-fields--top {
        grid-template-columns: 1fr;
    }

    .oppad-admin-vehicle-summary-main img {
        width: 58px;
        height: 44px;
    }

    .oppad-admin-vehicle-body {
        padding: 14px;
    }
}

/* =========================================================
 * Kliëntrekening: gebruik dieselfde visuele taal as front-page.php
 * Sterk Oppad-blou rame, vierkantige selle, donker opskrifte.
 * ========================================================= */
body:has(.oppad-account-wrap) {
    --oppad-account-blue: #0969d7;
    --oppad-account-blue-dark: #004fb7;
    --oppad-account-ink: #071833;
    --oppad-account-copy: #1b2535;
    background: #ffffff;
    color: var(--oppad-account-copy);
    overflow-x: hidden;
}

body:has(.oppad-account-wrap) .page-content {
    width: min(1180px, calc(100vw - 28px));
    padding: clamp(26px, 4vw, 54px) 0 clamp(44px, 6vw, 78px);
}

body:has(.oppad-account-wrap) .page-content > .content-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
}

body:has(.oppad-account-wrap) .page-content > .content-card > h1 {
    position: relative;
    margin: 0 0 clamp(34px, 5vw, 58px);
    padding: 0 0 20px;
    color: var(--oppad-account-ink);
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
    font-weight: 950;
}

body:has(.oppad-account-wrap) .page-content > .content-card > h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(220px, 45vw);
    height: 5px;
    background: var(--oppad-account-blue);
}

.oppad-account-wrap {
    width: 100%;
    padding: 0;
    color: var(--oppad-account-copy);
    font-family: Arial, Helvetica, sans-serif;
}

.oppad-account-card,
.oppad-account-wrap .content-card {
    padding: clamp(22px, 3.2vw, 34px);
    border: 3px solid var(--oppad-account-blue);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(9, 105, 215, 0.10);
}

.oppad-login-card {
    width: min(680px, 100%);
    max-width: 680px;
    margin-inline: auto;
}

.oppad-account-wrap .eyebrow,
.oppad-account-wrap .eyebrow.dark {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin: 0 0 20px;
    padding: 8px 16px;
    border: 3px solid var(--oppad-account-blue);
    border-radius: 0;
    background: #ffffff;
    color: var(--oppad-account-blue);
    font-size: 0.88rem;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.oppad-account-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin: 0 0 26px;
    padding: 0 0 18px;
    border-bottom: 4px solid var(--oppad-account-blue);
}

.oppad-account-header h1,
.oppad-account-card h1,
.oppad-account-card h2 {
    margin: 0 0 16px;
    color: var(--oppad-account-ink);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 950;
}

.oppad-account-header h1,
.oppad-account-card h1 {
    font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.oppad-account-card h2 {
    padding-bottom: 12px;
    border-bottom: 4px solid var(--oppad-account-blue);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.oppad-account-card > p,
.oppad-login-card > p:not(.eyebrow) {
    color: var(--oppad-account-copy);
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    line-height: 1.5;
    font-weight: 650;
}

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

/* Login + profiel velde soos die voorblad se vormselle. */
.oppad-login-card form,
.oppad-profile-form {
    margin-top: 22px;
}

.oppad-login-card form > p,
.oppad-profile-form label {
    margin: 0 0 14px;
}

.oppad-login-card label,
.oppad-profile-form label,
.oppad-profile-form label span {
    color: var(--oppad-account-copy);
    font-weight: 900;
}

.oppad-login-card label,
.oppad-profile-form label span {
    display: block;
    margin-bottom: 7px;
}

.oppad-login-card input[type="text"],
.oppad-login-card input[type="email"],
.oppad-login-card input[type="password"],
.oppad-profile-form input,
.oppad-profile-form select,
.oppad-profile-form textarea,
.oppad-account-wrap input[type="text"],
.oppad-account-wrap input[type="email"],
.oppad-account-wrap input[type="password"],
.oppad-account-wrap input[type="number"],
.oppad-account-wrap input[type="date"],
.oppad-account-wrap select,
.oppad-account-wrap textarea {
    width: 100%;
    min-height: 50px;
    padding: 10px 14px !important;
    border: 3px solid var(--oppad-account-blue) !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: var(--oppad-account-copy) !important;
    box-shadow: none !important;
    font: inherit;
    font-weight: 750;
    outline: none;
}

.oppad-account-wrap textarea {
    min-height: 96px;
    resize: vertical;
}

.oppad-account-wrap input:focus,
.oppad-account-wrap select:focus,
.oppad-account-wrap textarea:focus {
    border-color: var(--oppad-account-blue-dark) !important;
    box-shadow: 0 0 0 3px rgba(9, 105, 215, 0.14) !important;
}

.oppad-login-card .login-remember {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
}

.oppad-login-card .login-remember label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.oppad-login-card input[type="checkbox"] {
    width: 24px;
    height: 24px;
    accent-color: var(--oppad-account-blue);
}

/* Knoppies dieselfde sterk blokkie-styl as die voorblad-navigasie. */
.oppad-account-wrap .btn,
.oppad-account-wrap button,
.oppad-login-card input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 10px 18px;
    border: 4px solid var(--oppad-account-blue) !important;
    border-radius: 0 !important;
    background: #ffffff;
    color: var(--oppad-account-copy);
    box-shadow: 0 10px 24px rgba(9, 105, 215, 0.08);
    font: inherit;
    font-weight: 950;
    text-decoration: none;
    cursor: pointer;
}

.oppad-account-wrap .btn-primary,
.oppad-account-wrap button[type="submit"],
.oppad-login-card input[type="submit"] {
    background: linear-gradient(135deg, var(--oppad-account-blue), var(--oppad-account-blue-dark));
    color: #ffffff;
}

.oppad-account-wrap .btn:hover,
.oppad-account-wrap .btn:focus,
.oppad-account-wrap button:hover,
.oppad-account-wrap button:focus,
.oppad-login-card input[type="submit"]:hover,
.oppad-login-card input[type="submit"]:focus {
    background: var(--oppad-account-blue);
    color: #ffffff;
}

.oppad-account-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.oppad-account-notice {
    margin: 0 0 20px;
    padding: 14px 16px;
    border: 3px solid var(--oppad-account-blue);
    border-radius: 0;
    background: #f5faff;
    color: var(--oppad-account-blue-dark);
    font-weight: 950;
}

/* Ritlys: sel-/tabelstyl in dieselfde blou taal. */
.oppad-trip-table-wrap {
    overflow-x: auto;
    border: 3px solid var(--oppad-account-blue);
    background: #ffffff;
}

.oppad-trip-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.oppad-trip-table th,
.oppad-trip-table td {
    padding: 12px;
    border: 1px solid #d7e6f7;
    text-align: left;
    vertical-align: top;
}

.oppad-trip-table th {
    background: var(--oppad-account-blue);
    color: #ffffff;
    font-weight: 950;
}

.oppad-trip-table tbody tr:nth-child(even) {
    background: #f7fbff;
}

/* Admin voertuigbestuur binne My rekening hou dieselfde selstyl. */
.oppad-admin-vehicle-manager {
    margin-top: 28px;
    padding: clamp(22px, 3.2vw, 34px);
    border: 3px solid var(--oppad-account-blue);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(9, 105, 215, 0.10);
}

.oppad-admin-vehicle-item {
    margin: 12px 0;
    border: 3px solid var(--oppad-account-blue);
    border-radius: 0;
    background: #ffffff;
}

.oppad-admin-vehicle-item > summary {
    padding: 14px;
    color: var(--oppad-account-ink);
    font-weight: 950;
    cursor: pointer;
}

.oppad-admin-vehicle-body {
    padding: 16px;
    border-top: 3px solid var(--oppad-account-blue);
}

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

    .oppad-account-header {
        align-items: start;
    }

    .oppad-account-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    body:has(.oppad-account-wrap) .page-content {
        width: min(100% - 20px, 1180px);
        padding-top: 24px;
    }

    body:has(.oppad-account-wrap) .page-content > .content-card > h1 {
        margin-bottom: 30px;
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .oppad-account-card,
    .oppad-admin-vehicle-manager {
        padding: 18px;
        border-width: 3px;
    }

    .oppad-account-grid {
        gap: 16px;
    }

    .oppad-account-actions .btn {
        width: 100%;
    }

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

    .oppad-login-card input[type="submit"],
    .oppad-account-wrap .btn-primary,
    .oppad-account-wrap button[type="submit"] {
        width: 100%;
    }
}


/* ==========================================================
 * Oppad header.php — selfde sel-/blokstyl as die voorblad
 * ========================================================== */
.site-header.oppad-poster-header {
    position: relative;
    top: auto;
    z-index: 100;
    overflow: hidden;
    background: #ffffff;
    border: 0;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.oppad-poster-header .oppad-header-shell {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1280px, calc(100vw - 34px));
    min-height: 170px;
    padding: 28px 18px 30px;
    gap: 34px;
}

.oppad-poster-header .oppad-header-shell::after {
    content: "";
    position: absolute;
    z-index: 5;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 6px;
    background: #086bd3;
    pointer-events: none;
}

.oppad-poster-header .oppad-header-brand,
.oppad-poster-header .oppad-header-brand .custom-logo-link {
    position: relative;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.oppad-poster-header .oppad-header-brand img,
.oppad-poster-header .oppad-header-brand .custom-logo {
    display: block;
    width: auto;
    max-width: clamp(150px, 20vw, 260px);
    max-height: 92px;
    object-fit: contain;
}

.oppad-poster-header .oppad-header-brand .brand-mark {
    border-radius: 0;
    background: #086bd3;
    box-shadow: none;
}

.oppad-poster-header .oppad-header-nav {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, minmax(145px, 1fr));
    align-items: stretch;
    gap: 14px;
    margin: 0;
}

.oppad-poster-header .oppad-header-cell,
.oppad-poster-header .nav-login,
.oppad-poster-header .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    min-width: 145px;
    padding: 12px 22px;
    border: 5px solid #086bd3;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.92);
    color: #172033 !important;
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    box-shadow: 7px 7px 0 rgba(8, 107, 211, 0.10);
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.oppad-poster-header .oppad-header-cell:hover,
.oppad-poster-header .oppad-header-cell:focus-visible {
    transform: translate(-2px, -2px);
    background: #086bd3;
    color: #ffffff !important;
    box-shadow: 9px 9px 0 rgba(8, 107, 211, 0.16);
    outline: 0;
}

.oppad-poster-header .oppad-header-shape {
    position: absolute;
    z-index: 0;
    display: block;
    pointer-events: none;
}

.oppad-poster-header .oppad-header-shape-one {
    top: -45px;
    right: 58px;
    width: 260px;
    height: 220px;
    background: rgba(72, 161, 241, 0.24);
    clip-path: polygon(35% 0, 100% 0, 73% 100%, 0 100%);
}

.oppad-poster-header .oppad-header-shape-two {
    top: -28px;
    right: 8px;
    width: 190px;
    height: 250px;
    background: rgba(32, 132, 226, 0.18);
    clip-path: polygon(28% 0, 100% 0, 72% 100%, 0 100%);
}

.oppad-poster-header .oppad-header-shape-three {
    right: -70px;
    bottom: -2px;
    width: 240px;
    height: 118px;
    background: #0758bd;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
}

/* Hou die nuwe header sigbaar op die gewone voorblad; die poster-template
 * mag sy eie ingeboude header hê en bly dus onaangeraak. */
body.home:not(:has(.oppad-poster-front)) .site-header.oppad-poster-header,
body.front-page:not(:has(.oppad-poster-front)) .site-header.oppad-poster-header,
body.page-template-front-page:not(:has(.oppad-poster-front)) .site-header.oppad-poster-header {
    display: block !important;
}

@media (max-width: 900px) {
    .oppad-poster-header .oppad-header-shell {
        align-items: flex-start;
        min-height: 278px;
        padding: 28px 10px 30px;
        gap: 18px;
    }

    .oppad-poster-header .oppad-header-brand {
        margin-top: 24px;
        margin-left: 8px;
    }

    .oppad-poster-header .oppad-header-brand img,
    .oppad-poster-header .oppad-header-brand .custom-logo {
        max-width: min(34vw, 190px);
        max-height: 72px;
    }

    .oppad-poster-header .oppad-header-nav {
        width: min(44vw, 280px);
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .oppad-poster-header .oppad-header-cell,
    .oppad-poster-header .nav-login,
    .oppad-poster-header .nav-cta {
        width: 100%;
        min-width: 0;
        min-height: 66px;
        padding: 10px 14px;
        border-width: 4px;
        font-size: 1rem;
        box-shadow: 5px 5px 0 rgba(8, 107, 211, 0.10);
    }

    .oppad-poster-header .oppad-header-shape-one {
        right: 4px;
        width: 210px;
        height: 230px;
    }

    .oppad-poster-header .oppad-header-shape-two {
        right: -38px;
        width: 175px;
        height: 250px;
    }

    .oppad-poster-header .oppad-header-shape-three {
        right: -78px;
        width: 220px;
        height: 112px;
    }
}

@media (max-width: 560px) {
    .oppad-poster-header .oppad-header-shell {
        width: calc(100vw - 20px);
        min-height: 300px;
        padding-inline: 4px;
    }

    .oppad-poster-header .oppad-header-shell::after {
        left: 4px;
        right: 4px;
        height: 5px;
    }

    .oppad-poster-header .oppad-header-brand {
        margin-top: 30px;
        margin-left: 8px;
    }

    .oppad-poster-header .oppad-header-brand img,
    .oppad-poster-header .oppad-header-brand .custom-logo {
        max-width: 34vw;
        max-height: 64px;
    }

    .oppad-poster-header .oppad-header-nav {
        width: 42vw;
        min-width: 168px;
        gap: 10px;
    }

    .oppad-poster-header .oppad-header-cell,
    .oppad-poster-header .nav-login,
    .oppad-poster-header .nav-cta {
        min-height: 64px;
        padding: 8px 10px;
        font-size: 0.95rem;
    }
}


/* ==========================================================
 * Mobile burger menu — kompakte dropdown vir header.php
 * ========================================================== */
.oppad-mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 30;
    flex: 0 0 auto;
    width: 62px;
    height: 58px;
    padding: 12px;
    border: 5px solid #086bd3;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 6px 6px 0 rgba(8, 107, 211, 0.10);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.oppad-mobile-menu-toggle__line {
    display: block;
    width: 100%;
    height: 4px;
    margin: 5px 0;
    background: #172033;
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.oppad-mobile-menu-toggle.is-open .oppad-mobile-menu-toggle__line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.oppad-mobile-menu-toggle.is-open .oppad-mobile-menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.oppad-mobile-menu-toggle.is-open .oppad-mobile-menu-toggle__line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 900px) {
    .site-header.oppad-poster-header {
        overflow: visible;
    }

    .oppad-poster-header .oppad-header-shell {
        align-items: center;
        min-height: 112px;
        padding: 18px 12px 22px;
        gap: 16px;
    }

    .oppad-poster-header .oppad-header-brand {
        margin: 0;
    }

    .oppad-poster-header .oppad-header-brand img,
    .oppad-poster-header .oppad-header-brand .custom-logo {
        max-width: min(42vw, 190px);
        max-height: 68px;
    }

    .oppad-mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .oppad-poster-header .oppad-header-nav {
        position: absolute;
        z-index: 50;
        top: calc(100% - 1px);
        right: 12px;
        display: none;
        width: min(360px, calc(100vw - 24px));
        padding: 12px;
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 0;
        border: 5px solid #086bd3;
        background: #ffffff;
        box-shadow: 10px 12px 0 rgba(8, 107, 211, 0.14), 0 22px 44px rgba(15, 23, 42, 0.18);
    }

    .oppad-poster-header .oppad-header-nav.is-open {
        display: grid;
        animation: oppadMobileMenuDrop 0.18s ease-out both;
    }

    .oppad-poster-header .oppad-header-cell,
    .oppad-poster-header .nav-login,
    .oppad-poster-header .nav-cta {
        width: 100%;
        min-width: 0;
        min-height: 58px;
        padding: 12px 16px;
        border-width: 4px;
        font-size: 1rem;
        box-shadow: none;
    }

    .oppad-poster-header .oppad-header-shape-one {
        right: 35px;
        width: 190px;
        height: 150px;
        opacity: 0.8;
    }

    .oppad-poster-header .oppad-header-shape-two {
        right: -18px;
        width: 150px;
        height: 170px;
        opacity: 0.8;
    }

    .oppad-poster-header .oppad-header-shape-three {
        right: -90px;
        width: 190px;
        height: 82px;
    }
}

@media (max-width: 560px) {
    .oppad-poster-header .oppad-header-shell {
        width: calc(100vw - 18px);
        min-height: 104px;
        padding: 14px 4px 20px;
    }

    .oppad-poster-header .oppad-header-brand {
        margin: 0 0 0 8px;
    }

    .oppad-poster-header .oppad-header-brand img,
    .oppad-poster-header .oppad-header-brand .custom-logo {
        max-width: 42vw;
        max-height: 60px;
    }

    .oppad-mobile-menu-toggle {
        width: 58px;
        height: 54px;
        padding: 10px;
        border-width: 4px;
        margin-right: 6px;
    }

    .oppad-poster-header .oppad-header-nav {
        right: 4px;
        width: min(330px, calc(100vw - 16px));
        padding: 10px;
        border-width: 4px;
    }
}

@keyframes oppadMobileMenuDrop {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .oppad-poster-header .oppad-header-nav.is-open {
        animation: none;
    }

    .oppad-mobile-menu-toggle__line {
        transition: none;
    }
}


/* Boekhou en Bespreking: Een Rit / Retour */
.oppad-trip-type-row {
    border: 4px solid #1e70ca;
    padding: 10px;
    background: #f8fbff;
}

.oppad-return-leg-heading {
    margin: 14px 0 8px;
    padding: 10px 14px;
    border-left: 6px solid #1e70ca;
    border-bottom: 2px solid #1e70ca;
    background: #f8fbff;
    color: #1f2937;
    font-size: 18px;
}

.oppad-return-trip-panel {
    display: grid;
    gap: 10px;
    margin: 14px 0;
    padding: 14px;
    border: 4px solid #1e70ca;
    background: #ffffff;
}

.oppad-return-trip-panel[hidden] {
    display: none !important;
}

@media (max-width: 720px) {
    .oppad-return-trip-panel {
        padding: 10px;
        border-width: 3px;
    }
}
