/*
Theme Name: Tevily Child
Theme URI: https://gaviaspreview.com/wp/tevily/
Author URI: https://themeforest.net/user/gavias
Author: Gaviasthemes Team
Description: Child theme for the Tevily theme.
Template: tevily
*/



/* Tour Booking Form */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col-md-6,
.col-12 {
    padding: 0 10px;
    box-sizing: border-box;
}

.col-md-6 {
    width: 50%;
}

.col-12 {
    width: 100%;
}

.row label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.row input,
.row select,
.row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.row textarea {
    min-height: 120px;
    resize: vertical;
}

.row input:focus,
.row select:focus,
.row textarea:focus {
    border-color: #15365F;
    outline: none;
}

.wpcf7-acceptance {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.wpcf7-acceptance input {
    width: auto;
    margin-top: 3px;
}

input[type="submit"] {
    background: #15365F;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

input[type="submit"]:hover {
    background: #6CB33F;
}

/* Mobile Responsive */
@media (max-width: 767px) {

    .row {
        margin: 0;
    }

    .col-md-6,
    .col-12 {
        width: 100%;
        padding: 0;
    }

    .row input,
    .row select,
    .row textarea {
        font-size: 16px;
        padding: 14px;
        margin-bottom: 18px;
    }

    .wpcf7-acceptance {
        display: block;
        font-size: 14px;
    }

    .wpcf7-acceptance input {
        margin-right: 8px;
    }

    input[type="submit"] {
        width: 100%;
        padding: 15px;
        font-size: 17px;
    }
}