﻿
/* =========================================================
   2. Root Variables
========================================================= */

:root {
    --primary-gold: #f2b519;
    --secondary-coral: #f06669;
    --dark-gray: #343a40;
    --dark-gray1: #54626f;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-color: #495057;
    --heading-color: var(--dark-gray);
    --border-radius: 12px;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    --gold-light: #ffd97d;
    --gold: #f5a623;
}

/* =========================================================
   3. Hero / Main Slider
========================================================= */

.main-slider {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0px 0 80px;
    overflow: hidden;
    /*    background-image: linear-gradient( 115deg, rgba(248, 246, 242, 0.97) 0%, rgba(248, 246, 242, 0.88) 40%, rgba(248, 246, 242, 0.18) 75%, rgba(248, 246, 242, 0.03) 100% ), url(/img/all-on-x-banner-bg.webp);*/
    background-image: url(/img/dental-implant-consult/all-on-x-banner-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: rgb(249 232 180);
    color: var(--dark-gray);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid #fdbf0a;
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 7vw, 3.8rem);
    font-size: clamp(2.4rem, 7vw, 3.2rem);
    line-height: 1.05;
    font-weight: 800;
    color: var(--dark-gray);
    letter-spacing: 1px;
}

    .hero-content h1 span {
        color: #f06669;
    }

