/* ═══════════════════════════════════════════════
   BHARAT SMILES — SERVICE PAGE  (v6.2)
   Dark gold theme · Bootstrap 5 · Fully Responsive
════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --bss-bg:        #101010;
    --bss-bg-2:      #151515;
    --bss-bg-3:      #222222;
    --bss-gold:      #C9A84C;
    --bss-gold-lt:   #E2C97E;
    --bss-white:     #F1ECE0;
    --bss-text:      #CCCCCC;
    --bss-muted:     #F1ECE0;
    --bss-border:    #333333;
    --bss-radius:    6px;
    --bss-font:      'Inter', system-ui, sans-serif;
    --bss-font-head: 'ppneuemontreal-bold', 'Inter', system-ui, sans-serif;
    --bss-trans:     .25s ease;

    /* Section spacing scale */
    --bss-section-lg: 120px;
    --bss-section-md: 80px;
    --bss-section-sm: 52px;
    --bss-section-xs: 36px;
}



/* ── Global reset scoped to plugin sections ── */
.bss-hero,
.bss-description,
.bss-know-more,
.bss-faq,
.bss-testimonials,
.bss-testimonials-single,
.bss-cta {
    background-color: var(--bss-bg);
    color: var(--bss-text);
    font-family: var(--bss-font);
    box-sizing: border-box;
}

.bss-hero *,
.bss-description *,
.bss-know-more *,
.bss-faq *,
.bss-testimonials *,
.bss-testimonials-single *,
.bss-cta * {
    box-sizing: border-box;
}


/* ═══════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.bss-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay */
.bss-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.bss-hero > * {
    position: relative;
    z-index: 2;
}

/* Fallback <img> tag inside hero */
.bss-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.bss-hero__overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    text-align: center;
}

.bss-hero__title {
    font-size: clamp(2rem, 5vw, 56px);
    font-weight: 600;
    font-family: var(--bss-font-head);
    color: var(--bss-white);
    margin: 0 0 12px;
    line-height: 1.1;
    text-align: center;
}

.bss-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5%;
    z-index: 2;
}

.bss-hero__title {
    font-size: clamp(2rem, 5vw, 56px);
    font-weight: 600;
    font-family: var(--bss-font-head);
    color: var(--bss-white);
    margin: 0 0 12px;
    line-height: 1.1;
    text-align: center;
}

.bss-hero__sub {
    color: var(--bss-gold-lt);
    margin: 0;
    font-size: clamp(.9rem, 2vw, 1.1rem);
    text-align: center;
}


/* ═══════════════════════════════════════════════
   SHARED TYPOGRAPHY
════════════════════════════════════════════════ */
.bss-eyebrow {
    font-size: 13px;
    letter-spacing: .08em;
    color: var(--bss-muted);
    margin-bottom: 10px;
    display: block;
    opacity: .7;
}

