/* ============================================================
   ParkATH — Main Stylesheet
   Color palette: #1B4F72 (primary) | #2E86C1 (secondary)
                  #F39C12 (accent)  | #1C2833 (dark)
                  #27AE60 (success) | #E74C3C (danger)
                  #F8F9FA (bg)      | #FFFFFF (card)
   Fonts: DM Sans (headlines) | Inter (body)
============================================================ */

/* ============================================================
   1. CSS Reset & Root Variables
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #1B4F72;
    --color-secondary: #2E86C1;
    --color-accent: #F39C12;
    --color-dark: #1C2833;
    --color-success: #27AE60;
    --color-danger: #E74C3C;
    --color-bg: #EFEFEF;
    --color-card: #FFFFFF;
    --color-text: #2C3E50;
    --color-muted: #7F8C8D;
    --color-border: #E5E7EB;
    --color-light: #FFFFFF;

    --font-headline: 'DM Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    --card-radius: 12px;
    --card-shadow: 0 4px 24px rgba(0, 0, 0, .10);
    --card-padding: 28px;
    --max-width: 1200px;

    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============================================================
   2. Layout Utilities
============================================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 72px 0;
}

.section--gray {
    background: var(--color-bg);
}

.section--light {
    background: var(--color-light);
}

section--light .section--dark {
    background: var(--color-dark);
    color: #fff;
}

.section__header {
    text-align: center;
    margin-bottom: 28px;
}

.section__tag {
    display: inline-block;
    background: rgba(46, 134, 193, .12);
    color: var(--color-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-headline);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section--dark .section__title {
    color: #fff;
}

.section__subtitle {
    color: var(--color-muted);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================================
   3. Buttons
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 8px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn--accent {
    background: var(--color-accent);
    color: #fff;
}

.btn--accent:hover {
    background: #d68910;
    box-shadow: 0 4px 16px rgba(243, 156, 18, .35);
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--color-secondary);
    color: #fff;
}

.btn--primary:hover {
    background: #1a6598;
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn--outline:hover {
    background: var(--color-secondary);
    color: #fff;
}

.btn--sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
}

.btn:disabled,
.btn[aria-busy="true"] {
    opacity: .65;
    pointer-events: none;
}

/* ============================================================
   4. Top Bar
============================================================ */
.topbar {
    background: var(--color-primary);
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    padding: 7px 0;
    display: none;
    /* hidden on mobile */
}

@media (min-width: 768px) {
    .topbar {
        display: block;
    }
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .85);
    transition: color var(--transition);
}

.topbar__link:hover {
    color: #fff;
}

.topbar__link--active {
    color: #fff;
    font-weight: 600;
}

.topbar__link--whatsapp {
    color: #25D366;
}

.topbar__link--whatsapp:hover {
    color: #1ebe59;
}

.button--whatsap {
    background: #1ebe59;
    color: #fff;
}

.topbar__sep {
    color: rgba(255, 255, 255, .3);
}

