/* Contact Page Styles */

.contact-hero {
    background: #ffffff;
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.hero-content p {
    font-size: 1.3rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 6rem 0;
    background: #F9FAFB;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1F2937;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4B5563;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #D1D5DB;
    background: #F9FAFB;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    color: #1F2937;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    border-color: #3b82f6;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.method-content p {
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.method-content small {
    color: #6B7280;
    font-size: 0.9rem;
}

.social-section {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

.social-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.social-section p {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    color: #4B5563;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
    color: #3b82f6;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
}

.social-link i {
    font-size: 1.5rem;
}

.social-link span {
    font-weight: 600;
}

.faq-section {
    padding: 6rem 0;
    background: #ffffff;
}

.faq-section .section-title {
    color: #111827;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #D1D5DB;
}

.faq-item.active {
    border-color: #3b82f6;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: #1F2937;
    margin: 0;
}

.faq-question i {
    color: #9CA3AF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #3b82f6;
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.contact-cta {
    padding: 6rem 0;
    background: #F9FAFB;
    text-align: center;
}

.contact-cta .cta-content h2 {
    color: #111827;
}

.contact-cta .cta-content p {
    color: #6B7280;
}


/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        padding: 1rem;
    }
} 