/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/


/* General */
p {margin:0px;}


/* START: Contact Form */
/* Center the entire form container */
.wpcf7 {
    width: 100%;
    margin: 0;
}

/* Contact Form base styling */
.wpcf7 form {
    background-color: #f9fafb;
    padding: 30px 20px;
    border-radius: 10px;
    color: black;
    font-family: 'Helvetica Neue', sans-serif;
    box-shadow: 0 0 15px #b8b8b8;
    box-sizing: border-box;
}

/* Apply box-sizing universally */
.wpcf7 form *,
.wpcf7 form *::before,
.wpcf7 form *::after {
    box-sizing: border-box;
}

/* Labels styling */
.wpcf7-form label {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    font-weight: 500;
    color: black;
}

/* Inputs, selects, textareas - full width */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 input[type="file"],
.wpcf7 textarea,
.wpcf7 select {
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    color: #eaeaea;
    padding: 12px 15px;
    margin-top:10px;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 5px;
    font-size: 1em;
    transition: all 0.3s ease;
}

/* Placeholder color */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #999;
}

/* Focus effect */
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: #F23129;
    background-color: #f9fafb;
    outline: none;
}

/* Submit button full width */
.wpcf7 input[type="submit"] {
    background-color: #F23129;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #941A35;
}

/* Validation messages */
.wpcf7 .wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 0.9em;
    margin-top: -10px;
    margin-bottom: 10px;
}

.wpcf7 .wpcf7-response-output {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-size: 1em;
}

.wpcf7 .wpcf7-mail-sent-ok {
    background-color: #28a745;
    color: #fff;
}

.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng {
    background-color: #dc3545;
    color: #fff;
}

/* Checkboxes and radios: auto width only */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
    width: auto;
    margin-right: 10px;
}
/* END: Contact Form */