/* =====================================================
   CONTACT.CSS - Contact Us Page Styles
   Padmashri Manibhai Desai College Website
   ===================================================== */

/* ===== TOP IMAGE ===== */
.top-image {
    max-width: var(--max-width-md);
    margin: 0 auto 40px;
    padding: 0 var(--space-lg);
}

.top-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ===== CONTACT INFO + MAP ===== */
.contact-info-map {
    padding: var(--space-lg) var(--space-lg) var(--space-3xl);
}

.contact-wrapper {
    max-width: var(--max-width-md);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT SIDE */
.contact-left {
    font-size: var(--fs-base);
    line-height: 1.7;
}

.contact-left .intro {
    margin-bottom: 25px;
}

.contact-left h1 {
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.contact-left h3 {
    margin-top: 22px;
    margin-bottom: 8px;
    font-size: var(--fs-lg);
    font-weight: bold;
    color: var(--text-heading);
}

.contact-left i {
    margin-right: 8px;
    color: var(--color-primary);
}

.contact-left p {
    margin-bottom: var(--space-sm);
}

/* RIGHT MAP */
.contact-right iframe {
    width: 100%;
    height: 430px;
    border: none;
    border-radius: var(--radius-lg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .top-image img {
        height: 240px;
    }

    .contact-right iframe {
        height: 300px;
    }
}