.hero-text {
    max-width: 620px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

    .hero-highlights span {
        display: inline-flex;
        align-items: center;
        padding: 10px 16px;
        border-radius: 30px;
        background: rgb(242 181 25);
        border: 1px solid rgb(242 181 25);
        color: #54626f;
        font-size: 0.92rem;
        font-weight: 700;
    }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-btn,
.btn1 {
    background: linear-gradient(45deg, var(--primary-gold), #ffc107);
    color: var(--dark-gray);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 181, 25, 0.4);
}

    .btn1.hero-btn {
        background: linear-gradient(45deg, var(--primary-gold), #ffc107);
        color: var(--dark-gray);
        font-weight: 600;
        padding: 15px 35px;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 15px rgba(242, 181, 25, 0.4);
    }

        .btn1.hero-btn:hover {
            transform: translateY(-3px);
            color: var(--dark-gray);
            box-shadow: 0 18px 32px rgba(15, 107, 99, 0.28);
        }

.hero-btn-outline {
    background: rgba(255, 255, 255, 0.72);
    color: var(--dark-gray);
    border: 1px solid rgba(15, 107, 99, 0.18);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

    .hero-btn-outline:hover {
        background: #f2b519;
        color: var(--dark-gray);
        transform: translateY(-3px);
    }

/*.all-on-x-img img {
    border-radius: 20px;
    border: 1px solid #f8e6b3;
}*/

/* cleaner candidate block inside hero */
.hero-candidate-box {
    margin: 18px 0 18px;
}

.hero-candidate-box__inner {
    position: relative;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgb(255 252 244 / 8%);
    border: 1px solid rgba(242, 188, 30, 0.22);
    box-shadow: 0 10px 28px rgba(35, 49, 63, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
/*
    .hero-candidate-box__inner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 18px;
        width: 78px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, #f2bc1e 0%, #f5d67a 100%);
    }*/

.hero-candidate-head {
    margin-bottom: 20px;
}

.hero-candidate-kicker {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #b27d11;
}

.hero-candidate-box h3 {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    color: #354454;
}

.hero-candidate-head p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.hero-candidate-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-candidate-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(63, 81, 100, 0.08);
    box-shadow: 0 4px 14px rgba(35, 49, 63, 0.04);
}

    .hero-candidate-pill i {
        flex: 0 0 auto;
        font-size: 15px;
        color: #f06669;
    }

    .hero-candidate-pill span {
        display: block;
        font-size: 14px;
        font-weight: 700;
        font-size: 13px;
        color: #3f5164;
    }

.hero-candidate-pill--wide {
    min-width: min(100%, 320px);
}

/* make CTA sit nicely after candidate block */
.hero-actions {
    margin-top: 8px;
}

/* responsive */
@media (max-width: 991px) {
    .hero-candidate-box {
        margin: 16px 0 16px;
    }

    .hero-candidate-box__inner {
        padding: 16px 16px 14px;
        text-align: left;
    }

    .hero-candidate-box h3 {
        font-size: 20px;
    }

    .hero-candidate-head p {
        font-size: 13px;
    }

    .hero-candidate-list {
        gap: 8px;
    }

    .hero-candidate-pill {
        width: 100%;
        border-radius: 16px;
        min-height: auto;
    }

    .hero-candidate-pill--wide {
        min-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-candidate-box__inner {
        padding: 15px 14px 13px;
        border-radius: 18px;
    }

        .hero-candidate-box__inner::before {
            left: 14px;
            width: 62px;
        }

    .hero-candidate-kicker {
        font-size: 10px;
    }

    .hero-candidate-box h3 {
        font-size: 18px;
    }

    .hero-candidate-head p {
        font-size: 13px;
        line-height: 1.5;
    }

    .hero-candidate-pill {
        padding: 11px 12px;
        border-radius: 14px;
    }

        .hero-candidate-pill span {
            font-size: 13px;
        }
}
/* =========================================================
   4. Hero Responsive
========================================================= */

@media (max-width: 991px) {
    .main-slider {
        min-height: 65vh;
        padding: 95px 0 70px;
        background-position: calc(65% + (10 * ((100vw - 767px) / (991 - 767)))) center;
        background-image: linear-gradient(180deg, rgb(248 246 242 / 21%) 0%, rgb(248 246 242 / 19%) 55%, rgb(248 246 242 / 0%) 100%), url(/img/dental-implant-consult/all-on-x-banner-bg.webp);
    }

    .hero-content {
        max-width: 580px;
    }
}

@media (max-width: 767px) {
    .main-slider {
        min-height: auto;
        padding: 85px 0 0px;
        text-align: center;
        background-image: linear-gradient( to bottom, #ffffff 0%, #f7f7f7 55%, #efefef 100% );
        background: #e5e5e9;
        background-position: clamp(80%, calc(85% - (767px - 100vw) / 35), 85%) center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-highlights,
    .hero-actions {
        justify-content: center;
    }

    .hero-btn,
    .btn1 {
        width: 100%;
        max-width: 307px;
    }
}

@media(max-width:576px) {
    .main-slider {
/*        background-image: linear-gradient( to bottom, #ffffff 0%, #f7f7f7 55%, #efefef 100% );*/
        background-position: clamp(68%, calc(85% - (767px - 100vw) / 35), 85%) center;
                background: #e5e5e9;
    }
}

@media (max-width: 480px) {


    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .hero-highlights span {
        font-size: 0.85rem;
        padding: 9px 14px;
    }
}

/* =========================================================
   5. Doctor Section
========================================================= */

.doctor-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.doctor-section-title {
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(176, 142, 82, 0.12);
    color: #b08e52;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.doctor-highlight .dr {
    font-size: 30px;
    font-weight: 700;
}

    .doctor-highlight .dr span {
        font-size: 20px;
        font-weight: 500;
        padding-top: -2px;
    }

.doctor-section-title h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.1;
    font-weight: 800;
    color: #2f2f2f;
}

.doctor-section-title p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

.doctor-content-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.content-badge {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff5454;
    background: rgba(15, 107, 99, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.doctor-content-card h3 {
    margin-bottom: 18px;
    font-size: clamp(1.6rem, 2.2vw, 2.5rem);
    line-height: 1.25;
    font-weight: 700;
    color: #4a5563;
}

.doctor-content-card .edu {
    color: #ff5454;
    font-size: 1rem;
    font-weight: 500;
}

.doctor-intro {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.9;
    color: #5d5d5d;
}

.doctor-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.doctor-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 18px;
    border-radius: 18px;
    background: #fafafa;
    border: 1px solid #eeeeee;
    transition: all 0.3s ease;
}

    .doctor-feature-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        background: #ffffff;
    }

.dcard img {
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.feature-icon {
    min-width: 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b08e52, #d2b06f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
    box-shadow: 0 8px 18px rgba(176, 142, 82, 0.2);
}

.feature-text h4 {
    margin: 0 0 6px;
    font-size: 1.08rem;
    font-weight: 700;
    color: #2d2d2d;
}

.feature-text p {
    margin: 0;
    color: #666;
    line-height: 1.75;
    font-size: 0.96rem;
}

.doctor-highlight-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.highlight-box {
    padding: 18px;
    border-radius: 18px;
    background: #f2b51912;
    border: 1px solid rgba(242, 181, 25, 0.36);
}

    .highlight-box strong {
        display: block;
        margin-bottom: 6px;
        color: #2e2e2e;
        font-size: 1rem;
        font-weight: 700;
    }

    .highlight-box span {
        display: block;
        color: #6a6a6a;
        font-size: 0.92rem;
        line-height: 1.7;
    }

.doctor-profile-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.doctor-image-wrap {
    position: relative;
    overflow: hidden;
}

    .doctor-image-wrap img {
        width: 100%;
        height: 100%;
        min-height: 540px;
        object-fit: cover;
        display: block;
    }

.doctor-profile-content {
    padding: 28px 26px 30px;
    text-align: center;
}

.doctor-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #b08e52;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.doctor-profile-content h3 {
    margin-bottom: 8px;
    font-size: 2.2rem;
    font-weight: 800;
    color: #2e2e2e;
}

.doctor-role {
    margin-bottom: 12px;
    color: #ff5454;
    font-size: 1rem;
    font-weight: 600;
}

.doctor-short-bio {
    margin: 0;
    color: #666;
    font-size: 0.96rem;
    line-height: 1.8;
}

 Doctor Section Responsive 

@media (max-width: 991px) {
    .doctor-section {
        padding: 75px 0;
    }

    .doctor-content-card {
        padding: 30px;
    }

    .doctor-image-wrap img {
        min-height: 460px;
    }
}

@media (max-width: 767px) {
    .doctor-section {
        padding: 60px 0;
    }

    .doctor-section-title {
        margin-bottom: 35px;
    }

    .doctor-content-card,
    .doctor-profile-card {
        border-radius: 22px;
    }

    .doctor-content-card {
        padding: 24px 20px;
    }

        .doctor-content-card h3 {
            font-size: 1.5rem;
        }

    .doctor-feature-item {
        padding: 16px;
        gap: 14px;
    }

    .doctor-highlight-boxes {
        grid-template-columns: 1fr;
    }

    .doctor-btn {
        width: 100%;
        text-align: center;
    }

    .doctor-image-wrap img {
        min-height: 360px;
    }

    .doctor-profile-content {
        padding: 22px 18px 24px;
    }
}

@media (max-width: 480px) {
    .doctor-content-card h3 {
        font-size: 1.35rem;
    }

    .doctor-intro,
    .feature-text p,
    .doctor-short-bio {
        font-size: 0.92rem;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .doctor-section-title p {
        font-size: 0.95rem;
    }
}

/* =========================================================
   6. Common Badge Items
========================================================= */

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

    .badge-item span {
        font-size: 14px;
        font-weight: 700;
        color: #2d2d2d;
        text-transform:capitalize;
    }

    .badge-item i {
        color: var(--primary-gold);
        font-size: 1.2rem;
    }

/* =========================================================
   7. Benefits / Care Advantages Section
========================================================= */

.care-advantages-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
    overflow: hidden;
}

.care-advantages-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

    .care-advantages-heading .section-tag {
        display: inline-block;
        padding: 8px 18px;
        margin-bottom: 16px;
        border-radius: 50px;
        background: rgba(242, 181, 25, 0.12);
        color: #c78f00;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .care-advantages-heading h2 {
        margin-bottom: 14px;
        font-size: clamp(2rem, 4vw, 3.3rem);
        line-height: 1.15;
        font-weight: 800;
        color: #2f2a1f;
    }

    .care-advantages-heading p {
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.8;
        color: #7a6a45;
    }

.care-advantage-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #f8e6b3;
    box-shadow: 0 10px 30px rgba(150, 110, 10, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

    .care-advantage-card:hover {
        transform: translateY(-14px);
        box-shadow: 0 24px 45px rgba(150, 110, 10, 0.16);
        border-color: #f2b519;
    }

.care-advantage-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f2b519, #ffd45c);
    color: #ffffff;
    font-size: 1.75rem;
    box-shadow: 0 12px 25px rgba(242, 181, 25, 0.28);
}

    .care-advantage-icon i {
        transition: none;
    }

.care-advantage-card h3 {
    margin-bottom: 14px;
    font-size: 1rem;
    font-weight: 700;
    color: #2f2a1f;
    line-height: 1.35;
}

.care-advantage-card p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.8;
    color: #7a6a45;
}

/* Care Advantages Responsive */

@media (max-width: 991px) {
    .care-advantages-section {
        padding: 75px 0;
    }

    .care-advantages-heading {
        margin-bottom: 40px;
    }

    .care-advantage-card {
        padding: 28px 20px;
    }
}

@media (max-width: 767px) {
    .care-advantages-section {
        padding: 60px 0;
    }

    .care-advantages-heading h2 {
        font-size: 1.9rem;
    }

    .care-advantages-heading p {
        font-size: 0.98rem;
    }

    .care-advantage-card {
        border-radius: 20px;
        padding: 26px 18px;
    }

    .care-advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 1.55rem;
        margin-bottom: 18px;
    }

    .care-advantage-card h3 {
        font-size: 1.2rem;
    }

    .care-advantage-card p {
        font-size: 0.94rem;
    }
}

/* =========================================================
   8. Testimonial Section
========================================================= */

.hr-full-gradient {
    border: none;
    height: 1.5px;
    width: 100%;
    background: linear-gradient(to right, transparent, #8b5e4c, transparent);
}

.hr-center-line::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #8b5e4c;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.testimonial-section {
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
    padding: 80px 0px;
}

.testimonial-item {
    max-width: 750px;
    margin: auto;
    text-align: center;
}

    .testimonial-item p {
        font-size: 20px;
        color: var(--dark-gray1);
        line-height: 1.8;
    }

    .testimonial-item h6 {
        margin-top: 25px;
        font-weight: 700;
        letter-spacing: 1px;
        font-size: 20px;
    }

    .testimonial-item span {
        font-weight: 400;
        color: #777;
    }

.stars {
    color: #f2b519;
    margin-top: 8px;
    font-size: 18px;
}

/* Owl Dots as Line Indicator */

.testimonial-section .owl-dots {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.testimonial-section .owl-dot span {
    width: 30px;
    height: 5px;
    background: #d6ccc5;
    display: block;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.testimonial-section .owl-dot.active span {
    width: 50px;
    background: #8b5e4c;
}

.testimonial-section .owl-dot:hover span {
    background: #b08a78;
}

/* Testimonial Carousel Nav */

.testimonial-section .owl-carousel .owl-nav {
    margin: 0;
}

    .testimonial-section .owl-carousel .owl-nav button.owl-prev,
    .testimonial-section .owl-carousel .owl-nav button.owl-next {
        position: absolute;
        top: 20%;
        transform: translateY(-50%);
        width: 52px;
        height: 52px;
        border: 2px !important;
        border-radius: 50%;
        background: #ffba0d !important;
        color: #4a5563 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
        transition: all 0.3s ease;
        z-index: 5;
    }

    .testimonial-section .owl-carousel .owl-nav button.owl-prev {
        left: -10px;
    }

    .testimonial-section .owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }

        .testimonial-section .owl-carousel .owl-nav button.owl-prev:hover,
        .testimonial-section .owl-carousel .owl-nav button.owl-next:hover {
            background: #fff !important;
            color: #4a5563 !important;
            border: 2px solid #f2b519 !important;
        }

        .testimonial-section .owl-carousel .owl-nav button.owl-prev span,
        .testimonial-section .owl-carousel .owl-nav button.owl-next span {
            font-size: 18px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

/* Testimonial Responsive */

@media (max-width: 1023px) {
    .testimonial-item p {
        font-size: 20px;
    }
}

@media (max-width: 991.98px) {
    .testimonial-section .owl-carousel .owl-nav button.owl-prev,
    .testimonial-section .owl-carousel .owl-nav button.owl-next {
        width: 46px;
        height: 46px;
    }

    .testimonial-section .owl-carousel .owl-nav button.owl-prev {
        left: -6px;
    }

    .testimonial-section .owl-carousel .owl-nav button.owl-next {
        right: -6px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-section .owl-dot span {
        width: 22px;
    }

    .testimonial-section .owl-dot.active span {
        width: 36px;
    }

    .testimonial-section .owl-carousel .owl-nav button.owl-prev,
    .testimonial-section .owl-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
    }

        .testimonial-section .owl-carousel .owl-nav button.owl-prev span,
        .testimonial-section .owl-carousel .owl-nav button.owl-next span {
            font-size: 15px;
        }

    .testimonial-section .owl-carousel .owl-nav button.owl-prev {
        left: -2px;
    }

    .testimonial-section .owl-carousel .owl-nav button.owl-next {
        right: -2px;
    }
}

/* =========================================================
   9. Payment Support Section
========================================================= */

.payment-support-section {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(180deg, #faf7ef 0%, #fffdf8 100%);
    overflow: hidden;
}

.payment-support-header {
/*    max-width: 760px;*/
    margin: 0 auto 55px;
}

.payment-support-tag {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 16px;
    border-radius: 50px;
    background: rgba(242, 181, 25, 0.14);
    color: #c99200;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.payment-support-header h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.15;
    font-weight: 800;
    color: #4a5563;
}

.payment-support-header p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #7d7361;
}

.payment-plan-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(242, 181, 25, 0.18);
    box-shadow: 0 14px 40px rgba(88, 74, 40, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .payment-plan-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 24px 55px rgba(88, 74, 40, 0.16);
    }

    .payment-plan-card::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 6px;
    }

.plan-card-top {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px 30px 22px 34px;
    border-bottom: 1px solid rgb(242 181 25 / 18%);
}

.plan-icon-box {
    flex-shrink: 0;
    width: 74px;
    height: 74px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f2b519, #ffd45c);
    color: #ffffff;
    font-size: 1.7rem;
}

.plan-heading-block {
    min-width: 0;
}

.plan-mini-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #c99200;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-heading-block h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.25;
    font-weight: 800;
    color: #4f5f72;
}

.plan-card-body {
    padding: 26px 30px 24px 34px;
    flex: 1;
}

    .plan-card-body p {
        margin: 0 0 22px;
        font-size: 1rem;
        line-height: 1.9;
        color: #5f6f82;
    }

.plan-feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

    .plan-feature-list li {
        position: relative;
        padding-left: 28px;
        font-size: 0.96rem;
        line-height: 1.7;
        color: #58677a;
        font-weight: 500;
    }

        .plan-feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(242, 181, 25, 0.14);
            color: #c99200;
            font-size: 0.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.plan-card-footer {
    padding: 0 30px 30px 34px;
}

.plan-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 13px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #ffffff;
    background: linear-gradient(135deg, #f2b519, #d89b00);
    box-shadow: 0 12px 24px rgba(242, 181, 25, 0.24);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .plan-link-btn:hover {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 16px 28px rgba(242, 181, 25, 0.3);
    }

.payment-plan-card--saving .plan-icon-box,
.payment-plan-card--finance .plan-icon-box {
    background: linear-gradient(135deg, #f2b519, #ffd45c);
}

/* Payment Support Responsive */

@media (max-width: 991px) {
    .payment-support-section {
        padding: 75px 0;
    }

    .payment-support-header {
        margin-bottom: 40px;
    }

    .plan-card-top,
    .plan-card-body,
    .plan-card-footer {
        padding-left: 26px;
        padding-right: 26px;
    }

    .plan-card-top {
        padding-top: 26px;
        padding-bottom: 20px;
    }

    .plan-card-footer {
        padding-bottom: 26px;
    }
}

@media (max-width: 767px) {
    .payment-support-section {
        padding: 60px 0;
    }

    .payment-support-header h2 {
        font-size: 1.95rem;
    }

    .payment-support-header p {
        font-size: 0.98rem;
    }

    .payment-plan-card {
        border-radius: 22px;
    }

    .plan-card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .plan-icon-box {
        width: 66px;
        height: 66px;
        border-radius: 18px;
        font-size: 1.45rem;
    }

    .plan-heading-block h3 {
        font-size: 1.35rem;
    }

    .plan-card-body p,
    .plan-feature-list li {
        font-size: 0.94rem;
    }

    .plan-link-btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .payment-support-header h2 {
        font-size: 2.5rem;
    }

    .plan-card-top,
    .plan-card-body,
    .plan-card-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .plan-heading-block h3 {
        font-size: 1.2rem;
    }
}

/* =========================================================
   10. FAQ Section
========================================================= */

.implant-faq-section {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(180deg, #fffdf7 0%, #f9f4e8 100%);
    overflow: hidden;
}

.implant-faq-header {
/*    max-width: 760px;*/
    margin: 0 auto 55px;
}

.implant-faq-tag {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 16px;
    border-radius: 50px;
    background: rgba(242, 181, 25, 0.14);
    color: #c99200;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.implant-faq-header h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.12;
    font-weight: 800;
    color: #4b5563;
}

.implant-faq-header p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #7a725f;
}

.implant-faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.implant-faq-card {
    border: none;
    background: transparent;
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(95, 78, 33, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .implant-faq-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 38px rgba(95, 78, 33, 0.14);
    }

.implant-faq-question {
    background: #ffffff !important;
    color: #4f5f72 !important;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 24px 70px 24px 26px;
    border: none !important;
    box-shadow: none !important;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
}

    .implant-faq-question.collapsed {
        border-left: 4px solid transparent;
    }

    .implant-faq-question:not(.collapsed) {
        background: linear-gradient(180deg, #fffaf0 0%, #fffdf8 100%) !important;
        color: #3e4d5f !important;
        border-left: 4px solid #f2b519;
        padding-left: 30px;
    }

    .implant-faq-question:hover {
        background: #fffaf0 !important;
    }

    .implant-faq-question::after {
        background-image: none !important;
        content: "+";
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(242, 181, 25, 0.14);
        color: #c99200;
        font-size: 1.4rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: none !important;
        transition: all 0.3s ease;
        position: absolute;
        right: 22px;
        top: 50%;
        margin-top: -18px;
    }

    .implant-faq-question:not(.collapsed)::after {
        content: "−";
        background: #f2b519;
        color: #ffffff;
        transform: scale(1.05) !important;
        box-shadow: 0 10px 20px rgba(242, 181, 25, 0.22);
    }

.implant-faq-answer {
    background: #ffffff;
    padding: 20px 26px 26px 30px;
    font-size: 0.98rem;
    line-height: 1.9;
    color: #617184;
    border-left: 4px solid #f2b519;
}

.implant-faq-card .accordion-collapse {
    transition: all 0.38s ease;
}

.implant-faq-card .accordion-body {
    animation: faqFadeUp 0.35s ease;
}

@keyframes faqFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Responsive */

@media (max-width: 991px) {
    .implant-faq-section {
        padding: 75px 0;
    }

    .implant-faq-header {
        margin-bottom: 40px;
    }

    .implant-faq-question {
        font-size: 1rem;
        padding: 22px 64px 22px 22px;
    }

    .implant-faq-answer {
        padding: 0 22px 22px 26px;
    }
}

@media (max-width: 767px) {
    .implant-faq-section {
        padding: 60px 0;
    }

    .implant-faq-header h2 {
        font-size: 1.95rem;
    }

    .implant-faq-header p {
        font-size: 0.98rem;
    }

    .implant-faq-card {
        border-radius: 18px !important;
    }

    .implant-faq-question {
        font-size: 0.96rem;
        line-height: 1.6;
        padding: 20px 58px 20px 18px;
    }

        .implant-faq-question::after {
            right: 16px;
            width: 32px;
            height: 32px;
            font-size: 1.2rem;
            margin-top: -16px;
        }

        .implant-faq-question:not(.collapsed) {
            padding-left: 22px;
        }

    .implant-faq-answer {
        padding: 0 18px 20px 22px;
        font-size: 0.94rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .implant-faq-header h2 {
        font-size: 1.7rem;
    }

    .implant-faq-question {
        font-size: 0.92rem;
    }

    .implant-faq-answer {
        font-size: 0.91rem;
    }
}

/* =========================================================
   11. Book Bar CTA
========================================================= */

.book-bar {
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23fbbe0d' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E"), linear-gradient(to bottom, #fbbe0d38, #fbbe0d38);
    padding: 100px 0px;
}

    .book-bar h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.15;
        font-weight: 800;
    }

    .book-bar p {
        font-size: 18px;
    }

/* =========================================================
   12. Header / Nav
========================================================= */

.site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

.nav-container {
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Doctor Header Strip */

.doctor-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
}

.doctor-name h5 {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    color: #1a1a1a;
}

.doctor-name span {
    font-size: 20px;
    color: #888;
    font-weight: 600;
}

.divider {
    width: 1px;
    height: 40px;
    background: #e5e5e5;
}

.doctor-credentials small {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.btn-consult {
    background: linear-gradient(135deg, #ffb400, #ffcc33);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(255, 180, 0, 0.3);
    transition: all 0.3s ease;
}

    .btn-consult:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(255, 180, 0, 0.4);
    }

/* =========================================================
   13. Smile Showcase
========================================================= */

.ig-smile-showcase {
    padding: 110px 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

    .ig-smile-showcase::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(242, 181, 25, 0.03) 0%, transparent 45%, rgba(242, 181, 25, 0.05) 100% );
        pointer-events: none;
    }

.ig-smile-card {
    position: relative;
    height: auto;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 240, 0.98) 100%);
    border: 1px solid rgba(242, 181, 25, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

    .ig-smile-card:hover {
        transform: translateY(-8px);
        border-color: rgba(242, 181, 25, 0.34);
    }

.ig-smile-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.ig-smile-card__case {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a67b0f;
}

.ig-compare {
    --igSplit: 50%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #f8edd0;
    border: 1px solid rgba(242, 181, 25, 0.18);
}

.ig-compare__viewport {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 24px;
}

    .ig-compare__viewport::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(242, 181, 25, 0.16), transparent 30%), linear-gradient(to bottom, rgba(255, 255, 255, 0.18), transparent 20%);
        pointer-events: none;
        z-index: 2;
    }

.ig-compare__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}

.ig-smile-card:hover .ig-compare__img {
    transform: scale(1.03);
}

.ig-compare__img--after {
    z-index: 0;
}

.ig-compare__img--before {
    z-index: 1;
    clip-path: inset(0 calc(100% - var(--igSplit)) 0 0);
}

.ig-compare__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--igSplit);
    width: 0;
    z-index: 5;
    pointer-events: none;
}

    .ig-compare__line::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, #f9cf58 0%, #f2b519 100%);
        box-shadow: 0 0 14px rgba(242, 181, 25, 0.25);
    }

.ig-compare__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(180deg, #f9cf58 0%, #f2b519 100%);
    border: 2px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 14px 30px rgba(242, 181, 25, 0.28), 0 0 0 8px rgba(255, 255, 255, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ig-compare__handle span {
        position: relative;
        width: 18px;
        height: 18px;
    }

        .ig-compare__handle span::before,
        .ig-compare__handle span::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 8px;
            height: 8px;
            border-top: 2px solid #fff;
            border-right: 2px solid #fff;
        }

        .ig-compare__handle span::before {
            left: 1px;
            transform: translateY(-50%) rotate(225deg);
        }

        .ig-compare__handle span::after {
            right: 1px;
            transform: translateY(-50%) rotate(45deg);
        }

.ig-compare__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    margin: 0;
    cursor: ew-resize;
    z-index: 10;
}

    .ig-compare__range::-webkit-slider-thumb {
        appearance: none;
        width: 58px;
        height: 58px;
        cursor: ew-resize;
    }

    .ig-compare__range::-moz-range-thumb {
        width: 58px;
        height: 58px;
        border: 0;
        cursor: ew-resize;
    }

.ig-smile-card__content {
    padding: 20px 6px 4px;
}

.ig-smile-card__text {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .ig-smile-card__text.is-expanded {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

.ig-read-more-btn {
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: color 0.3s ease;
    letter-spacing: 1.5px;
}

    .ig-read-more-btn:hover {
        color: #c89208;
    }

.ig-smile-carousel .owl-stage {
    display: flex;
}

.ig-smile-carousel .owl-item {
    height: auto;
}

.ig-smile-carousel .item {
    height: 100%;
    padding: 6px;
}

.ig-smile-carousel .owl-nav {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

    .ig-smile-carousel .owl-nav button.owl-prev,
    .ig-smile-carousel .owl-nav button.owl-next {
        width: 52px;
        height: 52px;
        border-radius: 50% !important;
        border: 2px solid rgba(242, 181, 25, 0.28) !important;
        background: #ffba0d !important;
        color: #4a5563 !important;
        font-size: 20px !important;
        transition: all 0.3s ease;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 24px rgba(242, 181, 25, 0.10);
    }

        .ig-smile-carousel .owl-nav button.owl-prev:hover,
        .ig-smile-carousel .owl-nav button.owl-next:hover {
            background: #fff !important;
            color: #4a5563 !important;
            border: 2px solid #f2b519 !important;
            transform: translateY(-3px);
        }

.ig-smile-carousel .owl-dots {
    margin-top: 16px;
    text-align: center;
}

    .ig-smile-carousel .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px;
        background: rgba(242, 181, 25, 0.25);
        display: block;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .ig-smile-carousel .owl-dots .owl-dot.active span {
        width: 28px;
        border-radius: 999px;
        background: #f2b519;
    }

/* Smile Showcase Responsive */

@media (max-width: 991.98px) {
    .ig-smile-showcase {
        padding: 90px 0;
    }

    .ig-smile-card__text {
        font-size: 15px;
        line-height: 1.75;
    }
}

@media (max-width: 575.98px) {
    .ig-smile-showcase {
        padding: 78px 0;
    }

    .ig-smile-card {
        padding: 14px;
        border-radius: 22px;
    }

    .ig-compare,
    .ig-compare__viewport {
        border-radius: 18px;
    }

    .ig-compare__handle {
        width: 52px;
        height: 52px;
    }

    .ig-smile-card__content {
        padding-top: 16px;
    }

    .ig-smile-card__text {
        font-size: 14px;
        line-height: 1.7;
    }

    .ig-smile-carousel .owl-nav button.owl-prev,
    .ig-smile-carousel .owl-nav button.owl-next {
        width: 46px;
        height: 46px;
    }
}

/* =========================================================
   14. Additional Responsive Tweaks
========================================================= */

@media (min-width: 768px) and (max-width: 1023.98px) {
    .payment-support-header h2 {
        margin-bottom: 14px;
        font-size: clamp(2.7rem, 4vw, 3.6rem);
    }

    .book-bar h2 {
        font-size: clamp(2.8rem, 4vw, 3.6rem);
        text-align: center;
    }

    .book-bar p {
        text-align: center;
    }

    .testimonial-item {
        max-width: 570px;
    }
}

@media (max-width: 767.98px) {
    .book-bar h2 {
        font-size: clamp(2.5rem, 4vw, 3.6rem);
        text-align: center;
    }

    .book-bar p {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .nav-container {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        margin: 0 0 18px;
        font-size: clamp(3.3rem, 6vw, 5.2rem);
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) and (max-width: 997px) {
    .hero-content h1 {
        margin: 0 0 18px;
        font-size: clamp(3.8rem, 6vw, 5.2rem);
    }
}

@media (max-width: 480px) {
    .badge-item span {
        font-size: 0.9rem;
        font-weight: 600;
    }
}

/* =========================================================
   15. Header Doctor Block
========================================================= */

/*.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-doctor-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    gap: 6px;
    padding: 14px 18px;
    border-right: 5px solid #f0b232;
}

.header-doctor-name {
    font-size: 1.8rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--dark-gray1);
    text-transform: uppercase;
}

    .header-doctor-name span {
        font-weight: 400;
        margin-left: 4px;
    }

.header-doctor-credentials {
    font-size: 0.9rem;
    line-height: 1.45;
    font-weight: 500;
    color: #797c7f;
}

.header-doctor-call {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: var(--primary-gold);
}

    .header-doctor-call span {
        color: #f06669;
    }

    .header-doctor-call a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 14px;
        border-radius: 999px;
        background: #f06669;
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0;
        box-shadow: 0 8px 20px rgb(240 102 105 / 32%);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

        .header-doctor-call a i {
            color: #fff;
            font-size: 1.2rem;
        }

        .header-doctor-call a:hover {
            transform: translateY(-2px);
        }*/

/* Header Doctor Responsive */

/*@media (max-width: 991.98px) {
    .header-doctor-name {
        font-size: 1.05rem;
    }

    .header-doctor-credentials {
        font-size: 0.72rem;
    }

    .header-doctor-call {
        font-size: 0.72rem;
        gap: 8px;
    }

        .header-doctor-call a {
            font-size: 0.9rem;
            padding: 7px 12px;
        }

            .header-doctor-call a i {
                color: #fff;
                font-size: 1rem;
            }
}

@media (min-width: 992px) and (max-width: 1339.98px) {
    .header-doctor-name {
        font-size: 1.5rem !important;
    }

    .header-doctor-credentials {
        font-size: 0.8rem !important;
    }
}*/



/*===========================================================================*/


/* =========================================================
   FILE 2: GENERAL / DIFFERENT LANDING PAGE STYLES
   Keep this separate from FILE 1
========================================================= */

/* =========================================================
   1. Variables & Base Styles
========================================================= */

:root {
    --primary-gold: #f2b519;
    --secondary-coral: #f06669;
    --dark-gray: #343a40;
    --dark-gray1: #54626f;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-color: #495057;
    --heading-color: var(--dark-gray);
    --border-radius: 12px;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-weight: 700;
}

section {
    padding: 80px 0;
}

/* =========================================================
   2. Header & Navigation
========================================================= */
.site-header {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(242, 181, 25, 0.14);
    position: sticky;
    top: 0;
    z-index: 1020;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.navbar-brand {
    flex-shrink: 0;
    padding: 0;
}

    .navbar-brand .logo-image {
        width: auto;
        max-width: 220px;
        transition: max-width 0.3s ease;
        height:90px;
    }

.contact-icon {
    color: #FFD000;
    margin-right: 8px;
}



.cta-btn,
.submit-btn,
.cta-link,
.call-btn {
    position: relative;
    overflow: hidden;
}

    .cta-btn::after,
    .submit-btn::after,
    .cta-link::after,
    .call-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 75%;
        height: 100%;
        background: linear-gradient( 90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1) );
        transform: skewX(-25deg);
        transition: left 0.75s ease-in-out;
    }

    .cta-btn:hover::after,
    .submit-btn:hover::after,
    .cta-link:hover::after,
    .call-btn:hover::after {
        left: 150%;
    }

    .cta-btn:hover,
    .submit-btn:hover {
        transform: translateY(-3px);
        color: var(--dark-gray);
    }

.header-doctor-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-doctor-call {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    padding-right: 0;
}

.header-call-text {
    white-space: nowrap;
    display: block;
    color: #f06669;
    font-weight: 700;
    line-height: 1;
}

.header-book {
    display: none;
    opacity: 0;
    transform: translateY(-8px);
}

.header-doctor-call .call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 999px;
    background: #f06669;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .header-doctor-call .call-btn i {
        color: #fff;
        font-size: 1.2rem;
    }

    .header-doctor-call .call-btn:hover {
        transform: translateY(-2px);
    }

.call-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .call-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 75%;
        height: 100%;
        background: linear-gradient( 90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1) );
        transform: skewX(-25deg);
        transition: left 0.75s ease-in-out;
    }

    .call-btn:hover::after {
        left: 150%;
    }

    .call-btn:hover {
        transform: translateY(-3px);
    }

.site-header.scrolled {
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

    .site-header.scrolled .navbar-brand .logo-image {
        max-width: 200px;
    }

    .site-header.scrolled .header-call-text {
        display: none;
    }

    .site-header.scrolled .header-book {
        display: block;
        opacity: 1;
        transform: translateY(0);
        animation: fadeSlideIn 0.25s ease;
    }

/* Tablet */
@media (max-width: 991.98px) {
    .header-bar {
        gap: 14px;
    }

    .navbar-brand .logo-image {
        max-width: 150px;
    }

    .site-header.scrolled .navbar-brand .logo-image {
        max-width: 145px;
    }

    .header-doctor-block {
        gap: 10px;
    }

    .header-call-text {
        font-size: 1rem !important;
    }

    .header-doctor-call .call-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }

    .lg-screen .cta-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }

    .site-header .header-book .cta-btn {
        font-size: 0.82rem;
        padding: 10px 16px;
    }
}

@media (min-width: 591px) {
    .lg-screen .d-sm-inline-block-c {
        display: inline-block !important;
    }
}

@media (max-width: 597px) {
    .block-md {
        flex-direction: column;
    }


    .header-doctor-call {
        margin-bottom: 10px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .site-header {
        padding: 8px 0;
    }

    .header-bar {
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .navbar-brand .logo-image {
        max-width: 140px;
    }

    .header-doctor-call {
        justify-content: flex-end;
    }


}

@media (max-width: 375px) {
    .navbar-brand .logo-image {
        width: 120px;
        height:68px;
    }

    .header-doctor-call .call-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
        font-weight: 600;
    }

    .lg-screen .cta-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .header-doctor-call .call-btn i {
        font-size: 0.9rem;
    }
}
/* =========================================================
   3. Hero Section
========================================================= */

.hero {
    background-image: linear-gradient(135deg, rgba(255, 249, 238, 0.9) 0%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 245, 245, 0.9) 100%), url('/img/dental-implant-consult/chair.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    padding: 0px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

    .hero h1 span {
        color: var(--secondary-coral);
    }

.hero h2 {
    font-weight: 800;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

    .floating-shapes .shape:nth-child(1) {
        width: 200px;
        height: 200px;
        top: 10%;
        left: 5%;
        background-color: var(--primary-gold);
    }

    .floating-shapes .shape:nth-child(2) {
        width: 100px;
        height: 100px;
        top: 60%;
        right: 10%;
        background-color: var(--secondary-coral);
    }

    .floating-shapes .shape:nth-child(3) {
        width: 50px;
        height: 50px;
        top: 20%;
        right: 20%;
        background-color: var(--primary-gold);
    }

.left-panel {
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

    .left-panel h2 {
        font-size: calc(0.9rem + .9vw) !important;
    }

    .left-panel::before {
        content: '';
        position: absolute;
        top: -90px;
        right: -90px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(242, 181, 25, 0.05);
        pointer-events: none;
    }

.panel-subtitle {
    color: var(--text-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.doctor-main-wrap {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    background: radial-gradient(circle, #4A4B4E 0%, #2F3032 100%);
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.doctor-main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.doctor-main-wrap.is-loading .doctor-main-img {
    opacity: 0;
}

.doctor-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(34,41,47,.96));
    padding: 28px 16px 14px;
}

.doctor-name1 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

    .doctor-name1 span {
        font-size: 1.6rem;
        font-weight: 400;
    }

.doctor-creds {
    color: rgba(255,255,255) !important;
    font-size: .72rem !important;
    margin: 2px 0 0 !important;
}

.thumb-card {
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    cursor: pointer;
    position: relative;
    background: var(--dark-gray1);
    transition: border-color .2s, transform .15s;
}

    .thumb-card:hover {
        transform: translateY(-2px);
    }

    .thumb-card.active {
        border-color: var(--primary-gold);
    }

    .thumb-card img {
        width: 100%;
        height: 100px;
        object-fit: cover;
        display: block;
        opacity: 0.5;
        filter: blur(1px);
    }

    .thumb-card.active img {
        opacity: 1;
        filter: blur(0px);
    }

.thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(34,41,47,.84);
    color: rgba(255,255,255);
    font-size: .7rem;
    text-align: center;
    padding: 3px 4px;
}

.reviews-hdr {
    color: var(--text-color);
    font-size: 0.9rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 700;
}

.review-carousel {
    position: relative;
    background: rgba(255,255,255);
    border: 1px solid rgb(242 181 25 / 75%);
    border-radius: var(--border-radius);
    padding: 14px 16px 10px;
    min-height: 118px;
    box-shadow: 0 0px 30px rgba(0, 0, 0, .12), 0 0 0 1.5px rgba(242, 181, 25, .2);
}

.review-slide {
/*    display: none;*/
    animation: fadeUp .45s ease;
}

    .review-slide.active {
        display: block;
    }

.review-stars {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 5px;
}

.review-text {
    color: var(--text-color);
    font-size: .9rem !important;
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 0px !important;
}

.review-author {
    color: var(--secondary-coral);
    font-size: .85rem;
    font-style: normal;
    font-weight: 600;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    transition: background .2s, transform .2s;
    border: 0.5px solid #fdbf0b;
    padding: 0;
}

    .dot.active {
        background: var(--primary-gold);
        transform: scale(1.35);
    }

#mainDrImg,
#mainDrName,
#mainDrCreds {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

    #mainDrImg.fade-out,
    #mainDrName.fade-out,
    #mainDrCreds.fade-out {
        opacity: 0;
        transform: translateY(6px);
    }

.card-wrapper {
    width: 100%;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 24px 80px rgba(15, 42, 82, 0.12), 0 4px 16px rgba(15,42,82,0.06);
    overflow: hidden;
    animation: fadeUp 0.6s ease both;
    border-top: 5px solid var(--primary-gold);
}

.right-section {
    padding: 2.4rem 2.4rem 0;
    text-align: center;
}
    .right-section .pill {
        display: inline-block;
        background: rgb(255 217 125 / 44%);
        color: #263140;
        border-radius: 100px;
        padding: 0.2rem 0.6rem;
    }

    .right-section h1 {
        font-size: 2.15rem;
        font-weight: 800;
        color: var(--dark-gray1);
        line-height: 1.18;
        margin-bottom: 0.75rem;
    }

    .right-section p {
        font-size: 0.89rem;
        color: var( --text-color);
        line-height: 1.6;
/*        max-width: 400px;*/
        margin: 0 auto;
        font-weight: 500;
    }

.offer-banner {
    margin: 1.8rem 2.4rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-light) 100%);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .offer-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.12'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

    .offer-banner .tag {
        display: inline-block;
        background: rgba(255, 255, 255, 0.35);
        color: #0f2a52;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        border-radius: 100px;
        padding: 0.2rem 0.6rem;
        margin-bottom: 0.4rem;
    }

    .offer-banner .tag-clock {
        display: inline-block;
        margin-right: 0.1rem;
        font-size: 1rem;
        transform-origin: center;
        animation: clockShake 1.2s ease-in-out infinite;
    }

    .offer-banner p {
        font-size: 1.3rem;
        font-weight: 700;
        color: #0f2a52;
        margin: 0;
        line-height: 1.4;
    }

    .offer-banner span {
        font-size: 1rem;
        font-weight: 600;
        color: #0f2a52;
    }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    padding: 0 2.4rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .stats-grid {
        padding: 0;
    }
}
.stat-card {
    background: #f4f7fc;
    border-radius: 16px;
    padding: 1.1rem 1rem;
    text-align: center;
    border: 1.5px solid rgba(15,42,82,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .stat-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(15,42,82,0.1);
    }

    .stat-card .value {
        font-size: clamp(1.2rem, 3vw, 1.7rem);
        font-weight: 700;
        color: var(--secondary-coral);
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
    }

        .stat-card .value .star {
            color: var(--gold) !important;
            font-size: clamp(1.2rem, 3vw, 1.7rem);
        }

    .stat-card .label {
        font-size: 0.78rem;
        color: var(--muted);
        margin-top: 0.3rem;
        font-weight: 500;
    }

.cta-section {
    padding: 1.8rem 2.4rem 2.4rem;
}



.cta-btn,
.submit-btn,
.cta-link,
.call-btn {
    position: relative;
    overflow: hidden;
}

    .cta-btn::after,
    .submit-btn::after,
    .cta-link::after,
    .call-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 75%;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
        transform: skewX(-25deg);
        transition: left 0.75s ease-in-out;
    }

    .cta-btn:hover::after,
    .submit-btn:hover::after,
    .cta-link:hover::after,
    .call-btn:hover::after {
        left: 150%;
    }

    .cta-btn:hover,
    .submit-btn:hover {
        transform: translateY(-3px);
        color: var(--dark-gray);
    }

.phone-line {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--muted);
}

    .phone-line a {
        color: var(--secondary-coral);
        font-weight: 600;
        text-decoration: none;
    }

        .phone-line a:hover {
            text-decoration: underline;
        }

.scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.arrow-scroll {
    position: fixed;
    height: 4em;
    left: 50%;
    z-index: 988;
    top: 87%;
}

.arrow {
    border: solid var(--secondary-coral);
    border-width: 0 5px 5px 0;
    display: inline-block;
    padding: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    animation: arrowDown 2s infinite;
    opacity: 0;
}

    .arrow:nth-child(1) {
        animation-delay: 0s;
    }

    .arrow:nth-child(2) {
        top: 12px;
        animation-delay: 0.2s;
    }

    .arrow:nth-child(3) {
        top: 24px;
        animation-delay: 0.4s;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes clockShake {
    0%, 100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-12deg);
    }

    20% {
        transform: rotate(12deg);
    }

    30% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-6deg);
    }

    60% {
        transform: rotate(6deg);
    }

    70% {
        transform: rotate(-2deg);
    }

    80% {
        transform: rotate(2deg);
    }
}