.topbar__lang {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================================
   5. Navbar
============================================================ */
.navbar {
    background: var(--color-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.navbar__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.navbar__logo-text {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
}

.navbar__logo-text span {
    color: var(--color-accent);
}

.navbar__links {
    display: none;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

@media (min-width: 768px) {
    .navbar__links {
        display: flex;
    }
}

.navbar__links a {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}

.navbar__links a:hover {
    color: #fff;
}

.navbar__cta {
    display: none;
}

@media (min-width: 768px) {
    .navbar__cta {
        display: inline-flex;
    }
}

/* Hamburger */
.navbar__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.navbar__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.navbar__hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
    .navbar__hamburger {
        display: none;
    }
}

/* Mobile menu */
.navbar__mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--color-dark);
    padding: 0 0 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.navbar__mobile-menu.is-open {
    display: flex;
}

.navbar__mobile-menu a {
    color: rgba(255, 255, 255, .85);
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background var(--transition);
}

.navbar__mobile-menu a:hover {
    background: rgba(255, 255, 255, .06);
}

/* ============================================================
   6. Hero Section
============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 30px 0 40px;
    overflow: hidden;
}



.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 40, 51, .68);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr 480px;
        gap: 60px;
    }
}

.hero__text {
    color: #fff;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(243, 156, 18, .15);
    border: 1px solid rgba(243, 156, 18, .4);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero__title {
    font-family: var(--font-headline);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.hero__title span {
    color: var(--color-accent);
}

.hero__subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
}

.hero__trust-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

@media (min-width:480px) {
    .hero__bg {
        position: absolute;
        inset: 0;
        background-image: url('../img/jetpark-parking.jpg');
        background-size: cover;
        background-position: center;
        z-index: 0;
    }
}

/* ============================================================
   7. Booking Form Card
============================================================ */
.booking-card {
    background: var(--color-card);
    border-radius: var(--card-radius);
    box-shadow: 0 12px 48px rgba(0, 0, 0, .28);
    overflow: hidden;
}

.booking-card__header {
    background: var(--color-primary);
    color: #fff;
    padding: 18px var(--card-padding);
}

.booking-card__header h3 {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.booking-card__header p {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    margin: 4px 0 0;
}

.booking-card__body {
    padding: var(--card-padding);
}

/* Form */
.form-group {
    margin-bottom: 10px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-label span.required {
    color: var(--color-danger);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(46, 134, 193, .15);
}

.form-control.is-error {
    border-color: var(--color-danger);
}

.form-error-msg {
    display: none;
    font-size: 12px;
    color: var(--color-danger);
    margin-top: 4px;
}

.form-error-msg.visible {
    display: block;
}

/* 2-column grid for date/time pairs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Date group label */
.form-date-group {
    background: var(--color-bg);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}

.form-date-group__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--color-muted);
    margin-bottom: 8px;
}

/* Days badge */
.days-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(46, 134, 193, .08);
    border: 1.5px solid rgba(46, 134, 193, .2);
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--color-secondary);
    font-weight: 500;
    transition: all var(--transition);
}

.days-badge strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Service radio */
.service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.service-option {
    position: relative;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-option__label {
    display: block;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    padding: 11px 12px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    text-align: center;
}

.service-option__label:hover {
    border-color: var(--color-secondary);
    background: rgba(46, 134, 193, .04);
}

.service-option input:checked+.service-option__label {
    border-color: var(--color-secondary);
    background: rgba(46, 134, 193, .08);
}

.service-option__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    display: block;
}

.service-option__price {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-top: 2px;
}

/* Carwash checkboxes */
.carwash-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.carwash-option {
    position: relative;
}

.carwash-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.carwash-option__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1.5px solid var(--color-border);
    border-radius: 7px;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 13px;
    transition: border-color var(--transition), background var(--transition);
}

.carwash-option__label:hover {
    border-color: var(--color-secondary);
}

.carwash-option input:checked+.carwash-option__label {
    border-color: var(--color-secondary);
    background: rgba(46, 134, 193, .06);
    color: var(--color-primary);
    font-weight: 600;
}

.carwash-option__price {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 12px;
}

/* Flight number row (conditionally shown) */
.flight-row {
    display: none;
    transition: opacity var(--transition);
}

.flight-row.visible {
    display: block;
}

/* Price summary */
.price-summary {
    background: linear-gradient(135deg, #1B4F72 0%, #2E86C1 100%);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 10px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-summary__label {
    font-size: 13px;
    opacity: .85;
}

.price-summary__amount {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
}

/* Section labels inside form */
.form-section-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--color-muted);
    margin: 18px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
}

/* ============================================================
   8. Trust Strip
============================================================ */
.trust-strip {
    background: #fff;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-strip__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    text-align: center;
}

@media (min-width: 768px) {
    .trust-strip__inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 12px;
}

