.elementor-kit-5{--e-global-color-primary:#FE0000;--e-global-color-secondary:#000000;--e-global-color-text:#000000;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Catamaran";--e-global-typography-primary-font-weight:500;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1260px;}.e-con{--container-max-width:1260px;--container-default-padding-top:0px;--container-default-padding-right:20px;--container-default-padding-bottom:0px;--container-default-padding-left:20px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ROOT */
.booking-wrapper {
    font-family: "Inter", Arial, sans-serif;
    max-width: 1100px;
    margin: auto;
}

/* =========================
   PROGRESS BAR
========================= */
.booking-steps {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.step {
    flex: 1;
    padding: 14px 10px;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    background: #f1f1f1;
    color: #777;
    position: relative;
    transition: all 0.3s ease;
}

.step.active {
    background: linear-gradient(135deg, #e60019, #c90016);
    color: #fff;
    box-shadow: 0 6px 18px rgba(230,0,25,0.35);
}

/* =========================
   STEP CONTENT
========================= */
.booking-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.booking-step.active {
    display: block;
}

/* =========================
   FORM LAYOUT
========================= */
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e60019;
}

/* Inputs */
input,
select {
    width: 100%;
    padding: 1px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

input:focus,
select:focus {
    outline: none;
    border-color: #e60019;
    box-shadow: 0 0 0 3px rgba(230,0,25,0.15);
}

/* =========================
   DAYS SELECTOR
========================= */
.days {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.day {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e60019;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.day::after {
    content: "✓";
    font-size: 14px;
    position: absolute;
    bottom: -8px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: #fff;
    color: #e60019;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.day:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(230,0,25,0.3);
}

/* =========================
   BUTTONS
========================= */
.next-btn {
    background: linear-gradient(135deg, #e60019, #c40016);
    color: #fff;
    border: none;
    padding: 14px 44px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(230,0,25,0.35);
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(230,0,25,0.45);
}

/* =========================
   CONFIRMATION (DONE STEP)
========================= */
#step-4 {
    text-align: center;
    background: #fff5f6;
    border-radius: 16px;
    padding: 40px;
}

#step-4 h2 {
    color: #e60019;
    margin-bottom: 20px;
}

#step-4 p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .booking-steps {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .next-btn {
        width: 100%;
        text-align: center;
    }
}/* End custom CSS */