/* ================= Main Code===================== */

.contact-section {
    padding: 40px 20px;
}

/* Card */
.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Title */
.contact-title {
    font-size: 22px;
    margin-bottom: 30px;
}

/* Content layout */
.contact-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Left info */
.contact-info {
    flex: 1;
    font-size: 18px;
    line-height: 1.8;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Map */
.contact-map {
    flex: 2;
}

.contact-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 10px;
}


/* Mobile */
@media (max-width: 675px) {
    
    .contact-content {
        flex-direction: column;   /* 🔥 THIS IS THE MAIN FIX */
    }

    .contact-info {
        width: 100%;
    }

    .contact-map {
        width: 100%;
        margin-top: 20px;  /* spacing between info & map */
    }
}