.contact-page {
    padding: 80px 0;
    animation: fadeInUp 1s ease forwards;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-form-area,
.contact-info-area {
    flex: 1 1 500px;
    min-width: 240px;
}

.contact-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--color-black);
    animation: fadeInUp 0.8s ease;
}

.contact-details p {
    margin-bottom: 12px;
    color: var(--color-secondary);
    line-height: 1.6;
}

.map-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    margin: 30px 0;
    width: 100%;
    max-width: 100%;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}


.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✅ Your original 1080px responsive style */
@media (max-width: 1080px) {
    .contact-title {
        font-size: 24px;
        text-align: center;
    }

    .map-wrapper {
        width: 100%;
    }

    .contact-details p {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* ✅ Your original 768px responsive style */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

/* ✅ Just fix iframe for tiny screens under 400px (including 320px, 280px, etc.) */
@media (max-width: 400px) {
    .map-wrapper iframe {
        height: 200px;
    }

    .contact-wrapper {
        padding: 0 10px;
    }

    .contact-title {
        font-size: 20px;
        text-align: center;
    }

    .social-icons img {
        width: 28px;
        height: 28px;
    }
}
