/* ==========================================================================
   Apar AyurVeda & Panchakarma Hospital — Shared Stylesheet
   Used by: index.php (Home) + inner pages
   ========================================================================== */

:root {
    --green: #2e7d32;
    --green-dark: #1b5e20;
    --gold: #c8a84b;
    --gold-light: #e8c96a;
    --cream: #faf6ef;
    --text-dark: #1a1a1a;
    --text-muted: #5a5a5a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #fff;
    top: 0 !important;
}

/* Custom Language Selector (native <select>, our own CSS) — hides Google's stock widget */
#google_translate_element {
    display: none !important;
}

.lang-select {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: .74rem;
    cursor: pointer;
    outline: none;
    max-width: 130px;
}

.lang-select option {
    color: var(--text-dark);
    background: #fff;
}

.lang-select:hover {
    border-color: var(--gold);
}

.goog-te-banner-frame {
    display: none !important;
}

/* ══════════════════════════════ TOPBAR ══════════════════════════════ */
#topbar {
    background: var(--green-dark);
    border-bottom: 2px solid var(--gold);
    font-size: .78rem;
    color: #fff;
    z-index: 1100;
    position: relative;
}

#topbar .tb-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    gap: 8px;
}

#topbar a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color .2s;
}

#topbar a:hover {
    color: var(--gold-light);
}

/* Left — info links */
.tb-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.tb-left .tb-item {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.tb-left .tb-label {
    /* text label beside icon */
}

/* Right — consult btn + translate + social */
.tb-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.tb-consult {
    background: var(--gold);
    color: var(--green-dark) !important;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .74rem;
    white-space: nowrap;
    transition: background .2s;
}

.tb-consult:hover {
    background: var(--gold-light) !important;
}

.tb-social {
    display: flex;
    gap: 4px;
}

.tb-social a {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff !important;
    font-size: .68rem;
    transition: background .2s;
}

.tb-social a:hover {
    background: var(--gold);
}

/* ── Mobile topbar — collapse text labels, keep only icons on left ── */
@media (max-width:767.98px) {
    .tb-left .tb-label {
        display: none;
    }

    /* hide text, keep icons */
    .tb-left {
        gap: 10px;
    }

    .tb-right {
        gap: 6px;
    }

    .tb-consult .btn-text {
        display: none;
    }

    /* hide "Online Consultation" text */
    .tb-social a {
        width: 22px;
        height: 22px;
        font-size: .62rem;
    }
}

@media (max-width:479.98px) {

    /* On very small: hide timing from left */
    .tb-timing {
        display: none !important;
    }
}



/* ══════════════════════════════ NAVBAR ══════════════════════════════ */
#mainNav {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .10);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
}

/* Brand */
.navbar-brand img {
    width: 80px;
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--green-dark);
    line-height: 1.25;
}

.brand-text small {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
}

/* Desktop nav links */
#mainNav .navbar-nav>.nav-item>a.nav-link {
    font-weight: 700;
    font-size: .8rem;
    color: var(--text-dark);
    padding: 20px 10px !important;
    text-transform: uppercase;
    position: relative;
    transition: color .2s;
}

#mainNav .navbar-nav>.nav-item>a.nav-link:hover,
#mainNav .navbar-nav>.nav-item>a.nav-link.active {
    color: var(--green);
}

/* Underline bar — non-dropdown only */
#mainNav .navbar-nav>.nav-item:not(.dropdown)>a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 2px 2px 0 0;
    transform: translateX(-50%);
    transition: width .25s;
}

#mainNav .navbar-nav>.nav-item:not(.dropdown)>a.nav-link:hover::after {
    width: 70%;
}

/* Kill Bootstrap's default caret on dropdown toggles */
#mainNav .navbar-nav>.nav-item.dropdown>a.nav-link::after {
    display: none !important;
}

/* Custom caret */
.nav-caret {
    font-size: .55rem;
    margin-left: 3px;
    vertical-align: middle;
    transition: transform .25s;
}

