/* ============================================================
   Booking Melbourne Taxi — booking.css
   ============================================================ */

/* ─── Hero Two-Column Layout ─────────────────────────────────── */
.hero-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.hero-glow {
    position: absolute;
    top: 40%;
    right: 0;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at 85% 60%, rgba(245,166,35,0.1) 0%, transparent 65%);
    pointer-events: none;
}

.hero-left-col { z-index: 1; }
.hero-right-col { z-index: 1; }

/* ─── Home Booking Widget ────────────────────────────────────── */
.home-widget {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 24px 72px rgba(0,0,0,0.28);
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.08);
}

.widget-tabs {
    display: flex;
    background: var(--bg);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 20px;
    gap: 4px;
}

.widget-tab {
    flex: 1;
    padding: 10px 0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.widget-tab.active {
    background: var(--white);
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.widget-field {
    margin-bottom: 14px;
}

.widget-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}

.widget-field input[type="text"],
.widget-field input[type="date"],
.widget-field input[type="time"] {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 9px;
    font-size: 0.93rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}
.widget-field input:focus {
    outline: none;
    border-color: var(--gold-btn);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}
.widget-field input::placeholder { color: rgba(107,116,138,0.5); }

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

/* Toggle switch */
.widget-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.toggle-switch input { display: none; }

.toggle-track {
    display: block;
    width: 44px;
    height: 24px;
    background: rgba(0,0,0,0.12);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
}

.toggle-track::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-track { background: var(--gold-btn); }
.toggle-switch input:checked + .toggle-track::after { left: 23px; }

/* Stepper */
.stepper {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 9px;
    overflow: hidden;
}

.stepper-btn {
    width: 38px;
    height: 38px;
    background: var(--bg);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.stepper-btn:hover { background: rgba(245,166,35,0.1); color: var(--gold); }
.stepper-btn:active { background: rgba(245,166,35,0.2); }

.stepper-val {
    min-width: 44px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0 8px;
    border-left: 1.5px solid rgba(0,0,0,0.08);
    border-right: 1.5px solid rgba(0,0,0,0.08);
}

.stepper-large .stepper-btn { width: 44px; height: 44px; }
.stepper-large .stepper-val { font-size: 1.25rem; min-width: 52px; }

/* Vehicle scroll cards (widget) */
.widget-vehicle-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.1) transparent;
}
.widget-vehicle-scroll::-webkit-scrollbar { height: 4px; }
.widget-vehicle-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 2px; }

.widget-vehicle-card {
    flex-shrink: 0;
    width: 80px;
    padding: 10px 8px;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    background: var(--white);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.widget-vehicle-card:hover {
    border-color: rgba(245,166,35,0.4);
    background: rgba(245,166,35,0.03);
}
.widget-vehicle-card.active {
    border-color: var(--gold-btn);
    background: rgba(245,166,35,0.06);
}

.wvc-emoji { font-size: 1.5rem; line-height: 1.2; margin-bottom: 4px; }
.wvc-img   { width: 48px; height: 32px; object-fit: contain; margin: 0 auto 4px; display: block; }
.wvc-name  { font-size: 0.7rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.wvc-pax   { font-size: 0.65rem; color: var(--text-muted); margin-top: 2px; }

.widget-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
    padding: 14px;
    font-size: 1rem;
}

.widget-fine-print {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* CTA whatsapp btn (used in front-page) */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #25D366;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-btn);
    transition: var(--transition);
}
.btn-whatsapp:hover {
    background: #20bb5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ─── Booking Page Layout ────────────────────────────────────── */
.booking-page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
}

.booking-form-container {
    background: var(--white);
    border-radius: var(--radius-card);
    border: 1px solid var(--card-border);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

/* ─── Progress Steps ─────────────────────────────────────────── */
.booking-progress {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.bp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.bp-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.08);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.bp-step span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.bp-step.active .bp-dot {
    background: var(--gold-btn);
    color: var(--dark);
    box-shadow: 0 0 0 5px rgba(245,166,35,0.2);
}
.bp-step.active span { color: var(--gold); }

.bp-step.completed .bp-dot {
    background: #00a32a;
    color: var(--white);
}
.bp-step.completed span { color: #00a32a; }

.bp-connector {
    flex: 1;
    height: 2px;
    background: rgba(0,0,0,0.08);
    margin: 0 8px;
    margin-bottom: 22px;
    transition: var(--transition);
}

/* ─── Step Panels ────────────────────────────────────────────── */
.booking-step { display: none; }
.booking-step.active { display: block; }

.step-header { margin-bottom: 28px; }
.step-title-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}
.step-subtitle { color: var(--text-muted); font-size: 0.95rem; }

/* ─── Form layout helpers ────────────────────────────────────── */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
}

.required-mark { color: #d63638; }
.optional-mark { font-weight: 400; color: var(--text-muted); font-size: 0.82em; }

.input-icon-wrap { position: relative; }
.input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}
.input-icon-wrap .form-control { padding-left: 38px; }

.field-error {
    display: none;
    font-size: 0.8rem;
    color: #d63638;
    margin-top: 4px;
}

/* Trip type toggle */
.trip-type-toggle {
    display: flex;
    width: 100%;
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 4px;
    gap: 4px;
}

.trip-type-btn {
    flex: 1;
    padding: 11px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.trip-type-btn.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 2px 8px rgba(212,137,10,.25);
}
.trip-type-btn:not(.active):hover {
    background: rgba(212,137,10,.08);
    color: var(--gold);
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--gold-btn);
    cursor: pointer;
}
.checkbox-label a { color: var(--gold); text-decoration: underline; }

