

/* css/contact.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

:root {
    --primary: #2563eb;
    --secondary: #1e293b;
    --light: #ffffff;
    --gray: #64748b;
    --gray-light: #f1f5f9;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    background: var(--light);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero {
    background: #FD1D1D;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.contact-section {
    padding: 70px 0;
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    padding: 40px 30px;
    border-radius: 16px;
    color: white;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.4rem;
    width: 28px;
    margin-top: 3px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.info-item p {
    opacity: 0.9;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    background: var(--primary);
    color: white;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.faq-contact-section {
    padding: 70px 0;
    background: var(--gray-light);
}

.faq-contact-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-card {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-card h4 {
    color: #FD1D1D;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-card p {
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.5rem;
    }
}