/* Contact Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0A2540 0%, #1a365d 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    color: #0A2540;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Details */
.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #4DA8DA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-text h3 {
    font-size: 1.3rem;
    color: #0A2540;
    margin-bottom: 5px;
}

/* Social Links */
.social-links-large h3 {
    font-size: 1.3rem;
    color: #0A2540;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #0A2540;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-right: 25px;
    margin-top: 10px;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #4DA8DA;
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form h2 {
    font-size: 2rem;
    color: #0A2540;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #0A2540;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4DA8DA;
    box-shadow: 0 0 0 3px rgba(77, 168, 218, 0.2);
}

.btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.map-placeholder {
    background: white;
    height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-placeholder i {
    font-size: 4rem;
    color: #4DA8DA;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
        margin-top: 70px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-content {
        gap: 40px;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .contact-item {
        flex-direction: column;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .map-placeholder {
        height: 300px;
    }

    .map-placeholder i {
        font-size: 3rem;
    }
}