.elementor-495 .elementor-element.elementor-element-d738f3f{--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;--margin-top:24px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-495 .elementor-element.elementor-element-ffdc3d0{--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;}/* Start custom CSS for shortcode, class: .elementor-element-8e653f4 */<style>
/* --- FONTS & BASICS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Poppins:wght@400;500;600&display=swap');

.smf-contact-form {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.smf-contact-form:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

/* --- GRID SYSTEM FOR ROWS --- */
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-col {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.full-width {
    width: 100%;
    flex-direction: column;
}

/* --- LABELS & INPUTS --- */
.smf-contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #1a365d; /* Theme Blue */
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.req {
    color: #e53935; /* Red asterisk */
}

.smf-input, .smf-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #333;
    background: #fdfdfd;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
}

.smf-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Focus Effect */
.smf-input:focus, .smf-textarea:focus {
    border-color: #2e7d32; /* Theme Green on Click */
    background: #fff;
    box-shadow: 0 0 10px rgba(46, 125, 50, 0.1);
}

/* Fix for Select Dropdown */
select.smf-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231976d2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    cursor: pointer;
}

/* --- 3D SUBMIT BUTTON --- */
.submit-area {
    text-align: center;
    margin-top: 20px;
}

.btn-3d-green {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: #fff !important;
    padding: 16px 45px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 0 #0d3b10, 0 10px 20px rgba(0,0,0,0.15);
    transition: all 0.1s ease;
    letter-spacing: 1px;
}

.btn-3d-green:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #0d3b10;
}

/* Fix CF7 Default Errors/Messages Styling */
.wpcf7-not-valid-tip { color: #e53935; font-size: 12px; margin-top: 5px; }
.wpcf7 form .wpcf7-response-output { border-radius: 8px; font-weight: 600; margin-top: 25px; }

/* =========================================
   TABLET & MOBILE RESPONSIVE
========================================= */
@media (max-width: 768px) {
    .smf-contact-form {
        padding: 30px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    .form-col {
        width: 100%;
    }
    .btn-3d-green {
        width: 100%; /* Full width button on mobile */
    }
}
</style>/* End custom CSS */