@keyframes arrowDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) rotate(45deg);
    }

    30% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) rotate(45deg);
    }
}

@media (max-width: 991.98px) {
    .hero-text-col {
        text-align: center;
    }

    .hero {
        padding: 50px 0;
    }

    .left-panel {
        padding: 0px;
    }
}

@media (max-width: 767.98px) {
    .hero {
        background-image: linear-gradient(75deg, rgb(255 255 255 / 99%) 50%, rgb(255 255 255 / 100%));
    }

    .floating-shapes .shape:nth-child(3) {
        display: none;
    }
}

@media (max-width: 400px) {
    .right-section h1 {
        font-size: 1.75rem;
    }

    .stats-grid {
        gap: 0.6rem;
    }

    .right-section,
    .offer-banner,
    .stats-grid,
    .cta-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .offer-banner {
        margin-left: 1.4rem;
        margin-right: 1.4rem;
    }
}

@media (max-width: 390px) {
    .thumb-label {
        font-size: clamp(0.55rem, 2vw, 0.6rem);
    }
}

@media (max-width: 410px) {
    .doctor-name1 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

        .doctor-name1 span {
            font-size: clamp(1rem, 3vw, 1.3rem);
        }
}
/* =========================================================
   5. Buttons & CTA Styles
========================================================= */