/* ─── Vehicle Selection Cards ────────────────────────────────── */
.vehicle-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.vehicle-select-card {
    border: 2px solid var(--card-border);
    border-radius: var(--radius-card);
    padding: 18px 14px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    background: var(--white);
    text-align: center;
}
.vehicle-select-card:hover {
    border-color: rgba(245,166,35,0.4);
    background: rgba(245,166,35,0.02);
    transform: translateY(-2px);
}
.vehicle-select-card.selected {
    border-color: var(--gold-btn);
    background: rgba(245,166,35,0.05);
    box-shadow: 0 0 0 1px var(--gold-btn);
}

.vsc-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    opacity: 0;
    transform: scale(0.6);
    transition: var(--transition);
}
.vehicle-select-card.selected .vsc-check { opacity: 1; transform: scale(1); }

.vsc-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    margin-bottom: 10px;
    color: var(--text-muted);
}
.vehicle-select-card.selected .vsc-image { color: var(--gold); }

.vsc-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 8px;
}

.vsc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 10px;
}

.vsc-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: var(--bg);
    border-radius: var(--radius-btn);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.vsc-features {
    text-align: left;
    padding: 0;
    list-style: none;
}
.vsc-features li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 3px 0;
    padding-left: 14px;
    position: relative;
}
.vsc-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.75rem;
}

/* ─── Step Navigation ────────────────────────────────────────── */
.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
    margin-top: 8px;
}

/* ─── Booking Summary ────────────────────────────────────────── */
.booking-summary {
    background: var(--bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    padding: 24px;
    margin-bottom: 20px;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.summary-table th,
.summary-table td {
    padding: 9px 0;
    border-bottom: 1px solid var(--card-border);
    text-align: left;
}
.summary-table th {
    width: 38%;
    color: var(--text-muted);
    font-weight: 600;
    padding-right: 16px;
}
.summary-table td { color: var(--text); font-weight: 500; }
.summary-table tr:last-child th,
.summary-table tr:last-child td { border-bottom: none; }

.booking-total-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: rgba(245,166,35,0.08);
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.booking-total-note svg { flex-shrink: 0; margin-top: 1px; }

/* ─── Submit button spinner ──────────────────────────────────── */
.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(10,13,20,0.2);
    border-top-color: var(--dark);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
}

/* ─── Result States ──────────────────────────────────────────── */
.booking-result-state {
    text-align: center;
    padding: 48px 24px;
}

.result-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.result-icon-success {
    background: rgba(0,163,42,0.12);
    color: #00a32a;
    border: 2px solid rgba(0,163,42,0.3);
}
.result-icon-error {
    background: rgba(214,54,56,0.1);
    color: #d63638;
    border: 2px solid rgba(214,54,56,0.2);
}

.result-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.result-message {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 16px;
}

.result-ref {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.result-ref strong { color: var(--gold); font-size: 1.05rem; }

.result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Sidebar ────────────────────────────────────────────────── */
.booking-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-sidebar-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 14px;
}

.sidebar-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text);
}
.sidebar-features li svg { color: #00a32a; flex-shrink: 0; }

.booking-sidebar-contact p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.6;
}

.sidebar-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--bg);
    color: var(--text);
    margin-bottom: 10px;
    border: 1px solid var(--card-border);
    transition: var(--transition);
}
.sidebar-contact-btn:hover {
    background: rgba(245,166,35,0.08);
    border-color: var(--gold-btn);
    color: var(--gold);
}
.sidebar-whatsapp { color: #00a32a; }
.sidebar-whatsapp:hover { background: rgba(37,211,102,0.08); border-color: #25D366; color: #00a32a; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .booking-page-layout {
        grid-template-columns: 1fr;
    }
    .booking-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .booking-sidebar-card { flex: 1; min-width: 240px; }
}

