/* Multi-Step Form Styles - Modern & Professional */

/* Form Container - Enhanced Layout */
.multistep-form-card {
    background: #ffffff;
    border: 2px solid rgba(214, 0, 156, 0.12);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(214, 0, 156, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 700px;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.multistep-form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(214, 0, 156, 0.12);
}

.multistep-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d6009c 0%, #ef97c0 100%);
}

/* Header */
.multistep-header {
    margin-bottom: 2rem;
    text-align: center;
    flex-shrink: 0;
}

.multistep-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.multistep-subtitle {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Progress Container */
.progress-container {
    margin-bottom: 2.5rem;
    flex-shrink: 0;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(214, 0, 156, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d6009c 0%, #ef97c0 100%);
    width: 25%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Step Indicators */
.step-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.step-indicator.active {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--light-pink) 100%);
    color: white;
    border-color: rgba(214, 0, 156, 0.3);
    box-shadow: 0 4px 12px rgba(214, 0, 156, 0.3);
}

.step-indicator.completed {
    background: #10b981;
    color: white;
    border-color: rgba(16, 185, 129, 0.3);
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Form Steps */
.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-fields {
    margin-bottom: 2rem;
    flex: 1;
    overflow-y: auto;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e5e5e5;
    border-radius: 14px;
    font-size: 1rem;
    color: var(--text-dark);
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px rgba(214, 0, 156, 0.1), 0 6px 16px rgba(214, 0, 156, 0.15);
    transform: translateY(-2px);
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
    font-family: inherit;
    line-height: 1.6;
}

/* Input Icons */
.input-icon {
    position: relative;
}

.input-icon .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--primary-pink);
    opacity: 0.9;
    z-index: 1;
}

.input-icon input,
.input-icon select {
    padding-left: 2.4rem;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(214, 0, 156, 0.08);
    flex-shrink: 0;
}

.btn-next,
.btn-back,
.btn-submit {
    padding: 1rem 2rem;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-next {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--light-pink) 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(214, 0, 156, 0.3);
    margin-left: auto;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(214, 0, 156, 0.4);
}

.btn-back {
    background: #f8f9fa;
    color: var(--text-dark);
    border: 2px solid #e5e5e5;
}

.btn-back:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.btn-submit {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    margin-left: auto;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem 2rem;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-message h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-pink);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 0, 156, 0.3);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(214, 0, 156, 0.03) 0%, rgba(239, 151, 192, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(214, 0, 156, 0.08);
    flex-shrink: 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 500;
}

.trust-badge svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.2));
}

/* Phone Visual - Removed */
.contact-phone-side {
    display: none;
}

/* Contact Hero Grid - Form Only */
.contact-hero-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .multistep-form-card {
        padding: 2rem;
        border-radius: 20px;
        width: 100%;
        max-width: none;
        min-height: auto;
    }
    
    .contact-hero-grid {
        padding: 1rem 0;
    }
    
    .multistep-title {
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-next,
    .btn-back,
    .btn-submit {
        width: 100%;
        margin-left: 0;
    }
    
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-side {
        order: 1;
    }
    
    .contact-phone-side {
        order: 2;
    }
    
    .step-indicators {
        gap: 0.75rem;
    }
    
    .step-indicator {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .multistep-form-card {
        padding: 1.5rem;
    }
    
    .multistep-title {
        font-size: 1.3rem;
    }
    
    .step-indicators {
        gap: 0.5rem;
    }
    
    .step-indicator {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
}
