body.elementor-page-15{margin:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-c960f85 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #16a86b;
    --green-dark: #07945a;
    --green-light: #dff8ec;
    --text: #11151c;
    --gray: #687180;
    --border: #e2e6ea;
    --background: #ffffff;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: var(--text);
}


/* =========================
   MAIN SECTION
========================= */

.contact-section {
    position: relative;
    min-height: 100vh;
    padding: 25px 20px 70px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 0% 5%,
            rgba(67, 207, 143, 0.14),
            transparent 22%
        ),
        radial-gradient(
            circle at 100% 95%,
            rgba(67, 207, 143, 0.12),
            transparent 25%
        ),
        #ffffff;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: 100%;
    max-width: 1330px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* =========================
   HEADING
========================= */

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading > span {
    display: block;
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.section-heading h1 {
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.section-heading h1 strong {
    color: var(--green-dark);
}

.section-heading p {
    color: #687180;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
}


/* =========================
   MAIN GRID
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 26px;
    align-items: stretch;
}


/* =========================
   LEFT COLUMN
========================= */

.left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =========================
   CONTACT CARD
========================= */

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 32px 38px;
    box-shadow:
        0 15px 45px rgba(20, 35, 30, 0.07);
}

.contact-card h2 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 30px;
}


/* Contact Item */

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.contact-item:last-child {
    margin-bottom: 0;
}


/* Green Icon */

.icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        145deg,
        #15ae70,
        #07965a
    );

    color: #ffffff;
    border-radius: 50%;

    font-size: 17px;

    box-shadow:
        0 8px 18px rgba(17, 170, 105, 0.2);
}


/* Contact Text */

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-text span {
    color: #727b87;
    font-size: 13px;
}

.contact-text a,
.contact-text strong {
    color: #087f4e;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}


/* =========================
   MAP
========================= */

.map-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #e4e8e6;

    box-shadow:
        0 12px 35px rgba(20, 35, 30, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* Map Button */

.map-button {
    position: absolute;
    z-index: 5;
    top: 14px;
    left: 14px;

    display: flex;
    align-items: center;
    gap: 7px;

    background: #ffffff;
    color: #078b53;

    padding: 10px 14px;
    border-radius: 8px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.12);
}

.map-button i {
    font-size: 12px;
}


/* =========================
   FORM CARD
========================= */

.form-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 22px;

    padding: 30px 38px;

    box-shadow:
        0 15px 45px rgba(20, 35, 30, 0.07);
}


/* =========================
   FORM
========================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 22px;
}

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #15191e;
}


/* Inputs */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #dfe4e8;
    background: #ffffff;

    border-radius: 12px;

    font-family: inherit;
    font-size: 14px;
    color: #252b33;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
    height: 52px;
    padding: 0 15px;
}

.form-group textarea {
    min-height: 115px;
    padding: 15px;
    resize: vertical;
}


/* Placeholder */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8a929d;
}


/* Focus */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1ab574;

    box-shadow:
        0 0 0 3px rgba(26, 181, 116, 0.10);
}


/* =========================
   SELECT
========================= */

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "\f078";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    right: 16px;
    top: 50%;

    transform: translateY(-50%);

    font-size: 11px;
    color: #30363d;

    pointer-events: none;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}


/* =========================
   MESSAGE
========================= */

.message-group {
    margin-top: 2px;
    margin-bottom: 20px;
}


/* =========================
   BUTTON
========================= */

.submit-btn {
    width: 100%;
    height: 52px;

    border: none;
    border-radius: 12px;

    background:
        linear-gradient(
            100deg,
            #18ad6f,
            #42d39b
        );

    color: #ffffff;

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    box-shadow:
        0 8px 20px rgba(17, 170, 105, 0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(17, 170, 105, 0.28);
}

.submit-btn i {
    font-size: 16px;
}


/* =========================
   BACKGROUND DECORATIONS
========================= */

.bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.shape-one {
    width: 400px;
    height: 400px;

    left: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(70, 211, 154, 0.18),
            rgba(70, 211, 154, 0)
        );
}

.shape-two {
    width: 450px;
    height: 450px;

    right: -220px;
    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(70, 211, 154, 0.15),
            rgba(70, 211, 154, 0)
        );
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .left-column {
        order: 2;
    }

    .form-card {
        order: 1;
    }

    .map-container {
        height: 300px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .contact-section {
        padding: 30px 15px 50px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h1 {
        font-size: 35px;
        letter-spacing: -1.2px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .desktop-break {
        display: none;
    }


    .contact-card,
    .form-card {
        padding: 25px 20px;
        border-radius: 18px;
    }


    .contact-card h2 {
        font-size: 21px;
    }


    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }


    .form-group input,
    .form-group select {
        height: 50px;
    }


    .form-group textarea {
        min-height: 120px;
    }


    .map-container {
        height: 250px;
        border-radius: 18px;
    }


    .submit-btn {
        font-size: 14px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {

    .section-heading h1 {
        font-size: 30px;
    }

    .contact-card {
        padding: 22px 18px;
    }

    .form-card {
        padding: 22px 18px;
    }

}/* End custom CSS */