/*
 * Page     : Contact Us
 * File     : css/desktop/pages/pagecontact.css
 * Loaded by: page-contact-us.php (mobile + desktop)
 *
 * Component CSS (inputs, textarea, buttons) is handled by
 * np_m_register_forms() / np_d_register_forms() — not repeated here.
 */

/* ══════════════════════════════════════════
   SECTION BACKGROUND
   ══════════════════════════════════════════ */
.orange-section-bg {
    background: #fbf9fa;
}

/* ══════════════════════════════════════════
   SECTION HEADINGS
   ══════════════════════════════════════════ */
.popular-puja-h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--np-text-dark, #3E2723);
}

p.section_tag_p {
    width: 60%;
    margin: 0 auto;
    color: var(--np-text-mid, #6B5B4F);
    font-size: 15px;
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   CONTACT FORM WRAPPER
   ══════════════════════════════════════════ */
.ce-contact-wrapper {
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid #fed7aa;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

span#captchaCode {
    padding: 10px;
}

/* ══════════════════════════════════════════
   MAP IFRAME
   ══════════════════════════════════════════ */
.ce-map-section iframe {
    width: 100%;
    max-width: 100%;
    height: 400px;
    border-radius: 12px;
    border: 0;
    display: block;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 991px) {
    p.section_tag_p {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .popular-puja-h2 {
        font-size: 22px;
    }

    p.section_tag_p {
        width: 100%;
        font-size: 14px;
    }

    .ce-contact-wrapper {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .ce-map-section iframe {
        height: 280px;
        border-radius: 8px;
    }
}
