/* ========================================
   NEW REQUEST TUTOR FORM - CLEAN DESIGN
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: #F8FAFC;
    color: #0F172A;
    min-height: 100vh;
}

/* Navigation */
.form-nav {
    background: white;
    padding: 20px 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
}

.logo p {
    font-size: 10px;
    letter-spacing: 2px;
    color: #D4AF37;
}

.back-home {
    color: #0F172A;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.back-home:hover {
    color: #D4AF37;
}

/* Form Container */
.form-container {
    max-width: 800px;
    margin: 60px auto;
    background: white;
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

/* Header Section */
.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header .badge {
    display: inline-block;
    background: #F8FAFC;
    color: #D4AF37;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.form-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Feature Icons */
.form-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0 40px;
    flex-wrap: wrap;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #0F172A;
    font-weight: 500;
}

.form-feature .check {
    color: #D4AF37;
    font-weight: 700;
    font-size: 16px;
}

/* Form Fields */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 6px;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 15px;
    color: #0F172A;
    background: white;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: #94A3B8;
    font-size: 14px;
}

/* Title selector row */
.title-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 5px;
}

.title-option {
    padding: 8px 20px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    transition: all 0.3s;
}

.title-option:hover {
    border-color: #D4AF37;
}

.title-option.active {
    background: #D4AF37;
    color: white;
    border-color: #D4AF37;
}

/* Continue Button */
.form-actions {
    margin-top: 35px;
    display: flex;
    justify-content: flex-end;
}

.btn-continue {
    background: #D4AF37;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-continue:hover {
    background: #0F172A;
    transform: translateY(-2px);
}

/* Privacy Notice */
.form-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #F1F5F9;
}

.form-footer p {
    font-size: 13px;
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-footer .lock-icon {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .form-container {
        margin: 30px 20px;
        padding: 30px 25px;
    }
    
    .form-header h1 {
        font-size: 26px;
    }
    
    .form-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .form-nav {
        padding: 15px 20px;
    }
    
    .title-selector {
        flex-wrap: wrap;
    }
    
    .form-actions {
        justify-content: center;
    }
    
    .btn-continue {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   ADDITIONAL STYLES FOR STEP 2 & 3
   ======================================== */

/* Child cards in step 2 */
.child-card {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #D4AF37;
}

/* Add child button hover */
.btn-add-child:hover {
    background: rgba(212, 175, 55, 0.05) !important;
    border-color: #D4AF37 !important;
}

/* Subject cards in step 3 */
.subject-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #E2E8F0;
}

/* Remove child button */
.remove-child-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s;
}

.remove-child-btn:hover {
    background: #c0392b;
}

/* Remove subject button */
.remove-subject-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    transition: background 0.3s;
}

.remove-subject-btn:hover {
    background: #c0392b;
}

/* Add subject button hover */
.add-subject-btn:hover {
    background: rgba(212, 175, 55, 0.05) !important;
}

/* Form group spacing */
.form-group {
    margin-bottom: 16px;
}

/* Textarea styling */
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s;
}

textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Progress indicator */
.progress-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    padding: 15px 0;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #94A3B8;
}

.progress-step .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    color: white;
}

.progress-step.active .step-number {
    background: #D4AF37;
}

.progress-step.completed .step-number {
    background: #0F172A;
}

.progress-step.completed {
    color: #0F172A;
}

.progress-step.active {
    color: #D4AF37;
}