/* Contact Page Enhancement Styles */

/* Enhanced Contact Info Cards */
.contact-info-enhanced {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(106, 71, 237, 0.1);
    border: 1px solid rgba(106, 71, 237, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-info-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6A47ED, #8B5CF6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info-enhanced:hover::before {
    transform: scaleX(1);
}

.contact-info-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(106, 71, 237, 0.2);
    border-color: #6A47ED;
}

.contact-info-enhanced .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6A47ED, #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-enhanced .icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B5CF6, #6A47ED);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.contact-info-enhanced:hover .icon::before {
    transform: scale(1);
}

.contact-info-enhanced .icon i {
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 2;
}

.contact-info-enhanced .content h4 {
    color: #2d3748;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-enhanced .content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info-enhanced .content .contact-link {
    color: #6A47ED;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-enhanced .content .contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6A47ED;
    transition: width 0.3s ease;
}

.contact-info-enhanced .content .contact-link:hover::after {
    width: 100%;
}

/* Quick Contact Stats */
.contact-stats {
    background: linear-gradient(135deg, #6A47ED, #8B5CF6);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.contact-stats h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Contact Form */
.contact-form-enhanced {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideInRight 0.5s ease;
}

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

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    color: #2d3748;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.step.active {
    background: #6A47ED;
    color: white;
}

.step.completed {
    background: #10b981;
    color: white;
}

.step-line {
    width: 60px;
    height: 2px;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

.step-line.completed {
    background: #10b981;
}

.form-group-enhanced {
    margin-bottom: 25px;
    position: relative;
}

.form-group-enhanced label {
    display: block;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input-enhanced {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

.form-input-enhanced:focus {
    outline: none;
    border-color: #6A47ED;
    box-shadow: 0 0 0 3px rgba(106, 71, 237, 0.1);
    transform: translateY(-2px);
}

.form-input-enhanced.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input-enhanced.success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.success-message {
    color: #10b981;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

/* Service Selection */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.service-option {
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.service-option:hover {
    border-color: #6A47ED;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(106, 71, 237, 0.15);
}

.service-option.selected {
    border-color: #6A47ED;
    background: linear-gradient(135deg, rgba(106, 71, 237, 0.1), rgba(139, 92, 246, 0.1));
}

.service-option i {
    font-size: 28px;
    color: #6A47ED;
    margin-bottom: 10px;
}

.service-option h5 {
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Budget Range Slider */
.budget-slider {
    margin: 20px 0;
}

.budget-range {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    appearance: none;
}

.budget-range::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #6A47ED;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(106, 71, 237, 0.3);
}

.budget-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #6A47ED;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(106, 71, 237, 0.3);
}

.budget-display {
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #6A47ED;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: between;
    gap: 15px;
    margin-top: 30px;
}

.btn-prev, .btn-next, .btn-submit {
    padding: 15px 30px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-prev {
    background: #e2e8f0;
    color: #666;
}

.btn-prev:hover {
    background: #cbd5e1;
    transform: translateY(-2px);
}

.btn-next, .btn-submit {
    background: linear-gradient(135deg, #6A47ED, #8B5CF6);
    color: white;
    margin-left: auto;
}

.btn-next:hover, .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(106, 71, 237, 0.3);
}

/* Success Animation */
.form-success {
    text-align: center;
    padding: 50px 20px;
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.contact-method {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6A47ED, #8B5CF6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 71, 237, 0.15);
}

.contact-method .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(106, 71, 237, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-method .icon i {
    font-size: 24px;
    color: #6A47ED;
}

.contact-method h4 {
    color: #2d3748;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-method p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-method .contact-link {
    color: #6A47ED;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #6A47ED;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    background: transparent;
}

.contact-method .contact-link:hover {
    background: #6A47ED;
    color: white;
    transform: translateY(-2px);
}

/* Enhanced Map Section */
.map-enhanced {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-width: 280px;
}

.map-overlay h5 {
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-overlay p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.map-overlay .directions-btn {
    background: #6A47ED;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.map-overlay .directions-btn:hover {
    background: #5a38d3;
    transform: translateY(-2px);
}

/* FAQ Section */
.contact-faq {
    margin-top: 60px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: between;
    align-items: center;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h5 {
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
}

.faq-question .toggle-icon {
    color: #6A47ED;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer-content {
    padding: 20px 25px;
    background: #f8f9fa;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Response Time Indicator */
.response-time {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-align: center;
    margin: 30px 0;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-info-enhanced {
        padding: 30px 20px;
    }
    
    .contact-form-enhanced {
        padding: 30px 20px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .btn-next, .btn-submit {
        margin-left: 0;
    }
    
    .map-overlay {
        position: relative;
        margin-bottom: 20px;
        top: 0;
        left: 0;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        padding: 20px 15px;
    }
    
    .step-indicator {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step-line {
        display: none;
    }
} 