/* css/contact-form.css */
.elementor-form {
    max-width: 100%;
}

.elementor-form-fields-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.elementor-field-group {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    margin-bottom: 20px;
}

.elementor-col-50 {
    flex: 0 0 50%;
    max-width: 50%;
}

.elementor-col-100 {
    flex: 0 0 100%;
    max-width: 100%;
}

.elementor-field-label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.elementor-screen-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.elementor-field,
.elementor-field-textual {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d5d8dc;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1.4;
    background-color: #fff;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.elementor-field:focus {
    outline: none;
    border-color: #a4afb7;
}

.elementor-size-sm {
    font-size: 14px;
    padding: 10px 12px;
}

textarea.elementor-field {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.e-form__buttons {
    display: flex;
    align-items: flex-start;
}

.elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #61ce70;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.elementor-button:hover {
    background-color: #4fb85d;
}

.elementor-button:disabled {
    background-color: #a4afb7;
    cursor: not-allowed;
}

.elementor-button-text {
    flex-grow: 0;
    flex-shrink: 0;
}

.elementor-button-icon {
    margin-right: 5px;
}

/* Success and Error Messages */
.elementor-message {
    padding: 12px 15px;
    border-radius: 3px;
    margin-top: 15px;
}

.elementor-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.elementor-message-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .elementor-col-50 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .elementor-md-100 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}