.elementor-654 .elementor-element.elementor-element-9a2ad3c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-0379664 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
    background: #ffffff;
    line-height: 1.6;
}

section {
    width: 100%;
}


/* =========================
   CONTACT HERO
========================= */

.contact-hero {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 100px 20px;

    background:
        radial-gradient(
            circle at 20% 20%,
            #dbeafe,
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 80%,
            #e0f2fe,
            transparent 35%
        ),
        #f8fbff;
}

.hero-content {
    max-width: 850px;
}

.small-title,
.section-label {
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-hero h1 {
    font-size: 62px;
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 800;
}

.contact-hero h1 span {
    color: #2563eb;
}

.contact-hero p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    color: #64748b;
}


/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 110px 25px;
}

.contact-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: start;
}


/* LEFT */

.contact-info h2 {
    font-size: 46px;
    line-height: 1.15;
    margin: 15px 0 25px;
}

.contact-info h2 span {
    color: #2563eb;
}

.intro-text {
    color: #64748b;
    max-width: 500px;
    margin-bottom: 40px;
}


/* CONTACT ITEMS */

.contact-item {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-bottom: 28px;
}

.contact-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eff6ff;
    color: #2563eb;

    font-size: 22px;
}

.contact-item h3 {
    font-size: 17px;
    margin-bottom: 3px;
}

.contact-item p,
.contact-item a {
    color: #64748b;
    text-decoration: none;
}

.contact-item a:hover {
    color: #2563eb;
}


/* SOCIAL */

.social-area {
    margin-top: 40px;
}

.social-area h3 {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    text-decoration: none;

    padding: 10px 18px;

    border: 1px solid #dbe3ef;

    border-radius: 7px;

    color: #334155;

    font-size: 14px;

    transition: 0.3s;
}

.social-links a:hover {
    border-color: #2563eb;
    color: #2563eb;
}


/* =========================
   CONTACT FORM
========================= */

.contact-form-box {
    padding: 45px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.08);
}

.form-header h2 {
    font-size: 30px;
    margin: 12px 0 5px;
}

.form-header p {
    color: #64748b;
    margin-bottom: 35px;
}


/* FORM ROW */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


/* FORM GROUP */

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 8px;

    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 14px 15px;

    border: 1px solid #dbe3ef;

    border-radius: 8px;

    outline: none;

    font-family: inherit;

    font-size: 15px;

    color: #111827;

    background: #ffffff;

    transition: 0.3s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.10);
}


/* SUBMIT BUTTON */

.submit-btn {

    width: 100%;

    border: none;

    padding: 16px;

    border-radius: 8px;

    background: #2563eb;

    color: #ffffff;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

.submit-btn:hover {
    background: #1d4ed8;

    transform: translateY(-2px);
}


/* =========================
   WHATSAPP
========================= */

.whatsapp-section {
    padding: 100px 25px;

    background: #f8fafc;

    text-align: center;
}

.whatsapp-content {
    max-width: 700px;

    margin: auto;
}

.whatsapp-content h2 {
    font-size: 44px;

    line-height: 1.2;

    margin: 15px 0;
}

.whatsapp-content h2 span {
    color: #2563eb;
}

.whatsapp-content p {
    color: #64748b;

    margin-bottom: 30px;
}

.whatsapp-btn {
    display: inline-block;

    padding: 14px 28px;

    background: #2563eb;

    color: white;

    text-decoration: none;

    border-radius: 8px;

    font-weight: 600;

    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1d4ed8;

    transform: translateY(-3px);
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    padding: 100px 25px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #dbeafe
        );
}

.final-cta h2 {
    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 15px;
}

.final-cta h2 span {
    color: #2563eb;
}

.final-cta p {
    color: #64748b;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .contact-hero h1 {
        font-size: 48px;
    }

    .contact-info h2 {
        font-size: 40px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .contact-hero {
        min-height: 450px;

        padding: 80px 20px;
    }

    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-section {
        padding: 75px 20px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .whatsapp-content h2 {
        font-size: 32px;
    }

    .final-cta h2 {
        font-size: 32px;
    }
}/* End custom CSS */