.bss-section-title {
    font-size: clamp(1.5rem, 3vw, 34px);
    font-weight: 500;
    font-family: var(--bss-font-head);
    color: var(--bss-white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.bss-section-title--gold {
    color: var(--bss-gold);
    font-size: clamp(1.2rem, 2.5vw, 32px);
    font-weight: 700;
    font-family: var(--bss-font-head);
}


/* ═══════════════════════════════════════════════
   DESCRIPTION
════════════════════════════════════════════════ */
.bss-description {
    padding: var(--bss-section-lg) 0;
    background-color: var(--bss-bg);
}

.bss-description__text {
    color: var(--bss-text);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.85;
}

.bss-description__text p { margin-bottom: 1rem; }
.bss-description__text p:last-child { margin-bottom: 0; }


/* ═══════════════════════════════════════════════
   KNOW MORE
════════════════════════════════════════════════ */
.bss-know-more {
    padding: var(--bss-section-lg) 0;
    background-color: var(--bss-bg-2);
}

.bss-km-card {
    background: #101010;
    padding: 32px 28px;
    color: var(--bss-text);
    font-size: 16px;
    line-height: 1.85;
    height: 100%;
    font-weight: 500;
}

.bss-km-card p { margin-bottom: .75rem; }
.bss-km-card p:last-child { margin-bottom: 0; }


/* ═══════════════════════════════════════════════
   FAQ ACCORDION
════════════════════════════════════════════════ */
.bss-faq {
    padding: var(--bss-section-lg) 0;
    background-color: var(--bss-bg);
}

/* Reset Bootstrap accordion defaults */
.bss-accordion {
    width: 100%;
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-bg: transparent;
}

.bss-accordion__item {
    background: transparent;
    border: none !important;
    border-radius: 0 !important;
    width: 100%;
    display: block;
    margin: 16px 0;
}

.bss-accordion__item .accordion-header {
    width: 100%;
    display: block;
    margin: 0;
}

.bss-accordion__btn {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    background: var(--bss-bg-2) !important;
    color: var(--bss-gold) !important;
    font-size: clamp(16px, 2vw, 20px) !important;
    font-weight: 500;
    padding: 18px 20px !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    text-align: left !important;
    cursor: pointer;
    line-height: 1.4;
    transition: background var(--bss-trans);
}

.bss-accordion__btn:hover {
    background: #1d1d1d !important;
}

/* Custom arrow icon */
.bss-accordion__btn::after {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-left: 16px;
    background-image: url('/wp-content/uploads/2026/07/accordion-arrow-gold.svg') !important;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .3s ease;
}

.bss-accordion__btn:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.bss-accordion__btn.collapsed {
    color: #EDCD6D !important;
}

.bss-accordion__btn.collapsed::after {
    opacity: .6;
}

.bss-accordion__body {
    background: var(--bss-bg-2);
    color: var(--bss-text);
    font-family: var(--bss-font);
    font-size: 15px !important;
    line-height: 1.8;
    padding: 4px 20px 20px;
}


/* ═══════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.bss-testimonials {
    padding: 0;
    background-color: var(--bss-bg-2);
}

.bss-testimonials-single {
    padding: var(--bss-section-lg) 0;
    background-color: var(--bss-bg-2);
}

.bss-testimonials__sub {
    font-size: 14px;
    color: var(--bss-muted);
    opacity: .7;
    max-width: 520px;
    margin: 0 auto 12px;
    text-align: center;
    line-height: 1.6;
}

/* Swiper card */
.bss-tcard {
    background: var(--bss-bg-3);
    border: 1px solid var(--bss-border);
    border-radius: var(--bss-radius);
    overflow: hidden;
    height: 100%;
}

.bss-tcard__thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
    text-decoration: none;
}

.bss-tcard__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--bss-trans);
}

.bss-tcard__thumb:hover img {
    transform: scale(1.04);
}

.bss-tcard__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .2);
    transition: background var(--bss-trans);
}

.bss-tcard__thumb:hover .bss-tcard__play {
    background: rgba(0, 0, 0, .4);
}

.bss-tcard__play svg {
    width: 60px;
    height: 42px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
    transition: transform var(--bss-trans);
}

.bss-tcard__thumb:hover .bss-tcard__play svg {
    transform: scale(1.08);
}

.bss-tcard__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bss-tcard__name {
    color: var(--bss-white);
    font-size: .95rem;
    font-weight: 600;
    display: block;
}

.bss-tcard__date {
    color: var(--bss-muted);
    font-size: .78rem;
    opacity: .6;
    display: block;
}

/* Swiper nav */
.bss-tSwiper {
    padding-bottom: 0 !important;
}

.bss-tSwiper__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.bss-tSwiper__btn {
    background: transparent;
    border: 1px solid var(--bss-border);
    color: var(--bss-text);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--bss-trans), color var(--bss-trans);
    flex-shrink: 0;
    padding: 0;
}

.bss-tSwiper__btn:hover {
    border-color: var(--bss-gold);
    color: var(--bss-gold);
}

.bss-tSwiper__btn.swiper-button-disabled {
    opacity: .3;
    cursor: default;
}

.bss-tSwiper__dots {
    position: static !important;
    display: flex;
    align-items: center;
    gap: 6px;
    width: auto !important;
}

.bss-tSwiper__dots .swiper-pagination-bullet {
    background: var(--bss-border);
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 !important;
    transition: all var(--bss-trans);
}

.bss-tSwiper__dots .swiper-pagination-bullet-active {
    background: var(--bss-gold);
    width: 22px;
    border-radius: 4px;
}


/* ═══════════════════════════════════════════════
   VIDEO MODAL
════════════════════════════════════════════════ */
.bss-modal {
    background: #000;
    border: none;
    border-radius: var(--bss-radius);
    overflow: hidden;
    position: relative;
}