.cta-btn, .submit-btn, .call-btn {
    background: linear-gradient(45deg, var(--primary-gold), #ffc107);
    color: var(--dark-gray);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
/*    box-shadow: 0 4px 15px rgba(242, 181, 25, 0.4);*/
}

.cta-btn,
.submit-btn,
.cta-link {
    position: relative;
    overflow: hidden;
}

    .cta-btn::after,
    .submit-btn::after,
    .cta-link::after {
        content: "";
        position: absolute;
        top: 0;
        left: -150%;
        width: 75%;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
        transform: skewX(-25deg);
        transition: left 0.75s ease-in-out;
    }

    .cta-btn:hover::after,
    .submit-btn:hover::after,
    .cta-link:hover::after {
        left: 150%;
    }

    .cta-btn:hover,
    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 20px rgba(242, 181, 25, 0.6);
        color: var(--dark-gray);
    }

.cta-link {
    background-color: var(--primary-gold);
    color: var(--dark-gray);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    line-height: 1.5;
}

@media(max-width:576px){
    .cta-btn, .submit-btn {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* =========================================================
   6. Trust Badges
========================================================= */

.trust-badges {
    margin-top: 0.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

    .badge-item i {
        color: var(--secondary-coral);
        font-size: 1.2rem;
    }

/* =========================================================
   7. Benefits Section
========================================================= */

.benefits {
    background-color: var(--light-gray);
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    border-top: 4px solid transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-top-color 0.4s ease;
}

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-top-color: var(--primary-gold);
    }

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

/* =========================================================
   8. Social Proof / Testimonials
========================================================= */

.social-proof {
    background-color: #ffffff;
}

    .social-proof .stars {
        color: var(--primary-gold);
        font-size: 1.2rem;
    }

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-gold);
    height: 100%;
}