.trust-item__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(46, 134, 193, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.trust-item__text {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.trust-item__sub {
    font-size: 14px;
    color: var(--color-muted);
}

/* ============================================================
   9. Services Cards
============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--color-card);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    box-shadow: var(--card-shadow);
    border: 1.5px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.service-card-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}

.service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(46, 134, 193, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.service-card__title {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.service-card__desc {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.service-card__price {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
}

.service-card__price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-muted);
}

/* ============================================================
   10. Pricing Section
============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.pricing-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 40, 51, .68);
    z-index: 1;
}

.pricing-card {
    background: var(--color-card);
    border-radius: var(--card-radius);
    padding: 32px 28px;
    box-shadow: var(--card-shadow);
    border: 2px solid var(--color-border);
    position: relative;
    transition: transform var(--transition), border-color var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card--featured {
    border-color: var(--color-accent);
}

.pricing-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card__name {
    font-family: var(--font-headline);
    font-size: 20px !important;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 8px;
}

.pricing-card__price {
    text-align: center;
    margin-bottom: 0px;
}

.pricing-card__amount {
    font-family: var(--font-headline);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-accent);
}

.pricing-card__period {
    font-size: 14px;
    color: var(--color-muted);
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    min-height: 150px;
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text);
}

.pricing-card__feature svg {
    color: var(--color-success);
    flex-shrink: 0;
}

.pricing-table {
    grid-template-columns: repeat(4, 1fr);
}

.section--gray#pricing {
    background: var(--color-bg);
    inset: 0;
    background-image: url(../img/airport-terminal.jpg);
    background-size: cover;
    background-position: 10% 20%;
    z-index: 0;
    position: relative;
}

/* ============================================================
   11. Footer
============================================================ */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, .75);
    padding-top: 56px;
    border-top: 5px solid #1b4f72;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
}

@media (min-width: 640px) {
    .footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__inner {
        grid-template-columns: 1fr 2fr 1fr 1fr;
    }
}

.footer__col--brand .footer__tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
    margin-top: 12px;
}

.footer__logo-text {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.footer__col h4 {
    font-family: var(--font-headline);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
}

.footer__col ul li svg {
    margin-top: 2px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, .4);
}

.footer__col a {
    color: rgba(255, 255, 255, .65);
    transition: color var(--transition);
}

.footer__col a:hover {
    color: #fff;
}

.footer-payment-icons {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 8px;
    justify-content: center;
}

.pay-icon {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.pay-icon:hover {
    background: rgba(255, 255, 255, .14);
}

.pay-icon img {
    display: block;
    height: 28px;
    width: auto;
    max-width: 72px;
    object-fit: contain;
}

.pay-icon[title="Apple Pay"] img {
    height: 34px;
    max-width: 80px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 16px 0;
}

.footer__bottom .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
}

.footer__bottom-links {
    display: flex;
    gap: 20px;
}

.footer__bottom-links a {
    color: rgba(255, 255, 255, .4);
    transition: color var(--transition);
}

.footer__bottom-links a:hover {
    color: rgba(255, 255, 255, .8);
}

/* ============================================================
   12. Valet Tier Options
============================================================ */
.valet-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.valet-option {
    position: relative;
}

.valet-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.valet-option__label {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    align-items: start;
    column-gap: 10px;
    border: 2px solid var(--color-border);
    border-radius: 9px;
    padding: 10px 13px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    position: relative;
}

.valet-option__label:hover {
    border-color: var(--color-secondary);
    background: rgba(46, 134, 193, .03);
}

.valet-option input:checked+.valet-option__label {
    border-color: var(--color-secondary);
    background: rgba(46, 134, 193, .07);
}

.valet-option--premium input:checked+.valet-option__label {
    border-color: var(--color-accent);
    background: rgba(243, 156, 18, .06);
}

.valet-option__badge {
    position: absolute;
    top: -9px;
    left: 10px;
    background: var(--color-danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 10px;
}

.valet-option__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    grid-column: 1;
    grid-row: 1;
    margin-top: 2px;
}

.valet-option__desc {
    font-size: 12px;
    color: var(--color-muted);
    grid-column: 1;
    grid-row: 2;
    line-height: 1.4;
    margin-top: 2px;
}

.valet-option__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    grid-column: 2;
    grid-row: 1;
    text-align: right;
    white-space: nowrap;
}

.valet-option--premium .valet-option__price {
    color: var(--color-accent);
}

.valet-option__regular {
    font-size: 11px;
    color: var(--color-muted);
    text-decoration: line-through;
    grid-column: 2;
    grid-row: 2;
    text-align: right;
}

.section__header.valet {
    position: relative;
    z-index: 5;
}

.valet .section__tag {
    color: #fff;
    background: var(--color-secondary);
}

.valet .section__title {
    color: #fff;
}

.valet .section__subtitle {
    color: #fff;
}

