/* =====================================================
   BOOKING PAGE STYLES - Louis Vuitton Inspired
   External CSS for booking form - NO INLINE STYLES
   ===================================================== */

/* Booking-specific CSS variables */
:root {
    --booking-bg: #0a0a0a;
    --booking-ink: #fff;
    --booking-ink-dim: #cfcfcf;
    --booking-cta1: #d4af37;
    --booking-cta2: #ffdc73;
    --booking-border: rgba(212, 175, 55, 0.2);
    --booking-spacing: 8px;
}

/* Global box-sizing for perfect symmetry */
* {
    box-sizing: border-box;
}

/* Booking page body */
.booking-page {
    font-family: 'Crimson Text', Georgia, serif;
    background: var(--booking-bg);
    color: var(--booking-ink);
    line-height: 1.6;
    min-height: 100vh;
    padding: 2rem 1rem;
}

/* Booking container */
.booking-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.95));
    border: 2px solid var(--booking-cta1);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Futura', 'Optima', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Logo container */
.logo-container {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 50%;
    border: 3px solid var(--booking-cta1);
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
    background: var(--booking-bg);
    flex-shrink: 0;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Header */
.booking-header {
    margin-bottom: 2rem;
}

.header-flex-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.header-text-center {
    text-align: left;
    flex: 1;
}

.header-title {
    font-size: 2.5rem;
    color: var(--booking-cta1);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.header-subtitle {
    font-size: 1.25rem;
    color: var(--booking-ink);
    margin-bottom: 0.5rem;
}

.header-description {
    font-size: 1rem;
    color: var(--booking-ink-dim);
    font-style: italic;
}

.contact-info {
    margin-top: 1rem;
}

.contact-link {
    color: var(--booking-cta1);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--booking-cta2);
}

/* Important notice */
.important-notice {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.notice-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 0.5rem;
}

.notice-text {
    color: #ff4444;
    font-size: 0.95rem;
}

/* Progress bar */
.progress-container {
    margin: 2rem 0;
}

.progress-bar-wrapper {
    background: #ffffff;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--booking-cta1), var(--booking-cta2));
    width: 16.67%;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--booking-ink-dim);
}

/* Form steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 1.75rem;
    color: var(--booking-cta1);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--booking-border);
    padding-bottom: 0.75rem;
}

/* Form grid - MUST be perfectly symmetrical with 2 columns */
.form-grid {
    display: grid;
    /* 2 columns for balanced 2x2 layout */
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

/* Form groups */
.form-group {
    margin-bottom: 1.5rem;
}

.phone-input-group {
    display: flex;
    gap: 10px;
    align-items: flex-end;  /* Align to bottom so inputs line up vertically */
}

.country-code-wrapper, .phone-number-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.country-code-wrapper .field-label, .phone-number-wrapper .field-label {
    display: block;
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.country-code-input-row {
    display: flex;
    align-items: flex-end;  /* Align to bottom to match phone number input baseline */
}

.country-flag-display {
    font-size: 24px;
    margin-right: 8px;
    min-width: 32px;
    text-align: center;
}

.phone-input-group #countryCode {
    width: 110px;
}

.phone-input-group #phoneNumber {
    flex: 1;
}

/* Stand-alone form groups (not in grid) */
.form-step > .form-group {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--booking-ink);
    margin-bottom: 0.5rem;
}

.required {
    color: #ff4444;
    margin-left: 0.25rem;
}

.form-hint {
    display: block;
    color: #888;
    font-size: 0.85em;
    margin-top: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem;
    background: #ffffff;
    border: 1px solid var(--booking-border);
    border-radius: 8px;
    color: var(--booking-ink);
    font-size: 1rem;
    font-family: 'Crimson Text', Georgia, serif;
    transition: all 0.3s;
    box-sizing: border-box;
    min-width: 0;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--booking-cta1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Select dropdown options styling */
.form-select option,
select option {
    background: #1a1a1a !important;
    color: #ffffff !important;
    padding: 0.5rem;
}

/* Ensure dropdown options are visible on all browsers */
select option:hover {
    background: var(--booking-cta1) !important;
    color: #000 !important;
}

/* Ensure selects don't have excessive z-index */
.form-select,
select {
    position: relative;
    z-index: 1;
}

/* Country code select - allow scrolling and better visibility */
select#countryCode {
    max-height: none;
    overflow-y: auto;
}

/* Photo preview */
.photo-preview {
    margin-top: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    max-width: 300px;
}

.photo-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* Terms container */
.terms-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--booking-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

/* Legal disclaimer - shown at top of terms */
.legal-disclaimer {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--booking-cta1);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--booking-cta1);
    font-size: 0.95rem;
}

.term-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.term-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.term-number {
    color: var(--booking-cta1);
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 30px;
}

.term-text {
    color: var(--booking-ink);
    line-height: 1.6;
}

/* Signature pad */
.signature-group {
    margin-top: 2rem;
}

.signature-pad-container {
    margin: 1.5rem auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.signature-canvas {
    width: 600px;
    height: 150px;
    max-width: 100%;
    border: 2px solid var(--booking-cta1);
    border-radius: 8px;
    background: #ffffff;
    cursor: crosshair;
    touch-action: none;
    display: block;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Futura', 'Optima', 'Helvetica Neue', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--booking-cta1), var(--booking-cta2));
    color: var(--booking-bg);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--booking-ink);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--booking-cta1);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-clear-signature {
    max-width: 200px;
}

