.onzo-contact-hero {
    background: #f8f8fc;
    overflow: hidden;
}

.onzo-contact-wrapper {
    display: flex;
    align-items: center;

    min-height: 540px;

    /* Behave like Bootstrap container for equal side spacing */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--bs-gutter-x, 0.75rem);
    /* Remove right gutter so the hero image can go flush to viewport */
    padding-right: 0;
}
@media (min-width: 576px) {
    .onzo-contact-wrapper {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .onzo-contact-wrapper {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .onzo-contact-wrapper {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .onzo-contact-wrapper {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .onzo-contact-wrapper {
        max-width: 1320px;
    }
}

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

.onzo-contact-content {
    width: 42%;
    /* Let wrapper manage gutters */
    padding-left: 0;
    padding-right: 50px;
}

.onzo-contact-badge {
    display: inline-flex;

    background: #f1edff;
    color: var(--purple);

    padding: 8px 18px;

    border-radius: 40px;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 25px;
}

.onzo-contact-content h1 {
    font-size: 50px;
    line-height: 1.05;
    font-weight: 700;

    color: black;

    margin-bottom: 24px;
}

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

.onzo-contact-content p {
    font-size: 20px;
    line-height: 1.7;

    color: #68708f;

    max-width: 580px;

    margin-bottom: 45px;
}

/* ==========================
   IMAGE
========================== */

.onzo-contact-image {
    /* Make right image bleed to viewport right while left stays aligned */
    width: calc(58% + (50vw - 50%));
    margin-right: calc(50% - 50vw);

    display: flex;
    justify-content: flex-end;
    align-items: center;

    /* Use background so we can anchor flush-right without cropping */
    background-image: url("../images/landing-v2/van.png");
    background-size: contain; /* show full image */
    background-repeat: no-repeat;
    background-position: right center;
    border-radius: 40px 0 0 40px; /* keep left curve, right flush */
    overflow: hidden;
    min-height: 540px;
}

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

/* ==========================
   FEATURES
========================== */

.onzo-contact-features {
    display: flex;
    gap: 35px;
}

.onzo-contact-feature {
    max-width: 170px;
}

.onzo-contact-icon {
    width: 58px;
    height: 58px;

    background: #f1edff;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;
}

.onzo-contact-icon i {
    color: var(--purple);
    font-size: 26px;
}

.onzo-contact-feature h4 {
    font-size: 16px;
    font-weight: 700;

    color: black;

    margin-bottom: 10px;
}

.onzo-contact-feature p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: #7a819e;
}

/* ==========================
   LARGE DESKTOP
========================== */

@media (max-width: 1400px) {
    .onzo-contact-content h1 {
        font-size: 56px;
    }
}

/* ==========================
   LAPTOP
========================== */

@media (max-width: 1199px) {
    .onzo-contact-content {
        width: 48%;
        padding-left: 40px;
    }

    .onzo-contact-image {
        width: calc(52% + (50vw - 50%));
        margin-right: calc(50% - 50vw);
        background-position: right center;
        border-radius: 60px 0 0 60px;
    }

    .onzo-contact-content h1 {
        font-size: 48px;
    }

    .onzo-contact-features {
        gap: 20px;
    }
}

/* ==========================
   TABLET
========================== */

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

    .onzo-contact-content {
        width: 100%;
        padding: 60px 30px 40px;
        text-align: center;
    }

    .onzo-contact-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .onzo-contact-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .onzo-contact-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;
        min-height: 380px;
    }

    .onzo-contact-content h1 {
        font-size: 42px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {
    .onzo-contact-content {
        padding: 50px 20px 30px;
    }

    .onzo-contact-content h1 {
        font-size: 34px;
    }

    .onzo-contact-content p {
        font-size: 16px;
    }

    .onzo-contact-features {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .onzo-contact-feature {
        max-width: 280px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {
    .onzo-contact-content h1 {
        font-size: 30px;
    }
}
/* ==================================
   1600px
================================== */

@media (max-width: 1600px) {
    .onzo-contact-content h1 {
        font-size: 50px;
    }

    .onzo-contact-content p {
        font-size: 14px;
    }
    .contact-sub-heading {
        font-size: 18px !important;
    }
}

/* ==================================
   1400px
================================== */

@media (max-width: 1400px) {
    .onzo-contact-content {
        width: 45%;
    }

    .onzo-contact-image {
        /* width: 55%; */
    }

    .onzo-contact-content h1 {
        font-size: 42px;
    }

    .onzo-contact-content p {
        font-size: 12px;
        margin-bottom: 35px;
    }

    .onzo-contact-features {
        gap: 24px;
    }

    .onzo-contact-feature {
        max-width: 150px;
    }
}

/* ==================================
   1200px
================================== */

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

    .onzo-contact-image {
        /* width: 52%; */
    }

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

    .onzo-contact-content p {
        font-size: 16px;
    }

    .onzo-contact-icon {
        width: 52px;
        height: 52px;
    }

    .onzo-contact-icon i {
        font-size: 22px;
    }

    .onzo-contact-feature h4 {
        font-size: 16px;
    }
}

/* ==================================
   TABLET
================================== */

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

    .onzo-contact-content {
        width: 100%;
        text-align: center;
        padding: 60px 30px 40px;
    }

    .onzo-contact-content p {
        margin-left: auto;
        margin-right: auto;
        max-width: 650px;
    }

    .onzo-contact-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 30px;
    }

    .onzo-contact-feature {
        max-width: 220px;
    }

    .onzo-contact-image {
        /* width: 100%; */
    }

    .onzo-contact-image img {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }

    .onzo-contact-content h1 {
        font-size: 42px;
    }
}

/* ==================================
   MOBILE
================================== */

@media (max-width: 767px) {
    .onzo-contact-content {
        padding: 50px 20px 25px;
    }

    .onzo-contact-badge {
        font-size: 12px;
        padding: 7px 15px;
        margin-bottom: 18px;
    }

    .onzo-contact-content h1 {
        font-size: 34px;
        line-height: 1.15;
    }

    .onzo-contact-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .onzo-contact-features {
        gap: 20px;
    }

    .onzo-contact-feature {
        max-width: 160px;
    }

    .onzo-contact-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }

    .onzo-contact-icon i {
        font-size: 22px;
    }

    .onzo-contact-feature h4 {
        font-size: 15px;
    }

    .onzo-contact-feature p {
        font-size: 13px;
    }
}

/* ==================================
   SMALL MOBILE
================================== */

@media (max-width: 575px) {
    .onzo-contact-content h1 {
        font-size: 30px;
    }

    .onzo-contact-content p {
        font-size: 15px;
    }

    .onzo-contact-features {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .onzo-contact-feature {
        max-width: 260px;
    }

    .onzo-contact-image img {
        width: 100%;
    }
}

/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* ==========================================
   CONTACT BODY SECTION
========================================== */
.onzo-contact-body {
    padding: 80px 20px;
    background-color: #fafbfe;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

.onzo-contact-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-contact-container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .onzo-contact-container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .onzo-contact-container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .onzo-contact-container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .onzo-contact-container {
        max-width: 1320px;
    }
}

/* Common Card Typography */
.onzo-contact-form-card h2,
.onzo-contact-info-column h2 {
    font-size: 28px;
    font-weight: 700;
    color: #12162e;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 14px;
    color: #68708f;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* ==========================
   LEFT COLUMN: FORM
========================== */
.onzo-contact-form-card {
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f3f9;
}

.onzo-form-group {
    position: relative;
    margin-bottom: 20px;
}

.onzo-form-group .form-icon {
    position: absolute;
    left: 18px;
    top: 28px;
    transform: translateY(-50%);
    color: #9299b8;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.onzo-form-group.textarea-group .form-icon {
    top: 24px;
}

.onzo-form-group input,
.onzo-form-group select,
.onzo-form-group textarea {
    width: 100%;
    padding: 15px 18px 15px 50px;
    border: 1px solid #e2e5f1;
    border-radius: 12px;
    font-size: 15px;
    color: #12162e;
    background-color: #ffffff;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.onzo-form-group input::placeholder,
.onzo-form-group textarea::placeholder {
    color: #9299b8;
}

.onzo-form-group input:focus,
.onzo-form-group select:focus,
.onzo-form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(111, 77, 246, 0.08);
}

/* Select Field Adjustments */
.onzo-form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.onzo-form-group.select-group .select-chevron {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #68708f;
    pointer-events: none;
    font-size: 14px;
}

/* Textarea Custom Resize Handle */
.onzo-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Submit Button */
.onzo-btn-submit {
    width: 100%;
    background-color: var(--purple);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s ease;
}

.onzo-btn-submit:hover {
    background-color: var(--purple);
}

/* ==========================
   RIGHT COLUMN: SUPPORT INFO
========================== */
.onzo-contact-info-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Info Row Cards */
.onzo-support-method {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #f1f3f9;
}

.method-icon-box {
    width: 54px;
    height: 54px;
    background-color: #f1edff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon-box i {
    color: var(--purple);
    font-size: 22px;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-details span:first-child {
    font-size: 14px;
    color: #68708f;
    margin-bottom: 4px;
}

.method-link {
    font-size: 18px;
    font-weight: 700;
    color: #12162e;
    text-decoration: none;
    margin-bottom: 4px;
}

.method-details p {
    margin: 0;
    font-size: 13px;
    color: #9299b8;
}

.method-text-highlight {
    font-size: 15px;
    font-weight: 600;
    color: #12162e;
    line-height: 1.4;
}

/* App Download Box Banner */
.onzo-app-banner {
    background: linear-gradient(135deg, var(--purple) 0%, #4a2cd9 100%);
    border-radius: 16px;
    padding: 35px 30px 0 35px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}

.banner-content {
    width: 55%;
    padding-bottom: 35px;
}

.banner-content h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 25px 0;
}

/* App Store Buttons */
.app-store-buttons {
    display: flex;
    gap: 12px;
}

.store-btn {
    background: #ffffff;
    color: #12162e;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.store-btn:hover {
    transform: translateY(-2px);
}

.store-btn i {
    font-size: 22px;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
}

.store-btn span small {
    font-size: 9px;
    font-weight: 400;
    color: #68708f;
    text-transform: uppercase;
}

/* Phone Mockup Styling */
.banner-mockup {
    width: 40%;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.banner-mockup img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 40px; /* Crops device chin smoothly as per picture */
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

/* LAPTOP & SMALL DESKTOP */
@media (max-width: 1024px) {
    .onzo-contact-container {
        gap: 20px;
    }

    .onzo-contact-form-card {
        padding: 30px;
    }

    .onzo-app-banner {
        padding: 30px 20px 0 25px;
        flex-direction: column;
    }

    .banner-content {
        width: 100%;
        padding-bottom: 25px;
    }

    .banner-mockup {
        width: 60%;
        margin-left: auto;
    }
}

/* TABLET (Stack elements on top of each other) */
@media (max-width: 850px) {
    .onzo-contact-container {
        flex-direction: column;
    }

    .onzo-contact-form-card,
    .onzo-contact-info-column {
        width: 100%;
        box-sizing: border-box;
    }

    .banner-mockup {
        width: 45%;
        margin: 0 auto;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .onzo-contact-body {
        padding: 40px 15px;
    }

    .onzo-contact-form-card {
        padding: 25px 20px;
    }

    .onzo-contact-form-card h2,
    .onzo-contact-info-column h2 {
        font-size: 24px;
    }

    .app-store-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .store-btn {
        justify-content: center;
    }

    .banner-mockup {
        width: 75%;
    }
}

/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* ==========================================
   OUR SERVICE AREAS SECTION
========================================== */
.onzo-areas-section {
    padding: 60px 20px;
    background-color: #fafbfe;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

.onzo-areas-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: stretch;
}
@media (min-width: 576px) {
    .onzo-areas-container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .onzo-areas-container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .onzo-areas-container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .onzo-areas-container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .onzo-areas-container {
        max-width: 1320px;
    }
}

/* ==========================
   LEFT COLUMN: MAP WRAPPER
========================== */
.onzo-map-wrapper {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f3f9;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Real Map Iframe Styling */
.onzo-real-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
}

/* Floating Card over Map */
.onzo-location-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(241, 243, 249, 0.9);
    pointer-events: none; /* Map ko iske piche se bhi drag/zoom kiya ja sakta hai */
}

.onzo-pin-icon {
    width: 44px;
    height: 44px;
    background-color: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(93, 61, 242, 0.3);
}

.onzo-pin-details h3 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: #12162e;
}

.onzo-pin-details p {
    margin: 0;
    font-size: 13px;
    color: #68708f;
}

/* ==========================
   RIGHT COLUMN: CONTENT CARD
========================== */
.onzo-areas-content-card {
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #f1f3f9;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.onzo-areas-content-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: #12162e;
    margin: 0 0 12px 0;
}

.onzo-areas-subtitle {
    font-size: 15px;
    color: #68708f;
    margin: 0 0 35px 0;
}

/* Areas 2-Column Grid Layout */
.onzo-areas-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.onzo-areas-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.onzo-area-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.onzo-area-item i {
    color: var(--purple);
    font-size: 16px;
}

.onzo-area-item span {
    font-size: 15px;
    color: #4e5473;
    font-weight: 500;
}

/* And many more highlight custom styling */
.onzo-area-item.highlight-item span {
    font-weight: 600;
    color: #12162e;
}

/* View All Outlined Button */
.onzo-btn-view-all {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e2e5f1;
    border-radius: 10px;
    padding: 12px 28px;
    color: var(--purple);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.onzo-btn-view-all i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.onzo-btn-view-all:hover {
    border-color: var(--purple);
    background-color: rgba(93, 61, 242, 0.02);
}

.onzo-btn-view-all:hover i {
    transform: translateX(4px);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

/* TABLET (Stack Layout vertically) */
@media (max-width: 850px) {
    .onzo-areas-container {
        flex-direction: column;
    }

    .onzo-map-wrapper {
        min-height: 350px; /* Tablet par map thoda scrollable space maintain karega */
    }

    .onzo-areas-content-card {
        padding: 35px 30px;
    }
}

/* MOBILE */
@media (max-width: 575px) {
    .onzo-areas-section {
        padding: 40px 15px;
    }

    .onzo-areas-content-card {
        padding: 30px 20px;
    }

    .onzo-areas-content-card h2 {
        font-size: 22px;
    }

    .onzo-areas-grid {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 30px;
    }

    .onzo-areas-col {
        gap: 18px;
    }

    .onzo-btn-view-all {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* NEW SECTION  */
/* ==========================================
   FAQ SECTION STYLING
========================================== */
.onzo-faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

.onzo-faq-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-faq-container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .onzo-faq-container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .onzo-faq-container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .onzo-faq-container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .onzo-faq-container {
        max-width: 1320px;
    }
}

/* Header & Badge */
.onzo-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.onzo-faq-badge {
    display: inline-block;
    background: #f1edff;
    color: var(--purple);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.onzo-faq-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #12162e;
    margin: 0;
}

.onzo-faq-header h2 span {
    color: var(--purple);
}

/* 2-Column Grid Setup */
.onzo-faq-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.onzo-faq-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Accordion Item Styling */
.onzo-faq-item {
    background: #ffffff;
    border: 1px solid #e2e5f1;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Custom Summary (Clickable Header) */
.onzo-faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    outline: none;
}

/* Hiding default Webkit marker */
.onzo-faq-item summary::-webkit-details-marker {
    display: none;
}

.onzo-faq-item summary h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #12162e;
    line-height: 1.4;
}

.onzo-faq-item .faq-chevron {
    color: var(--purple);
    font-size: 14px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

/* Active State Styles (When open) */
.onzo-faq-item[open] {
    border-color: var(--purple);
    box-shadow: 0 4px 18px rgba(111, 77, 246, 0.04);
}

.onzo-faq-item[open] summary .faq-chevron {
    transform: rotate(180deg);
}

/* Dropdown Content Smooth Wrapper */
.faq-answer {
    padding: 0 24px 20px 24px;
    border-top: 1px id transparent; /* Subtle structure if needed */
}

.faq-answer p {
    margin: 0;
    font-size: 14px;
    color: #68708f;
    line-height: 1.6;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

/* TABLET (Switching to 1-Column stack) */
@media (max-width: 991px) {
    .onzo-faq-grid {
        flex-direction: column;
        gap: 16px;
    }

    .onzo-faq-col {
        width: 100%;
        gap: 16px;
    }
}

/* MOBILE */
@media (max-width: 575px) {
    .onzo-faq-section {
        padding: 50px 15px;
    }

    .onzo-faq-header {
        margin-bottom: 35px;
    }

    .onzo-faq-header h2 {
        font-size: 26px;
    }

    .onzo-faq-item summary {
        padding: 16px 20px;
    }

    .onzo-faq-item summary h5 {
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px 16px 20px;
    }
}