/* ============================================================
   13. Alert / Flash Messages
============================================================ */
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert--error {
    background: rgba(231, 76, 60, .08);
    border: 1px solid rgba(231, 76, 60, .25);
    color: #c0392b;
}

.alert--success {
    background: rgba(39, 174, 96, .08);
    border: 1px solid rgba(39, 174, 96, .25);
    color: #1e8449;
}

/* ============================================================
   13. Responsive overrides
============================================================ */
@media (max-width: 480px) {
    .service-options {
        grid-template-columns: 1fr;
    }

    .carwash-options {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero__trust {
        flex-direction: column;
        gap: 10px;
        display: none;
    }

    .hero__subtitle {
        margin-bottom: 0px;
    }

    .navbar__mobile-menu.is-open li {
        padding: 10px 0;
    }

    .navbar__mobile-menu.is-open {
        display: flex;
        padding: 10px;
    }

    .pricing-table {
        grid-template-columns: repeat(2, 1fr);
    }

    #services .section__subtitle br {
        display: block;
    }

    #pricing .section__subtitle br {
        display: block;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        background-image: url(../img/jetpark-parking.jpg);
        background-size: 170%;
        background-position: 60% 0;
        z-index: 0;
        background-repeat: no-repeat;
        -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 85%);
        mask-image: linear-gradient(to bottom, black 40%, transparent 85%);
    }

    .trust-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 16px 0px;
    }

    .section--gray#pricing {
        background-position: -50% 60%;
    }

    .pricing-card {
        width: 90%;
        margin: 0 auto;
    }
}

/* ============================================================
   14. Utility
============================================================ */
.text-accent {
    color: var(--color-accent);
}

.text-primary {
    color: var(--color-primary);
}

.text-muted {
    color: var(--color-muted);
}

.text-center {
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.hidden {
    display: none !important;
}

/* ============================================================
   15. Booking Wizard
============================================================ */

/* Step indicator bar */
.wizard-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: var(--color-primary);
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(255, 255, 255, .18);
    z-index: 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.wizard-step__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #446F8B;
    color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    transition: background .2s, color .2s, box-shadow .2s;
}

.wizard-step.is-active .wizard-step__dot {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(243, 156, 18, .3);
}

.wizard-step.is-done .wizard-step__dot {
    background: var(--color-success);
    color: #fff;
}

.wizard-step__label {
    font-size: 10px;
    color: rgba(255, 255, 255, .45);
    font-weight: 500;
    white-space: nowrap;
    transition: color .2s;
}

.wizard-step.is-active .wizard-step__label {
    color: #fff;
    font-weight: 700;
}

.wizard-step.is-done .wizard-step__label {
    color: rgba(255, 255, 255, .7);
}

/* Wizard panels */
.wizard-panel {
    display: none;
}

.wizard-panel.is-active {
    display: block;
}

.wizard-panel .booking-card__body {
    padding: 18px 20px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

/* Panel heading */
.wizard-panel__title {
    font-family: var(--font-headline);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 3px;
}

.wizard-panel__sub {
    font-size: 12px;
    color: var(--color-muted);
    margin: 0 0 14px;
}

/* Navigation row — pushed to bottom inside flex column panel */
.wizard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    gap: 10px;
}

.wizard-nav--end {
    justify-content: flex-end;
}

/* Ghost back button */
.btn--ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-muted);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
    font-family: var(--font-body);
}

.btn--ghost:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

/* YES / NO buttons */
.yn-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.yn-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 14px 12px;
    border-radius: 10px;
    border: 2.5px solid var(--color-border);
    background: var(--color-card);
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    transition: border-color .2s, background .2s;
    font-family: var(--font-headline);
}

.yn-btn svg {
    opacity: .4;
    transition: opacity .2s;
}

.yn-btn:hover {
    border-color: var(--color-secondary);
    background: rgba(46, 134, 193, .04);
}

.yn-btn__price {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-accent);
    font-family: var(--font-body);
}

.yn-btn--yes.is-active {
    border-color: var(--color-success);
    background: rgba(39, 174, 96, .08);
    color: #1e8449;
}

.yn-btn--yes.is-active svg {
    opacity: 1;
    color: var(--color-success);
}

.yn-btn--no.is-active {
    border-color: #b0b0b0;
    background: rgba(0, 0, 0, .04);
    color: var(--color-muted);
}