.stat-number {
    font-size: 3.5rem;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--secondary-coral);
}

/* =========================================================
   9. Before / After Section
========================================================= */

.before-after-section {
    background-color: #f8f9fa;
    padding: 100px 0px;
}

.comparison-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    cursor: col-resize;
}

.comparison-figure {
    margin: 0;
    position: relative;
    width: 100%;
    padding-bottom: 75%;
}

.comparison-image-before,
.comparison-image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.comparison-image-before {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 4px;
    background-color: var(--primary-gold);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-handle-icon {
    width: 40px !important;
    height: 40px !important;
    border: 4px solid var(--primary-gold);
    background-color: var(--white);
    color: var(--dark-gray);
    border-radius: 50%;
    position: absolute;
    display: grid;
    place-items: center;
}

    .comparison-handle-icon::before {
        content: "\f337";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 1.2rem;
        color: var(--dark-gray);
    }

.comparison-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: col-resize;
}

/* =========================================================
   10. Form Section
========================================================= */

.form-section {
    background: linear-gradient(to right, var(--secondary-coral), var(--primary-gold));
}

.form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

    .form-container .subtitle {
        margin-bottom: 2rem;
    }

.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ced4da;
}

.form-select {
    padding: 12px;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.25rem rgba(242, 181, 25, 0.25);
}

