/* ============================================
   Order Page Styles — Shred2u Booking Design
   Nunito font, softer shadows, rounded cards
   ============================================ */

/* ─── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

/* ─── ORDER MAIN LAYOUT ──────────────────── */
.order-main {
    margin-top: 120px;
    min-height: calc(100vh - 120px);
    background: #F3F4F6;
    padding: 32px 16px 48px;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.order-container {
    max-width: 960px;
    margin: 0 auto;
}

/* ─── PROGRESS STEPS ─────────────────────── */
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    gap: 0;
    flex-wrap: wrap;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s;
}

.progress-step.active {
    color: #01101F;
    font-weight: 700;
}

.progress-step.completed {
    color: #76D750;
    font-weight: 600;
}

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8e8ee;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.progress-step.active .step-circle {
    background: #00A7E2;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 167, 226, 0.3);
}

.progress-step.completed .step-circle {
    background: #76D750;
    color: #fff;
}

.progress-line {
    width: 32px;
    height: 2px;
    background: #e0e0e6;
    margin: 0 8px;
    border-radius: 1px;
    transition: all 0.3s;
}

.progress-line.done {
    background: #76D750;
}

/* ─── ERROR MESSAGE ──────────────────────── */
.error-message {
    background: rgba(253, 83, 115, 0.04);
    border: 2px solid rgba(253, 83, 115, 0.15);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    animation: fadeUp 0.3s ease;
}

.error-icon {
    font-size: 24px;
    color: #FD5373;
    cursor: pointer;
    flex-shrink: 0;
}

.error-message strong {
    display: block;
    color: #FD5373;
    margin-bottom: 4px;
    font-weight: 700;
}

.error-message p {
    color: #4B5054;
    font-size: 14px;
    line-height: 1.5;
}

.close-error {
    margin-left: auto;
    padding: 8px 20px;
    background: #fff;
    border: 1.5px solid #dde2e8;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #4B5054;
    transition: all 0.2s;
}

.close-error:hover {
    border-color: #FD5373;
    color: #FD5373;
}

/* ─── ORDER TITLE ────────────────────────── */
.order-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #01101F;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.order-step > p.order-subtitle {
    font-size: 15px;
    color: #4B5054;
    text-align: center;
    margin-bottom: 32px;
    opacity: 0.7;
}

/* ─── ORDER TYPE SELECTOR ────────────────── */
.order-type-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    gap: 10px;
}

.order-type-btn {
    padding: 12px 28px;
    background: #fff;
    border: 2px solid #eeeef2;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif;
    color: #01101F;
}

.order-type-btn:hover {
    border-color: #00A7E2;
    background: rgba(0, 167, 226, 0.04);
}

.order-type-btn.active {
    background: #00A7E2;
    color: #fff;
    border-color: #00A7E2;
    box-shadow: 0 4px 14px rgba(0, 167, 226, 0.25);
}

/* ─── SERVICES SELECTION GRID ────────────── */
.services-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.service-selection-card {
    background: #fff;
    border: 2px solid #eeeef2;
    border-radius: 14px;
    padding: 20px 18px;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(1, 16, 31, 0.06);
    animation: fadeUp 0.35s ease;
    cursor: pointer;
}

.service-selection-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 167, 226, 0.12);
    border-color: #d0e8f5;
}

.service-selection-card.selected {
    border-color: #00A7E2;
    box-shadow: 0 0 0 2px #00A7E2, 0 8px 30px rgba(0, 167, 226, 0.15);
}

.service-icon {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    object-fit: contain;
    padding: 4px;
    background: rgba(0, 167, 226, 0.08);
    border-radius: 12px;
}

.service-selection-card h3 {
    font-size: 16px;
    color: #01101F;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 700;
    min-height: auto;
    line-height: 1.3;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* ─── ORDER TYPE MINI SELECTOR ───────────── */
.order-type-mini {
    margin-bottom: 8px;
}

.order-type-mini label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #4B5054;
}