@media (max-width: 1024px) {
    .hero-two-col {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 110px;
        padding-bottom: 56px;
        min-height: auto;
    }
    .hero-right-col {
        max-width: 560px;
        margin-inline: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-two-col {
        gap: 28px;
        padding-top: 100px;
        padding-bottom: 48px;
    }

    .booking-form-container { padding: 20px; }

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

    .bp-step span { display: none; }

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

    .step-nav { flex-wrap: wrap; gap: 10px; }
    .step-nav .btn-primary,
    .step-nav .btn-secondary { flex: 1; justify-content: center; }

    .widget-field-row { grid-template-columns: 1fr; }
    .booking-sidebar { flex-direction: column; }
}

@media (max-width: 480px) {
    .home-widget { padding: 18px; }
    .booking-form-container { padding: 16px; border-radius: var(--radius-sm); }
    .vehicle-selection-grid { grid-template-columns: 1fr; }
    .widget-vehicle-scroll { flex-wrap: nowrap; }
    .booking-progress { overflow-x: auto; padding-bottom: 8px; }
    .result-actions { flex-direction: column; }
    .result-actions .btn-primary,
    .result-actions .btn-secondary { width: 100%; justify-content: center; }
}

/* ─── Google Places Autocomplete ─────────────────────────────── */
.pac-container {
    max-width: min(480px, calc(100vw - 32px)) !important;
    box-sizing: border-box !important;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
}
.pac-item {
    padding: 8px 12px;
    cursor: pointer;
    line-height: 1.5;
}
.pac-item:hover,
.pac-item-selected { background: rgba(245,166,35,0.06); }
.pac-icon { display: none; }
.pac-item-query { font-size: 0.9rem; color: var(--text); }
.pac-matched { color: var(--gold); font-weight: 600; }

/* Submit button full-width on booking page */
.booking-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.05rem;
    margin-top: 8px;
}

/* ─── Form overflow safety ───────────────────────────────────── */
.home-widget,
.booking-form-container {
    overflow-x: hidden;
}
.hero-right-col,
.booking-page-layout {
    max-width: 100%;
    min-width: 0;
}

/* ─── Widget Header ──────────────────────────────────────────── */
.widget-header {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 3px;
}
.widget-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ─── Widget Field Markers ───────────────────────────────────── */
.widget-req { color: #d63638; }
.widget-opt { font-weight: 400; color: var(--text-muted); font-size: 0.82em; }

/* ─── Widget Field Error ─────────────────────────────────────── */
.widget-field-error {
    display: none;
    font-size: 0.78rem;
    color: #d63638;
    margin-top: 3px;
    line-height: 1.3;
}

/* ─── Widget Input Types (email, tel, textarea) ──────────────── */
.widget-field input[type="email"],
.widget-field input[type="tel"] {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 9px;
    font-size: 0.93rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}
.widget-field input[type="email"]:focus,
.widget-field input[type="tel"]:focus {
    outline: none;
    border-color: var(--gold-btn);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}
.widget-field input[type="email"]::placeholder,
.widget-field input[type="tel"]::placeholder { color: rgba(107,116,138,0.5); }

.widget-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 9px;
    font-size: 0.93rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    resize: vertical;
    min-height: 62px;
    box-sizing: border-box;
}
.widget-field textarea:focus {
    outline: none;
    border-color: var(--gold-btn);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}
.widget-field textarea::placeholder { color: rgba(107,116,138,0.5); }

/* ─── Widget Success State ───────────────────────────────────── */
.widget-success-inner {
    text-align: center;
    padding: 32px 20px;
}
.widget-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0,163,42,0.1);
    color: #00a32a;
    border: 2px solid rgba(0,163,42,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.widget-success-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}
.widget-success-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* ─── Thank You Page ─────────────────────────────────────────── */
.thankyou-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.thankyou-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
    text-align: center;
}

.thankyou-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0,163,42,0.1);
    color: #00a32a;
    border: 2px solid rgba(0,163,42,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.thankyou-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.thankyou-ref {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.thankyou-ref strong { color: var(--gold); font-size: 1rem; }

.thankyou-msg {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}
.thankyou-msg strong { color: var(--text); }

.thankyou-details {
    background: var(--bg-light, #f8f9fa);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 28px;
    text-align: left;
}

.thankyou-details-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.thankyou-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thankyou-details-list li {
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.tyd-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 80px;
    flex-shrink: 0;
}

.tyd-value {
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 500;
}

.thankyou-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.thankyou-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thankyou-side-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.thankyou-side-contact { background: var(--dark); }
.thankyou-side-contact .sidebar-title { color: var(--white); }
.thankyou-side-contact p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 16px; }

.thankyou-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
}

.thankyou-steps li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.ts-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold-btn);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

@media (max-width: 768px) {
    .thankyou-wrap { grid-template-columns: 1fr; }
    .thankyou-card { padding: 24px 20px; }
    .thankyou-actions { flex-direction: column; }
    .thankyou-actions .btn-primary,
    .thankyou-actions .btn-secondary { width: 100%; justify-content: center; }
}