.submit-btn {
    width: 100%;
}

/* =========================================================
   11. Trust Signals Section
========================================================= */

.trust-signals {
/*    background-color: #e6e6e6;*/
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    text-align: center;
}

.cert-badge {
    text-align: center;
}

    .cert-badge i {
        font-size: 3rem;
        color: var(--secondary-coral);
        margin-bottom: 1rem;
    }

/* =========================================================
   12. FAQ / Accordion
========================================================= */

.accordion-item {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--heading-color);
}

    .accordion-button:not(.collapsed) {
        background-color: var(--primary-gold);
        color: var(--dark-gray);
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(242, 181, 25, 0.25);
    }

/* =========================================================
   13. Footer CTA / Footer
========================================================= */

.footer-cta {
    background: var(--dark-gray);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .footer-cta h2,
    .footer-cta p {
        color: var(--white);
    }

    .footer-cta .floating-shapes .shape {
        opacity: 0.05;
    }

.site-footer-main {
    background-color: var(--light-gray);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.copyright-text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

    .copyright-text a {
        font-size: 0.9rem;
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
    }

/* =========================================================
   14. Responsive Design
========================================================= */

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 20px;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    .hero {
        text-align: center;
        padding: 50px 0px;
    }

    .hero-text-col {
        text-align: center;
    }


}

@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }

    .hero {
        background-image: linear-gradient(75deg, rgb(255 255 255 / 99%) 50%, rgb(255 255 255 / 100%));
    }

    .floating-shapes .shape:nth-child(3) {
        display: none;
    }

    .comparison-figure {
        padding-bottom: 100%;
    }

    .hero-image {
        max-width: 85%;
    }

    .navbar-brand .logo-image {
        max-width: 140px;
    }
}

@media (max-width: 357.98px) {
    .navbar-brand .logo-image {
        max-width: 132px;
    }
}

/* =========================================================
   15. Read More / Toggle / Entrance Effects
========================================================= */

.testimonial-card .toggle-btn {
    border: 0;
    background: none;
    padding: 0;
    color: #f48383;
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
}

.fade-in-view {
    opacity: 0;
    transform: translateY(16px);
}

    .fade-in-view.is-visible {
        opacity: 1;
        transform: none;
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

/* =========================================================
   16. Alternate Nav Link Styling
========================================================= */

.navbar-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

    .navbar-nav a:not(.cta-link)::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-gold);
        transition: width 0.3s ease;
    }

    .navbar-nav a:hover:not(.cta-link) {
        color: var(--heading-color);
    }

        .navbar-nav a:hover:not(.cta-link)::after {
            width: 100%;
        }

.cta-link {
    background-color: var(--primary-gold);
    color: var(--dark-gray) !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: 700 !important;
}

/* =========================================================
   17. Contact Info
========================================================= */

.contact-info {
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-line {
    color: #f1f1f1;
    font-weight: 400;
}

.contact-icon {
    color: #ffd000;
    margin-right: 8px;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

    .contact-link:hover {
        color: #ffd000;
    }

@media (max-width: 992px) {
    #consultation-form .subtitle {
        font-size: 1rem;
    }
}

/* =========================================================
   18. Reviews Button
========================================================= */

#toggleReviewsBtn {
    background: #f58e8e;
    color: #fff;
    border-radius: 50px;
}

/* =========================================================
   19. Cost Section
========================================================= */

#cost {
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.cost-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    position: relative;
    border-left: 4px solid var(--primary-gold);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-top-color 0.4s ease;
}

    .cost-card:hover {
        transform: translateY(-10px);
        border-left-color: var(--primary-gold);
    }

.cost-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cost-card:hover .cost-icon {
    transform: scale(1.1) rotate(5deg);
}

h1,
h2,
h3 {
    color: var(--dark-gray1);
}

/* =========================================================
   20. Hero Image Responsive
========================================================= */
@media (min-width: 576px) and (max-width: 768px) {
    .site-header .container {
        max-width: 100% !important;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-image {
        max-width: 75%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-header .container {
        max-width: 1054px;
    }

    .navbar-nav .nav-link {
        margin: 0 5px;
    }
}

/* =========================================================
   21. Accent Helpers
========================================================= */

.pink {
    color: var(--secondary-coral);
    color: #f06669;
}

.pink-bar span {
    color: #f06669;
}

.pink-bar {
    font-size: 17px;
    font-weight: 500;
}

/* =========================================================
   22. Form Extras
========================================================= */

#leadForm .form-label {
    transition: all 0.3s ease;
    font-weight: 500;
}

@media (min-width: 0px) and (max-width: 400px) {
    .g-recaptcha > div {
        -webkit-transform: scale(0.85) translateX(-23px) !important;
        -moz-transform: scale(0.85) translateX(-23px) !important;
        -ms-transform: scale(0.85) translateX(-23px) !important;
        -o-transform: scale(0.85) translateX(-23px) !important;
        transform: scale(0.85) translateX(-23px) !important;
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        -o-transform-origin: 0 0;
        transform-origin: 0 0;
    }

    .doctor-name {
        font-size: 1.75rem;
    }
}

.privacyConsent a {
    color: var(--text-color);
    font-weight: 600;
}

/* =========================================================
   23. Doctor Profile Card
========================================================= */

.doctor-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 24px;
    box-shadow: var(--shadow), 0 0 0 1.5px rgba(242, 181, 25, 0.2);
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-gold);
}

.doctor-photo-wrap {
    position: relative;
    flex-shrink: 0;
}

.doctor-credentials {
    font-size: 16px;
    color: rgb(84, 98, 111);
    font-weight: 500;
}

.doctor-photo-wrap img {
    width: 240px;
    height: auto;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px;
    display: block;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    border: 3px solid #fff;
    outline: 2.5px solid var(--primary-gold);
    outline-offset: 2px;
}

.doctor-photo-wrap .verified-badge {
    position: absolute;
    bottom: -6px;
    right: -6px;
    background: var(--primary-gold);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 3px 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(242, 181, 25, 0.5);
    border: 2px solid #fff;
}

.doctor-info {
    flex: 1;
    min-width: 0;
}

.doctor-title {
    font-size: 1.35rem;
    color: var(--primary-gold);
    font-weight: 800;
    margin-bottom: 8px;
}



.cred-pill {
    background: var(--light-gray);
    border: 1px solid #e9ecef;
    border-radius: 50px;
    padding: 2px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--dark-gray1);
}

.doctor-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(242, 181, 25, 0.1);
    border: 1.5px solid rgba(242, 181, 25, 0.35);
    border-radius: 50px;
    padding: 8px 18px 8px 10px;
    margin-bottom: 22px;
}

.doctor-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-coral));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    overflow: hidden;
    flex-shrink: 0;
}

    .doctor-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.doctor-name {
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--dark-gray1);
    line-height: 1.2;
    margin-bottom: 3px;
}

/* =========================================================
   24. Hero Image / Doctor Container
========================================================= */

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

    .hero-image-wrap .hero-image {
        display: block;
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 22px;
        border: 2px solid rgba(242, 181, 25, 0.22);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
        object-fit: cover;
        background: #2f3138;
    }

.doctor-container {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding: 20px 0px;
}

.doctor-info {
    margin-top: 18px;
    padding: 0 14px;
}

.doctor-name {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-gray1);
    margin-bottom: 6px;
    text-align: center;
}

@media (min-width: 0px) and (max-width: 382px) {
    .doctor-name {
        font-size: 1.55rem;
    }
}

@media (min-width: 382px) and (max-width: 476px) {
    .doctor-name {
        font-size: 1.75rem;
    }
}

.doctor-title {
    font-size: 1rem;
    font-weight: 700;
    color: #f2b519;
    letter-spacing: 0.4px;
    margin-bottom: 12px;
}

.doctor-credentials {
    max-width: 460px;
    margin: 0 auto;
}

    .doctor-credentials p {
        font-size: 13px;
        line-height: 1.6;
        color: #54626f;
        margin-bottom: 4px;
    }

/* =========================================================
   25. Progress Bar
========================================================= */

.progress-bar-wrap {
    height: 4px;
    background: #e9ecef;
    border-radius: 4px;
    margin: 18px 0 6px;
    overflow: hidden;
}

.progress-bar-inner {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-coral));
    border-radius: 4px;
    transition: width 3s linear;
}

/* =========================================================
   26. Move To Top Button
========================================================= */

#moveToTopBtn {
    position: fixed;
    bottom: 15px;
    left: 20px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #004d76;
    background: linear-gradient(135deg, rgb(240 102 105) 0%, rgb(252 190 11) 100%);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    #moveToTopBtn:hover {
        transform: translateY(-3px);
    }

    #moveToTopBtn i {
        pointer-events: none;
    }

html {
    scroll-behavior: auto !important;
}

/* =========================================================
   27. Free Consult Form Modal
========================================================= */

#free-consult-form .modal-content {
    background-color: var(--white);
    padding: clamp(10px, 3vw, 25px);
    border-radius: var(--border-radius);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .12), 0 0 0 1.5px rgba(242, 181, 25, .2);
    border-top: 5px solid var(--primary-gold);
}

#free-consult-form .modal-title {
    color: var(--dark-gray1);
    font-size: clamp(18px, 2vw, 24px);
}