.nav-item.dropdown.show .nav-caret {
    transform: rotate(90deg);
}

/* Dropdown panel */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 240px;
    border-top: 3px solid var(--gold);
    margin-top: 0 !important;
    animation: fadeDown .18s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-size: .81rem;
    color: var(--text-dark);
    padding: 9px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background .15s, color .15s;
}

.dropdown-item i {
    width: 17px;
    color: var(--green);
    font-size: .82rem;
    flex-shrink: 0;
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--green-dark);
}

.dropdown-item:hover i {
    color: var(--gold);
}

.drop-label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    padding: 7px 18px 3px;
    border-top: 1px solid #f0ece4;
}

.drop-label:first-child {
    border-top: none;
}

/* Desktop Hover Dropdown */
@media all and (min-width: 1200px) {
    #mainNav .navbar-nav>.nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }

    #mainNav .navbar-nav>.nav-item.dropdown:hover .nav-caret {
        transform: rotate(90deg);
    }
}

/* Book appointment pill */
.nav-book-btn {
    background: var(--green) !important;
    color: white !important;
    border-radius: 25px;
    padding: 8px 16px !important;
    font-size: .76rem !important;
    margin-left: 6px;
    white-space: nowrap;
    transition: background .2s, transform .15s;
}

.nav-book-btn:hover {
    background: var(--green-dark) !important;
    transform: scale(1.03);
    color: white !important;
}

.nav-book-btn::after {
    display: none !important;
}

/* ── Mobile navbar tweaks ── */
@media (max-width:1199.98px) {

    /* Compact brand on tablet */
    .brand-text {
        font-size: .72rem;
    }

    .navbar-brand img {
        width: 60px;
    }
}

@media (max-width:575.98px) {
    .brand-text small {
        font-size: inherit;
    }

    /* hide subtitle on very small */
}



/* ══════════════════════════════ OFFCANVAS (mobile menu) ══════════════════════════════ */
.offcanvas {
    max-width: 290px;
    z-index: 10000;
}

.offcanvas-header {
    background: var(--green-dark);
    padding: 14px 16px;
}

.offcanvas-title {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: .88rem;
}

.offcanvas .btn-close {
    filter: invert(1);
}

.offcanvas .nav-link {
    border-bottom: 1px solid #f0ece4;
    padding: 12px 18px !important;
    font-size: .84rem;
    color: var(--text-dark) !important;
    font-weight: 600;
}

.offcanvas .nav-link:hover {
    background: var(--cream);
    color: var(--green-dark) !important;
}

/* Collapse sub-menu inside offcanvas */
.offcanvas .sub-menu {
    background: #f8f5ef;
    border-left: 3px solid var(--gold);
    margin: 0;
    padding: 4px 0;
}

.offcanvas .sub-menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 20px 9px 24px;
    font-size: .8rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background .15s;
}

.offcanvas .sub-menu a:hover {
    background: #efe9dc;
    color: var(--green-dark);
}

.offcanvas .sub-menu a i {
    width: 16px;
    color: var(--green);
    font-size: .8rem;
    flex-shrink: 0;
}

.offcanvas .sub-label {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    padding: 7px 24px 3px;
}



/* ══════════════════════════════ SHARED SECTION HELPERS ══════════════════════════════ */
section {
    padding: 56px 0;
}

.sec-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 32px;
}

.sec-eyebrow {
    display: inline-block;
    color: var(--green);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sec-eyebrow::before {
    content: '\f06c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 6px;
    color: var(--gold);
}

.sec-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--green-dark);
    margin-bottom: 8px;
}

.sec-sub {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
}

@media (max-width:767.98px) {
    section {
        padding: 40px 0;
    }

    .sec-head {
        margin-bottom: 22px;
    }
}

.slider-wrap {
    position: relative;
}

.slider-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 12px;
    scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slide-card {
    scroll-snap-align: start;
    flex: 0 0 auto;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.s-prev,
.s-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd6c4;
    background: #fff;
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, border-color .2s;
}