.order-type-mini select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #dde2e8;
    border-radius: 10px;
    font-size: 15px;
    background: #FAFBFC;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    color: #01101F;
    transition: all 0.2s;
}

.order-type-mini select:focus {
    outline: none;
    border-color: #00A7E2;
    box-shadow: 0 0 0 3px rgba(0, 167, 226, 0.1);
}

/* ─── BIN SIZE SELECTOR ──────────────────── */
.bin-size-selector {
    margin-bottom: 8px;
}

.bin-size-selector label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #4B5054;
}

.switch-group {
    display: flex;
    gap: 0;
    background: #f0f1f4;
    border-radius: 10px;
    padding: 4px;
}

.switch-btn {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4B5054;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Nunito', sans-serif;
}

.switch-btn:hover {
    background: rgba(0, 167, 226, 0.08);
}

.switch-btn.active {
    background: #00A7E2;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 167, 226, 0.3);
}

.radio-group {
    display: flex;
    gap: 12px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 400;
}

.radio-group input[type="radio"] {
    cursor: pointer;
    accent-color: #00A7E2;
}

/* ─── QUANTITY SELECTOR ──────────────────── */
.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quantity-selector label {
    font-size: 13px;
    font-weight: 600;
    color: #4B5054;
}

.quantity-selector select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #dde2e8;
    border-radius: 10px;
    font-size: 15px;
    background: #FAFBFC;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    color: #01101F;
    transition: all 0.2s;
}

.quantity-selector select:focus {
    outline: none;
    border-color: #00A7E2;
    box-shadow: 0 0 0 3px rgba(0, 167, 226, 0.1);
}

/* ─── BUTTONS ────────────────────────────── */
.order-now-btn,
.quote-btn {
    width: 100%;
    padding: 14px 24px;
    background: #00A7E2;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 4px 14px rgba(0, 167, 226, 0.25);
    letter-spacing: -0.01em;
}

.order-now-btn:hover {
    background: #0091c7;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 167, 226, 0.35);
}

