.elementor-186 .elementor-element.elementor-element-cff9c68{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-186 .elementor-element.elementor-element-798c533{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-186 .elementor-element.elementor-element-20e6acb{text-align:center;}.elementor-186 .elementor-element.elementor-element-20e6acb .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:45px;font-weight:700;color:#1A1A1A;}.elementor-186 .elementor-element.elementor-element-6ceb9fb{--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;--padding-top:27px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-6ceb9fb *//* ===== CF7 Contact Form Style ===== */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700;800&display=swap');

.aoj-cf7-form {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    font-family: 'Work Sans', sans-serif;
}

.aoj-cf7-form *,
.aoj-cf7-form *:focus,
.aoj-cf7-form *:active {
    box-sizing: border-box;
    outline: none !important;
}

.aoj-cf7-row {
    display: flex;
    flex-direction: column;
}

.aoj-cf7-row.aoj-cf7-full {
    grid-column: 1 / -1;
}

.aoj-cf7-row label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.aoj-cf7-form input[type="text"],
.aoj-cf7-form input[type="email"],
.aoj-cf7-form input[type="tel"],
.aoj-cf7-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.aoj-cf7-form select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    height: 50px;
    line-height: normal;
    overflow: visible;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.aoj-cf7-form input[type="text"]:focus,
.aoj-cf7-form input[type="email"]:focus,
.aoj-cf7-form input[type="tel"]:focus,
.aoj-cf7-form textarea:focus,
.aoj-cf7-form select:focus {
    border-color: #ffa400 !important;
    box-shadow: 0 0 0 3px rgba(255, 160, 0, 0.1) !important;
    outline: none !important;
}

.aoj-cf7-form input::placeholder,
.aoj-cf7-form textarea::placeholder {
    color: #aaa;
}

.aoj-cf7-form textarea {
    resize: vertical;
    min-height: 140px;
}

.aoj-cf7-submit {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 16px;
}

.aoj-cf7-submit input[type="submit"] {
    background: #ffa400;
    color: #fff;
    border: none;
    padding: 16px 60px;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.5px;
}

.aoj-cf7-submit input[type="submit"]:hover {
    background: #ffa400;
}

/* CF7 success/error messages */
.aoj-cf7-form .wpcf7-response-output {
    border-radius: 8px;
    padding: 14px 20px;
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    text-align: center;
    margin: 0 0 24px;
}

.aoj-cf7-form .wpcf7-mail-sent-ok {
    background: #f0fff4;
    border: 1px solid #a0d8b0 !important;
    color: #2a7a3a;
}

.aoj-cf7-form .wpcf7-validation-errors {
    background: #fff0f0;
    border: 1px solid #e0a0a0 !important;
    color: #c00;
}

@media (max-width: 768px) {
    .aoj-cf7-form {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
    }
    .aoj-cf7-submit input[type="submit"] {
        width: 100%;
        padding: 14px 0;
    }
}/* End custom CSS */