.s-prev:hover,
.s-next:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.hero-btn-primary {
    background: var(--gold);
    color: var(--green-dark);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: .83rem;
    text-decoration: none;
    transition: background .2s, transform .15s;
    display: inline-block;
}

.hero-btn-primary:hover {
    background: var(--gold-light);
    color: var(--green-dark);
    transform: translateY(-2px);
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .75);
    padding: 10px 22px;
    border-radius: 25px;
    font-size: .83rem;
    text-decoration: none;
    transition: all .2s;
    display: inline-block;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, .15);
    border-color: #fff;
    color: #fff;
}



/* ══════════════════════════════ HERO SLIDER (home page) ══════════════════════════════ */
#heroSlider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 580px;
    background: var(--green-dark) center/cover no-repeat;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 0, 0, .68) 38%, rgba(0, 0, 0, .18) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 6%;
}

.hero-text {
    max-width: 600px;
    color: #fff;
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .65s ease, transform .65s ease;
}

.carousel-item.active .hero-text {
    opacity: 1;
    transform: translateX(0);
}

.hero-eyebrow {
    display: inline-block;
    background: var(--gold);
    color: var(--green-dark);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3.8vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.hero-sub {
    font-size: clamp(.82rem, 1.8vw, .98rem);
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 24px;
    opacity: .92;
}

.hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: var(--gold);
    color: var(--green-dark);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: .83rem;
    text-decoration: none;
    transition: background .2s, transform .15s;
}

.hero-btn-primary:hover {
    background: var(--gold-light);
    color: var(--green-dark);
    transform: translateY(-2px);
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .75);
    padding: 10px 22px;
    border-radius: 25px;
    font-size: .83rem;
    text-decoration: none;
    transition: all .2s;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, .15);
    border-color: #fff;
    color: #fff;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    margin: 0 16px;
    transition: background .2s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--gold);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 14px;
    height: 14px;
}

.carousel-indicators {
    bottom: 16px;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    border: none;
    margin: 0 4px;
    transition: all .3s;
}

.carousel-indicators .active {
    width: 26px;
    border-radius: 4px;
    background: var(--gold);
}

/* Mobile hero */
@media (max-width:767.98px) {
    .hero-slide {
        height: 400px;
    }

    .hero-sub {
        display: none;
    }

    /* hide subtitle on small screens for cleaner look */
    .hero-btns {
        gap: 8px;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        padding: 8px 16px;
        font-size: .78rem;
    }
}

@media (max-width:479.98px) {
    .hero-slide {
        height: 320px;
    }

    .hero-title {
        font-size: 1.35rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 32px;
        height: 32px;
        margin: 0 8px;
    }
}



/* ══════════════════════════════ PAGE BANNER (inner pages) ══════════════════════════════ */
.page-banner {
    height: 260px;
    background: var(--green-dark) center/cover no-repeat;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 0, 0, .72) 45%, rgba(0, 0, 0, .25) 100%);
}

.pb-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    padding-top: 50px;
}

.pb-crumb {
    font-size: .76rem;
    opacity: .85;
    margin-bottom: 8px;
}

.pb-crumb a {
    color: #fff;
    text-decoration: none;
    opacity: .8;
}

.pb-crumb a:hover {
    opacity: 1;
    color: var(--gold-light);
}

.pb-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 3.4vw, 2.1rem);
    font-weight: 700;
    margin-bottom: 6px;
}

.pb-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--green-dark);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}

@media (max-width:767.98px) {
    .page-banner {
        height: 210px;
    }
}



/* ══════════════════════════════ TRUST / STATS STRIP (home page) ══════════════════════════════ */
#trustStrip {
    background: var(--green-dark);
    padding: 22px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 6px 10px;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    opacity: .85;
    margin-top: 4px;
}

@media (max-width:767.98px) {
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        padding: 10px;
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }
}



/* ══════════════════════════════ ABOUT SNIPPET (home page) ══════════════════════════════ */
.about-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
}

.about-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-badge i {
    color: var(--gold);
    font-size: 1.3rem;
}