.yn-btn--no.is-active svg {
    opacity: .6;
}

/* Reveal section */
.reveal-section {
    display: none;
    animation: fadeDown .2s ease;
}

.reveal-section.is-open {
    display: block;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tier card grid */
.tier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 4px;
}

.tier-grid--2col {
    grid-template-columns: 1fr 1fr;
}

.tier-card {
    position: relative;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    background: var(--color-card);
    transition: border-color .2s, background .2s;
}

.tier-card:hover {
    border-color: var(--color-secondary);
    background: rgba(46, 134, 193, .04);
}

.tier-card.is-selected {
    border-color: var(--color-secondary);
    background: rgba(46, 134, 193, .07);
}

.tier-card--gold.is-selected {
    border-color: var(--color-accent);
    background: rgba(243, 156, 18, .07);
}

.tier-card__badge {
    position: absolute;
    top: -1px;
    right: 10px;
    background: var(--color-danger);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 2px 7px;
    border-radius: 0 0 5px 5px;
}

.tier-card__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2px;
}

.tier-card__desc {
    font-size: 11px;
    color: var(--color-muted);
    margin-bottom: 5px;
    line-height: 1.4;
}

.tier-card__price {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
}

.tier-card__price del {
    font-size: 11px;
    color: var(--color-muted);
    font-weight: 400;
    margin-left: 4px;
}

.tier-card--gold .tier-card__price {
    color: var(--color-accent);
}

/* Included notice (step 3 premium) */
.included-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(39, 174, 96, .08);
    border: 1.5px solid rgba(39, 174, 96, .3);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

.included-notice__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-success);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.included-notice strong {
    display: block;
    font-size: 14px;
    color: #1e8449;
    margin-bottom: 4px;
}

.included-notice p {
    font-size: 12px;
    color: var(--color-muted);
    margin: 0;
}

/* Price footer (always visible) */
.price-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-dark);
    padding: 12px 20px;
    border-radius: 0 0 var(--card-radius) var(--card-radius);
}

.price-footer__days {
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
}

.price-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}

.price-footer__label {
    font-size: 10px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.price-footer__amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-headline);
}

/* ============================================================
   Map & Phone CTA Section — hero-style full-width
============================================================ */

.map-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.map-section__map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-section__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-section__card {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    width: 420px;
    background: var(--color-primary);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    z-index: 2;
}

.map-section__label {
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.map-section__phone {
    font-family: var(--font-headline);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    white-space: nowrap;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    line-height: 1.1;
    transition: opacity .2s;
}

.map-section__phone:hover {
    opacity: .85;
}

.map-section__subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    margin: 0;
}

.map-section__btn {
    width: 100%;
    margin-top: 4px;
    text-align: center;
}

@media (max-width: 900px) {
    .map-section {
        height: auto;
    }

    .map-section__map {
        position: relative;
        inset: auto;
        height: 300px;
    }

    .map-section__card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 36px 24px;
    }
}

/* ============================================================
   Services Section — valet background (like hero)
============================================================ */

.section--valet-bg {
    position: relative;
    overflow: hidden;
}

.section--valet-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/jetpark-valet.jpg');
    background-size: cover;
    background-position: 50% 90%;
    z-index: 0;
}

.section--valet-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28, 40, 51, .72);
    z-index: 1;
}

.section--valet-bg .container {
    position: relative;
    z-index: 2;
}

.section--valet-bg .section__tag {
    background: rgb(37 106 201);
    color: #fff;
}

.section--valet-bg .section__title {
    color: #fff;
}

.section--valet-bg .section__subtitle {
    color: rgba(255, 255, 255, .75);
}

@media (min-width: 480px) {
    #services .section__subtitle br {
        display: none;
    }

    #pricing .section__subtitle br {
        display: none;
    }
}

/* ============================================================
   Legal Pages (privacy.php, terms.php)
============================================================ */
.legal-page__hero {
    background: var(--color-primary);
    color: #fff;
    padding: 56px 0 40px;
}

.legal-page__title {
    font-family: var(--font-headline);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.legal-page__date {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
}

.legal-body {
    max-width: 820px;
    margin: 0 auto;
}

.legal-body h2 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 36px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-border);
}

