/* Contact Page Styles */

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5%;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #7a0b16, #55080f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(122, 11, 22, 0.3);
}

.contact-card h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-card p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-card a {
    color: #7a0b16;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.contact-card a:hover {
    color: #55080f;
    text-decoration: underline;
}

/* Social Media Card */
.social-media-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #7a0b16, #55080f);
    color: #ffffff;
}

.social-media-card .contact-icon {
    background: rgba(255, 255, 255, 0.2);
}

.social-media-card h4 {
    color: #ffffff;
}

.social-media-card p {
    color: rgba(255, 255, 255, 0.9);
}

.social-media-card a {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 6px;
    margin: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.social-media-card a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    text-decoration: none;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

/* Map Section */
.map-section {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.map-section h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Info Section */
.contact-info-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-info-section h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-content {
        padding: 30px 4%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-media-card {
        grid-column: 1;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-card h4 {
        font-size: 20px;
    }
    
    .map-section {
        padding: 20px;
    }
    
    .map-section h3 {
        font-size: 24px;
    }
    
    .contact-info-section {
        padding: 25px 20px;
    }
    
    .contact-info-section h3 {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .contact-content {
        padding: 20px 3%;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .contact-card h4 {
        font-size: 18px;
    }
    
    .contact-card p {
        font-size: 14px;
    }
    
    .map-section {
        padding: 15px;
    }
    
    .map-section h3 {
        font-size: 20px;
    }
    
    .contact-info-section {
        padding: 20px 15px;
    }
    
    .contact-info-section h3 {
        font-size: 20px;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-media-card a {
        width: 100%;
        text-align: center;
    }
}



