.booking-form {
    max-width: 720px;
    margin: auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.booking-form .form-row {
    display: flex !important;
    gap: 15px;
    margin-bottom: 15px;
}

.booking-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-form .form-group.full {
    width: 100%;
}

.booking-form label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.booking-form input:not([type=submit]),
.booking-form select,
.booking-form textarea {
    width: 100% !important;
    padding: 12px 14px !important;
    border-radius: 10px !important;
    border: 1px solid #ddd !important;
    background: #fff !important;
    font-size: 14px;
    transition: 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #ff6a00 !important;
    box-shadow: 0 0 0 2px rgba(255,106,0,0.15);
    outline: none;
}

.booking-form textarea {
    min-height: 100px;
    resize: none;
}

.booking-form .note {
    font-size: 13px;
    color: #777;
    margin: 10px 0 20px;
    text-align: center;
}

.booking-form .btn-booking {
    display: inline-block;
    background: linear-gradient(135deg, #ff7a18, #ff6a00) !important;
    color: #fff !important;
    padding: 10px 30px !important;
    border-radius: 999px !important;
    font-weight: 700;
    font-size: 16px;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.35);
}

.booking-form .btn-booking:hover,
.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 106, 0, 0.45);
}

.booking-form .btn-booking:active,
.btn-booking:active {
    transform: translateY(1px);
}

.booking-form .submit-wrap,
.submit-wrap {
    text-align: center;
}

.cf7-box {
    max-width: 500px;
    margin: 2rem auto;
    padding: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.cf7-box .wpcf7-form p {
    margin-bottom: 1rem;
}

.cf7-box label {
    display: block;
    margin-bottom: 0.4rem;
    color: #333;
    font-weight: 600;
}

.cf7-box .wpcf7-form-control {
    width: 100%;
    box-sizing: border-box;
    padding: 0.6rem 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.cf7-box .wpcf7-form-control:focus {
    outline: none;
    border-color: #e04e1b;
}

.cf7-box .wpcf7-submit {
    display: inline-block;
    background-color: #e04e1b;
    color: #fff;
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cf7-box .wpcf7-submit:hover {
    background-color: #c44318;
}