/* ===== CONTACT PAGE CSS ===== */

/* General body & section spacing */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
}

section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Hero headings */
section.text-center h1 {
    color: #d32f2f;
    font-weight: 700;
}

section.text-center p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Details Boxes */
.contact-box {
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 12px;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-box i {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form .form-label {
    font-weight: 600;
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #d32f2f;
    box-shadow: 0 0 5px rgba(211, 47, 47, 0.3);
}

.contact-form button {
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: scale(1.05);
}

/* Map */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 12px;
}

/* AOS animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}
[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-box {
        padding: 1.5rem;
    }
    .map-responsive {
        padding-bottom: 50%;
    }
}