#free-consult-form .modal-body {
    padding: 0px;
}

    #free-consult-form .modal-body label {
        font-size: clamp(14px, 3vw, 16px);
    }

    #free-consult-form .modal-body input::placeholder,
    #free-consult-form .modal-body textarea::placeholder {
        font-size: clamp(14px, 3vw, 16px);
    }

#free-consult-form .modal-header {
    padding: 0px 0px 8px 0px;
}

#free-consult-form .modal-body .form-control {
    padding: 6px 12px;
}

#free-consult-form #leadFormTop > div > div:nth-child(10) > div > label {
    font-size: 0.8rem;
}



.privacyConsent a {
    color: var(--text-color);
    font-weight: 500;
}

.form-check-input.is-invalid ~ .form-check-label {
    color: var(--text-color);
}

@media (min-width: 0px) and (max-width: 400px) {
    .g-recaptcha-widget > div {
        -webkit-transform: scale(0.85) translateX(-23px) !important;
        -moz-transform: scale(0.85) translateX(-23px) !important;
        -ms-transform: scale(0.85) translateX(-23px) !important;
        -o-transform: scale(0.85) translateX(-23px) !important;
        transform: scale(0.85) translateX(-23px) !important;
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        -o-transform-origin: 0 0;
        transform-origin: 0 0;
    }

    #free-consult-form .g-recaptcha-widget > div {
        -webkit-transform: scale(0.85) translateX(18px) !important;
        -moz-transform: scale(0.85) translateX(18px) !important;
        -ms-transform: scale(0.85) translateX(18px) !important;
        -o-transform: scale(0.85) translateX(18px) !important;
        transform: scale(0.85) translateX(18px) !important;
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        -o-transform-origin: 0 0;
        transform-origin: 0 0;
    }
}

.text-accent {
    color: var(--secondary-coral) !important;
}

@media (max-width: 767.98px) {
    .header-doctor-call .call-btn {
        font-size: 0.92rem;
        padding: 8px 16px;
        font-weight: 700;
    }
}

@media (max-width: 991.98px) {
    .lg-screen .cta-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}
@media (min-width: 375px) and (max-width:416px) {
    .lg-screen .cta-btn {
        font-size: 0.8rem;
        padding: 10px 11px;
        letter-spacing:0px;
    }
}
@media (max-width: 425px) {
    .lg-screen .cta-btn {
        font-size: 0.8rem;
        padding: 6px 11px;
        letter-spacing:0px;
    }

    .header-doctor-call .call-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
        font-weight: 600;
    }
    .lg-screen .cta-btn i{
        display:none;
    }

}

#implants-chat-bubble {
    animation: liftShadow 2s ease-in-out infinite !important;
/*    background: linear-gradient(135deg, rgb(240 102 105) 0%, rgb(252 190 11) 100%) !important;*/
}

@keyframes liftShadow {
    0% {
        transform: scale(1) translateY(0);
        box-shadow: 0 2px 6px 0 rgba(88, 89, 91, 0.5);
    }

    50% {
        transform: scale(1.07) translateY(-5px);
        box-shadow: 0 14px 24px 0 rgba(88, 89, 91, 0.35);
    }

    100% {
        transform: scale(1) translateY(0);
        box-shadow: 0 2px 6px 0 rgba(88, 89, 91, 0.5);
    }
}

@media (min-width: 0px) and (max-width: 400px) {
    .g-recaptcha-widget > div {
        -webkit-transform: scale(0.85) translateX(18px) !important;
        -moz-transform: scale(0.85) translateX(18px) !important;
        -ms-transform: scale(0.85) translateX(18px) !important;
        -o-transform: scale(0.85) translateX(18px) !important;
        transform: scale(0.85) translateX(18px) !important;
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        -o-transform-origin: 0 0;
        transform-origin: 0 0;
    }

    #free-consult-form .g-recaptcha-widget > div {
        -webkit-transform: scale(0.85) translateX(18px) !important;
        -moz-transform: scale(0.85) translateX(18px) !important;
        -ms-transform: scale(0.85) translateX(18px) !important;
        -o-transform: scale(0.85) translateX(18px) !important;
        transform: scale(0.85) translateX(18px) !important;
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        -o-transform-origin: 0 0;
        transform-origin: 0 0;
    }

}
@media(max-width:425px) {
    iframe#implants-chat-iframe {
        width: 340px !important;
    }
}

@media(max-width:365px) {
    iframe#implants-chat-iframe {
        width: 300px !important;
        right: 12px !important;
    }
}

@media(max-width:320px) {
    iframe#implants-chat-iframe {
        width: 280px !important;
        right: 0px !important;
    }
}

.consult-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: center;
    margin-bottom: 18px;
    line-height: 1.5;
}

    .consult-points > span {
        display: inline-flex;
        align-items: center;
        
        gap: 6px;
        white-space: nowrap;
    }

@media (max-width: 767px) {
    .consult-points {
        font-size: 16px !important;
        gap: 8px 12px;
    }

        .consult-points > span {
            white-space: normal;
        }
}

/*******************
   Before after model
*************/

.ig-smile-carousel1 .ig-smile-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(196, 151, 58, .22);
    overflow: hidden;
    padding: 0px;
    margin: 0 0px;
    backdrop-filter: blur(6px);
    border-radius: 12px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(242, 181, 25, 0.75);
}

.ig-smile-carousel1 .ig-smile-card__case {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: capitalize;
    color: #343a40;
}
.ig-smile-carousel1 .ig-smile-card__meta {
    border-bottom: 1px solid rgba(196, 151, 58, .15);
    padding: 10px;
    text-align:center;
    display:block;
}
.ig-smile-carousel1 .ig-smile-card__meta p{
    margin-bottom:0px;
}

.ig-smile-carousel1 .ig-compare__viewport {
    position: relative;
    width: 100%;
    padding-top: 62%;
    overflow: hidden;
    border-radius:0px;
}
.ig-smile-carousel1 .ig-compare {
    border-radius: 0px;
}
.ig-smile-carousel1 .ig-smile-card__meta {
    margin-bottom: 0px;
}
.ig-smile-carousel1 .ig-compare__handle {

    width: 40px;
    height: 40px;
}

.ig-smile-carousel1 .owl-nav {
    text-align: center;
    padding-top: 5px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 12px;
}


.ig-smile-carousel1 .owl-prev, .ig-smile-carousel1 .owl-next {
    pointer-events: all;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(246 185 20) !important;
    border: none;
    color: var(--white) !important;
    font-size: 10px;
    cursor: pointer;
/*    box-shadow: 0 4px 14px rgba(0, 0, 0, .3);*/
    transition: background .2s;
}
.ig-smile-carousel1 .ig-smile-card:hover {
    transform: translateY(0px);
    border-color: rgba(242, 181, 25, 0.34);
}

/* ===== Read More button ===== */
.ig-smile-readmore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
    padding: 8px 16px;
    border: 1px solid rgba(229, 176, 33, 0.55);
    border-radius: 999px;
    background: linear-gradient(180deg, #fffdf8 0%, #fff3cf 100%);
    color: #3f5164;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(229, 176, 33, 0.14);
    transition: all 0.28s ease;
}

    .ig-smile-readmore-btn::after {
        content: "\f061";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 10px;
        transition: transform 0.28s ease;
    }

    .ig-smile-readmore-btn:hover,
    .ig-smile-readmore-btn:focus {
        background: linear-gradient(180deg, #f7c84a 0%, #e8ae17 100%);
        color: #23374a;
        border-color: #e8ae17;
        box-shadow: 0 10px 24px rgba(232, 174, 23, 0.24);
        transform: translateY(-2px);
    }

        .ig-smile-readmore-btn:hover::after,
        .ig-smile-readmore-btn:focus::after {
            transform: translateX(3px);
        }

/* ===== Modal backdrop feel ===== */
.ig-smile-modal .modal-dialog {
    max-width: 1020px;
}

.ig-smile-modal .modal-content {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(242, 188, 30, 0.12), transparent 28%), linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
    box-shadow: 0 28px 80px rgba(22, 35, 49, 0.22);
    border-top: 5px solid var(--primary-gold);
}

/* ===== Header ===== */
.ig-smile-modal__header {
    padding: 22px 24px 10px;
    border-bottom: 0;
}

.ig-smile-modal__title {
    color: var(--dark-gray1);
    font-size: clamp(18px, 2vw, 24px);
}

.ig-smile-modal__close {
    opacity: 1;
    transform: scale(1.05);
}

/* ===== Body ===== */
.ig-smile-modal__body {
    padding: 0 24px 26px;
}

/* ===== Image row ===== */
.ig-smile-modal__images-row {
    margin-bottom: 22px;
}

.ig-smile-modal__img-card {
    position: relative;
    padding: 14px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(63, 81, 100, 0.08);
    box-shadow: 0 14px 34px rgba(28, 45, 61, 0.08);
}

    .ig-smile-modal__img-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 24px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(242, 188, 30, 0.38), rgba(63, 81, 100, 0.06));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.ig-smile-modal__label {
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(30, 44, 58, 0.86);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(20, 31, 42, 0.22);
}

.ig-smile-modal__img {
    width: 100%;
    height: 340px;
    border-radius: 18px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* ===== Text block ===== */
.ig-smile-modal__text-wrap {
    position: relative;
    padding: 24px 24px 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(63, 81, 100, 0.08);
    box-shadow: 0 14px 32px rgba(28, 45, 61, 0.06);
}

    .ig-smile-modal__text-wrap::before {
        content: "";
        position: absolute;
        top: 0;
        left: 24px;
        width: 74px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, #f2bc1e 0%, #f7d572 100%);
    }

#igSmileModalContent {
    color: #5f6c79;
    font-size: 15px;
    line-height: 1.85;
}

    #igSmileModalContent p {
        margin-bottom: 8px;
    }

        #igSmileModalContent p:last-child {
            margin-bottom: 0;
        }

    #igSmileModalContent strong {
        color: #3f5164;
        font-weight: 800;
    }

    /* ===== Optional nicer lists if you use them later ===== */
    #igSmileModalContent ul {
        padding-left: 18px;
        margin: 0 0 14px;
    }

    #igSmileModalContent li {
        margin-bottom: 8px;
    }