.about-badge strong {
    display: block;
    color: var(--green-dark);
    font-family: 'Cinzel', serif;
    font-size: .95rem;
}

.about-badge span {
    font-size: .68rem;
    color: var(--text-muted);
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .87rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.about-list i {
    color: var(--green);
    margin-top: 3px;
}

@media (max-width:991.98px) {
    .about-img-wrap img {
        height: 260px;
    }
}



/* ══════════════════════════════ INTRO SPLIT (inner pages) ══════════════════════════════ */
.intro-img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.intro-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
}

.intro-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .87rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.intro-list i {
    color: var(--green);
    margin-top: 3px;
}

@media (max-width:991.98px) {
    .intro-img {
        height: 220px;
    }
}



/* ══════════════════════════════ SYMPTOMS GRID (inner pages) ══════════════════════════════ */
#symptoms {
    background: var(--cream);
}

.symptom-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px 14px;
    text-align: center;
    height: 100%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

.symptom-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.symptom-item p {
    font-size: .82rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}



/* ══════════════════════════════ SERVICE / THERAPY CARDS (shared) ══════════════════════════════ */
.svc-card {
    width: 250px;
    background: #fff;
    border: 1px solid #efe9dc;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform .2s, box-shadow .2s;
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
}

.svc-img {
    height: 140px;
    background: var(--cream) center/cover no-repeat;
    position: relative;
}

.svc-icon {
    position: absolute;
    bottom: -18px;
    left: 16px;
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}

.svc-body {
    padding: 26px 16px 16px;
}

.svc-body h3 {
    font-family: 'Cinzel', serif;
    font-size: .95rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.svc-body p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 10px;
}

.svc-link {
    font-size: .76rem;
    font-weight: 700;
    color: var(--green);
}

@media (max-width:479.98px) {
    .svc-card {
        width: 220px;
    }
}

/* Panchakarma pill cards */

.pk-card {
    width: 190px;
    text-align: center;
    padding: 26px 14px;
    background: var(--cream);
    border-radius: 12px;
    transition: background .2s, transform .2s;
    text-decoration: none;
    display: block;
}

.pk-card:hover {
    background: var(--green);
    transform: translateY(-4px);
}

.pk-card:hover h3,
.pk-card:hover p {
    color: #fff;
}

.pk-card:hover .pk-icon {
    background: var(--gold);
    color: var(--green-dark);
}

.pk-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 12px;
    transition: background .2s, color .2s;
}

.pk-card h3 {
    font-family: 'Cinzel', serif;
    font-size: .88rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.pk-card p {
    font-size: .74rem;
    color: var(--text-muted);
}



/* ══════════════════════════════ PROCESS STEPS (inner pages) ══════════════════════════════ */
#process {
    background: var(--green-dark);
    color: #fff;
}

#process .sec-eyebrow {
    color: var(--gold-light);
}

#process .sec-eyebrow::before {
    color: var(--gold-light);
}

#process .sec-title {
    color: #fff;
}

#process .sec-sub {
    color: rgba(255, 255, 255, .75);
}

.process-step {
    text-align: center;
    padding: 10px;
    position: relative;
}

.process-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--green-dark);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.process-step h3 {
    font-family: 'Cinzel', serif;
    font-size: .92rem;
    margin-bottom: 6px;
}

.process-step p {
    font-size: .8rem;
    opacity: .8;
    line-height: 1.5;
}



/* ══════════════════════════════ WHY CHOOSE US (home page) ══════════════════════════════ */
#whyChoose {
    background: var(--cream);
}

.why-item {
    text-align: center;
    padding: 14px 10px;
}

.why-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.why-item h3 {
    font-family: 'Cinzel', serif;
    font-size: .92rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.why-item p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.5;
}



/* ══════════════════════════════ FAQ (inner pages) ══════════════════════════════ */
.accordion-item {
    border: 1px solid #efe9dc;
    border-radius: 10px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: .87rem;
    color: var(--green-dark);
    background: #fff;
    padding: 16px 18px;
}

