/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
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: 2.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
*/

/* Add your custom styles here */
/* Form Layout */
.wpcf7-form h3 {
    color: #003d82;
    font-size: 28px;
    margin-bottom: 10px;
}

.wpcf7-form h4 {
    color: #003d82;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.wpcf7-form p {
    color: #666;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

/* Input Fields */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #003d82;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

/* Radio Buttons */
.wpcf7-form .wpcf7-radio {
    display: inline-flex;
    gap: 20px;
}

.wpcf7-form .wpcf7-radio input[type="radio"] {
    margin-right: 5px;
}

/* Checkboxes */
.wpcf7-form .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wpcf7-form .wpcf7-checkbox label {
    display: flex;
    align-items: center;
    margin: 0;
}

.wpcf7-form .wpcf7-checkbox input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
}

/* Service Notes */
.service-note {
    font-size: 13px;
    color: #666;
    margin: 5px 0;
    padding-left: 26px;
}

/* Terms Acceptance */
.wpcf7-form .wpcf7-acceptance {
    margin: 20px 0;
}

.wpcf7-form .wpcf7-acceptance label {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
    background-color: #003d82;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #002a5c;
}

/* Conditional Fields (Initially hidden) */
.conditional-travel,
.conditional-vehicle {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
.conditional-travel,
.conditional-vehicle {
  display: none;
}



/** icons **/
.my-custom-class {
    margin-right: 10px !important;
    font-size: 16px !important;
}