.quote-btn {
    background: linear-gradient(135deg, #01101F 0%, #0A2236 100%);
    box-shadow: 0 4px 14px rgba(1, 16, 31, 0.25);
}

.quote-btn:hover {
    background: linear-gradient(135deg, #0A2236 0%, #132E44 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(1, 16, 31, 0.35);
}

/* ─── SERVICE FEATURES LIST ──────────────── */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-features-list li {
    color: #4B5054;
    font-size: 13px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* ─── CARD PRICE ─────────────────────────── */
.card-price {
    font-weight: 800;
    font-size: 20px;
    color: #00A7E2;
    text-align: center;
    margin-bottom: 12px;
}

.card-price span {
    font-size: 12px;
    font-weight: 500;
    color: #4B5054;
}

/* ─── CARD SELECT INDICATOR ──────────────── */
.card-select-indicator {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    padding: 6px 20px;
    border-radius: 20px;
    border: 1.5px solid #ddd;
    transition: all 0.2s;
}

.card-select-indicator.active,
.service-selection-card.selected .card-select-indicator {
    color: #fff;
    background: #00A7E2;
    border-color: #00A7E2;
}

/* ─── PRODUCT OPTIONS PANEL ──────────────── */
.product-options-panel {
    margin-top: 32px;
    animation: fadeUp 0.3s ease;
}

.product-options-panel .option-section {
    margin-bottom: 24px;
}

.product-options-panel .option-label {
    font-weight: 700;
    font-size: 15px;
    color: #01101F;
    margin-bottom: 8px;
}

.product-options-panel select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #dde2e8;
    border-radius: 10px;
    font-size: 15px;
    background: #FAFBFC;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    color: #01101F;
    transition: all 0.2s;
    min-height: 46px;
}

.product-options-panel select:focus {
    outline: none;
    border-color: #00A7E2;
    box-shadow: 0 0 0 3px rgba(0, 167, 226, 0.1);
}

/* ─── FREQUENCY CARD GRID ────────────────── */
.freq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.freq-card {
    border: 2px solid #eeeef2;
    border-radius: 12px;
    padding: 14px 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    background: #fff;
}

.freq-card:hover {
    border-color: #c5dff0;
    background: rgba(0, 167, 226, 0.02);
}

.freq-card.selected {
    border-color: #00A7E2;
    background: rgba(0, 167, 226, 0.04);
    box-shadow: 0 0 0 1px #00A7E2;
}

.freq-card-label {
    font-weight: 700;
    font-size: 14px;
    color: #01101F;
    margin-top: 2px;
}

.freq-card-desc {
    font-size: 12px;
    color: #4B5054;
    opacity: 0.7;
    margin-top: 2px;
}

/* ─── QUANTITY STEPPER ────────────────────── */
.qty-stepper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.qty-stepper-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #dde2e8;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #01101F;
    transition: all 0.15s;
    font-family: 'Nunito', sans-serif;
    padding: 0;
}

.qty-stepper-btn:hover {
    border-color: #00A7E2;
    color: #00A7E2;
    background: rgba(0, 167, 226, 0.04);
}

.qty-stepper-btn:active {
    transform: scale(0.93);
}

.qty-stepper-value {
    font-size: 24px;
    font-weight: 800;
    min-width: 36px;
    text-align: center;
    color: #01101F;
}

.qty-price-display {
    margin-top: 8px;
    font-size: 20px;
    font-weight: 800;
    color: #00A7E2;
}

/* Step 1 Summary Bar */
.step1-summary-bar {
    background: linear-gradient(135deg, #01101F 0%, #0A2236 100%);
    color: #fff;
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.summary-bar-product {
    font-weight: 700;
    font-size: 16px;
    display: block;
}

.summary-bar-freq {
    font-size: 13px;
    opacity: 0.6;
    display: block;
    margin-top: 2px;
}

.summary-bar-total {
    font-size: 24px;
    font-weight: 800;
}

.summary-bar-total span {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.7;
}

/* ─── QUOTE CARD ─────────────────────────── */
.quote-card {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-color: #e5e7eb;
}

/* ─── STEP 2: FORM LAYOUT ────────────────── */
.form-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}

.form-section {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 1px 4px rgba(1, 16, 31, 0.04);
    border: none;
}

.back-btn {
    padding: 10px 20px;
    background: none;
    color: #4B5054;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
}

.back-btn:hover {
    color: #00A7E2;
}

.form-section h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: #01101F;
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.form-section > p.form-subtitle {
    font-size: 15px;
    color: #4B5054;
    margin-bottom: 24px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group h3 {
    font-size: 15px;
    color: #01101F;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group h3::before {
    content: '';
    width: 3px;
    height: 16px;
    background: #00A7E2;
    border-radius: 2px;
    flex-shrink: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #4B5054;
    margin-bottom: 4px;
}

.form-field input[type="text"],
.form-field input[type="number"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #dde2e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
    transition: all 0.2s;
    background: #FAFBFC;
    color: #01101F;
    min-height: 46px;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    border-color: #c5cad0;
    background: #fff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #00A7E2;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 167, 226, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #aab;
}

.form-field textarea {
    resize: vertical;
}

.premium-badge {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ============================================
   SHARED: Form Section Group
   ============================================ */
.form-section-group {
    background: #FAFBFC;
    padding: 24px;
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid #eeeef2;
}

.form-section-group h4 {
    margin: 0 0 16px 0;
    color: #01101F;
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 1px solid #eeeef2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-group h4::before {
    content: '';
    width: 3px;
    height: 16px;
    background: #00A7E2;
    border-radius: 2px;
    flex-shrink: 0;
}

.form-section-group .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.form-section-group .form-group {
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
}

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

.form-section-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: #4B5054;
    font-size: 13px;
}

.form-section-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.form-section-group label input[type="checkbox"] {
    width: auto;
    padding: 0;
    border: none;
    flex-shrink: 0;
    accent-color: #00A7E2;
}

.form-section-group input,
.form-section-group select,
.form-section-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #dde2e8;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s;
    background: #fff;
    color: #01101F;
    font-family: 'Nunito', sans-serif;
    min-height: 46px;
}

.form-section-group textarea {
    resize: vertical;
}

.form-section-group input:hover,
.form-section-group select:hover,
.form-section-group textarea:hover {
    border-color: #c5cad0;
}

.form-section-group input:focus,
.form-section-group select:focus,
.form-section-group textarea:focus {
    outline: none;
    border-color: #00A7E2;
    box-shadow: 0 0 0 3px rgba(0, 167, 226, 0.1);
}

.form-section-group input::placeholder {
    color: #aab;
}

.form-section-group input:read-only {
    background-color: #f3f4f6;
    color: #6b7280;
}

/* ============================================
   SHARED: Quick Date Buttons
   ============================================ */
.quick-dates-container {
    margin: 16px 0;
    padding: 20px 24px;
    background: rgba(0, 167, 226, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(0, 167, 226, 0.1);
}

.quick-dates-label {
    font-size: 14px;
    font-weight: 700;
    color: #01101F;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-dates-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}

.quick-date-btn {
    border: 2px solid #eeeef2;
    border-radius: 12px;
    padding: 20px 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.quick-date-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #00A7E2;
    opacity: 0;
    transition: opacity 0.2s;
}

.quick-date-btn:hover {
    border-color: #00A7E2;
    background: rgba(0, 167, 226, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 167, 226, 0.12);
}

.quick-date-btn:hover::before {
    opacity: 1;
}

.quick-date-btn.selected {
    background: #00A7E2;
    color: #fff;
    border-color: #00A7E2;
    box-shadow: 0 4px 16px rgba(0, 167, 226, 0.25);
}

.quick-date-btn.selected::before {
    opacity: 0;
}

.quick-date-day,
.quick-date-btn .day {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.quick-date-date,
.quick-date-btn .date {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #01101F;
}

.quick-date-btn .month {
    display: block;
    font-size: 11px;
    opacity: 0.6;
}

.quick-date-btn.selected .quick-date-date,
.quick-date-btn.selected .date {
    color: #fff;
}

.quick-date-btn.selected .quick-date-day,
.quick-date-btn.selected .day {
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.quick-date-btn.selected .month {
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

@media (max-width: 768px) {
    .quick-dates-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .quick-dates-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   SHARED: Inline Calendar
   ============================================ */
.calendar-container {
    margin-top: 16px;
    background: #FAFBFC;
    padding: 20px;
    border-radius: 14px;
}

.selected-date-display {
    padding: 12px 16px;
    background: #fff;
    border: 1.5px solid #dde2e8;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #01101F;
    margin-bottom: 16px;
    text-align: center;
    transition: all 0.2s;
}

.selected-date-display:not(:empty) {
    border-color: #00A7E2;
    background: rgba(0, 167, 226, 0.04);
}

.inline-calendar {
    background: #fff;
    border: 1px solid #eeeef2;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(1, 16, 31, 0.04);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eeeef2;
}

.calendar-header h4,
.calendar-header .month-year {
    font-size: 16px;
    font-weight: 700;
    color: #01101F;
    margin: 0;
    letter-spacing: -0.01em;
}

.calendar-nav {
    display: flex;
    gap: 6px;
}

.calendar-nav button,
.calendar-header button:not(.month-year) {
    width: 34px;
    height: 34px;
    border: 1.5px solid #dde2e8;
    background: #FAFBFC;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #01101F;
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif;
}

.calendar-nav button:hover,
.calendar-header button:not(.month-year):hover {
    background: #00A7E2;
    color: #fff;
    border-color: #00A7E2;
    box-shadow: 0 2px 8px rgba(0, 167, 226, 0.25);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 8px;
}

.calendar-weekday,
.calendar-day-header {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #aab;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-days,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #01101F;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.calendar-day:hover:not(.disabled):not(.empty):not(.past) {
    background: rgba(0, 167, 226, 0.06);
    border-color: #00A7E2;
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(0, 167, 226, 0.12);
}

.calendar-day.selected {
    background: #00A7E2;
    color: #fff;
    border-color: #00A7E2;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 167, 226, 0.25);
}

.calendar-day.today {
    border: 2px solid #00A7E2;
    font-weight: 700;
    background: rgba(0, 167, 226, 0.04);
}

.calendar-day.disabled {
    background: #fafafa;
    color: #d1d5db;
    cursor: not-allowed;
    border-color: transparent;
}

.calendar-day.disabled:hover {
    transform: none;
    box-shadow: none;
}

.calendar-day.empty {
    border: none;
    cursor: default;
    background: transparent;
}

.calendar-day.past {
    background: #fafafa;
    color: #d1d5db;
    cursor: not-allowed;
    border-color: transparent;
}

.weekend-note {
    margin-top: 12px;
    padding: 10px 14px;
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
    border-radius: 8px;
    font-size: 13px;
    color: #92400e;
}

.weekend-note strong {
    font-weight: 700;
}

/* ─── IMPORTANT INFORMATION ──────────────── */
.important-info {
    background: rgba(253, 83, 115, 0.04);
    border: 2px solid rgba(253, 83, 115, 0.12);
    border-left: 4px solid #FD5373;
    padding: 20px 24px;
    margin-bottom: 20px;
    border-radius: 14px;
}

.important-info h4 {
    font-size: 15px;
    color: #FD5373;
    margin-bottom: 12px;
    font-weight: 700;
}

.important-info ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.important-info li {
    font-size: 14px;
    line-height: 1.6;
    color: #4B5054;
    margin-bottom: 8px;
}

.form-field a {
    color: #00A7E2;
    text-decoration: none;
    font-weight: 600;
}

.form-field a:hover {
    text-decoration: underline;
}

/* ─── ORDER SUMMARY ──────────────────────── */
.order-summary {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 4px rgba(1, 16, 31, 0.04);
    border: none;
    position: sticky;
    top: 140px;
}

.order-summary h3 {
    font-size: 18px;
    color: #01101F;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-bottom: 14px;
    border-bottom: 2px solid #eeeef2;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #4B5054;
    border-bottom: 1px solid #f4f4f8;
}

.summary-item span:first-child {
    font-weight: 500;
}

.summary-item span:last-child {
    text-align: right;
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: #eeeef2;
    margin: 8px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
    color: #01101F;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid #eeeef2;
}

.payment-section {
    margin: 20px 0;
}

.payment-section h4 {
    font-size: 15px;
    color: #01101F;
    margin-bottom: 4px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-section h4::after {
    content: '🔒 Secured with SSL';
    font-size: 12px;
    font-weight: 500;
    color: #76D750;
    margin-left: auto;
}

/* ─── STRIPE CARD ELEMENT ────────────────── */
.stripe-card-element-container {
    margin-top: 12px;
}

.stripe-card-element {
    background: #FAFBFC;
    border: 1.5px solid #dde2e8;
    border-radius: 10px;
    padding: 14px 14px;
    transition: all 0.2s;
    min-height: 46px;
}

.stripe-card-element:hover {
    border-color: #c5cad0;
    background: #fff;
}

.stripe-card-element.StripeElement--focus {
    border-color: #00A7E2;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 167, 226, 0.1);
}

.stripe-card-element.StripeElement--invalid {
    border-color: #FD5373;
    box-shadow: 0 0 0 3px rgba(253, 83, 115, 0.1);
}

.stripe-error {
    color: #FD5373;
    font-size: 13px;
    margin-top: 8px;
    min-height: 20px;
    font-weight: 500;
}

/* ─── PLACE ORDER / SUBMIT BUTTONS ───────── */
.place-order-btn {
    width: 100%;
    padding: 16px 36px;
    background: #00A7E2;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 14px rgba(0, 167, 226, 0.25);
    min-height: 52px;
}

.place-order-btn:hover {
    background: #0091c7;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 167, 226, 0.35);
}

.place-order-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    background: #00A7E2;
}

.submit-btn {
    padding: 16px 36px;
    background: #00A7E2;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif;
    min-width: 200px;
    box-shadow: 0 4px 14px rgba(0, 167, 226, 0.25);
}

.submit-btn:hover {
    background: #0091c7;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 167, 226, 0.35);
}

.quote-service-field {
    text-align: center;
    margin-top: 24px;
}

/* Legacy payment button */
.payment-btn {
    width: 100%;
    padding: 12px 20px;
    background: #fff;
    border: 1.5px solid #dde2e8;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif;
}

.payment-btn:hover {
    border-color: #00A7E2;
    color: #00A7E2;
}

/* ─── CONTACT BAR ────────────────────────── */
.contact-bar {
    background: linear-gradient(135deg, #01101F 0%, #0A2236 100%);
    color: #fff;
    padding: 20px 0;
}

.contact-bar-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-hours {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
}

.contact-phone {
    font-size: 22px;
    font-weight: 800;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1200px) {
    .services-selection-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .order-main {
        padding: 24px 12px 32px;
    }

    .order-container {
        padding: 0;
    }

    .services-selection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

    .order-title {
        font-size: 22px;
    }

    .progress-steps {
        gap: 0;
    }

    .progress-line {
        width: 20px;
    }

    .progress-step span:not(.step-circle) {
        display: none;
    }

    .contact-bar-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .form-section {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .order-summary {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .form-section-group {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .form-section-group .form-row {
        grid-template-columns: 1fr;
    }

    /* Calendar responsive */
    .inline-calendar {
        padding: 16px;
    }

    .calendar-header h4,
    .calendar-header .month-year {
        font-size: 15px;
    }

    .calendar-nav button,
    .calendar-header button:not(.month-year) {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .calendar-weekday,
    .calendar-day-header {
        font-size: 10px;
        padding: 6px 0;
    }

    .calendar-day {
        font-size: 12px;
    }

    .selected-date-display {
        font-size: 14px;
        padding: 10px 12px;
    }

    .weekend-note {
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .services-selection-grid {
        grid-template-columns: 1fr;
    }

    .service-selection-card {
        padding: 18px 16px;
    }

    .order-title {
        font-size: 20px;
    }
}

/* ─── MODAL STYLES ───────────────────────── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 16, 31, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: orderModalFadeIn 0.25s ease;
}

@keyframes orderModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-dialog {
    width: 90%;
    max-width: 500px;
    animation: orderModalSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes orderModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 4px 16px rgba(0, 0, 0, 0.08), 0 24px 60px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.modal-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid #eeeef2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 28px;
    width: 48px;
    height: 3px;
    background: #00A7E2;
    border-radius: 3px;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #01101F;
    letter-spacing: -0.02em;
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    color: #4B5054;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #01101F;
    transform: scale(1.05);
}

.modal-body {
    padding: 28px;
}

.modal-footer {
    padding: 20px 28px;
    border-top: 1px solid #eeeef2;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.modal-footer .btn-blue {
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 700;
    background: #00A7E2;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(0, 167, 226, 0.25);
    font-family: 'Nunito', sans-serif;
    letter-spacing: -0.01em;
}

.modal-footer .btn-blue:hover {
    background: #0091c7;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 167, 226, 0.35);
}

@media (max-width: 768px) {
    .modal-dialog {
        width: 95%;
        margin: 20px;
    }

    .modal-header h3 {
        font-size: 18px;
    }

    .modal-body {
        padding: 22px;
    }

    .modal-footer .btn-blue {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* ============================================
   SHARED: Pickup / Lookup Page Styles
   ============================================ */
.pickup-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.pickup-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    color: #01101F;
    margin-bottom: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.lookup-section {
    background: #fff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(1, 16, 31, 0.04);
    border: none;
    margin-bottom: 24px;
}

.lookup-section h2 {
    margin-bottom: 4px;
    color: #01101F;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lookup-section p {
    color: #4B5054;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.lookup-form {
    display: flex;
    gap: 14px;
    align-items: flex-end;
}

.lookup-form .form-group {
    flex: 1;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.lookup-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: #4B5054;
    font-size: 13px;
}

.lookup-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #dde2e8;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s;
    background: #FAFBFC;
    font-family: 'Nunito', sans-serif;
    color: #01101F;
    min-height: 46px;
}

.lookup-form input:focus {
    outline: none;
    border-color: #00A7E2;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 167, 226, 0.1);
}

.lookup-btn {
    padding: 14px 28px;
    background: #00A7E2;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 167, 226, 0.25);
    font-family: 'Nunito', sans-serif;
    min-height: 46px;
}

.lookup-btn:hover {
    background: #0091c7;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 167, 226, 0.35);
}

.lookup-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.order-details-section {
    background: #fff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(1, 16, 31, 0.04);
    border: none;
    margin-bottom: 24px;
    display: none;
}

.order-details-section.visible {
    display: block;
    animation: fadeUp 0.35s ease;
}

.order-info-card {
    background: rgba(0, 167, 226, 0.04);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(0, 167, 226, 0.1);
    margin-bottom: 24px;
}

.order-info-card h3 {
    margin: 0 0 16px 0;
    color: #00A7E2;
    font-size: 16px;
    font-weight: 700;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.order-info-item {
    display: flex;
    flex-direction: column;
}

.order-info-item .label {
    font-size: 11px;
    font-weight: 700;
    color: #4B5054;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.order-info-item .value {
    font-weight: 600;
    color: #01101F;
    font-size: 15px;
}

.pickup-form-section h3 {
    margin-bottom: 20px;
    color: #01101F;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ─── PRICING SUMMARY ────────────────────── */
.pricing-summary {
    background: #FAFBFC;
    padding: 20px 24px;
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid #eeeef2;
}

.pricing-summary h4 {
    margin: 0 0 14px 0;
    color: #01101F;
    font-size: 16px;
    font-weight: 700;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eeeef2;
    font-size: 14px;
    color: #4B5054;
}

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

.pricing-row.total {
    font-weight: 800;
    font-size: 17px;
    color: #01101F;
    padding-top: 14px;
    border-top: 2px solid #eeeef2;
    border-bottom: none;
    margin-top: 8px;
}

/* ─── TERMS CHECKBOX ─────────────────────── */
.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.terms-checkbox input {
    margin-top: 4px;
    accent-color: #00A7E2;
}

.terms-checkbox label {
    font-size: 14px;
    color: #4B5054;
    line-height: 1.5;
}

/* ─── BOOK PICKUP BUTTON ─────────────────── */
.book-pickup-btn {
    width: 100%;
    padding: 16px 36px;
    background: #00A7E2;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(0, 167, 226, 0.25);
    font-family: 'Nunito', sans-serif;
    letter-spacing: -0.01em;
    min-height: 52px;
}

.book-pickup-btn:hover {
    background: #0091c7;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 167, 226, 0.35);
}

.book-pickup-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* ─── SUCCESS / ERROR MESSAGES ───────────── */
.pickup-error-message {
    background: rgba(253, 83, 115, 0.04);
    border: 2px solid rgba(253, 83, 115, 0.15);
    color: #FD5373;
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    display: none;
    font-size: 14px;
    font-weight: 600;
}

.pickup-error-message.visible {
    display: block;
    animation: fadeUp 0.3s ease;
}

.pickup-success-message {
    background: rgba(118, 215, 80, 0.06);
    border: 2px solid rgba(118, 215, 80, 0.2);
    color: #16a34a;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    display: none;
}

.pickup-success-message.visible {
    display: block;
    animation: fadeUp 0.35s ease;
}

.pickup-success-message h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .lookup-form {
        flex-direction: column;
    }

    .order-info-grid {
        grid-template-columns: 1fr;
    }

    .pickup-container {
        padding: 24px 16px;
    }

    .lookup-section,
    .order-details-section {
        padding: 24px 20px;
    }
}

/* ─── LOADING OVERLAY ────────────────────── */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.loading-spinner-container {
    text-align: center;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #eeeef2;
    border-top: 4px solid #00A7E2;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

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

.loading-text {
    font-size: 15px;
    font-weight: 600;
    color: #01101F;
}

/* ═══════════════════════════════════════════════
   4-STEP FLOW STYLES
   ═══════════════════════════════════════════════ */

/* Page Header */
.order-page-header {
    text-align: center;
    margin-bottom: 8px;
}

.order-subtitle {
    font-size: 15px;
    color: #4B5054;
    margin-top: 4px;
    opacity: 0.7;
}

/* Step Content Card */
.step-content-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 1px 4px rgba(1, 16, 31, 0.04);
    animation: fadeUp 0.35s ease;
}

.step-section-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #01101F;
    margin-bottom: 4px;
}

.step-section-desc {
    font-size: 15px;
    color: #4B5054;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Step Navigation Bar */
.step-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.step-back-btn {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #4B5054;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 4px;
    transition: color 0.2s;
}

.step-back-btn:hover {
    color: #00A7E2;
}

.step-next-btn {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #00A7E2;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(0, 167, 226, 0.25);
    min-height: 52px;
}

.step-next-btn:hover {
    background: #0091c7;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 167, 226, 0.35);
}

.step-next-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.step-pay-btn {
    background: #00A7E2;
    min-width: 180px;
}

/* Order Summary Inline (step 3) */
.order-summary-inline {
    background: #FAFBFC;
    border-radius: 14px;
    padding: 20px 24px;
    border: 1px solid #eeeef2;
    margin-top: 24px;
}

.order-summary-title {
    font-weight: 700;
    font-size: 16px;
    color: #01101F;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eeeef2;
}

/* ─── STEP 4: CONFIRMATION ───────────────── */
.confirmation-header {
    text-align: center;
    margin-bottom: 32px;
}

.confirmation-icon {
    display: inline-block;
    animation: scaleIn 0.5s ease;
    margin-bottom: 16px;
}

/* Confirmation Card */
.confirm-card {
    background: #fff;
    border: 1px solid #eeeef2;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
}

.confirm-card-title {
    font-weight: 700;
    font-size: 16px;
    color: #01101F;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eeeef2;
}

.confirm-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #f4f4f8;
    gap: 16px;
    flex-wrap: wrap;
}

.confirm-label {
    color: #4B5054;
    font-weight: 500;
    min-width: 120px;
}

.confirm-row-total {
    border-bottom: none;
    font-weight: 700;
    font-size: 17px;
    color: #01101F;
    padding-top: 14px;
    border-top: 2px solid #eeeef2;
    margin-top: 8px;
}

/* Warning Card */
.warning-card {
    background: rgba(253, 83, 115, 0.04);
    border: 2px solid rgba(253, 83, 115, 0.15);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
}

.warning-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.warning-card-title {
    font-weight: 700;
    font-size: 16px;
    color: #FD5373;
}

.warning-card-desc {
    font-size: 14px;
    color: #4B5054;
    line-height: 1.6;
    margin-bottom: 16px;
}

.do-not-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
}

.do-not-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(253, 83, 115, 0.1);
    font-size: 13px;
    color: #4B5054;
    font-weight: 500;
}

.do-not-emoji {
    font-size: 22px;
    flex-shrink: 0;
}

/* Next Steps Card */
.next-steps-card {
    background: #fff;
    border: 1px solid #eeeef2;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
}

.next-step-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    font-size: 14px;
    color: #4B5054;
    line-height: 1.5;
}

.next-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 167, 226, 0.08);
    color: #00A7E2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

/* Trust Row */
.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #4B5054;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* Progress Steps - Completed state */
.progress-step.completed {
    color: #76D750;
    font-weight: 600;
}

.progress-step.completed .step-circle {
    background: #76D750;
    color: #fff;
    font-size: 14px;
}

.progress-line.done {
    background: #76D750;
}

@media (max-width: 768px) {
    .step-content-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .step-nav-bar {
        margin-top: 20px;
    }

    .step-next-btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .do-not-grid {
        grid-template-columns: 1fr;
    }

    .confirm-row {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .step-content-card {
        padding: 20px 16px;
    }
}