.accordion-button:not(.collapsed) {
    background: var(--cream);
    color: var(--green-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #efe9dc;
}

.accordion-button::after {
    filter: hue-rotate(60deg) saturate(2);
}

.accordion-body {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 4px 18px 16px;
}



/* ══════════════════════════════ FOUNDER (home page) ══════════════════════════════ */
#founder {
    background: var(--green-dark);
    color: #fff;
    overflow: hidden;
}

.founder-img {
    width: 100%;
    max-width: 260px;
    border-radius: 12px;
    border: 4px solid var(--gold);
}

#founder .sec-eyebrow {
    color: var(--gold-light);
}

#founder .sec-eyebrow::before {
    color: var(--gold-light);
}

#founder h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    margin-bottom: 10px;
}

#founder p.role {
    color: var(--gold-light);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 14px;
}

#founder p.desc {
    font-size: .87rem;
    line-height: 1.7;
    opacity: .9;
    margin-bottom: 18px;
}

.founder-cred {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.founder-cred div strong {
    display: block;
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    font-size: 1.2rem;
}

.founder-cred div span {
    font-size: .72rem;
    opacity: .85;
}



/* ══════════════════════════════ SEO CONTENT — expandable, crawlable (inner pages) ══════════════════════════════ */
#seoContent {
    background: #fff;
}

.seo-copy {
    color: var(--text-dark);
    font-size: .88rem;
    line-height: 1.85;
}

.seo-copy h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    color: var(--green-dark);
    margin: 22px 0 10px;
}

.seo-copy h2:first-child {
    margin-top: 0;
}

.seo-copy p {
    margin-bottom: 14px;
}

.seo-copy a {
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
}

.seo-copy a:hover {
    text-decoration: underline;
}

.seo-collapse {
    max-height: 260px;
    overflow: hidden;
    position: relative;
    transition: max-height .4s ease;
}

.seo-collapse::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(transparent, #fff);
}

.seo-collapse.expanded {
    max-height: 3000px;
}

.seo-collapse.expanded::after {
    display: none;
}

.seo-toggle-btn {
    border: 1px solid var(--green);
    color: var(--green);
    background: #fff;
    font-weight: 700;
    font-size: .8rem;
    padding: 8px 20px;
    border-radius: 22px;
    margin-top: 16px;
    transition: background .2s, color .2s;
}

.seo-toggle-btn:hover {
    background: var(--green);
    color: #fff;
}



/* ══════════════════════════════ TESTIMONIALS (home page) ══════════════════════════════ */
.t-card {
    width: 300px;
    background: #fff;
    border: 1px solid #efe9dc;
    border-radius: 12px;
    padding: 22px;
}

.t-stars {
    color: var(--gold);
    font-size: .78rem;
    margin-bottom: 10px;
}

.t-text {
    font-size: .84rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 96px;
}

.t-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

.t-person strong {
    display: block;
    font-size: .82rem;
    color: var(--green-dark);
}

.t-person span {
    font-size: .72rem;
    color: var(--text-muted);
}



/* ══════════════════════════════ CTA BANNER ══════════════════════════════ */
#ctaBanner {
    background: linear-gradient(120deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff;
    padding: 40px 0;
}

#ctaBanner h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 2.6vw, 1.7rem);
    margin-bottom: 6px;
}

#ctaBanner p {
    font-size: .85rem;
    opacity: .9;
    margin-bottom: 0;
}

.cta-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width:767.98px) {
    .cta-btns {
        justify-content: flex-start;
        margin-top: 16px;
    }
}



/* ══════════════════════════════ FOOTER ══════════════════════════════ */
#siteFooter {
    background: #10310f;
    color: #d8d8d0;
    padding: 50px 0 0;
    font-size: .84rem;
}

#siteFooter h5 {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
}

#siteFooter .f-about {
    font-size: .82rem;
    line-height: 1.7;
    opacity: .85;
    margin-bottom: 16px;
}

#siteFooter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#siteFooter ul li {
    margin-bottom: 10px;
}

