/* ============================================================
   Contact Us page — Saral Groups
   ============================================================ */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url(../../static/assets/contact-us/contact-us.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact-us-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height, 150px));
    padding-top: var(--space-5, 3rem);
    padding-bottom: var(--space-7, 5rem);
    padding-left: var(--space-3, 1.5rem);
    padding-right: var(--space-3, 1.5rem);
}

.contat-us-container {
    background-color: #FFF;
    display: flex;
    justify-content: center;
    padding: var(--space-4, 2rem);
    gap: var(--space-4, 2rem);
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 1100px;
    width: 100%;
}

.contactUs {
    flex: 1;
}

.contactUs h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary, #13253c);
    font-family: var(--font-heading, "Geologica"), sans-serif;
}

.contactUs p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary, #31475b);
}

.mail-call {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1.5px solid #e2eaf1;
    padding: 12px 0;
    margin: 10px 0;
}

.mail, .call {
    display: flex;
    align-items: center;
}

.mail img, .call img {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.emal-content, .call-content {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.emal-content h6, .call-content h6 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary, #13253c);
}

.contactUs h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--text-primary, #13253c);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-icons img {
    width: 2.5rem;
    height: 2.5rem;
}

.contact-us-form {
    flex: 1;
}

.contact-us-form h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary, #13253c);
    font-family: var(--font-heading, "Geologica"), sans-serif;
}

.iframe-container h1 {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
}

.iframe-container iframe {
    width: 100%;
    max-width: 25rem;
    height: 20rem;
}

@media (max-width: 768px) {
    .contat-us-container {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .iframe-container iframe {
        width: 100%;
        max-width: 20rem;
    }
}

@media (max-width: 425px) {
    html, body {
        overflow: scroll;
    }

    .contact-us-section {
        padding-top: var(--space-4, 2rem);
    }

    .contat-us-container {
        padding: 1rem;
    }
}
