/* Contact Page Styles */

/* Contact Information Grid */
.contact-info-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom-color: #E60012;
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(230,0,18,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    background: #E60012;
}

.contact-card .contact-icon {
    font-size: 32px;
    color: #E60012;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    color: #fff;
}

.contact-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-detail a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail a:hover {
    color: #E60012;
}

/* Map Section */
.contact-map-section {
    width: 100%;
    height: 500px;
    background-color: #eee;
    position: relative;
    margin-bottom: 0;
}

.contact-map-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Form Section Placeholder (If needed) */
.contact-form-section {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map-section {
        height: 350px;
    }
}
