.sem-site {
    padding: 30px 0;
}
.bg-body-light {
    background-color: var(--pbmit-body-color);
}

.pbmit-entry-content h3 {
    font-size: 22px;
}

/* HERO SECTION */
.hero {
    background-color: var(--pbmit-blackish-color);
    background-image: url(/themes/new-artisan-dental/assets/image/desktop/homepage-1/bg/about-bg.png);
    background-size:contain;
    background-position: center center;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    max-height: 400px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* DOCTOR INTRO CARD */
.doctor-card {
    background: white;
    border-left: 4px solid #09243C;
    border-right: 4px solid #09243C;
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
}

.doctor-card div:first-child {
    width: 100%;
}

.doctor-card h3 {
    color: #09243C;
    margin-top: 0;
}

/* PRICING HIGHLIGHT */
.pricing-box {
    background: #f0f4ff;
    border: 2px solid #667eea;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: center;
}

.pricing-box h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin: 15px 0;
}

.price-description {
    font-size: 14px;
    color: #666;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    max-width: 900px;
    margin: 1.5rem auto;
    padding: 60px 40px;
    text-align: center;

    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    
    border-radius: 18px;
    border: 1px solid rgba(120,140,255,0.25);

    /* soft shadow */
    box-shadow:
        0 8px 30px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.9);

    transition: all 0.35s ease;
}

.pricing-card:hover{
    transform: translateY(-3px);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,1);
}
.pricing-title{
    font-size: 26px;
    font-weight: 600;
    color: #2a2f45;
    margin-bottom: 25px;
}

.pricing-price{
    font-size: 45px;
    font-weight: 700;
    color: #09243C;;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.pricing-desc{
    font-size: 20px;
    color: #444;
    opacity: 0.9;
}

.sub-pricing-desc {
    font-size: smaller;
    margin-bottom: 0 !important;
}

/* FAQ SECTION */
.faqs-item {
    background: white;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.faqs-question {
    background: #f5f5f5;
    padding: 18px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #efefef;
}

.faqs-toggle {
    font-size: 20px;
    color: #667eea;
}

.faqs-answer {
    padding: 20px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.faqs-answer.active {
    display: block;
}

/* CTA BUTTON */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 10px 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

/* STICKY CTA FOOTER */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid #667eea;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.sticky-cta p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #666;
}

.sticky-cta .cta-button {
    width: 100%;
    max-width: 400px;
    margin: 0;
}

/* CONTACT INFO */
.contact-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    margin-top: 30px;
    border: 1px solid #CCC;
}
.contact-info p {
    margin: 8px 0;
    font-size: 15px;
}
.contact-info a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}
.contact-info a:hover {
    text-decoration: underline;
}
.mb-1 {
    margin-bottom: 16px;
}
.mb-2 {
    margin-bottom: 32px;
}
.mb-3 {
    margin-bottom: 48px;
}
.mb-4 {
    margin-bottom: 64px;
}
.mb-5 {
    margin-bottom: 80px;
}
.box-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}
.box-split > .left-side {
    width: 100%;
}
.doctor-picture {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.doctor-picture p {
    margin-bottom: 0;
    padding: 1rem 30px;
}
.doctor-picture .doctor-photo-frame {
    max-width: 443px;
}
.mt-1-rem {
    margin-top: 1rem;
}
.mt-2-rem {
    margin-top: 2rem;
}
.mt-3-rem {
    margin-top: 3rem;
}
.mt-4-rem {
    margin-top: 4rem;
}
.price-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.price-section div {
    width: 50%;
}
.sem-content > .pbmit-entry-content > p {
    margin-bottom: 10px;
}
.sem-content .breadcrumbs {
    padding: 0 1.3rem 1rem 1.3rem;
}
.sem-content .breadcrumbs span {
    font-size: 14px;
}
.disclaimer-box {
    padding: 1.5rem;
    background-color: #f7ca89;
    border: 1px solid #CCC;
    margin-bottom: 1.5rem;
}
.first-section {
    margin-top: 0 !important;
}
.small-disclaimer {
    font-size: 11px;
}
.service-video-wrapper {
    margin-top: 0;
}
.profile-box-left .credentials {
    margin-bottom: 19px;
}
.sem-content section {
    padding: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    h2 {
        font-size: 24px;
    }

    .header-contact {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
    }

    .sticky-cta {
        padding: 12px 15px;
    }

    .sticky-cta .cta-button {
        padding: 14px 30px;
        font-size: 15px;
    }

    .box-split,
    .doctor-card {
        flex-direction: column;
    }

    .box-split div {
        width: 100%;
    }

    .emergency-book-now-btn:before {
        top: 5px;
    }

    .doctor-card h3 {
        font-size: 29px !important;
        margin-bottom: 2rem;
        line-height: 2.4rem !important;
    }

    .pbmit-button-text {
        font-size: 0.95rem !important;
        text-align: left;
    }

    .sem-site .container {
        padding: 0 10px !important;
    }

    .pbmit-btn .pbmit-icon-hover:after {
        top: -13px;
    }

    .sem-site h1 {
        line-height: 2.4rem !important;
    }

    .pricing-card .credentials {
        align-items: center;
        text-align: left;
    }

    .pricing-card .credentials .credential-item {
        align-items: flex-start !important;
        width: 100% !important;
        font-size: 14px !important;
    }

    .profile-box-right {
        order: 1
    }

    .profile-box-left {
        order: 2
    }

    .profile-title {
        margin-top: 2rem !important;
    }

    .sem-content section {
        padding: 10px !important;
    }
    .pbmit-btn {
        width: 100%;
        text-align: center;
        padding: 15px 10px 15px 57px !important;
    }
    .breadcrumbs {
        flex-direction: column;
    }
    .breadcrumbs .pbmit-base-icon-circle-dot {
        display: none;
    }
    .breadcrumbs div a::before {
        content: "";
        display: inline-block;
        width: 10px;       /* Size of the circle */
        height: 10px;      /* Size of the circle */
        border: 2px solid #AAA; /* Dotted style and color */
        background-color: #AAA;
        border-radius: 50%; /* Makes it a circle */
        margin-right: 8px;  /* Space between circle and text */
        vertical-align: middle; /* Aligns with text */
    }

    .breadcrumbs div a span {
        font-size: 10px;
    }
}

@media screen and (max-width: 320px) {
    .sem-content section {
        padding: 10px !important;
    }
}