.legal-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin: 20px 0 8px;
}

.legal-body p {
    margin-bottom: 14px;
    line-height: 1.75;
    color: var(--color-text);
}

.legal-body ul,
.legal-body ol {
    margin: 0 0 14px 24px;
    line-height: 1.75;
}

.legal-body ul {
    list-style: disc;
}

.legal-body ol {
    list-style: decimal;
}

.legal-body li {
    margin-bottom: 6px;
    color: var(--color-text);
}

.legal-body a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.legal-body a:hover {
    color: var(--color-primary);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
    overflow-x: auto;
    display: block;
}

.legal-table th {
    background: var(--color-primary);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.legal-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
}

.legal-table tr:nth-child(even) td {
    background: var(--color-bg);
}

.legal-highlight {
    background: rgba(46, 134, 193, .08);
    border-left: 4px solid var(--color-secondary);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 24px;
}

.legal-highlight p {
    margin-bottom: 0;
}

/* ============================================================
   Contact Page
============================================================ */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 64px;
}

@media (min-width: 768px) {
    .contact-layout {
        grid-template-columns: 300px 1fr;
        gap: 48px;
    }
}

.contact-info-card {
    background: var(--color-card);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    box-shadow: var(--card-shadow);
    height: fit-content;
}

.contact-info-card h3 {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(46, 134, 193, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
}

.contact-info-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--color-muted);
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.contact-info-value a {
    color: var(--color-secondary);
    text-decoration: none;
}

.contact-info-value a:hover {
    text-decoration: underline;
}

.contact-form-card {
    background: var(--color-card);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    box-shadow: var(--card-shadow);
}

.contact-form-card h2 {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 24px;
}

.booking-check-badge {
    display: none;
    margin-top: 8px;
    padding: 9px 13px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    align-items: center;
    gap: 6px;
}

.booking-check-badge.valid {
    background: rgba(39, 174, 96, .10);
    color: #1e8449;
    border: 1px solid rgba(39, 174, 96, .30);
    display: flex;
}

.booking-check-badge.invalid {
    background: rgba(231, 76, 60, .08);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, .25);
    display: flex;
}

.contact-portal-hint {
    display: none;
    background: rgba(46, 134, 193, .08);
    border: 1.5px solid rgba(46, 134, 193, .30);
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 13px;
    color: var(--color-secondary);
    margin-top: 10px;
    line-height: 1.5;
}

.contact-portal-hint.visible {
    display: block;
}

.contact-topic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

@media (min-width: 576px) {
    .contact-topic-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-topic-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    transition: border-color .15s, background .15s;
    user-select: none;
}

.contact-topic-label:hover {
    border-color: var(--color-secondary);
    background: rgba(46, 134, 193, .04);
}

.contact-topic-label input[type="radio"] {
    accent-color: var(--color-secondary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact-topic-label input[type="radio"]:checked+span {
    color: var(--color-secondary);
    font-weight: 700;
}

.contact-topic-label:has(input:checked) {
    border-color: var(--color-secondary);
    background: rgba(46, 134, 193, .08);
}

.contact-success {
    text-align: center;
    padding: 40px 20px;
}

.contact-success__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(39, 174, 96, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-success);
}

.contact-success h2 {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 12px;
}

.contact-success p {
    color: var(--color-muted);
    margin-bottom: 24px;
}

/* ================================================================
   BOOKING PORTAL
   ================================================================ */

.portal-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 16px 64px;
}

/* ── Flash messages ── */
.portal-flash-success {
    background: #EAFAF1;
    border-left: 4px solid #27AE60;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #1E8449;
    line-height: 1.6;
}
.portal-flash-error {
    background: #FFF9F9;
    border-left: 4px solid #E74C3C;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #922B21;
    line-height: 1.6;
}

/* ── Cards ── */
.portal-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    margin-bottom: 14px;
    overflow: hidden;
}
.portal-card__header {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}
.portal-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #1C2833;
    margin: 0;
}
.portal-card__body { padding: 16px 20px; }

/* ── Status badge ── */
.portal-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

/* ── Ref hero row ── */
.portal-ref-row {
    background: #1B4F72;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.portal-ref-row__label {
    color: rgba(255,255,255,.7);
    font-size: 12px;
    margin-bottom: 3px;
}
.portal-ref-row__ref {
    color: #F39C12;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .04em;
}