#siteFooter ul li a {
    color: #d8d8d0;
    text-decoration: none;
    opacity: .85;
    transition: opacity .2s, color .2s;
}

#siteFooter ul li a:hover {
    opacity: 1;
    color: var(--gold-light);
}

#siteFooter .f-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#siteFooter .f-contact i {
    color: var(--gold);
    margin-top: 3px;
}

.f-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.f-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    transition: background .2s;
}

.f-social a:hover {
    background: var(--gold);
    color: var(--green-dark);
}

.f-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 34px;
    padding: 16px 0;
    font-size: .76rem;
    text-align: center;
    opacity: .7;
}



/* ══════════════════════════════ FLOATING BUTTONS & HIGHLIGHT CTA ══════════════════════════════ */

/* WhatsApp Button */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
    z-index: 1200;
    animation: pulseWa 2.4s infinite;
}

@keyframes pulseWa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* FB and Instagram Floating Buttons */
.float-fb,
.float-ig {
    position: fixed;
    right: 20px;
    width: 55px;
    height: 55px;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 26px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.float-fb:hover,
.float-ig:hover {
    color: #FFF;
    transform: scale(1.1);
}

.float-ig {
    bottom: 90px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.float-fb {
    bottom: 160px;
    background-color: #1877F2;
}

/* Pulsing highlight CTA for Navbar */
@keyframes pulse-highlight {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #c8a84b;
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.highlight-cta {
    animation: pulse-highlight 2s infinite !important;
    background-color: #c8a84b !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 8px 18px !important;
    font-weight: bold !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
}

.highlight-cta:hover {
    background-color: #9e8230 !important;
    color: #fff !important;
}

/* Mobile specific adjustments for highlight CTA */
#mobileMenu .highlight-cta {
    padding: 12px !important;
    justify-content: center;
}


/* -------------------------------------------
     MOBILE FIRST BASE STYLES (Ultra Optimized)
     ------------------------------------------- */
  .premium-consult-cta {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Positioned at Bottom-Left */
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(26, 90, 34, 0.15);
    border: 1px solid rgba(26, 90, 34, 0.1);
    /* Breathing animation for the whole button */
    animation: floatBreathing 3s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .premium-consult-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(26, 90, 34, 0.25);
    background: #fdfdfd;
    border-color: rgba(26, 90, 34, 0.3);
  }

  /* Icon Box Styling */
  .cta-icon-box {
    position: relative;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #1a5a22, #298233);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-shrink: 0;
  }

  /* Ringing effect on the icon itself */
  .anim-icon {
    width: 20px;
    height: 20px;
    animation: ringShake 2s infinite;
    transform-origin: center;
  }

  /* Ripple Ping Effect behind the icon */
  .ping-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #298233;
    opacity: 0.4;
    animation: ripplePing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: -1;
  }

  /* Text Styling */
  .cta-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
  }

  .cta-heading {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .cta-rates {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    color: #555;
    margin-top: 2px;
  }

  .cta-rates strong {
    color: #1a5a22; /* Highlighting the price in Ayurveda Green */
    font-weight: 800;
  }

  /* -------------------------------------------
     KEYFRAME ANIMATIONS
     ------------------------------------------- */
  @keyframes floatBreathing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }

  @keyframes ripplePing {
    75%, 100% {
      transform: scale(1.8);
      opacity: 0;
    }
  }

  @keyframes ringShake {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0deg); }
  }

  /* -------------------------------------------
     DESKTOP / TABLET SCALING (Min-width: 768px)
     ------------------------------------------- */
  @media (min-width: 768px) {
    .premium-consult-cta {
      bottom: 30px;
      left: 30px;
      padding: 8px 20px 8px 8px;
      gap: 15px;
    }
    
    .cta-icon-box {
      width: 48px;
      height: 48px;
    }

    .anim-icon {
      width: 22px;
      height: 22px;
    }

    .cta-heading {
      font-size: 15px;
    }

    .cta-rates {
      font-size: 13px;
    }
  }