/**handles:s3m-contact**/
/* ============================================================
   S3M — CONTACT (page)
   Kaynak: Contact Custom CSS.
   ============================================================ */

/* =========================================
CONTACT PAGE GLOBAL STYLES
========================================= */

/* HERO */
.contact-hero {
    text-align: center;
}

/* MAIN CONTACT SECTION */
.contact-main .e-con-inner {
    align-items: center;
}

/* CONTACT INFO */
.contact-info-block p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

.contact-info-block strong {
    display: block;
    margin-bottom: 4px;
    color: #0F172A;
}

/* BUILDING IMAGE */
.contact-building-image img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    width: 100%;
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 12px;
}

/* FORM WRAPPER */
.contact-form-wrapper {
    padding: 40px;
    margin-top: 40px;
}

/* FORM INPUTS */
.contact-form-wrapper input,
.contact-form-wrapper textarea {
    background: #0f172a;
    border: 1px solid #1f2937;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px;
}

/* PLACEHOLDER */
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: #94a3b8;
}

/* FOCUS STATE */
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    border-color: #38BDF8;
    outline: none;
}

/* BUTTON FULL WIDTH */
.contact-form-wrapper .elementor-button {
    width: 100%;
}

/* CTA SECTION */
.contact-cta {
    text-align: center;
}

/* SPACING FIXES */
.contact-form-section .e-con-inner {
    align-items: center;
}

/* MOBILE */
@media (max-width: 768px) {

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-map iframe {
        height: 300px;
    }
}
.contact-map {
    position: relative;
}

.contact-map::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.03);
    pointer-events: none;
}

/* =========================
CONTACT FORM SECTION FIX
========================= */

/* SECTION CENTER ALIGN */
.contact-form-section .e-con-inner {
    justify-content: center;
}

/* INNER COLUMN WIDTH CONTROL */
.contact-form-section .e-child {
    max-width: 720px;
    margin: auto;
}

/* FORM CARD EFFECT */
.contact-form-section .elementor-widget-html {
    background: #0f172a;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

/* IFRAME FIX */
.contact-iframe {
    width: 100%;
    min-height: 785px;
    border: none;
    border-radius: 8px;
    background: transparent;
}

/* HEADING SPACING */
.contact-form-section .s3m-heading-lg {
    text-align: center;
    margin-bottom: 10px;
}

/* DIVIDER CENTER */
.contact-form-section .elementor-divider {
    margin: 0 auto 10px auto;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .contact-form-section .elementor-widget-html {
        padding: 20px;
    }

    .contact-iframe {
        min-height: 650px;
    }
}