/* ==========================================================
   BOOKING.CSS
   DCAMS Booking Wizard - Lime Brand Theme
========================================================== */

.booking-section {
    background: #050713;
    color: #ffffff;
    min-height: calc(100vh - 100px);
    padding: 80px 0;
}

.booking-container {
    max-width: 980px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 36px;
}

.booking-header p {
    color: var(--lime, #c8f000);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.booking-header h1 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.booking-header span {
    color: #cbd5e1;
    font-size: 17px;
}

/* Progress */

.wizard-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 36px 0;
}

.wizard-step {
    text-align: center;
    color: #94a3b8;
    font-weight: 800;
}

.wizard-step span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #cbd5e1;
}

.wizard-step.active {
    color: var(--lime, #c8f000);
}

.wizard-step.active span {
    background: var(--lime, #c8f000);
    color: #050713;
}

/* Card */

.wizard-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 24px 60px rgba(0,0,0,.38);
}

/* Forms */

.booking-section .form-row {
    margin-bottom: 24px;
}

.booking-section .form-row label {
    display: block;
    color: #ffffff !important;
    font-weight: 800;
    margin-bottom: 8px;
}

.booking-section input,
.booking-section textarea,
.booking-section select {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.25) !important;
    background: #ffffff !important;
    color: #050713 !important;
    font-size: 16px;
}

.booking-section input::placeholder,
.booking-section textarea::placeholder {
    color: #64748b;
}