/* ── Booking switcher ── */
.portal-switcher {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 12px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    margin-bottom: 14px;
}
.portal-switcher__label {
    font-size: 12px;
    color: #888;
    width: 100%;
    margin-bottom: 4px;
}
.portal-switcher__btn {
    padding: 6px 14px;
    border-radius: 16px;
    border: 2px solid #ddd;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .15s, color .15s;
}
.portal-switcher__btn--active {
    background: #1B4F72;
    border-color: #1B4F72;
    color: #fff;
}
.portal-switcher__btn:hover:not(.portal-switcher__btn--active) {
    border-color: #2E86C1;
    color: #2E86C1;
}

/* ── Detail rows ── */
.portal-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}
.portal-detail-row:last-child { border-bottom: none; }
.portal-detail-row__label { color: #888; flex-shrink: 0; width: 44%; }
.portal-detail-row__value { font-weight: 600; text-align: right; }
.portal-detail-row__value--plate {
    font-family: monospace;
    font-size: 16px;
    background: #1C2833;
    color: #F39C12;
    padding: 2px 8px;
    border-radius: 4px;
}
.portal-detail-row__value--price {
    font-size: 17px;
    color: #F39C12;
    font-weight: 800;
}

/* ── Carwash status ── */
.portal-carwash {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
}
.portal-carwash--done    { border-left: 4px solid #27AE60; }
.portal-carwash--pending { border-left: 4px solid #F39C12; }
.portal-carwash__icon  { font-size: 22px; }
.portal-carwash__label { font-weight: 700; }
.portal-carwash__sub   { font-size: 12px; color: #888; margin-top: 2px; }

/* ── Notice box ── */
.portal-notice {
    background: #EBF5FB;
    border-left: 4px solid #2E86C1;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 13px;
    color: #1A5276;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ── Portal form elements ── */
.portal-form-group { margin-bottom: 14px; }
.portal-form-group label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}
.portal-form-group textarea,
.portal-form-group select,
.portal-form-group input[type="number"] {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    color: #1C2833;
    resize: vertical;
}
.portal-form-group textarea:focus,
.portal-form-group select:focus,
.portal-form-group input:focus {
    outline: none;
    border-color: #2E86C1;
}
.portal-hint { font-size: 12px; color: #aaa; margin-top: 4px; }

/* ── Portal buttons ── */
.portal-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: opacity .15s;
}
.portal-btn:hover { opacity: .9; }
.portal-btn--blue  { background: #2E86C1; color: #fff; }
.portal-btn--green { background: #27AE60; color: #fff; }
.portal-btn--red   { background: #fff; color: #E74C3C; border: 1px solid #E74C3C; }
.portal-btn--red:hover { background: #FFF9F9; opacity: 1; }

/* ── Error page ── */
.portal-error {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    overflow: hidden;
    max-width: 520px;
    margin: 40px auto;
}
.portal-error__header { background: #E74C3C; color: #fff; padding: 28px 32px; text-align: center; }
.portal-error__icon   { font-size: 48px; margin-bottom: 8px; }
.portal-error__h1     { font-size: 20px; font-weight: 800; margin: 0; }
.portal-error__body   { padding: 28px 32px; }
.portal-error__body p { font-size: 14px; color: #555; margin-bottom: 16px; line-height: 1.7; margin: 0 0 16px; }
.portal-error__contact { font-size: 14px; color: #666; text-align: center; margin-top: 20px; }
.portal-error__contact a { color: #1B4F72; font-weight: 700; text-decoration: none; }

/* ── Cancel modal ── */
.portal-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.portal-modal-overlay--open { display: flex; }
.portal-modal {
    background: #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    overflow: hidden;
}
.portal-modal__header {
    background: #C0392B;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.portal-modal__title { font-size: 15px; margin: 0; }
.portal-modal__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    opacity: .8;
    padding: 0;
}
.portal-modal__close:hover { opacity: 1; }
.portal-modal__body   { padding: 20px; }
.portal-modal__footer {
    padding: 14px 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.portal-modal__btn-back {
    background: #f0f2f5;
    color: #555;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}
.portal-modal__btn-confirm {
    background: #C0392B;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

