/* ============================================
   TESSERA AMORIS - REVOLUTIONARY UX DESIGN
   Modern, elegant, and delightful to use
   ============================================ */

/* ===== PHOTO STRATEGY CARDS ===== */
.photo-strategy-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.photo-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.photo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37 0%, #F4E4A6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
}

.photo-card:hover::before {
    opacity: 1;
}

.photo-card-icon {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1;
}

.photo-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a365d;
    margin: 0 0 12px 0;
}

.photo-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* ===== MODERN PHOTO UPLOAD ===== */
.photo-upload-modern {
    margin: 30px 0;
}

.upload-zone {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 3px dashed #cbd5e1;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.upload-zone:hover {
    border-color: #D4AF37;
    background: linear-gradient(135deg, #fffef8 0%, #ffffff 100%);
    transform: scale(1.01);
}

.upload-icon {
    width: 80px;
    height: 80px;
    color: #D4AF37;
    margin: 0 auto 24px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.upload-zone:hover .upload-icon {
    opacity: 1;
    transform: scale(1.1);
}

.upload-zone h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a365d;
    margin: 0 0 12px 0;
}

.upload-zone p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #64748b;
    margin: 0 0 24px 0;
}

.upload-button {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4A6 100%);
    color: #1a365d;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.upload-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.photo-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid #D4AF37;
    margin-top: 20px;
}

.photo-note strong {
    color: #1a365d;
}

/* ===== VERIFICATION BOX ===== */
.verification-section {
    margin: 40px 0;
}

.verification-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border: 2px solid #bae6fd;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.verification-icon {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
}

.verification-content {
    flex: 1;
}

.verification-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a365d;
    margin: 0 0 16px 0;
}

.verification-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #64748b;
    margin: 12px 0 0 0;
    line-height: 1.6;
}

/* ===== ELEGANT FORM LABELS ===== */
.form-label {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1a365d !important;
    margin-bottom: 8px !important;
    display: block !important;
    line-height: 1.4 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    border: none !important;
    background: transparent !important;
    padding-left: 0 !important;
    position: static !important;
}

.form-label::before,
.form-label::after {
    display: none !important;
}

/* Remove ALL colored borders from labels - ULTRA PRIORITY */
label,
label[for],
.form-label,
.form-group label,
label[for="legacy-vision"],
label[for="why-now"],
label[for="personal-growth"],
label[for="occupation"],
label[for="education"],
label[for="languages"] {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    border-color: transparent !important;
    border-width: 0 !important;
    border-style: none !important;
    box-shadow: none !important;
    background: transparent !important;
    outline: none !important;
}

.field-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 8px 0 16px 0;
    font-style: italic;
}

/* ===== SECTION HEADERS ===== */
.form-section h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #1a365d !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.2 !important;
}

.form-section > p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #64748b !important;
    margin: 0 0 32px 0 !important;
}

/* ===== TEXTAREAS WITH BETTER STYLING ===== */
.form-textarea {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #1e293b !important;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    transition: all 0.3s ease !important;
    resize: vertical !important;
}

.form-textarea:focus {
    outline: none !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
    background: #fffef8 !important;
}

.form-textarea::placeholder {
    color: #94a3b8 !important;
    font-style: italic !important;
}

/* ===== CHARACTER COUNTER STYLING ===== */
.character-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #64748b;
    text-align: right;
    margin-top: 8px;
    font-weight: 500;
}

.character-count span {
    color: #D4AF37;
    font-weight: 600;
}

/* ===== SELECT INPUTS ===== */
.form-select {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    color: #1e293b !important;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    transition: all 0.3s ease !important;
}

.form-select:focus {
    outline: none !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* ===== TEXT INPUTS ===== */
.form-input {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    color: #1e293b !important;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    transition: all 0.3s ease !important;
}

.form-input:focus {
    outline: none !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* ===== INSPIRATION BOXES ===== */
.inspiration-reference {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%) !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 32px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.15) !important;
}

.inspiration-text {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 22px !important;
    font-style: italic !important;
    line-height: 1.6 !important;
    color: #ffffff !important;
    margin: 0 0 12px 0 !important;
}

.inspiration-source {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #F4E4A6 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
}

/* ===== ENCOURAGEMENT NOTE ===== */
.encouragement-note {
    background: linear-gradient(135deg, #fffef8 0%, #ffffff 100%);
    border: 2px solid #F4E4A6;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 32px;
}

.encouragement-note p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #1a365d !important;
    margin: 0 !important;
}

/* ===== NAVIGATION BUTTONS ===== */
.form-navigation button {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 14px 32px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.form-navigation button[type="submit"],
.form-navigation button:not([type="button"]) {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4A6 100%) !important;
    color: #1a365d !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2) !important;
}

.form-navigation button[type="submit"]:hover,
.form-navigation button:not([type="button"]):hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .photo-strategy-guide {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .upload-zone {
        padding: 40px 24px;
    }
    
    .upload-icon {
        width: 60px;
        height: 60px;
    }
    
    .upload-zone h3 {
        font-size: 24px;
    }
    
    .verification-box {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    
    .form-section h2 {
        font-size: 28px !important;
    }
    
    .form-label {
        font-size: 18px !important;
    }
}

/* ===== HIDE PROGRESS STEP BOXES (FIX FOR STRANGE BOXES) ===== */
.progress-step {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.step-number {
    background: #e2e8f0 !important;
    color: #64748b !important;
    border: 2px solid #e2e8f0 !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4A6 100%) !important;
    color: #1a365d !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
}

.progress-step.completed .step-number {
    background: #1a365d !important;
    color: #ffffff !important;
    border-color: #1a365d !important;
}

.step-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #64748b !important;
    margin-top: 8px !important;
}

.progress-step.active .step-title {
    color: #1a365d !important;
    font-weight: 600 !important;
}
