/* --- FORM PAGE STYLES --- */

/* Full page background */
body.form-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* Back button with arrow icon */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-back:hover svg {
    transform: translateX(-3px);
}

.form-section {
    padding: 6rem 5% 4rem;
    min-height: calc(100vh - 200px);
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Info Card */
.form-info-card {
    background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
    border-radius: 24px;
    padding: 2.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.form-info-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-info-card .form-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
}

.form-info-card .form-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.form-info-card h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.form-info-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Progress Steps Left Card */
.form-progress-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.progress-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.step-number-left {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.progress-step-left.active .step-number-left,
.progress-step-left.completed .step-number-left {
    background: white;
    color: #1a237e;
}

.progress-step-left.completed .step-number-left {
    background: #4caf50;
    color: white;
}

.step-label-left {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-step-left.active .step-label-left {
    color: white;
    font-weight: 600;
}

.progress-step-left.completed .step-label-left {
    color: rgba(255, 255, 255, 0.9);
}

.progress-line-left {
    width: 3px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
    transition: background 0.3s ease;
}

.progress-line-left.completed {
    background: #4caf50;
}

/* Info Footer */
.form-info-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.info-badge svg {
    width: 20px;
    height: 20px;
    color: #90caf9;
}

.form-container {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #1a237e;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.form-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.form-header h1 {
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

/* Progress Steps */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

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

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
    color: white;
}

.progress-step.completed .step-number {
    background: #4caf50;
}

.step-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.progress-step.active .step-label {
    color: #1a237e;
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin: 0 1rem;
    margin-bottom: 1.5rem;
    max-width: 100px;
    transition: background 0.3s ease;
}

.progress-line.completed {
    background: #4caf50;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.step-title {
    font-size: 1.5rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

/* Form Groups */
.form-row {
    margin-bottom: 1.5rem;
}

.form-row.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.required {
    color: #c62828;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    height: 52px;
    box-sizing: border-box;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select:invalid,
.form-group select option[value=""] {
    color: #999;
}

.form-group select option {
    color: #333;
}

.form-group input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

/* Date placeholder styling */
.form-group input[type="date"]:not(:focus):not(.has-value) {
    color: #999;
}

.form-group input[type="date"].has-value {
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a237e;
    background: white;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #c62828;
    background: #fff5f5;
}

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

.error-message {
    font-size: 0.8rem;
    color: #c62828;
    margin-top: 0.3rem;
    display: none;
}

.form-group input.error + .error-message,
.form-group select.error + .error-message {
    display: block;
}

/* Service Card Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.service-card-option {
    cursor: pointer;
}

.service-card-option input {
    display: none;
}

.service-card-content {
    padding: 1.5rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    background: #fafafa;
}

.service-card-option input:checked + .service-card-content {
    border-color: #1a237e;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.05) 0%, rgba(48, 63, 159, 0.1) 100%);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.15);
}

.service-card-content:hover {
    border-color: #1a237e;
    transform: translateY(-2px);
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.service-card-content h4 {
    font-size: 0.95rem;
    color: #1a237e;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.service-card-content p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-option input {
    width: 20px;
    height: 20px;
    accent-color: #1a237e;
    cursor: pointer;
}

.radio-label {
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
}

/* Time Slots Grid */
.time-slots-group {
    width: 100%;
}

/* Period Tabs */
.time-period-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.period-tab {
    padding: 0.6rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    background: #fafafa;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.period-tab:hover {
    border-color: #1a237e;
    color: #1a237e;
    background: #f0f1ff;
}

.period-tab.active {
    background: #1a237e;
    border-color: #1a237e;
    color: white;
}

/* Time Slots Container */
.time-slots-container {
}

.time-period {
    display: none;
}

.time-period.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.time-slot {
    padding: 0.5rem 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 70px;
    text-align: center;
}

.time-slot:hover {
    border-color: #1a237e;
    background: #f0f1ff;
    color: #1a237e;
}

.time-slot.selected {
    background: #1a237e;
    border-color: #1a237e;
    color: white;
}

.time-slot.disabled {
    background: #f0f0f0;
    border-color: #e0e0e0;
    color: #bbb;
    cursor: not-allowed;
    text-decoration: line-through;
}

.time-slot.disabled:hover {
    background: #f0f0f0;
    border-color: #e0e0e0;
    color: #bbb;
}

.time-slot.booked {
    background: #ffebee;
    border-color: #ef9a9a;
    color: #c62828;
    text-decoration: line-through;
}

.time-slot.booked:hover {
    background: #ffebee;
    border-color: #ef9a9a;
    color: #c62828;
}

.time-slots-group.error .time-slots {
    border: 2px solid #c62828;
    border-radius: 12px;
    padding: 0.5rem;
    background: #fff5f5;
}

/* Checkbox Group */
.checkbox-group {
    margin-top: 1rem;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-option input {
    width: 20px;
    height: 20px;
    min-width: 20px;
    accent-color: #1a237e;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label a {
    color: #1a237e;
    text-decoration: underline;
}

/* Appointment Summary */
.appointment-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

.appointment-summary h3 {
    font-size: 1.1rem;
    color: #1a237e;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.summary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.summary-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.summary-value {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.btn-prev,
.btn-next,
.btn-submit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-prev {
    background: white;
    color: #c62828;
    border: 2px solid #c62828;
}

.btn-prev svg {
    transition: transform 0.3s ease;
}

.btn-prev:hover {
    background: #c62828;
    color: white;
}

.btn-prev:hover svg {
    transform: translateX(-4px);
}

.btn-next {
    background: white;
    color: #1a237e;
    border: 2px solid #1a237e;
    margin-left: auto;
}

.btn-next svg {
    transition: transform 0.3s ease;
}

.btn-next:hover {
    background: #1a237e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.btn-next:hover svg {
    transform: translateX(4px);
}

.btn-submit {
    background: white;
    color: #4caf50;
    border: 2px solid #4caf50;
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-submit:hover svg {
    transform: scale(1.1);
}

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

.btn-submit .spinner {
    width: 20px;
    height: 20px;
    animation: none;
}

.btn-prev svg,
.btn-next svg,
.btn-submit svg {
    width: 20px;
    height: 20px;
}

/* Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    color: #1a237e;
    margin-bottom: 1.2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.sidebar-item svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: #1a237e;
}

.sidebar-item strong {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.2rem;
}

.sidebar-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
    color: white;
}

.sidebar-card.highlight h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn svg {
    width: 22px;
    height: 22px;
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-icon.success {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.modal-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.modal-content h2 {
    font-size: 1.8rem;
    color: #1a237e;
    margin-bottom: 1rem;
}

.modal-content > p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.modal-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.modal-details p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-modal {
    display: block;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-modal:not(.secondary) {
    background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
    color: white;
}

.btn-modal:not(.secondary):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.btn-modal.secondary {
    background: #f0f0f0;
    color: #666;
}

.btn-modal.secondary:hover {
    background: #e0e0e0;
}

/* Responsive */
@media (max-width: 1024px) {
    .form-section {
        grid-template-columns: 1fr;
        padding: 5rem 5% 3rem;
    }

    .form-info-card {
        position: static;
        padding: 2rem;
    }

    .form-info-card h1 {
        font-size: 1.75rem;
    }

    .form-progress-left {
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }

    .progress-step-left {
        flex: 1;
    }

    .progress-line-left {
        width: 60px;
        height: 3px;
        margin: 0 0.5rem;
        align-self: flex-start;
        margin-top: 21px;
    }

    .form-info-footer {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .info-badge {
        flex: 1;
        justify-content: center;
    }

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

    .service-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .form-section {
        padding: 4rem 4% 2rem;
    }

    .form-info-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .form-info-card .form-icon {
        width: 60px;
        height: 60px;
    }

    .form-info-card .form-icon svg {
        width: 30px;
        height: 30px;
    }

    .form-info-card h1 {
        font-size: 1.5rem;
    }

    .form-info-card > p {
        font-size: 0.9rem;
    }

    .form-progress-left {
        flex-direction: row;
        margin-bottom: 1.5rem;
    }

    .step-number-left {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-label-left {
        font-size: 0.8rem;
    }

    .progress-line-left {
        width: 40px;
        height: 3px;
        margin-top: 17px;
    }

    .form-info-footer {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-badge {
        justify-content: flex-start;
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }

    .form-container {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .form-header h1 {
        font-size: 1.8rem;
    }

    .form-icon {
        width: 60px;
        height: 60px;
    }

    .form-icon svg {
        width: 30px;
        height: 30px;
    }

    .form-progress {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .progress-line {
        display: none;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

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

    .service-options {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .service-card-content {
        padding: 1rem 0.75rem;
    }

    .service-card-icon {
        width: 40px;
        height: 40px;
    }

    .service-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-card-content h4 {
        font-size: 0.85rem;
    }

    .service-card-content p {
        font-size: 0.7rem;
    }

    .summary-content {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .btn-prev {
        order: 2;
    }

    .btn-next,
    .btn-submit {
        order: 1;
    }

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

    .sidebar-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 3.5rem 3% 1.5rem;
    }

    .form-info-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .form-info-card .form-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .form-info-card .form-icon svg {
        width: 24px;
        height: 24px;
    }

    .form-info-card h1 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .form-info-header p {
        font-size: 0.85rem;
    }

    .form-info-header {
        margin-bottom: 1.5rem;
    }

    .form-progress-left {
        margin-bottom: 1.25rem;
    }

    .step-number-left {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .step-label-left {
        font-size: 0.7rem;
    }

    .progress-line-left {
        width: 30px;
        margin-top: 15px;
    }

    .form-info-footer {
        padding-top: 1rem;
    }

    .info-badge {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }

    .info-badge svg {
        width: 18px;
        height: 18px;
    }

    .form-container {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .form-header h1 {
        font-size: 1.5rem;
    }

    .form-header p {
        font-size: 0.9rem;
    }

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

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 16px; /* Minimum 16px to prevent zoom on iOS/mobile */
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .service-card-content {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        text-align: left;
    }

    .service-card-icon {
        margin: 0;
        min-width: 40px;
    }

    .service-card-content h4,
    .service-card-content p {
        margin: 0;
    }

    .appointment-summary {
        padding: 1rem;
    }

    .time-slot {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 50px;
    }

    .period-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .period-label {
        font-size: 0.75rem;
    }

    .btn-prev,
    .btn-next,
    .btn-submit {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }
}
