/* Start custom CSS for html, class: .elementor-element-ac517c6 *//* =====================================================
   KIDUM DENTALI – FAQ PAGE
   Scoped styles – will not affect other site sections
===================================================== */

.dental-faq-page {
    --faq-navy: #0d1f38;
    --faq-blue: #315f8d;
    --faq-orange: #f28c28;
    --faq-light: #f5f9fd;
    --faq-border: #dce7f1;
    --faq-text: #263b51;
    --faq-muted: #657a90;

    direction: rtl;
    width: 100%;
    overflow: hidden;

    font-family: "Heebo", Arial, sans-serif !important;
    color: var(--faq-text);
    background: #fff;
}

.dental-faq-page *,
.dental-faq-page *::before,
.dental-faq-page *::after {
    box-sizing: border-box;
    font-family: "Heebo", Arial, sans-serif !important;
}

.dental-faq-page .faq-wrap {
    width: min(1400px, calc(100% - 60px));
    margin: 0 auto;
}


/* =====================================================
   HERO
===================================================== */

.dental-faq-page .faq-hero {
    position: relative;
    padding: 105px 0 90px;
    text-align: center;
    color: #fff;

    background:
        radial-gradient(circle at 10% 20%, rgba(242,140,40,.22), transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(79,120,198,.24), transparent 27%),
        linear-gradient(135deg, #08172c 0%, #102744 55%, #0b1c33 100%);
}

.dental-faq-page .faq-hero::before {
    content: "?";
    position: absolute;
    left: 5%;
    top: -75px;

    font-size: 330px;
    line-height: 1;
    font-weight: 800;

    color: rgba(255,255,255,.025);
    pointer-events: none;
}

.dental-faq-page .faq-eyebrow,
.dental-faq-page .faq-section-label {
    display: inline-block;

    color: var(--faq-orange);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .4px;
}

.dental-faq-page .faq-hero h1 {
    max-width: 1050px;
    margin: 18px auto 25px;

    color: #fff !important;
    font-size: clamp(40px, 4.2vw, 68px) !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;
}

.dental-faq-page .faq-hero-text {
    max-width: 930px;
    margin: 0 auto;

    color: rgba(255,255,255,.82);
    font-size: 21px;
    line-height: 1.85;
}

.dental-faq-page .faq-topic-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    max-width: 1050px;
    margin: 42px auto 0;
}

.dental-faq-page .faq-topic-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 19px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 50px;

    background: rgba(255,255,255,.07);
    color: #fff !important;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;

    backdrop-filter: blur(8px);
    transition: .25s ease;
}

.dental-faq-page .faq-topic-nav a:hover {
    transform: translateY(-2px);
    background: var(--faq-orange);
    border-color: var(--faq-orange);
}


/* =====================================================
   INTRO
===================================================== */

.dental-faq-page .faq-intro {
    padding: 80px 0;
    background: #fff;
}

.dental-faq-page .faq-intro-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.dental-faq-page .faq-intro h2 {
    margin: 12px 0 0;

    color: var(--faq-navy) !important;
    font-size: 40px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
}

.dental-faq-page .faq-intro p {
    margin: 0 0 17px;

    color: var(--faq-muted);
    font-size: 18px;
    line-height: 1.9;
}


/* =====================================================
   CATEGORY
===================================================== */

.dental-faq-page .faq-category {
    padding: 85px 0;
    scroll-margin-top: 100px;
}

.dental-faq-page .faq-soft {
    background: var(--faq-light);
}

.dental-faq-page .faq-category-head {
    display: flex;
    align-items: center;
    gap: 25px;

    max-width: 1000px;
    margin: 0 auto 40px;
}

.dental-faq-page .faq-category-head > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 68px;

    width: 68px;
    height: 68px;
    border-radius: 20px;

    background: var(--faq-orange);
    color: #fff;

    font-size: 22px;
    font-weight: 800;

    box-shadow: 0 12px 30px rgba(242,140,40,.22);
}

.dental-faq-page .faq-category-head h2 {
    margin: 0 0 7px;

    color: var(--faq-navy) !important;
    font-size: 35px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
}

.dental-faq-page .faq-category-head p {
    margin: 0;
    color: var(--faq-muted);
    font-size: 17px;
    line-height: 1.6;
}


/* =====================================================
   FAQ ACCORDION
===================================================== */