/* ===== Mobile ===== */
@media (max-width: 991px) {
/*    .ig-smile-modal__title {
        font-size: 24px;
    }*/

    .ig-smile-modal__img {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .ig-smile-readmore-btn {
        padding: 7px 14px;
        font-size: 10px;
        letter-spacing: 0.7px;
    }

    .ig-smile-modal__header {
        padding: 18px 18px 8px;
    }

    .ig-smile-modal__body {
        padding: 0 18px 18px;
    }

    .ig-smile-modal__title {
        font-size: 21px;
        max-width: 84%;
    }

    .ig-smile-modal__img-card {
        padding: 10px;
        border-radius: 18px;
    }

    .ig-smile-modal__img {
        height: 230px;
        border-radius: 14px;
    }

    .ig-smile-modal__label {
        top: 18px;
        left: 18px;
        padding: 6px 11px;
        font-size: 10px;
    }

    .ig-smile-modal__text-wrap {
        padding: 18px 16px;
        border-radius: 18px;
    }

    #igSmileModalContent {
        font-size: 14px;
        line-height: 1.75;
    }
}

.owl-carousel {
    display: none;
    width: 100%;
}

    .owl-carousel.owl-loaded {
        display: block;
    }

/*******************
   Before after model
*************/




.review-carousel,
.ig-smile-card {
    height: 100%;
    min-height: 255px;
}

.left-panel .row > [class*="col-"] {
    display: flex;
}

.review-carousel,
.ig-smile-card {
    width: 100%;
}



/*Pain points*/
.pain-points-section {
    position: relative;
    padding: 95px 0;
    background: linear-gradient(180deg, #fffdf8 0%, #f8f8f8 100%);
    overflow: hidden;
}

    .pain-points-section::before {
        content: "";
        position: absolute;
        top: -80px;
        left: -80px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(242, 181, 25, 0.05);
        pointer-events: none;
    }

    .pain-points-section::after {
        content: "";
        position: absolute;
        right: -60px;
        bottom: -60px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(240, 102, 105, 0.05);
        pointer-events: none;
    }

.pain-point-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(242, 181, 25, 0.16);
/*    box-shadow: 0 14px 36px rgba(48, 57, 68, 0.08);*/
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

    .pain-point-card:hover {
        transform: translateY(-10px);
/*        box-shadow: 0 24px 48px rgba(48, 57, 68, 0.14);*/
        border-color: rgba(242, 181, 25, 0.38);
    }

.pain-point-card--featured {
    border-color: rgba(240, 102, 105, 0.22);
    box-shadow: 0 16px 40px rgba(240, 102, 105, 0.10);
}

.pain-point-card__image-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: #f4f4f4;
}

    .pain-point-card__image-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(34, 41, 47, 0.10), rgba(34, 41, 47, 0.00) 45%);
        pointer-events: none;
    }

.pain-point-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pain-point-card:hover .pain-point-card__image {
    transform: scale(1.05);
}

.pain-point-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f2b519, #ffd45c);
    color: #343a40;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(242, 181, 25, 0.28);

}

.pain-point-card__content {
    padding: 24px 22px 24px;
}

    .pain-point-card__content h3 {
        margin: 0 0 10px;
        font-size: 1.2rem;
        line-height: 1.3;
        font-weight: 800;
        color: var(--secondary-coral);
    }

    .pain-point-card__content p {
        margin: 0;
        font-size: 0.96rem;
        line-height: 1.75;
        color: #6a7482;
    }

/* tablet */
@media (max-width: 991px) {
    .pain-points-section {
        padding: 75px 0;
    }

    .pain-point-card__image-wrap {
        height: 220px;
    }

    .pain-point-card__content {
        padding: 22px 20px;
    }

        .pain-point-card__content h3 {
            font-size: 1.1rem;
        }
}

/* mobile */
@media (max-width: 767px) {
    .pain-points-section {
        padding: 60px 0;
    }

    .pain-point-card {
        border-radius: 22px;
    }

    .pain-point-card__image-wrap {
        height: 210px;
    }

    .pain-point-card__badge {
        width: 38px;
        height: 38px;
        font-size: 0.82rem;
        top: 14px;
        left: 14px;
        display:none !important;
    }

    .pain-point-card__content {
        padding: 20px 18px;
    }

        .pain-point-card__content h3 {
            font-size: 1.05rem;
        }

        .pain-point-card__content p {
            font-size: 0.92rem;
            line-height: 1.65;
        }
}

.pain-points-carousel .owl-stage {
    display: flex;
}

.pain-points-carousel .owl-item {
    height: auto;
}

.pain-points-carousel .item {
    height: 100%;
    padding: 6px;
}

.pain-points-carousel .pain-point-card {
    width: 100%;
    height: 100%;
}

.pain-points-carousel .owl-nav {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

    .pain-points-carousel .owl-nav button.owl-prev,
    .pain-points-carousel .owl-nav button.owl-next {
        width: 52px;
        height: 52px;
        border-radius: 50% !important;
        border: 2px solid rgba(242, 181, 25, 0.28) !important;
        background: #ffba0d !important;
        color: #4a5563 !important;
        font-size: 20px !important;
        transition: all 0.3s ease;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 24px rgba(242, 181, 25, 0.10);
    }

        .pain-points-carousel .owl-nav button.owl-prev:hover,
        .pain-points-carousel .owl-nav button.owl-next:hover {
            background: #fff !important;
            color: #4a5563 !important;
            border: 2px solid #f2b519 !important;
            transform: translateY(-3px);
        }

.pain-points-carousel .owl-dots {
    margin-top: 14px;
    text-align: center;
}

    .pain-points-carousel .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px;
        background: rgba(242, 181, 25, 0.25);
        display: block;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .pain-points-carousel .owl-dots .owl-dot.active span {
        width: 28px;
        border-radius: 999px;
        background: #f2b519;
    }

@media (max-width: 575.98px) {
    .pain-points-carousel .owl-nav button.owl-prev,
    .pain-points-carousel .owl-nav button.owl-next {
        width: 46px;
        height: 46px;
    }
}


.offer-banner span {
    color: #ffffff;
}

.offer-banner {
    margin: 1.4rem 2.4rem 0rem;
    background: linear-gradient(135deg, #fad5d51f 0%, #fad5d569 100%);
    border: 1px solid #ef7d7d;
    border-radius: 16px;
    padding: 1rem 1.2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(255, 196, 0, 0.18);
    animation: offerPulse 2.2s ease-in-out infinite;
}

    .offer-banner::after {
        content: "";
        position: absolute;
        top: 0;
        left: -150%;
        width: 60%;
        height: 100%;
        background: linear-gradient( 120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100% );
        transform: skewX(-20deg);
        animation: offerShine 3.5s ease-in-out infinite;
    }

    .offer-banner .tag {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        background: #ed6c6c;
        color: #fff;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        border-radius: 100px;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.5rem;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }

    .offer-banner .tag-clock {
        display: inline-block;
        font-size: 1.3rem;
        transform-origin: center;
        animation: clockShake 1.2s ease-in-out infinite;
    }

    .offer-banner p {
/*        font-size: 1.3rem;*/
        font-size: 1.15rem;
        font-weight: 800;
        margin: 0.15rem 0;
        line-height: 1.4;
    }

    .offer-banner span:not(.tag-clock) {
        font-size: 1rem;
        font-weight: 700;
        color: #eb716f;
    }

@keyframes offerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgb(253 241 241);
    }

    50% {
        transform: scale(1.015);
        box-shadow: 0 6px 22px rgb(235 113 111 / 24%);
    }
}

@keyframes offerShine {
    0% {
        left: -150%;
    }

    50% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

@media(max-width: 768px) {
    .hero {
        padding: 10px 0px 50px;
    }

    .card-wrapper {
        border-top: none !important;
    }

    .right-section h1 {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--dark-gray1);
        line-height: 1.18;
        margin-bottom: 0.75rem;
    }

    .right-section {
        padding: 1.4rem 0.5rem 0 !important;
        text-align: center;
    }


  

    .navbar-brand .logo-image {
        max-width: 140px;
    }

    .lg-screen .cta-btn {
        font-size: 0.75rem;
/*        padding: 10px 10px;*/
    }

    .cta-section {
        padding: 1.2rem;
    }

    .cta-btn, .submit-btn {
        padding: 15px;
        font-size: 0.8rem;
        font-weight: 800;
    }

    .hero-subtitle {
        margin: 0 auto 14px;
        max-width: 520px;
        font-size: 17px;
        line-height: 1.45;
        color: #555c66;
    }

    .price-badge {
        display: inline-block;
        margin: 4px 0 16px;
        padding: 12px 18px;
        border-radius: 999px;
        background: #fff3c4;
        color: #081f4d;
        font-size: 16px;
        font-weight: 700;
    }

    .offer-banner {
        margin: 1.4rem;
        padding: 1rem 1rem;
    }

        .offer-banner p {
            font-size: 0.95rem;
        }

    .site-header.scrolled .navbar-brand .logo-image {
        max-width: 110px;
    }
}

.right-section .cta-section {
    padding: 0.5rem 2.4rem 2.4rem;
}

.price-badge {
    display: inline-block;
    margin: 6px 6px 0px;
    padding: 6px 18px;
    border-radius: 999px;
    background: #fcf0f0;
    color: #081f4d;
    font-size: 16px;
    font-weight: 700;
}
p.insurance {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    background: #f7f8fa;
    border: 1px solid #e3e6ea;
    border-radius: var(--border-radius);
    padding: 10px;
    margin: 14px 0px;
}

@media(max-width:576px){
    .right-section .cta-section {
        padding: 0.5rem 1rem 0.7rem;
    }

    .offer-banner {
        margin: 0.7rem ;
        padding: 0.5rem 1rem;
    }
    p.insurance {
        margin: 12px 0px;
        font-size: 12px;
    }
}