/* Step navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-navigation .btn {
    width: 200px !important;
    max-width: 200px !important;
    flex: 0 0 200px !important;
}

/* Previous button stays left, Next/Submit stays right */
.step-navigation .btn#prevBtn {
    margin-right: auto;
}

.step-navigation .btn#nextBtn,
.step-navigation .btn#submitBtn {
    margin-left: auto;
}

/* Review content */
.review-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--booking-border);
    border-radius: 8px;
    padding: 1.5rem;
}

.review-section {
    margin-bottom: 1.5rem;
}

.review-section:last-child {
    margin-bottom: 0;
}

.review-section-title {
    font-size: 1.25rem;
    color: var(--booking-cta1);
    margin-bottom: 0.75rem;
    font-family: 'Futura', 'Optima', 'Helvetica Neue', sans-serif;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.review-item:last-child {
    border-bottom: none;
}

.review-label {
    font-weight: 600;
    color: var(--booking-ink-dim);
}

.review-value {
    color: var(--booking-ink);
}

/* Email wrapping for mobile */
.review-value.email-wrap {
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.hidden {
    display: none;
}

.loading-content {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--booking-cta1);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    color: var(--booking-ink);
    font-size: 1.1rem;
}

/* Rental summary */
.rental-summary {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--booking-border);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

/* Hidden class */
.hidden {
    display: none !important;
}

/* Claude Chat Widget */
.claude-chat-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--booking-cta1), var(--booking-cta2));
    border: none;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1000;
}

.claude-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.6);
}

.claude-chat-button svg {
    color: var(--booking-bg);
}

.claude-chat-window {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 380px;
    height: 500px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(30, 30, 30, 0.98));
    border: 2px solid var(--booking-cta1);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 1001;
    overflow: hidden;
}

.claude-chat-window.hidden {
    display: none;
}

.claude-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid var(--booking-border);
}

.claude-chat-header-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--booking-cta1);
    font-weight: 600;
    font-size: 1rem;
}

/* Green Claude icon */
.claude-icon-green {
    color: #10b981 !important;
}

/* Claude title text container */
.claude-chat-title-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

/* Live Chat Assistant label */
.live-chat-label {
    font-size: 0.7rem;
    color: #10b981 !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.claude-chat-close {
    background: none;
    border: none;
    color: var(--booking-ink-dim);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s;
}

.claude-chat-close:hover {
    color: var(--booking-cta1);
}

.claude-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.claude-chat-message {
    display: flex;
    max-width: 80%;
}

.claude-chat-message-user {
    align-self: flex-end;
}

.claude-chat-message-assistant {
    align-self: flex-start;
}

.claude-chat-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.claude-chat-message-user .claude-chat-bubble {
    background: linear-gradient(135deg, var(--booking-cta1), var(--booking-cta2));
    color: var(--booking-bg);
}

.claude-chat-message-assistant .claude-chat-bubble {
    background: #ffffff;
    color: var(--booking-ink);
    border: 1px solid var(--booking-border);
}

.claude-chat-typing {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.claude-chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--booking-cta1);
    animation: typing 1.4s infinite;
}

.claude-chat-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.claude-chat-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.claude-chat-input-container {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--booking-border);
    background: rgba(255, 255, 255, 0.02);
}

.claude-chat-input {
    flex: 1;
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid var(--booking-border);
    border-radius: 8px;
    color: var(--booking-ink);
    font-size: 0.95rem;
    font-family: 'Crimson Text', Georgia, serif;
}

