/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-section .section-header h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4a77a0, #499b97);
}

.contact-section .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section .contact-container {
    display: flex;
    gap: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.contact-section .contact-info {
    flex: 1;
    padding: 2.5rem;
    background: white;
}

.contact-section .contact-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-section .contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(73, 119, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: #4a77a0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-section .contact-details h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-section .contact-details a,
.contact-section .contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-section .contact-details a:hover {
    color: #4a77a0;
    text-decoration: none;
}

.contact-section .contact-item:hover .contact-icon {
    background: #4a77a0;
    color: white;
    transform: translateY(-5px);
}

.contact-section .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.contact-section .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(73, 119, 160, 0.1);
    color: #4a77a0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-section .social-icon:hover {
    background: #4a77a0;
    color: white;
    transform: translateY(-3px);
}

.contact-section .map-container {
    flex: 1;
    min-height: 500px;
}

.contact-section .map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .contact-section .contact-container {
        flex-direction: column;
    }
    
    .contact-section .map-container {
        min-height: 400px;
    }
    
    .contact-section .map-container iframe {
        min-height: 400px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-section .section-header p {
        font-size: 1rem;
    }
    
    .contact-section .contact-info {
        padding: 1.5rem;
    }
    
    .contact-section .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-section .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-section .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-section .contact-details a,
    .contact-section .contact-details p {
        font-size: 0.95rem;
    }
    
    .contact-section .map-container {
        min-height: 350px;
    }
    
    .contact-section .map-container iframe {
        min-height: 350px;
    }
}

@media (max-width: 575.98px) {
    .contact-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-section .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-section .contact-icon {
        margin: 0 auto 1rem;
    }
    
    .contact-section .social-links {
        justify-content: center;
    }
}