.booking-section input:focus,
.booking-section textarea:focus,
.booking-section select:focus {
    outline: none;
    border-color: var(--lime, #c8f000) !important;
    box-shadow: 0 0 0 3px rgba(200,240,0,.18) !important;
}

.booking-section .optional-text,
.booking-section .help-text {
    color: #94a3b8 !important;
}

.booking-section .form-error {
    display: block;
    margin-top: 8px;
    color: #f87171 !important;
    font-size: 14px;
    font-weight: 800;
}

.booking-section .form-alert {
    background: rgba(200,240,0,.12) !important;
    color: var(--lime, #c8f000) !important;
    border: 1px solid rgba(200,240,0,.35);
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 24px;
    font-weight: 900;
}

/* Contact Checkboxes */

.booking-section .checkbox-line {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.booking-section .checkbox-line label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    margin-bottom: 0;
}

.booking-section .checkbox-line input {
    width: auto;
    margin: 0;
    accent-color: var(--lime, #c8f000);
}

/* Conditional Washer/Dryer */

.booking-section .conditional-section {
    display: none;
    margin: 28px 0;
    padding: 26px;
    border-radius: 18px;
    background: rgba(200,240,0,.08);
    border: 1px solid rgba(200,240,0,.22);
}

.booking-section .conditional-section h3 {
    color: #ffffff;
    margin-bottom: 18px;
}

/* Time Windows */

.booking-section .time-window-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.booking-section .time-window-grid label {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.14);
    color: #ffffff !important;
    font-weight: 800;
    cursor: pointer;
}

.booking-section .time-window-grid label:hover {
    border-color: var(--lime, #c8f000);
    background: rgba(200,240,0,.08);
}

.booking-section .time-window-grid input {
    width: auto;
    margin: 0;
    accent-color: var(--lime, #c8f000);
}

/* Review */

.booking-section .review-section {
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.booking-section .review-title {
    font-size: 21px;
    font-weight: 900;
    color: var(--lime, #c8f000);
    margin-bottom: 22px;
}

.booking-section .review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
}

.booking-section .review-grid strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}

.booking-section .review-grid p {
    color: #cbd5e1;
    margin: 0;
}

.booking-section .review-full {
    grid-column: 1 / -1;
}

.booking-section .review-edit {
    display: inline-block;
    margin-top: 20px;
    color: var(--lime, #c8f000);
    font-weight: 900;
    text-decoration: none;
}

/* Confirmation */

.booking-section .confirmation-box {
    display: grid;
    gap: 14px;
    margin-top: 30px;
    padding: 24px;
    background: rgba(200,240,0,.08);
    border: 1px solid rgba(200,240,0,.24);
    border-radius: 18px;
}

.booking-section .confirmation-box label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e5e7eb !important;
    font-weight: 700;
    line-height: 1.6;
}

.booking-section .confirmation-box input {
    width: auto;
    margin-top: 5px;
    accent-color: var(--lime, #c8f000);
}

/* Success */

.booking-section .success-card {
    text-align: center;
}

.booking-section .success-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--lime, #c8f000);
    color: #050713;
    font-size: 42px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.booking-section .success-card h1 {
    color: #ffffff;
    margin-bottom: 16px;
}

.booking-section .success-card p {
    color: #cbd5e1;
    margin-bottom: 18px;
    line-height: 1.7;
}

.booking-section .reference-box {
    background: rgba(200,240,0,.08);
    border: 1px solid rgba(200,240,0,.28);
    border-radius: 18px;
    padding: 24px;
    margin: 28px 0;
}

.booking-section .reference-box span {
    display: block;
    color: #cbd5e1;
    font-weight: 800;
    margin-bottom: 6px;
}

.booking-section .reference-box strong {
    color: var(--lime, #c8f000);
    font-size: 30px;
}

.booking-section .success-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Buttons */

.booking-section .btn-primary {
    background: var(--lime, #c8f000) !important;
    color: #050713 !important;
    border: 2px solid var(--lime, #c8f000) !important;
}

.booking-section .btn-outline,
.booking-section .btn-secondary {
    background: rgba(5,7,19,.65) !important;
    color: #ffffff !important;
    border: 2px solid var(--lime, #c8f000) !important;
}

/* Responsive */

@media (max-width: 768px) {
    .booking-section {
        padding: 60px 0;
    }

    .booking-header h1 {
        font-size: 34px;
    }

    .wizard-card {
        padding: 28px;
    }

    .wizard-progress {
        gap: 8px;
    }

    .wizard-step {
        font-size: 13px;
    }

    .booking-section .time-window-grid,
    .booking-section .review-grid {
        grid-template-columns: 1fr;
    }
}

/* Progress Bar Alignment Fix */

.booking-section .wizard-progress {
    max-width: 720px;
    margin: 36px auto 42px;
}

.booking-section .wizard-step {
    position: relative;
}

.booking-section .wizard-step span {
    width: 40px;
    height: 40px;
}

.booking-section .wizard-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: rgba(255,255,255,.14);
}

.booking-section .wizard-step.active:not(:last-child)::after {
    background: rgba(200,240,0,.45);
}

/* Contact Method Cards */

.contact-method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    cursor: pointer;
    transition: .25s ease;
}

.contact-card:hover {
    border-color: var(--lime, #c8f000);
    background: rgba(200,240,0,.08);
}

.contact-card input {
    width: auto !important;
    margin: 0;
    accent-color: var(--lime, #c8f000);
}

.contact-card strong {
    display: block;
    color: #ffffff;
    margin-bottom: 4px;
}

.contact-card span {
    color: #94a3b8;
    font-size: 14px;
}

@media (max-width: 768px) {
    .contact-method-grid {
        grid-template-columns: 1fr;
    }
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.upload-grid,
.setup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.upload-card,
.setup-card {
    display: block;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.14);
    cursor: pointer;
    transition: .25s ease;
}

.upload-card:hover,
.setup-card:hover {
    border-color: var(--lime, #c8f000);
    background: rgba(200,240,0,.08);
}

.upload-card span {
    display: block;
    font-size: 30px;
    margin-bottom: 10px;
}

.upload-card strong,
.setup-card strong {
    display: block;
    color: #ffffff;
    margin-bottom: 6px;
}

.upload-card small,
.setup-card span {
    color: #94a3b8;
    line-height: 1.5;
}

.upload-card input {
    margin-top: 16px;
}

.setup-card input {
    width: auto !important;
    margin: 0 0 12px;
    accent-color: var(--lime, #c8f000);
}

@media (max-width: 768px) {
    .two-column,
    .upload-grid,
    .setup-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Schedule Time Cards */

.booking-section .premium-time-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.booking-section .time-card {
    position: relative;
    min-height: 96px;
    padding: 20px;
    align-items: flex-start;
}

.booking-section .time-card input[type="radio"]{
    display:none;
}

.booking-section .time-card strong {
    display: block;
    color: #ffffff;
    margin-bottom: 6px;
    font-size: 17px;
}

.booking-section .time-card span {
    color: #94a3b8;
    font-weight: 700;
}

.booking-section .time-card:has(input:checked) {
    border: 2px solid var(--lime);
    background: rgba(200,240,0,.12);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(200,240,0,.18);
}

@media (max-width: 768px) {
    .booking-section .premium-time-grid {
        grid-template-columns: 1fr;
    }
}

.time-card-booked {
    opacity: .45;
    cursor: not-allowed !important;
    background: rgba(255,255,255,.035) !important;
    border-color: rgba(255,255,255,.08) !important;
}

.time-card-booked strong {
    color: #94a3b8 !important;
}

.time-card-booked span {
    color: #f87171 !important;
    font-weight: 900;
}

.uploaded-photo-list {
    display: grid;
    gap: 12px;
}

.uploaded-photo-item {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.12);
}

.uploaded-photo-item strong {
    color: var(--lime, #c8f000);
}

.uploaded-photo-item p {
    color: #cbd5e1;
    margin: 6px 0 0;
    font-size: 14px;
    word-break: break-all;
}

.photo-limit-note {
    color: #94a3b8;
    font-size: 14px;
    margin: -8px 0 24px;
}

.selected-file-list {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.selected-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.selected-file-item span {
    color: #e5e7eb;
    font-size: 14px;
    word-break: break-all;
}

.selected-file-item button {
    border: 0;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(248,113,113,.18);
    color: #fecaca;
    font-weight: 800;
    cursor: pointer;
}

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

.review-photo-card {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 14px;
}

.review-photo-card strong {
    display: block;
    color: var(--lime, #c8f000);
    margin-bottom: 10px;
}

.review-photo-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
}

@media (max-width: 768px) {
    .review-photo-gallery {
        grid-template-columns: 1fr;
    }

    .review-photo-card img {
        height: auto;
    }
}