/**
 * Contact Page Styles
 */

.contact-page-wrapper {
    padding: 40px 0;
}

.contact-page-content {
    margin-bottom: 40px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin-top: 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(32, 70, 161, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #2046a1);
}

.contact-info-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.contact-info-content p {
    margin: 0;
    color: #666;
}

.contact-info-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-content a:hover {
    color: var(--primary-color, #2046a1);
}

/* Map Section */
.contact-map-section {
    margin-top: 40px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.google-map {
    position: relative;
    padding-bottom: 400px;
    height: 0;
    overflow: hidden;
}

.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .google-map {
        padding-bottom: 300px;
    }
    
    .contact-info-section {
        padding: 40px 0;
        margin-top: 40px;
    }
} 