.claude-chat-input:focus {
    outline: none;
    border-color: var(--booking-cta1);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.claude-chat-send {
    background: linear-gradient(135deg, var(--booking-cta1), var(--booking-cta2));
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.claude-chat-send:hover {
    transform: scale(1.05);
}

.claude-chat-send svg {
    color: var(--booking-bg);
}

/* Tablet */
@media (max-width: 992px) {
    .header-flex-center {
        gap: 1.5rem;
    }

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

/* Mobile */
@media (max-width: 768px) {
    .booking-page {
        padding: 1rem 0.5rem;
    }

    .booking-container {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

    .header-flex-center {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .header-text-center {
        text-align: center;
    }

    .header-title {
        font-size: 2rem;
    }

    .header-subtitle {
        font-size: 1.1rem;
    }

    .contact-info {
        text-align: center;
    }

    .signature-canvas {
        width: 100%;
    }

    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .step-navigation .btn {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        min-width: auto;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .btn-clear-signature {
        width: 100%;
        max-width: 100%;
    }

    .logo-container {
        width: 100px;
        height: 100px;
    }

    .claude-chat-window {
        width: calc(100% - 2rem);
        height: 70vh;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .claude-chat-button {
        bottom: 1rem;
        right: 1rem;
    }
}

/* ========================================
   SUCCESS CONFIRMATION PAGE (Step 7)
   ======================================== */

.success-container {
    text-align: center;
    padding: 1.5rem 1rem;
    max-width: 650px;
    margin: 0 auto;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.success-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--booking-cta1);
    margin-bottom: 0.5rem;
    font-family: 'Crimson Text', Georgia, serif;
}

.success-message {
    font-size: 1.25rem;
    color: var(--booking-ink);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.success-actions .btn {
    min-width: 140px;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

.btn-success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-success:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
}

.success-notes {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    margin-top: 0;
}

.success-notes p {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.success-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-notes li {
    font-size: 1.05rem;
    color: #111827;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.success-notes li:last-child {
    border-bottom: none;
}

.success-notes strong {
    color: var(--booking-cta1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .success-icon {
        font-size: 4rem;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-message {
        font-size: 1.1rem;
    }

    .success-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

/* ========================================
   EMAIL VERIFICATION UI - CONNECTED LAYOUT
   ======================================== */

.email-verification-container {
    margin-top: 0;
    padding: 1.5rem;
    background: var(--booking-bg);
    border: 1px solid var(--booking-border);
    border-top: none;  /* Remove top border to connect seamlessly */
    border-radius: 0 0 8px 8px;  /* Only round bottom corners - top connects to email field */
    margin-bottom: 1rem;
    max-width: 100%;
    width: 100%;
    display: block;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

.verification-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.verification-header strong {
    color: var(--booking-cta1);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.verification-description {
    color: var(--booking-ink-dim);
    font-size: 0.9rem;
    text-align: center;
    margin: 0 auto 0.75rem;
    line-height: 1.5;
    max-width: 400px;
}

.verification-step {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.btn-send-code {
    max-width: 300px;
    width: 100%;
}

.verification-hint {
    color: var(--booking-ink-dim);
    font-size: 0.85rem;
    text-align: center;
    display: block;
}

.code-input-wrapper {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    max-width: 400px;
    align-items: center;
}

.code-input {
    flex: 1;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    padding: 1rem !important;
}

.btn-verify-code {
    min-width: 100px;
    padding: 1rem 1.5rem;
}

.verification-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-link {
    background: none;
    border: none;
    color: var(--booking-cta1);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--booking-cta2);
}

.btn-link:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.timer-text {
    color: var(--booking-ink-dim);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.verification-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    border-radius: 8px;
}

.verification-success .success-icon {
    font-size: 2rem;
    color: #22c55e;
    font-weight: bold;
}

.verification-success .success-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #22c55e;
}

.verification-error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 0.75rem;
    text-align: center;
    color: #ff4444;
    font-size: 0.9rem;
}

/* Slide down animation for verification box */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* When verification UI is visible, remove bottom radius from email input to connect seamlessly */
.form-group:has(+ .email-verification-container:not(.hidden)) input[type="email"] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Cash Back Card Styling */
.cashback-card {
    text-align: center;
    width: 100%;
}

.cashback-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cashback-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--booking-cta1);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cashback-description {
    font-size: 1.05rem;
    color: var(--booking-ink);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cashback-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.benefit-item {
    font-size: 1rem;
    color: var(--booking-ink-dim);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile adjustments for verification UI */
@media (max-width: 768px) {
    .verification-split-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .verification-left {
        border-right: none;
        border-bottom: 1px solid var(--booking-border);
    }

    .verification-right {
        min-height: 200px;
    }

    .cashback-icon {
        font-size: 3rem;
    }

    .cashback-title {
        font-size: 1.4rem;
    }

    .cashback-description {
        font-size: 0.95rem;
    }

    .code-input-wrapper {
        flex-direction: column;
        max-width: 100%;
    }

    .code-input {
        width: 100%;
    }

    .btn-verify-code {
        width: 100%;
    }

    .verification-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========================================
   PRICING CALCULATOR
   ======================================== */

.pricing-calculator {
    margin: 2rem auto;
    padding: 1.5rem;
    max-width: 100%;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid var(--booking-cta1);
    border-radius: 12px;
}

.pricing-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.pricing-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--booking-border);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-label {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 500;
}

.pricing-value {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.pricing-row.subtotal {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--booking-border);
}

.pricing-row.subtotal .pricing-label,
.pricing-row.subtotal .pricing-value {
    font-size: 1.1rem;
    color: var(--booking-cta2);
}

.pricing-row.total {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 3px solid var(--booking-cta1);
}

.pricing-row.total .pricing-label,
.pricing-row.total .pricing-value {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
}

.promo-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid var(--booking-border);
    border-radius: 8px;
}

.promo-input-group {
    display: flex;
    gap: 0.75rem;
}

.promo-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid var(--booking-border);
    border-radius: 6px;
    color: var(--booking-ink);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.promo-input:focus {
    outline: none;
    border-color: var(--booking-cta1);
    background: rgba(255, 255, 255, 0.08);
}

.promo-btn {
    padding: 0.75rem 1.5rem;
    background: var(--booking-cta1);
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-btn:hover {
    background: var(--booking-cta2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.promo-btn:disabled {
    background: var(--booking-ink-dim);
    cursor: not-allowed;
    transform: none;
}

.promo-message {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.promo-message.promo-success {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #a5d6a7;
}

.promo-message.promo-error {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #ef9a9a;
}

.pricing-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    font-style: italic;
}

.pricing-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.pricing-loading.hidden {
    display: none;
}

.spinner-small {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--booking-cta1);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-calculator {
        padding: 1.5rem;
    }

    .pricing-title {
        font-size: 1.2rem;
    }

    .promo-input-group {
        flex-direction: column;
    }

    .promo-btn {
        width: 100%;
    }

    .pricing-row.total .pricing-label,
    .pricing-row.total .pricing-value {
        font-size: 1.3rem;
    }
}

/* =====================================================
   SAVINGS BADGE - Green indicator for weekly/monthly savings
   ===================================================== */
.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
    animation: fadeInBadge 0.3s ease-in;
}

.savings-badge.hidden {
    display: none;
}

/* Savings row in pricing calculator */
.savings-row {
    margin-top: 0.5rem;
    text-align: center;
}

.savings-text {
    color: #22c55e;
    font-weight: 700;
    font-size: 4rem;
    letter-spacing: 0.02em;
}

@keyframes fadeInBadge {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =====================================================
   CONFETTI ANIMATION - Celebration animation for success page
   ===================================================== */
@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg);
    }
}

.confetti-piece {
    border-radius: 2px;
}
/* Success Page - NO INLINE STYLES */

/* Success subtitle */
.success-subtitle {
    color: #22c55e;
    margin: 15px 0;
}

/* Cashback offer box */
.cashback-offer {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    border: 3px solid #2563eb;
}

.cashback-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.cashback-amount-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 18px;
    border-radius: 8px;
    margin: 15px 0;
}

.cashback-earn-text {
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    margin: 5px 0;
}

.cashback-amount {
    font-size: 30px;
    color: #fbbf24;
    font-weight: 900;
}

.cashback-label {
    color: #fbbf24;
    font-size: 19px;
    font-weight: bold;
    margin: 5px 0;
}

.cashback-description {
    color: #fff;
    font-size: 15px;
    margin: 15px 0;
    line-height: 1.7;
}

.cashback-highlight {
    color: #fbbf24;
}

.cashback-stars {
    color: #fbbf24;
    font-size: 13px;
    margin: 15px 0 0 0;
    font-weight: bold;
}

/* Booking summary */
.success-booking-summary {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.summary-title {
    color: #111827;
    margin-bottom: 15px;
}

/* Contact text */
.contact-text {
    color: #111827;
    margin-bottom: 15px;
}

.whatsapp-link {
    color: #22c55e;
    font-weight: bold;
}
/* Date and Time Input Improvements - Visible Calendar Icon */

/* Make calendar and clock icons MUCH more visible */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1 !important;
    background-color: #D4AF37;
    border-radius: 4px;
    padding: 8px;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    filter: brightness(1.2);
}

/* Hover effect for icons */
input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
    background-color: #FFD700;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

/* Firefox support */
input[type="date"]::-moz-calendar-picker-indicator,
input[type="time"]::-moz-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1 !important;
    background-color: #D4AF37;
    border-radius: 4px;
    padding: 8px;
    width: 20px;
    height: 20px;
}

/* Placeholder Text Styling - Make it clearly a hint, not actual content */
.form-input::placeholder,
.form-textarea::placeholder,
input::placeholder,
textarea::placeholder {
    color: #6b7280 !important;
    opacity: 0.8 !important;
    font-style: italic;
    font-weight: 300;
}

/* Lighter placeholder on focus to show it's not real content */
.form-input:focus::placeholder,
.form-textarea:focus::placeholder,
input:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0.5 !important;
}

/* ============================================
   MOBILE OPTIMIZATIONS - Tighter Layout
   ============================================ */

@media (max-width: 768px) {
    /* Reduce container padding */
    .booking-container {
        padding: 1.5rem 1rem;
    }
    
    /* Tighter step titles */
    .step-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Reduce form group spacing */
    .form-group {
        margin-bottom: 1rem;
    }
    
    /* Smaller form labels */
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }
    
    /* Compact inputs */
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    /* Reduce section spacing */
    .form-step {
        padding: 0.75rem 0;
    }
    
    /* Tighter pricing section */
    .pricing-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    /* Reduce progress bar height */
    .progress-bar {
        height: 6px;
        margin-bottom: 0.75rem;
    }
    
    /* Step indicator spacing */
    .step-indicator {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    /* Tighter header */
    .header-title {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }
    
    .header-subtitle {
        font-size: 0.95rem;
    }
    
    /* Fix text overflow - force wrapping */
    .form-label,
    .step-title,
    .pricing-label,
    .success-title,
    .success-message,
    p, span, label, h1, h2, h3, h4 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    /* Ensure buttons don't overflow */
    .btn {
        white-space: normal;
        word-wrap: break-word;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Reduce textarea height */
    .form-textarea {
        min-height: 80px;
    }
    
    /* Tighter success page */
    .success-container {
        padding: 1.5rem 1rem;
    }
    
    .success-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .success-message {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Compact receipt buttons */
    .receipt-buttons {
        gap: 0.5rem;
    }
    
    .receipt-buttons .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Cashback offer - more compact */
    .cashback-offer {
        padding: 15px;
        margin: 15px 0;
    }
    
    .cashback-title {
        font-size: 1.1rem;
    }
    
    .cashback-amount {
        font-size: 1.75rem;
    }
    
    /* Success notes - tighter */
    .success-notes {
        padding: 0.75rem;
    }
    
    .success-notes p {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }
    
    .success-notes li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    /* Country code + phone inline on mobile */
    .phone-input-group {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .country-code-select {
        max-width: 90px;
        font-size: 0.85rem;
    }
}

/* Extra small screens (under 400px) */
@media (max-width: 400px) {
    .booking-container {
        padding: 1rem 0.75rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .header-title {
        font-size: 1.5rem;
    }
    
    .form-input,
    .form-select {
        padding: 0.65rem;
        font-size: 0.9rem;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 0.65rem 0.75rem;
    }
}

/* Force placeholder styling on textareas - Make it VERY different from content */
textarea.form-textarea::placeholder,
textarea[name="address"]::placeholder {
    color: #9ca3af !important;
    opacity: 0.6 !important;
    font-style: italic !important;
    font-weight: 300 !important;
    font-size: 0.95em !important;
}

/* Ensure textarea text (actual content) is clearly white/visible */
textarea.form-textarea,
textarea[name="address"] {
    color: #ffffff;
    font-weight: 400;
}

/* Fix: Dark text for form inputs with white background */
.form-input,
.form-textarea,
.form-select,
input[type="date"],
input[type="text"],
input[type="email"],
input[type="tel"],
select {
    color: #1a1a1a !important;
}


/* Signature Date Input - ensure visibility */
#signatureDate {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    border: 2px solid var(--booking-cta1) !important;
}

#signatureDate:read-only {
    background-color: #f5f5f5 !important;
    color: #1a1a1a !important;
}


/* SIGNATURE CANVAS - FORCE WHITE BACKGROUND */
#signatureCanvas,
.signature-canvas,
canvas#signatureCanvas,
.signature-pad-container canvas {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    border: 2px solid #D4AF37 !important;
    border-radius: 8px !important;
    display: block !important;
    width: 600px !important;
    max-width: 100% !important;
    height: 150px !important;
}

/* Address field - prevent value from looking like placeholder */
textarea[name="address"] {
    color: #1a1a1a !important;
    background-color: #ffffff !important;
}

textarea[name="address"]::placeholder {
    color: #999999 !important;
    opacity: 0.7 !important;
}


/* ========================================
   CALCULATOR STYLES (Matching Landing Page)
   Full-width version for booking page
   ======================================== */

/* Calculator Card Container - Full Width */
/* =====================================================
   CALCULATOR CARD STYLES
   Copied from landing/components.css - MUST STAY IDENTICAL
   ===================================================== */

.calculator-card {
    background: #121212;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .calculator-card {
        padding: 20px;
        max-width: 100%;
    }
}

/* Bike Header */
.calc-bike-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 2px solid #262626;
    margin-bottom: 20px;
}

.calc-bike-thumb {
    width: 120px;
    height: 85px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #d4af37;
}

.calc-bike-name {
    font-family: 'Futura', 'Avenir', 'Century Gothic', sans-serif;
    font-size: 22px;
    color: #d4af37;
    margin: 0;
    line-height: 1.3;
}

/* Date Section */
.calc-dates-section {
    margin-bottom: 24px;
}

.calc-instruction {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
}

/* Date Row - Side by Side with Arrow */
.calc-date-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.calc-date-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calc-date-field label {
    font-size: 13px;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.calc-date-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.calc-date-input {
    width: 100%;
    padding: 16px;
    padding-right: 40px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: #1a1a1a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    color-scheme: dark;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-date-input:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.calc-date-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Hide default calendar icon */
.calc-date-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Custom Calendar Icon */
.calc-calendar-icon {
    position: absolute;
    right: 12px;
    width: 22px;
    height: 22px;
    color: #d4af37;
    pointer-events: none;
}

/* Arrow between dates */
.calc-date-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #d4af37;
    margin-bottom: 12px;
}

.calc-date-arrow svg {
    width: 100%;
    height: 100%;
}

/* Price Section */
.calc-price-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
    border-radius: 20px;
    padding: 24px;
    margin: 0 -32px -32px -32px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

@media (max-width: 768px) {
    .calc-price-section {
        margin: 0 -20px -20px -20px;
        padding: 16px;
    }
}

/* Duration Display */
.calc-duration {
    text-align: center;
    padding: 12px 16px;
    background: #121212;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    margin-bottom: 16px;
}

.calc-duration .duration-text {
    color: #cfcfcf;
    font-size: 15px;
}

.calc-duration.active {
    background: linear-gradient(120deg, #d4af37, #ffdc73);
    border: none;
}

.calc-duration.active .duration-text {
    color: #0a0a0a;
    font-weight: 700;
    font-size: 18px;
}

/* Market Price Row - BIG strikethrough */
.calc-price-market {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
    text-align: center;
}

.calc-market-label {
    color: #cfcfcf;
    font-size: 13px;
    font-weight: 500;
}

.calc-market-amount {
    font-size: clamp(32px, 9vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 4px;
}

/* Your Price Section */
.calc-price-yours {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
    text-align: center;
}

.calc-yours-label {
    color: #0ad184;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.calc-price-big {
    font-size: clamp(36px, 10vw, 48px);
    font-weight: 800;
    color: #d4af37;
    line-height: 1;
}

/* Savings Section */
.calc-savings-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.calc-savings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-savings-row:last-of-type {
    border-bottom: none;
}

.savings-label {
    color: #cfcfcf;
    font-size: 13px;
}

.savings-value {
    color: #0ad184;
    font-weight: 700;
    font-size: 15px;
}

.calc-savings-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid #0ad184;
}

.savings-total-label {
    color: #0ad184;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
}

.savings-total-value {
    color: #0ad184;
    font-weight: 800;
    font-size: 22px;
}

/* Promo Code Section */
.calc-promo {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.calc-promo-input {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid #262626;
    background: #121212;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.calc-promo-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.calc-promo-input::placeholder {
    color: #888888;
}

.calc-promo-btn {
    padding: 16px 24px;
    border-radius: 12px;
    background: linear-gradient(120deg, #d4af37, #ffdc73);
    color: #0a0a0a;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.calc-promo-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Promo Message */
.promo-message {
    text-align: center;
    font-size: 13px;
    margin-top: 8px;
    min-height: 18px;
}

.promo-success {
    color: #0ad184;
}

.promo-error {
    color: #ef4444;
}



/* =====================================================
   DARK DATE/TIME INPUTS - Match Landing Page
   ===================================================== */

/* Date and Time inputs in booking step - DARK like landing page */
#startDate,
#endDate,
#startTime,
#endTime,
.calc-date-input,
.calc-time-input {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color-scheme: dark !important;
}

#startDate:hover,
#endDate:hover,
#startTime:hover,
#endTime:hover,
.calc-date-input:hover,
.calc-time-input:hover {
    border-color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.1) !important;
}

#startDate:focus,
#endDate:focus,
#startTime:focus,
#endTime:focus,
.calc-date-input:focus,
.calc-time-input:focus {
    outline: none !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
}

/* Calendar/clock icons - gold color */
#startDate::-webkit-calendar-picker-indicator,
#endDate::-webkit-calendar-picker-indicator,
#startTime::-webkit-calendar-picker-indicator,
#endTime::-webkit-calendar-picker-indicator {
    filter: invert(75%) sepia(50%) saturate(500%) hue-rotate(10deg) !important;
    cursor: pointer;
}

/* Step 1 booking form inputs - dark background */
.booking-step input[type="date"],
.booking-step input[type="time"] {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    color-scheme: dark !important;
}


/* Force DARK form inputs for date/time in booking step 1 */
#startDate.form-input,
#endDate.form-input,
#startTime.form-select,
#endTime.form-select {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 12px !important;
    color-scheme: dark !important;
}

#startDate.form-input:hover,
#endDate.form-input:hover,
#startTime.form-select:hover,
#endTime.form-select:hover {
    border-color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.1) !important;
}

#startDate.form-input:focus,
#endDate.form-input:focus,
#startTime.form-select:focus,
#endTime.form-select:focus {
    outline: none !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
}

/* Select dropdown options - dark */
#startTime.form-select option,
#endTime.form-select option {
    background: #1a1a1a !important;
    color: #ffffff !important;
}



/* =====================================================
   CALCULATOR CARD OVERRIDE - Full width on booking page
   Override landing page CSS max-width constraint
   ===================================================== */

.booking-page .calculator-card,
.booking-form .calculator-card,
#rentalSummary .calculator-card {
    max-width: 100% !important;
    width: 100% !important;
}

/* Ensure rental summary container is also full width */
#rentalSummary {
    width: 100%;
}


/* =====================================================
   VISUAL BIKE SELECTOR GRID - Matches landing page
   ===================================================== */

.bike-selector-grid.booking-bike-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 12px;
    padding: 12px;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.bike-selector-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.bike-selector-item:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.bike-selector-item.selected {
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: selectedPulse 2s ease-in-out infinite;
}

/* Pulsing border glow animation - only affects border, not content */
@keyframes selectedPulse {
    0%, 100% { 
        border-color: #d4af37;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }
    50% { 
        border-color: #f4d03f;
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 50px rgba(244, 208, 63, 0.4);
    }
}

/* Text color animation - dark text when background pulses gold */
.bike-selector-item.selected .bike-selector-name,
.bike-selector-item.selected .bike-selector-price,
.bike-selector-item.selected .bike-selector-market {
    animation: textContrast 2s ease-in-out infinite;
}

@keyframes textContrast {
    0%, 100% { 
        color: #ffffff;
    }
    50% { 
        color: #1a1a1a;
    }
}

.bike-card-inner {
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bike-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}

.bike-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bike-selector-item:hover .bike-image {
    transform: scale(1.05);
}

.bike-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-popular {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1a1a;
}

.badge-new {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    color: #fff;
}

.badge-value {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #fff;
}

.bike-info {
    text-align: center;
    width: 100%;
}

.bike-name {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.bike-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: 14px;
    font-weight: 700;
    color: #d4af37;
}

.price-period {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.bike-select-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.bike-selector-item.selected .bike-select-indicator {
    opacity: 1;
    transform: scale(1);
    background: #d4af37;
    border-color: #d4af37;
}

.bike-select-indicator svg {
    width: 16px;
    height: 16px;
    color: #1a1a1a;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .bike-selector-grid.booking-bike-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 10px;
    }
    
    .bike-card-inner {
        padding: 10px;
    }
    
    .bike-name {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 13px;
    }
}


/* =====================================================
   SCOOTER IMAGE FIXES - Match landing page styling
   ===================================================== */

/* NMAX - show the scooters, hide the sunset sky at top, flip horizontally */
.bike-selector-item[data-bike-id="nmax"] img {
    object-position: center 70%;
    transform: scaleX(-1);
}

/* PCX - flip horizontally to face same direction */
.bike-selector-item[data-bike-id="pcx"] img {
    transform: scaleX(-1);
}

/* NMAX in calculator header - flip and center on the scooter */
.calc-bike-thumb[alt*="NMAX"],
.calc-bike-thumb[alt*="nmax"],
.calc-bike-thumb[alt*="Yamaha NMAX"] {
    transform: scaleX(-1);
    object-position: center 85%;
}

/* PCX in calculator header - flip and center on the scooter */
.calc-bike-thumb[alt*="PCX"],
.calc-bike-thumb[alt*="pcx"],
.calc-bike-thumb[alt*="Honda PCX"] {
    transform: scaleX(-1);
    object-position: center 90%;
}


/* =====================================================
   HIDE ORIGINAL BIKE SELECT - Prevent flash on load
   ===================================================== */
/* DISABLED FOR iOS FIX: #bikeSelect { */
/* DISABLED FOR iOS FIX:     display: none !important; */
/* DISABLED FOR iOS FIX: } */
/* DISABLED FOR iOS FIX:  */
/* DISABLED FOR iOS FIX: /* Also hide its label */ */
/* DISABLED FOR iOS FIX: .form-group:has(#bikeSelect) > .form-label:first-child { */
/* DISABLED FOR iOS FIX:     display: none !important; */
/* DISABLED FOR iOS FIX: } */
/* DISABLED FOR iOS FIX:  */
/* Custom option styling in modal */
.bike-selector-item.custom-option {
    border-style: dashed;
    background: rgba(212, 175, 55, 0.05);
}

.bike-selector-item.custom-option img {
    opacity: 0.7;
    object-fit: contain;
    padding: 10px;
}


/* =====================================================
   INVALID FIELD STYLING - Validation error state
   Must use !important to override other color rules
   ===================================================== */
.form-input.field-invalid,
.form-textarea.field-invalid,
.form-select.field-invalid,
input.field-invalid,
select.field-invalid,
textarea.field-invalid {
    border: 3px solid #ff4444 !important;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.7) !important;
    background-color: rgba(30, 30, 30, 0.95) !important;
    color: #ffffff !important;
}

/* Ensure placeholder is visible in invalid state */
.field-invalid::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}


/* =====================================================
   STEP PROGRESS DOTS - Visual step indicator
   ===================================================== */

.step-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 1.5rem 0;
}

.step-dot {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-dot-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
}

.step-dot.active .step-dot-circle {
    background: linear-gradient(135deg, var(--booking-cta1), var(--booking-cta2));
    border-color: var(--booking-cta1);
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.step-dot.completed .step-dot-circle {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.step-dot.completed .step-dot-circle::after {
    content: '✓';
    font-size: 16px;
}

.step-dot.completed .step-number {
    display: none;
}

.step-dot-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: none;
}

.step-dot.active .step-dot-label {
    color: var(--booking-cta1);
}

.step-dot.completed .step-dot-label {
    color: #22c55e;
}

/* Show labels on desktop */
@media (min-width: 768px) {
    .step-dot-label {
        display: block;
    }
    
    .step-dot {
        flex-direction: column;
        gap: 6px;
    }
    
    .step-dots {
        gap: 24px;
    }
}

/* Connector line between dots */
.step-connector {
    width: 40px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    transition: background 0.3s ease;
}

.step-connector.completed {
    background: #22c55e;
}

@media (max-width: 480px) {
    .step-dot-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .step-connector {
        width: 20px;
    }
    
    .step-dots {
        gap: 4px;
    }
}


/* =====================================================
   FORM CARDS - Visual grouping for form sections
   ===================================================== */

.form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-card-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--booking-cta1);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.form-card-hint {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.form-card.emergency-card {
    background: rgba(220, 53, 69, 0.08);
    border-color: rgba(220, 53, 69, 0.3);
}

.form-card.emergency-card .form-card-header {
    color: #dc3545;
}

@media (max-width: 768px) {
    .form-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-card-header {
        font-size: 1rem;
    }
}



/* =====================================================
   BIKE SELECTOR MODAL - Full screen modal styles
   ===================================================== */

.bike-selector-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.bike-selector-modal.active {
    opacity: 1;
    visibility: visible;
}

.bike-selector-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.bike-selector-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #121212);
    border: 2px solid #d4af37;
    border-radius: 16px;
    padding: 24px;
    max-width: 90vw;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(20px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.bike-selector-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bike-selector-close:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.bike-selector-title {
    text-align: center;
    color: #d4af37;
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    font-family: 'Futura', 'Avenir', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Modal bike grid */
.bike-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

/* Modal bike item - ensure image is not covered by animation */
.bike-selector-modal .bike-selector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.bike-selector-modal .bike-selector-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.bike-selector-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.bike-selector-market {
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
    position: relative;
    z-index: 2;
}

.bike-selector-market s {
    color: #ef4444;
}

.bike-selector-price {
    font-size: 13px;
    font-weight: 700;
    color: #d4af37;
    position: relative;
    z-index: 2;
}

/* Selected item in modal - pulsing background BEHIND the image */
.bike-selector-modal .bike-selector-item.selected {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
}

.bike-selector-modal .bike-selector-item.selected::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 0 0 12px 12px;
    z-index: 1;
    animation: bgPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bgPulse {
    0%, 100% { 
        opacity: 0.3;
    }
    50% { 
        opacity: 0.7;
    }
}

/* Mobile modal */
@media (max-width: 480px) {
    .bike-selector-content {
        padding: 16px;
        max-width: 95vw;
    }
    
    .bike-selector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .bike-selector-modal .bike-selector-item img {
        height: 80px;
    }
    
    .bike-selector-name {
        font-size: 12px;
    }
    
    .bike-selector-price {
        font-size: 11px;
    }
}


/* =====================================================
   CLAUDE SPLIT CHAT - Input Area Styles
   Fix for black text on black background
   ===================================================== */

.claude-split-input-area {
    padding: 12px 16px;
    background: rgba(20, 20, 20, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

.claude-split-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.suggestion-btn {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion-btn:hover {
    background: rgba(212, 175, 55, 0.25) !important;
    border-color: #d4af37 !important;
    color: #d4af37 !important;
    transform: translateY(-1px);
}

.claude-whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    border: none !important;
    color: #ffffff !important;
}

.claude-whatsapp-btn:hover {
    background: linear-gradient(135deg, #2be672, #159e8c) !important;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.claude-split-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.claude-split-input,
#claudeSplitInput,
input#claudeSplitInput,
input.claude-split-input {
    flex: 1;
    padding: 14px 18px;
    background: #1a1a1a !important;
    background-color: #1a1a1a !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 24px;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff !important;
    font-size: 15px;
    font-family: 'Crimson Text', Georgia, serif;
    transition: all 0.3s ease;
}

.claude-split-input::placeholder,
#claudeSplitInput::placeholder,
input#claudeSplitInput::placeholder,
input.claude-split-input::placeholder {
    color: #999999 !important;
    -webkit-text-fill-color: #999999 !important;
    opacity: 1 !important;
}

/* Firefox placeholder */
.claude-split-input::-moz-placeholder,
#claudeSplitInput::-moz-placeholder {
    color: #999999 !important;
    opacity: 1 !important;
}

/* IE/Edge placeholder */
.claude-split-input:-ms-input-placeholder,
#claudeSplitInput:-ms-input-placeholder {
    color: #999999 !important;
}

.claude-split-input:focus {
    outline: none;
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.claude-split-send {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.claude-split-send:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.claude-split-send svg {
    width: 22px;
    height: 22px;
    color: #0a0a0a;
}

/* =====================================================
   IPHONE/IOS FIX - Added 2026-01-17
   Fix bike selector visibility and mobile overflow
   ===================================================== */

/* FIX 1: Show bike select by default as fallback
   Only hide when JS has initialized the visual selector */
#bikeSelect {
    display: block;
    width: 100%;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: #ffffff;
    color: #1a1a1a;
}

/* Hide original select ONLY when visual selector header exists */
body:has(#selectedBikeHeader) #bikeSelect {
    display: none !important;
}

/* Show label by default, hide only when visual selector is active */
body:has(#selectedBikeHeader) .form-group:has(#bikeSelect) > .form-label:first-child {
    display: none !important;
}

/* FIX 2: iPhone-specific overflow fixes (all iPhone sizes up to Plus/Max) */
@media screen and (max-width: 428px) {
    /* Reduce container padding for iPhones */
    .booking-container {
        padding: 1.5rem 1rem !important;
        border-radius: 10px;
        max-width: calc(100vw - 16px);
        margin: 0 8px;
    }
    
    .booking-page {
        padding: 0.75rem 0.25rem;
    }
    
    /* Ensure form grid is single column on all iPhones */
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    /* Prevent horizontal overflow on inputs */
    .form-input,
    .form-select,
    .form-textarea,
    input[type="date"],
    input[type="time"],
    select {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        -webkit-box-sizing: border-box !important;
        font-size: 16px !important; /* Prevent iOS zoom on focus */
    }
    
    /* Fix date/time input overflow */
    input[type="date"],
    input[type="time"] {
        min-height: 44px;
        -webkit-appearance: none;
    }
    
    /* Smaller step title for iPhones */
    .step-title {
        font-size: 1.25rem;
        padding-bottom: 0.5rem;
    }
    
    /* Header adjustments */
    .header-title {
        font-size: 1.75rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    /* Progress container */
    .progress-container {
        padding: 0.75rem;
    }
    
    /* Step dots sizing */
    .step-dot-circle {
        width: 32px;
        height: 32px;
    }
    
    .step-number {
        font-size: 0.85rem;
    }
    
    .step-dot-label {
        font-size: 0.7rem;
    }
    
    .step-connector {
        min-width: 20px;
    }
    
    /* Fix phone input group */
    .phone-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phone-input-group #countryCode,
    .phone-input-group #phoneNumber {
        width: 100% !important;
    }
}

/* FIX 3: Very small screens (iPhone SE 320px, older iPhones 375px) */
@media screen and (max-width: 375px) {
    .booking-container {
        padding: 1rem 0.75rem !important;
    }
    
    .header-flex-center {
        gap: 1rem;
    }
    
    .logo-container {
        width: 80px;
        height: 80px;
    }
    
    .header-title {
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Important notice */
    .important-notice {
        padding: 0.75rem;
        margin: 1rem 0;
    }
    
    .notice-title {
        font-size: 1rem;
    }
}

/* FIX 4: Bike selector modal fixes for iOS */
@media screen and (max-width: 428px) {
    .bike-selector-modal .bike-selector-content {
        max-width: 95vw;
        max-height: 80vh;
        padding: 16px 12px;
        margin: 10px;
    }
    
    .bike-selector-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    .bike-selector-modal .bike-selector-item img {
        height: 70px;
    }
    
    .bike-selector-name {
        font-size: 11px;
    }
    
    .bike-selector-price {
        font-size: 10px;
    }
}

/* FIX 5: Safari/iOS-specific input styling */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari specific */
    .form-input,
    .form-select,
    .form-textarea {
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    /* Prevent zoom on input focus by using 16px minimum */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="time"],
    select,
    textarea {
        font-size: 16px !important;
    }
}
