/*************************************************************
    ZOOTOU – PREMIUM BOOKING FORM STYLE
*************************************************************/

/* Main container */
.zt-booking-wrapper {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* Page Title */
.zt-booking-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

/* Step Indicators */
.zt-booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 20px;
}

.zt-booking-steps .step {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #555;
    transition: 0.3s ease;
}

.zt-booking-steps .step.active {
    background: #ff7a00;
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(255,122,0,0.5);
}

/* Form Steps */
.zt-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.zt-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section Titles */
.zt-step h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #111;
    font-weight: 700;
}

/* Labels */
.zt-step label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    display: block;
}

/* Inputs */
.zt-step input[type="text"],
.zt-step input[type="email"],
.zt-step input[type="number"],
.zt-step input[type="date"],
.zt-step select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    background: #fafafa;
    font-size: 15px;
    transition: 0.25s;
}

.zt-step input:focus,
.zt-step select:focus {
    border-color: #ff7a00;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,122,0,0.25);
    outline: none;
}

/* Checkboxes & Radios */
.zt-step input[type="checkbox"],
.zt-step input[type="radio"] {
    margin-right: 10px;
}

.zt-step label input[type="checkbox"] + span,
.zt-step label input[type="radio"] + span {
    vertical-align: middle;
}

/* Custom Section Spacing */
.zt-step label {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Buttons */
.zt-form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.zt-form-buttons button {
    padding: 14px 26px;
    border: none;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.25s;
    font-weight: 700;
}

#prevBtn {
    background: #ccc;
    color: #222;
}

#prevBtn:hover {
    background: #bbb;
}

#nextBtn {
    background: #ff7a00;
    color: #fff;
}

#nextBtn:hover {
    background: #e66f00;
}

#submitBtn {
    background: #00a854;
    color: #fff;
}

#submitBtn:hover {
    background: #009347;
}

/* Success Message -- optional */
.zt-success-box {
    padding: 25px;
    border-radius: 14px;
    background: #e8ffe9;
    border: 2px solid #86e993;
    text-align: center;
    color: #0c7f0f;
    font-weight: 700;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .zt-booking-wrapper {
        padding: 25px;
    }
    .zt-booking-steps {
        gap: 8px;
    }
    .zt-booking-steps .step {
        width: 36px;
        height: 36px;
    }
}
