/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1F27C4 0%, #2E33C7 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.hero-description {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
    background: #ffffff;
}

/* Locations Section */
.locations-section { margin-bottom: 48px; }
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.location-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.location-image { width: 100%; height: 180px; overflow: hidden; }
.location-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.location-content { padding: 16px; }
.location-title { font-size: 18px; font-weight: 700; color: #1C163C; margin: 0 0 6px 0; }
.location-address { font-size: 14px; color: rgba(28,22,60,0.7); margin: 0 0 12px 0; }
.location-actions { display: flex; gap: 12px; }
.location-actions .btn { flex: 1; height: 40px; }

.contact-info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: start;
}


/* Contact Form */
.contact-form-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    width: 100%;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #1C163C;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.form-description {
    font-size: 16px;
    color: rgba(28, 22, 60, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-form {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.form-row .form-group {
    margin-bottom: 0;
}

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

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #1C163C;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.form-input,
.form-select,
.form-textarea {
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
    width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1F27C4;
    box-shadow: 0 0 0 3px rgba(31, 39, 196, 0.1);
}

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

.form-submit {
    background: #1F27C4;
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 8px;
    width: 100%;
}

.form-submit:hover {
    background: #161C99;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 39, 196, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #FAF9FF;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-title {
    font-size: 40px;
    font-weight: 700;
    color: #1C163C;
    text-align: center;
    margin-bottom: 48px;
    font-family: 'Inter', sans-serif;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #1C163C;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.faq-answer {
    font-size: 15px;
    color: rgba(28, 22, 60, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .contact-card {
        flex: 1;
        min-width: 280px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .contact-info {
        padding: 60px 0;
    }
    
    .contact-cards {
        flex-direction: column;
    }
    
    .contact-card {
        min-width: auto;
    }
    
    .contact-form-section {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .contact-info {
        padding: 40px 0;
    }
    
    .contact-form-section {
        padding: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-item {
        padding: 24px;
    }
}