.bss-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    padding: 0;
}


/* ═══════════════════════════════════════════════
   CTA
════════════════════════════════════════════════ */
.bss-cta {
    padding: var(--bss-section-lg) 0;
    background: var(--bss-gold);
}

.bss-cta .bss-eyebrow {
    color: #2F2F2F;
    opacity: 1;
}

.bss-cta__title {
    font-size: clamp(1.8rem, 4vw, 64px);
    font-weight: 800;
    font-family: var(--bss-font-head);
    color: #151515;
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.15;
}

.bss-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: #F1ECE0;
    border-radius: 999px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: background var(--bss-trans), color var(--bss-trans), gap var(--bss-trans);
}

.bss-cta__btn::after {
    content: "";
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-block;
    background: url('/wp-content/uploads/2026/07/arrow-btn.svg') no-repeat center;
    background-size: contain;
    transition: transform .3s ease;
}

.bss-cta__btn:hover {
    background: #D9B146;
    color: #000;
}

.bss-cta__btn:hover::after {
    transform: translateX(5px);
}

.bss-accordion__btn {
    white-space: normal;
    word-break: break-word;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — Tablet  (≤ 991px)
════════════════════════════════════════════════ */
@media (max-width: 991.98px) {

    :root {
        --bss-section-lg: 80px;
    }

    .bss-hero {
        min-height: 80vh;
        margin-top: -100px;
    }

    .bss-hero__overlay {
        padding: 120px 20px 60px;
    }

    .bss-km-card {
        padding: 24px 20px;
    }

    .bss-cta__title {
        max-width: 100%;
    }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — Mobile  (≤ 767px)
════════════════════════════════════════════════ */
@media (max-width: 767.98px) {

    :root {
        --bss-section-lg: 56px;
        --bss-section-md: 44px;
    }

    .bss-hero {
        min-height: 60vh;
        margin-top: -100px;
    }

    .bss-hero__overlay {
        padding: 110px 16px 48px;
    }

    /* Stack description columns */
    .bss-description .row {
        flex-direction: column;
        gap: 20px !important;
    }

    /* Know more cards full width */
    .bss-know-more .row > [class*="col-"] {
        width: 100%;
    }

    .bss-km-card {
        padding: 20px 16px;
        font-size: 15px;
    }

    /* FAQ */
    .bss-accordion__btn {
        font-size: 15px !important;
        padding: 14px 16px !important;
		white-space: normal !important;
    word-break: break-word;
    }

    .bss-accordion__body {
        font-size: 14px !important;
        padding: 4px 16px 16px;
    }

    /* Testimonials */
    .bss-tSwiper__nav {
        gap: 12px;
        margin-top: 24px;
    }

    .bss-tSwiper__btn {
        width: 34px;
        height: 34px;
        font-size: .9rem;
    }

    /* CTA */
    .bss-cta {
        text-align: center;
    }

    .bss-cta__title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 28px;
    }

    .bss-cta__btn {
        font-size: 15px;
        padding: 13px 26px;
    }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — Small mobile  (≤ 480px)
════════════════════════════════════════════════ */
@media (max-width: 480px) {

    :root {
        --bss-section-lg: 44px;
    }

    .bss-hero {
        min-height: 55vh;
        margin-top: -100px;
    }

    .bss-hero__overlay {
        padding: 100px 12px 40px;
    }

    .bss-tcard__name { font-size: .88rem; }
    .bss-tcard__date { font-size: .75rem; }

    .bss-cta__btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
	.bss-description__text {
		margin-top: -70px;
	}
}

@media (max-width: 767.98px) {
    .bss-description .row,
    .bss-know-more .row {
        margin-left: 0;
        margin-right: 0;
    }

    .bss-description .container {
        overflow: hidden;
    }
}


.bss-description .row,
.bss-know-more .row {
    --bs-gutter-x: 1.5rem;
    margin-left: calc(var(--bs-gutter-x) * -.5);
    margin-right: calc(var(--bs-gutter-x) * -.5);
}

/* Mobile pe gutter zero karo */
@media (max-width: 767.98px) {
    .bss-description .row,
    .bss-know-more .row {
        --bs-gutter-x: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .bss-description .row > *,
    .bss-know-more .row > * {
        padding-left: 0;
        padding-right: 0;
    }
}