.onzo-booking-hero {
    background: #fdfdff;
    overflow: hidden;
}

.onzo-booking-hero-wrapper {
    display: flex;
    align-items: center;
    min-height: 600px;
    /* Behave like Bootstrap container for equal side spacing */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
}
@media (min-width: 576px) {
    .onzo-booking-hero-wrapper {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .onzo-booking-hero-wrapper {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .onzo-booking-hero-wrapper {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .onzo-booking-hero-wrapper {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .onzo-booking-hero-wrapper {
        max-width: 1320px;
    }
}

/* ==========================
   CONTENT
========================== */

.onzo-booking-hero-content {
    width: 45%;
    /* Let wrapper handle gutters to avoid zoom drift */
    padding-left: 0;
    padding-right: 50px;
}

.onzo-booking-hero-badge {
    display: inline-flex;
    background: #e8e3ff;
    color: var(--purple);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.onzo-booking-hero-content h1 {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #0d1026;
    margin-bottom: 15px;
}

.onzo-booking-hero-content h1 span {
    display: block;
    color: var(--purple);
}

.onzo-booking-hero-content p.booking-hero-sub-heading {
    font-size: 18px;
    line-height: 1.5;
    color: #4a516d;
    max-width: 480px;
    margin-bottom: 30px;
}

/* ==========================
   FEATURES (Vertical List)
========================== */

.onzo-booking-hero-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.onzo-booking-hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
}

.onzo-booking-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.onzo-booking-hero-icon i {
    color: var(--purple);
    font-size: 18px;
}

.onzo-booking-hero-feature p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #58607e;
}

/* ==========================
   BUTTON
========================== */

.onzo-booking-hero-btn {
    display: inline-block;
    background: var(--purple);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.onzo-booking-hero-btn:hover {
    background: var(--purple);
}

/* ==========================
   IMAGE (Rounded Top-Left)
========================== */

.onzo-booking-hero-image {
    /* Make right image bleed to viewport right while left stays aligned */
    width: calc(55% + (50vw - 50%));
    margin-right: calc(50% - 50vw);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;

    /* Use background so we can anchor flush-right without cropping */
    background-image: url("../images/landing-v2/service-3.png");
    background-size: cover; /* ensure full image remains visible */
    background-repeat: no-repeat;
    background-position: right center;
    border-radius: 80px 0 0 80px; /* keep left curve, right flush */
    overflow: hidden;
    min-height: 600px; /* ensure visible area on large screens */
    margin-top: 20px;
}

/* Hide inline img to avoid double rendering */
.onzo-booking-hero-image img {
    display: none;
}

/* ==========================
   RESPONSIVE DESIGN
========================== */

@media (max-width: 1400px) {
    .onzo-booking-hero-content h1 {
        font-size: 44px;
    }
    .onzo-booking-hero-content p.booking-hero-sub-heading {
        font-size: 16px;
    }
}

@media (max-width: 1199px) {
    .onzo-booking-hero-content {
        width: 50%;
        padding-left: 40px;
        padding-right: 30px;
    }

    .onzo-booking-hero-image {
        width: 50%;
    }

    .onzo-booking-hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .onzo-booking-hero-wrapper {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .onzo-booking-hero-content {
        width: 100%;
        text-align: left;
        padding: 50px 30px;
    }

    .onzo-booking-hero-features {
        align-items: flex-start;
    }

    .onzo-booking-hero-image {
        /* Keep flush-right behavior on smaller screens */
        width: calc(100% + (50vw - 50%));
        margin-right: calc(50% - 50vw);
        background-position: right center;
        border-radius: 40px 0 0 40px; /* softer radius on small screens */
        min-height: 380px;
    }
}

@media (max-width: 575px) {
    .onzo-booking-hero-content h1 {
        font-size: 32px;
    }

    .onzo-booking-hero-badge {
        font-size: 10px;
    }
}

/* NEXT SECTION  */
/* NEXT SECTION  */
/* NEXT SECTION  */
/* NEXT SECTION  */
/* NEXT SECTION  */
/* NEXT SECTION  */
/* NEXT SECTION  */ /* ==========================================
   CLEANING INCLUDES SECTION
========================================== */

.onzo-booking-includes {
    padding: 80px 20px;
    background: #ffffff;
}

.onzo-booking-includes-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
}
@media (min-width: 576px) {
    .onzo-booking-includes-container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .onzo-booking-includes-container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .onzo-booking-includes-container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .onzo-booking-includes-container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .onzo-booking-includes-container {
        max-width: 1320px;
    }
}

.onzo-booking-includes-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #0d1026;
    margin-bottom: 50px;
}

/* Main Bordered Card Grid Box */
.onzo-booking-includes-grid {
    display: flex;
    background: #ffffff;
    border: 1px solid #f0f2f9;
    border-radius: 16px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

/* Individual Grid Items */
.onzo-booking-includes-item {
    flex: 1;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Vertical Dividers */
.onzo-booking-includes-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #eaeef7;
}

/* Icon Design styling */
.onzo-booking-includes-icon {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.onzo-booking-includes-icon i {
    font-size: 40px;
    color: var(
        --purple
    ); /* Primary Theme Purple color from your Hero section */
}

.onzo-booking-includes-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0d1026;
    margin: 0 0 12px 0;
}

.onzo-booking-includes-item p {
    font-size: 13px;
    line-height: 1.5;
    color: #727993;
    margin: 0;
    max-width: 180px;
}

/* ==========================================
   RESPONSIVE DESIGN (BREAKPOINTS)
========================================== */

/* Laptop / Smaller Screen Optimization */
@media (max-width: 1199px) {
    .onzo-booking-includes-item p {
        font-size: 12px;
    }
    .onzo-booking-includes-item h3 {
        font-size: 15px;
    }
}

/* Tablet Layout (Transforms into 3x2 Grid) */
@media (max-width: 991px) {
    .onzo-booking-includes-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    /* Remove old vertical dividers */
    .onzo-booking-includes-item::after {
        display: none !important;
    }

    /* Add borders dynamically for 3-column layout grid matrix */
    .onzo-booking-includes-item {
        border-bottom: 1px solid #eaeef7;
        border-right: 1px solid #eaeef7;
    }

    .onzo-booking-includes-item:nth-child(3n) {
        border-right: none;
    }

    .onzo-booking-includes-item:nth-child(n + 4) {
        border-bottom: none;
    }
}

/* Mobile Layout (Transforms into Vertical Stack list) */
@media (max-width: 650px) {
    .onzo-booking-includes {
        padding: 50px 15px;
    }

    .onzo-booking-includes-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .onzo-booking-includes-grid {
        grid-template-columns: 1fr;
    }

    .onzo-booking-includes-item {
        border-right: none !important;
        border-bottom: 1px solid #eaeef7 !important;
        padding: 30px 20px;
    }

    .onzo-booking-includes-item:last-child {
        border-bottom: none !important;
    }

    .onzo-booking-includes-item p {
        max-width: 280px;
    }
}

/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* ==========================================
   CLIENT SETUP MODULE
========================================== */

.onzo-booking-setup {
    padding: 60px 20px;
    background: #fcfdfe;
}

.onzo-booking-setup-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
@media (min-width: 576px) {
    .onzo-booking-setup-container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .onzo-booking-setup-container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .onzo-booking-setup-container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .onzo-booking-setup-container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .onzo-booking-setup-container {
        max-width: 1320px;
    }
}

/* ==========================================
   LEFT COLUMN (SIDEBAR)
========================================== */

.onzo-booking-setup-sidebar {
    width: 28%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Why Box styling */
.onzo-booking-why-box {
    background: #ffffff;
    border: 1px solid #f0f2f9;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.01);
}

.onzo-booking-setup-title {
    font-size: 22px;
    font-weight: 700;
    color: #0d1026;
    margin: 0 0 30px 0;
}

.onzo-booking-why-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.onzo-booking-why-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.onzo-booking-why-icon {
    width: 36px;
    height: 36px;
    background: #f1edff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.onzo-booking-why-icon i {
    color: var(--purple);
    font-size: 18px;
}

.onzo-booking-why-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0d1026;
    margin: 0 0 4px 0;
}

.onzo-booking-why-item p {
    font-size: 13px;
    color: #68708f;
    margin: 0;
    line-height: 1.4;
}

/* Perfect For Purple/Blue Box styling */
.onzo-booking-perfect-box {
    background: var(--purple);
    border-radius: 16px;
    padding: 30px 25px;
    color: #ffffff;
}

.onzo-booking-perfect-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.onzo-booking-perfect-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.onzo-booking-perfect-box ul li {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.onzo-booking-perfect-box ul li i {
    font-size: 16px;
    color: #ffffff;
}

/* ==========================================
   RIGHT COLUMN (MAIN SETUP REQUIREMENTS)
========================================== */

.onzo-booking-setup-main {
    width: 72%;
    background: #ffffff;
    border: 1px solid #f0f2f9;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.01);
}

.onzo-booking-main-title {
    font-size: 26px;
    font-weight: 700;
    color: #0d1026;
    margin: 0 0 10px 0;
}

.onzo-booking-main-desc {
    font-size: 14px;
    color: #68708f;
    margin: 0 0 35px 0;
}

/* Grid layout matrix */
.onzo-booking-req-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 20px;
    margin-bottom: 35px;
}

/* Individual Content Grid Cards */
.onzo-booking-req-card {
    background: #ffffff;
    border: 1px solid #f3f5fa;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.onzo-booking-req-icon {
    width: 38px;
    height: 38px;
    background: #f7f8fc;
    border: 1px solid #eef1f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.onzo-booking-req-icon i {
    color: var(--purple);
    font-size: 18px;
}

.onzo-booking-req-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0d1026;
    margin: 0 0 4px 0;
}

.onzo-booking-req-card p {
    font-size: 12px;
    color: #7c84a0;
    margin: 0;
    line-height: 1.4;
}

/* Informative bottom banner box */
.onzo-booking-info-alert {
    background: #f2efff;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.onzo-booking-alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.onzo-booking-alert-icon i {
    color: var(--purple);
    font-size: 22px;
}

.onzo-booking-info-alert p {
    font-size: 14px;
    color: var(--purple);
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.onzo-booking-info-alert p span {
    display: block;
    font-weight: 500;
    color: var(--purple);
}

/* ==========================================
   RESPONSIVE DESIGN (BREAKPOINTS)
========================================== */

@media (max-width: 1200px) {
    .onzo-booking-setup-main {
        padding: 30px;
    }
    .onzo-booking-req-grid {
        column-gap: 15px;
    }
}

/* Split Columns stack beautifully on tablets */
@media (max-width: 991px) {
    .onzo-booking-setup-container {
        flex-direction: column;
    }

    .onzo-booking-setup-sidebar,
    .onzo-booking-setup-main {
        width: 100%;
    }
}

/* Grid scales down to 1 column on smaller displays */
@media (max-width: 650px) {
    .onzo-booking-setup {
        padding: 40px 15px;
    }

    .onzo-booking-req-grid {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }

    .onzo-booking-main-title {
        font-size: 22px;
    }

    .onzo-booking-info-alert {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* NEW SECTION */
/* NEW SECTION */
/* NEW SECTION */
/* NEW SECTION */
/* NEW SECTION */
/* NEW SECTION */
/* NEW SECTION */
/* ==========================================
   CTA ELEVATE SECTION
========================================== */

.onzo-booking-cta {
    padding: 60px 20px;
    background: #ffffff;
}

.onzo-booking-cta-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
    background: linear-gradient(
        90deg,
        #f7f6ff 0%,
        #fcfbfe 45%,
        rgba(255, 255, 255, 0) 100%
    );
    border: 1px solid #f0f1f7;
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}
@media (min-width: 576px) {
    .onzo-booking-cta-container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .onzo-booking-cta-container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .onzo-booking-cta-container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .onzo-booking-cta-container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .onzo-booking-cta-container {
        max-width: 1320px;
    }
}

/* Content Panel styling */
.onzo-booking-cta-content {
    width: 50%;
    padding: 50px 0 50px 60px;
    z-index: 2;
    position: relative;
}

.onzo-booking-cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0d1026;
    margin: 0 0 14px 0;
    letter-spacing: -0.3px;
}

.onzo-booking-cta-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #4a516d;
    max-width: 460px;
    margin: 0 0 25px 0;
}

/* CTA Action Button */
.onzo-booking-cta-btn {
    display: inline-block;
    background: var(--purple);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.1s ease;
}

.onzo-booking-cta-btn:hover {
    background: var(--purple);
}

/* Image Graphic container mapping */
.onzo-booking-cta-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.onzo-booking-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    display: block;
}

/* ==========================================
   RESPONSIVE DESIGN (BREAKPOINTS)
========================================== */

@media (max-width: 1200px) {
    .onzo-booking-cta-content {
        padding-left: 40px;
        width: 55%;
    }

    .onzo-booking-cta-content h2 {
        font-size: 24px;
    }
}

/* Mid-scale screens adjustments */
@media (max-width: 991px) {
    .onzo-booking-cta-container {
        /* Subtle fallback gradient tint for layout blending */
        background: #f7f6ff;
    }

    .onzo-booking-cta-content {
        width: 60%;
    }

    .onzo-booking-cta-image {
        width: 40%;
    }
}

/* Fully responsive mobile stack architecture */
@media (max-width: 767px) {
    .onzo-booking-cta {
        padding: 30px 15px;
    }

    .onzo-booking-cta-container {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        background: #f7f6ff;
    }

    .onzo-booking-cta-content {
        width: 100%;
        padding: 40px 30px 35px 30px;
        text-align: center;
    }

    .onzo-booking-cta-content p {
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
    }

    .onzo-booking-cta-image {
        position: relative;
        width: 100%;
        height: 200px;
    }

    .onzo-booking-cta-image img {
        object-position: center;
    }
}

@media (max-width: 480px) {
    .onzo-booking-cta-content {
        padding: 35px 20px 30px 20px;
    }

    .onzo-booking-cta-content h2 {
        font-size: 20px;
    }
}