.dental-faq-page .faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.dental-faq-page .faq-item {
    position: relative;

    margin-bottom: 13px;
    border: 1px solid var(--faq-border);
    border-radius: 18px;

    background: #fff;
    overflow: hidden;

    box-shadow: 0 5px 22px rgba(18,42,70,.045);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.dental-faq-page .faq-item:hover {
    transform: translateY(-2px);
    border-color: #c7d8e8;
    box-shadow: 0 13px 35px rgba(18,42,70,.08);
}

.dental-faq-page .faq-item[open] {
    border-color: rgba(242,140,40,.45);
    box-shadow: 0 15px 40px rgba(18,42,70,.09);
}

.dental-faq-page .faq-item summary {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 82px;
    padding: 22px 75px 22px 30px;

    color: var(--faq-navy);
    font-size: 19px;
    line-height: 1.55;
    font-weight: 700;

    cursor: pointer;
    list-style: none;
}

.dental-faq-page .faq-item summary::-webkit-details-marker {
    display: none;
}

.dental-faq-page .faq-item summary::before {
    content: "+";

    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;
    border-radius: 50%;

    background: #edf4fa;
    color: var(--faq-blue);

    font-size: 25px;
    line-height: 1;
    font-weight: 400;

    transition: .25s ease;
}

.dental-faq-page .faq-item[open] summary::before {
    content: "−";
    background: var(--faq-orange);
    color: #fff;
}

.dental-faq-page .faq-item[open] summary {
    color: var(--faq-orange);
}

.dental-faq-page .faq-answer {
    position: relative;

    padding: 2px 75px 30px 30px;
    border-top: 1px solid #edf2f6;
}

.dental-faq-page .faq-answer::before {
    content: "";

    position: absolute;
    right: 29px;
    top: 23px;
    bottom: 30px;

    width: 3px;
    border-radius: 10px;

    background: linear-gradient(
        180deg,
        var(--faq-orange),
        rgba(242,140,40,.12)
    );
}

.dental-faq-page .faq-answer p {
    margin: 20px 0 0;

    color: #586f86;
    font-size: 17px;
    line-height: 1.95;
    font-weight: 400;
}

.dental-faq-page .faq-answer a {
    color: var(--faq-orange) !important;
    font-weight: 700;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(242,140,40,.3);
}

.dental-faq-page .faq-answer a:hover {
    border-color: var(--faq-orange);
}

.dental-faq-page .faq-inline-cta {
    display: inline-block;
    margin-top: 8px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.dental-faq-page .faq-final-cta {
    position: relative;
    padding: 100px 0;

    text-align: center;
    color: #fff;

    background:
        radial-gradient(circle at 15% 50%, rgba(242,140,40,.18), transparent 25%),
        linear-gradient(135deg, #08172c, #132b49);
}

.dental-faq-page .faq-final-cta span {
    color: var(--faq-orange);
    font-size: 17px;
    font-weight: 800;
}

.dental-faq-page .faq-final-cta h2 {
    max-width: 850px;
    margin: 15px auto 18px;

    color: #fff !important;
    font-size: 43px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
}

.dental-faq-page .faq-final-cta p {
    max-width: 750px;
    margin: 0 auto 32px;

    color: rgba(255,255,255,.75);
    font-size: 18px;
    line-height: 1.8;
}

.dental-faq-page .faq-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 55px;
    padding: 14px 32px;
    border-radius: 50px;

    background: var(--faq-orange);
    color: #fff !important;

    font-size: 17px;
    font-weight: 800;
    text-decoration: none !important;

    box-shadow: 0 13px 35px rgba(242,140,40,.25);
    transition: .25s ease;
}

.dental-faq-page .faq-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(242,140,40,.35);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {

    .dental-faq-page .faq-wrap {
        width: min(100% - 40px, 1000px);
    }

    .dental-faq-page .faq-hero {
        padding: 85px 0 75px;
    }

    .dental-faq-page .faq-hero h1 {
        font-size: 46px !important;
    }

    .dental-faq-page .faq-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dental-faq-page .faq-intro h2 {
        font-size: 34px !important;
    }

    .dental-faq-page .faq-category {
        padding: 70px 0;
    }

    .dental-faq-page .faq-category-head h2 {
        font-size: 31px !important;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .dental-faq-page .faq-wrap {
        width: calc(100% - 28px);
    }

    .dental-faq-page .faq-hero {
        padding: 65px 0 55px;
    }

    .dental-faq-page .faq-eyebrow {
        font-size: 14px;
    }

    .dental-faq-page .faq-hero h1 {
        margin-top: 13px;
        font-size: 34px !important;
        line-height: 1.18 !important;
    }

    .dental-faq-page .faq-hero-text {
        font-size: 17px;
        line-height: 1.75;
    }

    .dental-faq-page .faq-topic-nav {
        gap: 7px;
        margin-top: 30px;
    }

    .dental-faq-page .faq-topic-nav a {
        padding: 9px 13px;
        font-size: 13px;
    }

    .dental-faq-page .faq-intro {
        padding: 55px 0;
    }

    .dental-faq-page .faq-intro h2 {
        font-size: 29px !important;
    }

    .dental-faq-page .faq-intro p {
        font-size: 16px;
    }

    .dental-faq-page .faq-category {
        padding: 55px 0;
    }

    .dental-faq-page .faq-category-head {
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 28px;
    }

    .dental-faq-page .faq-category-head > span {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        border-radius: 14px;
        font-size: 17px;
    }

    .dental-faq-page .faq-category-head h2 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .dental-faq-page .faq-category-head p {
        font-size: 15px;
    }

    .dental-faq-page .faq-item {
        border-radius: 14px;
        margin-bottom: 10px;
    }

    .dental-faq-page .faq-item summary {
        min-height: 70px;
        padding: 18px 57px 18px 16px;

        font-size: 16px;
        line-height: 1.55;
    }

    .dental-faq-page .faq-item summary::before {
        right: 16px;
        width: 29px;
        height: 29px;
        font-size: 21px;
    }

    .dental-faq-page .faq-answer {
        padding: 0 52px 23px 17px;
    }

    .dental-faq-page .faq-answer::before {
        right: 20px;
        top: 18px;
        bottom: 24px;
        width: 2px;
    }

    .dental-faq-page .faq-answer p {
        margin-top: 16px;
        font-size: 15.5px;
        line-height: 1.85;
    }

    .dental-faq-page .faq-final-cta {
        padding: 70px 0;
    }

    .dental-faq-page .faq-final-cta h2 {
        font-size: 31px !important;
    }

    .dental-faq-page .faq-final-cta p {
        font-size: 16px;
    }

    .dental-faq-page .faq-main-btn {
        width: 100%;
        max-width: 330px;
    }
}/* End custom CSS */