 /* @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css") */
    

:root {
    --ink: #17342c;
    --cream: #f8f4ec;
    --sand: #efe6d6;
    --orange: #c56f41;
    --green: #17372d;
    --white: #fff;
    --line: rgba(23, 52, 44, .16);
    --serif: "Cormorant Garamond", serif;
    --marathi-display: "Inknut Antiqua", "Noto Sans Devanagari", "Nirmala UI", serif;
    --sans: "Inter", sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.65
}

body.lock {
    overflow: hidden
}

img {
    width: 100%;
    display: block;
    object-fit: cover
}

a {
    text-decoration: none;
    color: inherit
}

button,
input,
select,
textarea {
    font: inherit
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.section {
    padding: 100px 0
}

.sand {
    background: var(--sand)
}

h1,
h2,
h3,
blockquote {
    font-family: var(--serif);
    line-height: 1.04;
    margin-top: 0
}

h2 {
    font-size: clamp(42px, 5vw, 68px)
}

h3 {
    font-size: 32px
}

.eyebrow {
    font-size: 12px;
    letter-spacing: .19em;
    font-weight: 700;
    color: var(--orange)
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--cream);
    display: grid;
    place-items: center;
    text-align: center;
    transition: .7s
}

.load-mark {
    font: 82px var(--serif);
    color: var(--orange);
    animation: pulse 1s infinite alternate
}

.load-text {
    display: flex;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .12em
}

.load-text span {
    opacity: 0;
    animation: rotating calc(var(--i)*.1s) forwards
}

@keyframes rotating {
    to {
        opacity: 1;
        transform: rotateX(720deg)
    }
}

@keyframes pulse {
    to {
        transform: scale(1.12)
    }
}

#preloader.hide {
    opacity: 0;
    visibility: hidden
}

header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: 86px;
    color: #fff;
    display: flex;
    align-items: center;
    transition: .3s
}

header.scrolled {
    height: 72px;
    background: rgba(248, 244, 236, .96);
    color: var(--ink);
    box-shadow: 0 8px 30px #0001
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.brand>b {
    border: 1px solid;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    font: 28px var(--serif)
}

.brand span {
    display: grid;
    line-height: 1.1
}

.brand strong {
    font: 23px var(--serif)
}

.brand small {
    font-size: 9px;
    letter-spacing: .12em;
    margin-top: 5px
}

nav {
    display: flex;
    align-items: center;
    gap: 28px
}

nav a {
    font-size: 14px;
    font-weight: 600
}

#menu {
    display: none;
    border: 0;
    background: none;
    color: inherit;
    font-size: 24px
}

.btn {
    border: 1px solid transparent;
    min-height: 54px;
    padding: 0 26px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50px;
    background: #c56f41;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease, background .4s ease, color .4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.primary {
    background: #c56f41;
    color: white
}

.dark {
    background: #c56f41;
    color: white
}

.ghost {
    border-color: #ffffffaa;
    background: #c56f41;
    
}

.outline {
    border-color: #c56f41;
    background: #c56f41;
    color: #fff
}

.full {
    width: 100%
}

.button-grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.button-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.button-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.button-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--green);
    font-weight: 600;
}

.service-desc {
    font-size: .9rem;
    color: rgba(51, 51, 51, .7);
    margin-top: 1rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: #c56f41;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease, background .4s ease, color .4s ease;
    transform: translateY(0);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.cta-btn span {
    position: relative;
    z-index: 2;
    transition: color .4s ease;
}

@media(max-width:850px) {
    .button-grid-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:560px) {
    .button-grid-section {
        grid-template-columns: 1fr;
    }
}

.hero {
    min-height: 760px;
    padding: 150px 0 80px;
    color: #fff;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #0c281fe8, #0c281f77), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=90') center/cover
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 80px;
    align-items: center
}

.hero h1 {
    font-size: clamp(60px, 7vw, 105px);
    margin-bottom: 25px
}

.hero h1 em {
    color: #e9b18d;
    font-weight: 500
}

.lead {
    max-width: 650px;
    font-size: 19px;
    color: #ffffffd0
}

.actions {
    display: flex;
    gap: 14px;
    margin: 32px 0 40px
}

.stats {
    display: flex;
    gap: 38px
}

.stats div {
    display: grid
}

.stats b {
    font: 25px var(--serif)
}

.stats span {
    font-size: 12px;
    color: #ffffffaa
}

.hero-form {
    background: #f8f4ecf5;
    color: var(--ink);
    padding: 34px;
    box-shadow: 0 25px 70px #0003
}

.hero-form h2 {
    font-size: 40px;
    margin-bottom: 10px
}

.demo-form,
.contact-form {
    display: grid;
    gap: 15px
}

label {
    display: grid;
    gap: 6px;
    font-size: 12px;
    font-weight: 700
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    padding: 14px;
    outline: none
}

.two {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    align-items: center
}

.two>div:last-child {
    font-size: 18px
}

.text-link,
.link-btn {
    color: #c56f41;
    font-weight: 700
}

.center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.card {
    background: var(--cream)
}

.card img {
    aspect-ratio: 1.1
}

.card>div {
    padding: 28px
}

.card small {
    color: var(--orange);
    letter-spacing: .15em
}

.card p {
    color: #5a6b64
}

.link-btn {
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer
}

.quote {
    padding: 100px 0;
    background: var(--orange);
    color: #fff;
    text-align: center
}

.quote blockquote {
    font-size: clamp(42px, 5vw, 70px);
    max-width: 950px;
    margin: auto
}

.quote-marathi-line {
    margin: 0 auto 28px;
    max-width: 900px;
    color: #fff;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.25;
}

body[data-language="mr"] [data-mr],
body[data-language="mr"] input,
body[data-language="mr"] textarea,
body[data-language="mr"] select,
body[data-language="mr"] option,
body[data-language="mr"] .error-text {
    font-family: var(--marathi-display);
    font-weight: 500;
}

body[data-language="mr"] .second-section h2,
body[data-language="mr"] .dialog h2,
.quote-marathi-line {
    font-family: var(--marathi-display);
}

body[data-language="mr"] .second-section h2 {
    font-weight: 700;
    line-height: 1.18;
}

body[data-language="mr"] .dialog h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.18;
}

body[data-language="mr"] .services-sec .center h2,
body[data-language="mr"] .regular-batches .center h2,
body[data-language="mr"] .page-hero h1 {
    font-family: var(--marathi-display);
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 600;
    line-height: 1.28;
}

body[data-language="mr"] .service-card h3,
body[data-language="mr"] .service-card-body h3,
body[data-language="mr"] .service-row-info h3,
body[data-language="mr"] .batch-highlight-card h3 {
    font-family: var(--marathi-display);
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 600;
    line-height: 1.32;
}

body[data-language="mr"] .service-card p,
body[data-language="mr"] .service-card-body p,
body[data-language="mr"] .service-row-info p,
body[data-language="mr"] .batch-highlight-card p,
body[data-language="mr"] .batch-highlight-card li,
body[data-language="mr"] .lead {
    font-size: 17px;
    line-height: 1.8;
}

body[data-language="mr"] p,
body[data-language="mr"] li,
body[data-language="mr"] .lead,
body[data-language="mr"] .footer-desc,
body[data-language="mr"] .thank-you-message {
    line-height: 1.9;
    word-spacing: .08em;
}

body[data-language="mr"] p + p,
body[data-language="mr"] p + ul,
body[data-language="mr"] p + ol,
body[data-language="mr"] ul + p,
body[data-language="mr"] ol + p {
    margin-top: 14px;
}

body[data-language="mr"] li + li {
    margin-top: 8px;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center
}

.about-img img {
    min-height: 600px
}

.about li {
    margin: 10px 0
}

.dark-sec {
    background: var(--green);
    color: #fff
}

.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #ffffff33
}

.benefits article {
    padding: 35px 25px;
    border-right: 1px solid #ffffff33
}

.benefits article:first-child {
    border-left: 1px solid #ffffff33
}

.benefits b {
    color: #e9b18d
}

.benefits p {
    color: #ffffffaa
}

.insta-head {
    display: flex;
    justify-content: space-between;
    align-items: end
}

.insta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 35px
}

.insta img {
    aspect-ratio: 1
}

.contact {
    background: white
}

.contact-form {
    background: var(--cream);
    padding: 38px
}

footer {
    background: #102920;
    color: #fff;
    padding: 65px 0 20px
}

.foot {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 45px;
    align-items: start
}

.foot div {
    display: grid;
    gap: 8px
}

.foot a,
.foot p {
    color: #ffffffaa
}

.copyright {
    border-top: 1px solid #ffffff22;
    margin-top: 45px;
    padding-top: 18px
}

.float {
    position: fixed;
    right: 22px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 0;
    z-index: 900;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800
}

.wa {
    bottom: 88px;
    background: #25d366
}

.book {
    bottom: 22px;
    background: var(--orange)
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    place-items: center;
    padding: 20px
}

.modal.open {
    display: grid
}

.backdrop {
    position: absolute;
    inset: 0;
    background: #061c16dd
}

.dialog {
    position: relative;
    background: var(--cream);
    padding: 42px;
    width: min(650px, 100%);
    max-height: 92vh;
    overflow: auto
}

.x {
    position: absolute;
    right: 15px;
    top: 10px;
    border: 0;
    background: none;
    font-size: 34px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

#toast {
    position: fixed;
    z-index: 4000;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%, 120px);
    background: var(--green);
    color: #fff;
    padding: 14px 20px;
    transition: .3s
}

#toast.show {
    transform: translate(-50%, 0)
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: .7s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

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

    #menu {
        display: block
    }

    #menu .menu-label {
        display: none
    }

    nav {
        position: fixed;
        inset: 72px 0 auto;
        background: var(--cream);
        color: var(--ink);
        padding: 24px;
        display: grid;
        transform: translateY(-130%);
        transition: .3s
    }

    nav.open {
        transform: none
    }

    .hero {
        padding: 125px 0 65px
    }

    .hero-grid,
    .two,
    .about {
        grid-template-columns: 1fr
    }

    .hero-copy {
        text-align: center
    }

    .actions,
    .stats {
        justify-content: center
    }

    .hero-form {
        max-width: 520px;
        margin: auto
    }

    .cards {
        grid-template-columns: 1fr
    }

    .benefits {
        grid-template-columns: 1fr 1fr
    }

    .foot {
        grid-template-columns: 1fr 1fr
    }

    .about-img img {
        min-height: 450px
    }
}

@media(max-width:560px) {
    .container {
        width: calc(100% - 28px)
    }

    .hero h1 {
        font-size: 52px
    }

    .actions,
    .stats {
        flex-direction: column
    }

    .stats {
        gap: 12px
    }

    .benefits {
        grid-template-columns: 1fr
    }

    .insta {
        grid-template-columns: 1fr 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .foot {
        grid-template-columns: 1fr
    }

    .insta-head {
        display: grid;
        gap: 15px
    }

    .dialog,
    .hero-form,
    .contact-form {
        padding: 24px
    }
}

.load-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 18px 45px #0002;
    animation: pulse 1s infinite alternate
}

.brand-logo {
    width: 56px;
    height: 56px;
    border: 2px solid #ffffffcc;
    border-radius: 50%;
    box-shadow: 0 8px 22px #0002
}

.brand>b {
    display: none
}

.brand small {
    font-size: 10px;
    text-transform: uppercase
}

.footer-brand {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px !important;
    align-items: center
}

.footer-brand img {
    width: 74px;
    height: 74px;
    border-radius: 50%
}

@media(max-width:560px) {
    .brand-logo {
        width: 48px;
        height: 48px
    }

    .brand strong {
        font-size: 20px
    }

    .brand small {
        font-size: 8px
    }
}

.hero {
    min-height: auto;
    padding: 126px 0 70px
}

.hero-grid {
    width: min(1480px, calc(100% - 56px));
    grid-template-columns: minmax(0, 1fr) minmax(360px, 488px);
    gap: 52px
}

.hero h1 {
    font-size: clamp(48px, 5.8vw, 82px);
    margin-bottom: 18px
}

.lead {
    font-size: 18px;
    line-height: 1.6;
    max-width: 780px
}

.hero-tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 0;
    max-width: 920px;
    margin: 30px 0 28px;
    padding: 0 22px
}

.hero-tile {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 42px #0006;
    isolation: isolate
}

.hero-tile:nth-child(1) {
    transform: translateY(18px)
}

.hero-tile:nth-child(3) {
    transform: translateY(18px)
}

.hero-tile-main {
    min-height: 294px;
    z-index: 2
}

.hero-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s
}

.hero-tile:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0000 42%, #1d140fd9);
    z-index: 1
}

.hero-tile span {
    position: relative;
    z-index: 2;
    padding: 0 26px 20px;
    font: 600 clamp(34px, 3.8vw, 58px)/1 var(--serif);
    text-shadow: 0 3px 16px #0008
}

.hero-tile:hover img {
    transform: scale(1.06)
}

.actions {
    margin: 24px 0 28px
}

.hero-form {
    align-self: center
}

@media(max-width:1100px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
        gap: 34px
    }

    .hero h1 {
        font-size: clamp(44px, 5.6vw, 68px)
    }

    .hero-tiles {
        padding: 0;
        margin-top: 24px
    }

    .hero-tile {
        min-height: 214px
    }

    .hero-tile-main {
        min-height: 254px
    }

    .hero-form {
        padding: 28px
    }
}

@media(max-width:850px) {
    .hero {
        padding: 118px 0 60px
    }

    .hero-grid {
        width: min(100% - 32px, 680px);
        grid-template-columns: 1fr
    }

    .hero-copy {
        text-align: center
    }

    .lead {
        margin-left: auto;
        margin-right: auto
    }

    .hero-tiles {
        margin: 28px auto;
        max-width: 620px
    }

    .hero-form {
        max-width: 560px;
        width: 100%
    }

    .hero-tile {
        min-height: 210px
    }

    .hero-tile-main {
        min-height: 250px
    }
}

@media(max-width:560px) {
    .hero {
        padding: 112px 0 48px
    }

    .hero h1 {
        font-size: 44px
    }

    .hero-tiles {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0
    }

    .hero-tile,
    .hero-tile-main {
        min-height: 190px;
        transform: none !important
    }

    .hero-tile span {
        font-size: 38px
    }

    .actions {
        margin-top: 20px
    }
}

.brand-logo,
.load-logo,
.footer-brand img {
    background: #fff;
    object-fit: cover
}

.brand-logo {
    padding: 3px;
    box-shadow: 0 0 0 3px #ffffff40, 0 12px 30px #0004
}

.load-logo {
    padding: 5px;
    box-shadow: 0 0 0 8px #e7b17a33, 0 22px 55px #0002
}

.hero-tile-main img,
.about-img img {
    object-position: center
}

.youtube-sec {
    background: #fff
}

.youtube-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: 28px;
    align-items: stretch;
    margin-top: 34px
}

.video-frame {
    position: relative;
    overflow: hidden;
    background: #102920;
    box-shadow: 0 22px 55px #0002;
    min-height: 440px
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.video-list {
    display: grid;
    gap: 18px
}

.video-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    align-items: center;
    background: var(--cream);
    border: 1px solid var(--line);
    min-height: 160px;
    transition: .25s
}

.video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px #0001
}

.video-card img {
    height: 100%;
    min-height: 160px
}

.video-card div {
    padding: 18px 18px 18px 0
}

.video-card small {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: .14em
}

.video-card h3 {
    font-size: 28px;
    margin: 6px 0 8px
}

.video-card p {
    margin: 0;
    color: #5a6b64
}

.youtube-sec .outline {
    background: #fff
}

.youtube-sec .btn.outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
}

.youtube-sec .btn.outline:hover {
    background: var(--orange);
    color: #fff;
}

@media(max-width:900px) {
    .youtube-grid {
        grid-template-columns: 1fr
    }

    .video-frame {
        min-height: auto;
        aspect-ratio: 16/9
    }

    .video-card {
        grid-template-columns: 140px 1fr
    }
}

@media(max-width:560px) {
    .youtube-grid {
        gap: 16px
    }

    .video-card {
        grid-template-columns: 1fr
    }

    .video-card img {
        aspect-ratio: 16/9;
        min-height: auto
    }

    .video-card div {
        padding: 20px
    }

    .video-card h3 {
        font-size: 26px
    }
}

nav {
    gap: 20px
}

.page-hero {
    min-height: 640px;
    padding: 150px 0 80px;
    color: #fff;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #0c281fec, #0c281f99), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=90') center/cover
}

.yoga-page {
    background: linear-gradient(90deg, #0c281fec, #0c281f99), url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=2200&q=90') center/cover
}

.sadhana-page {
    background: linear-gradient(90deg, #0c281fec, #0c281f99), url('assets/sangu-guruji-photo.png') center/cover
}

.meditation-page {
    background: linear-gradient(90deg, #0c281fec, #0c281f99), url('https://images.unsplash.com/photo-1536623975707-c4b3b2af565d?auto=format&fit=crop&w=2200&q=90') center/cover
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 70px;
    align-items: center
}

.page-hero h1 {
    font-size: clamp(54px, 6vw, 92px);
    margin-bottom: 24px
}

.page-hero-image {
    box-shadow: 0 28px 70px #0005
}

.page-hero-image img {
    aspect-ratio: .9;
    min-height: 520px
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.practice-card {
    background: #fff;
    padding: 34px;
    border: 1px solid var(--line)
}

.practice-card b {
    color: var(--orange);
    font: 700 18px var(--serif)
}

.practice-card p {
    color: #5a6b64
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.latest-card {
    background: #fff;
    box-shadow: 0 15px 38px #0001;
    border: 1px solid var(--line);
    transition: .25s
}

.latest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px #0002
}

.latest-card img {
    aspect-ratio: .82
}

.gallery-card video {
    width: 100%;
    aspect-ratio: .82;
    object-fit: cover;
    display: block;
    background: #0d231b
}

.latest-card div {
    padding: 22px
}

.latest-card small {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: .14em
}

.latest-card h3 {
    font-size: 30px;
    margin: 8px 0
}

.latest-card p {
    margin: 0;
    color: #5a6b64
}

@media(max-width:1100px) {
    nav {
        gap: 14px
    }

    .nav .btn {
        padding: 0 18px
    }

    .page-hero-grid {
        gap: 40px;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 430px)
    }

    .page-hero h1 {
        font-size: clamp(48px, 6vw, 74px)
    }
}

@media(max-width:850px) {
    .page-hero {
        padding: 118px 0 64px
    }

    .page-hero-grid,
    .practice-grid,
    .latest-grid {
        grid-template-columns: 1fr
    }

    .page-hero-grid {
        text-align: center
    }

    .page-hero-image {
        max-width: 520px;
        margin: auto
    }

    .page-hero-image img {
        aspect-ratio: 1.05;
        min-height: auto
    }

    .latest-card img {
        aspect-ratio: 16/9
    }
}

#header {
    height: 122px;
    display: block;
    background: #3d352d;
    color: #f7efe2
}

.top-strip {
    height: 38px;
    background: #e6d9c6;
    color: #62513e;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700
}

.top-strip-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px
}

.top-strip a {
    color: #17342c
}

.nav {
    height: 84px
}

.brand strong {
    color: #fff
}

.brand small {
    color: #e8dcca
}

.brand-logo {
    width: 58px;
    height: 58px
}

header.scrolled {
    height: 112px;
    background: #3d352df6;
    color: #f7efe2
}

.hero {
    padding: 142px 0 46px
}

.hero-grid {
    align-items: start
}

.hero h1 {
    font-size: clamp(42px, 4.9vw, 70px);
    line-height: 1.03;
    margin-bottom: 14px
}

.hero .eyebrow {
    margin-bottom: 10px
}

.lead {
    font-size: 17px;
    line-height: 1.5;
    max-width: 760px
}

.hero-tiles {
    max-width: 760px;
    margin: 22px 0 18px;
    padding: 0 28px
}

.hero-tile {
    min-height: 178px
}

.hero-tile-main {
    min-height: 224px
}

.hero-tile span {
    padding: 0 22px 16px;
    font-size: clamp(30px, 3vw, 48px)
}

.hero-form {
    padding: 28px;
    max-width: 610px
}

.hero-form h2 {
    font-size: 34px
}

.hero-form p {
    margin-top: 0
}

.hero-form .demo-form {
    gap: 12px
}

.hero-form input,
.hero-form select {
    padding: 12px
}

.hero-form .btn {
    min-height: 50px
}

.actions {
    margin: 18px 0 18px
}

.stats {
    display: none
}

.page-hero {
    min-height: auto;
    padding: 150px 0 58px
}

.page-hero h1 {
    font-size: clamp(44px, 5vw, 74px)
}

.page-hero-image img {
    min-height: 390px
}

.page-hero-grid {
    align-items: center
}

@media(max-width:1100px) {
    .top-strip-inner {
        gap: 16px;
        font-size: 12px
    }

    nav {
        gap: 12px
    }

    nav a {
        font-size: 13px
    }

    .nav .btn {
        min-height: 48px
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 430px)
    }

    .hero-tiles {
        max-width: 680px
    }

    .hero-tile {
        min-height: 160px
    }

    .hero-tile-main {
        min-height: 202px
    }

    .hero-form h2 {
        font-size: 30px
    }
}

@media(max-width:850px) {
    #header {
        height: 86px
    }

    .top-strip {
        display: none
    }

    .nav {
        height: 86px
    }

    header.scrolled {
        height: 76px
    }

    .hero {
        padding: 112px 0 44px
    }

    .page-hero {
        padding: 112px 0 52px
    }

    nav {
        inset: 86px 0 auto
    }

    .hero-tiles {
        max-width: 620px
    }

    .hero-tile {
        min-height: 175px
    }

    .hero-tile-main {
        min-height: 210px
    }
}

@media(max-width:560px) {
    .hero h1 {
        font-size: 40px
    }

    .hero-form h2 {
        font-size: 30px
    }

    .hero-tiles {
        margin: 18px auto
    }

    .page-hero h1 {
        font-size: 40px
    }

    .page-hero-image img {
        min-height: auto
    }
}

.services-sec {
    background: #fff
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.service-card {
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 30px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.service-card span {
    color: var(--orange);
    font: 700 22px var(--serif)
}

.service-card p {
    color: #5a6b64;
    flex: 1
}

.service-card .service-read-more {
    align-self: flex-start;
    margin-top: 20px;
    padding: 12px 24px;
    min-height: auto;
    font-size: 13px
}

.services-page {
    background: linear-gradient(90deg, #0c281fec, #0c281f99), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=2200&q=90') center/cover
}

.blog-page {
    background: linear-gradient(90deg, #0c281fec, #0c281f99), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?auto=format&fit=crop&w=2200&q=90') center/cover
}

.service-detail-list,
.blog-list {
    display: grid;
    gap: 34px
}

.service-detail,
.blog-article {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 46px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line)
}

.service-detail img,
.blog-article img {
    height: 100%;
    min-height: 360px
}

.service-detail>div,
.blog-article>div {
    padding: 34px 42px 34px 0
}

.service-detail h2,
.blog-article h2 {
    font-size: 50px;
    margin-bottom: 18px
}

.service-detail p,
.blog-article p {
    color: #5a6b64
}

.service-detail li {
    margin: 8px 0
}

.blog-preview {
    background: #fff
}

.blog-grid {
    margin-top: 34px
}

@media(max-width:1000px) {
    .service-grid {
        grid-template-columns: 1fr
    }

    .service-detail,
    .blog-article {
        grid-template-columns: 1fr
    }

    .service-detail img,
    .blog-article img {
        min-height: auto;
        aspect-ratio: 16/9
    }

    .service-detail>div,
    .blog-article>div {
        padding: 28px
    }

    .service-detail h2,
    .blog-article h2 {
        font-size: 42px
    }
}

#preloader {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 16px !important;
    min-height: 100svh
}

.load-logo {
    width: 138px;
    height: 138px;
    margin: 0
}

.load-text {
    margin: 0;
    line-height: 1;
    font-size: 20px;
    color: var(--ink);
    justify-content: center;
    gap: 2px
}

.load-text span {
    display: inline-block
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px
}

.program-finder-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d9cbb7 !important;
    line-height: 1.05;
    font-weight: 600;
    border-left: 1px solid #bda98d77;
    padding-left: 16px
}

.program-finder-link.active,
.program-finder-link:hover {
    color: #fff !important
}

.finder-icon {
    position: relative;
    width: 25px;
    height: 31px;
    border: 2px solid #c9bba6;
    border-radius: 4px;
    display: inline-block;
    flex: 0 0 auto
}

.finder-icon:before {
    content: "";
    position: absolute;
    right: -7px;
    bottom: 4px;
    width: 9px;
    height: 9px;
    border: 2px solid #c9bba6;
    border-radius: 50%;
    background: #3d352d
}

.finder-icon:after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: 2px;
    width: 8px;
    height: 2px;
    background: #c9bba6;
    transform: rotate(45deg);
    transform-origin: left center
}

.finder-page {
    background: linear-gradient(90deg, #0c281fec, #0c281f99), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=90') center/cover
}

.finder-section {
    background: #f6f0e6
}

.finder-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 30px;
    align-items: start
}

.finder-panel {
    position: sticky;
    top: 140px;
    background: #fff;
    padding: 30px;
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px #0001
}

.finder-panel h2 {
    font-size: 42px;
    margin-bottom: 18px
}

.finder-panel label {
    font-size: 13px;
    margin-bottom: 14px
}

.finder-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px
}

.finder-card {
    display: grid;
    grid-template-columns: 168px 1fr;
    background: #fff;
    border: 1px solid var(--line);
    min-height: 210px;
    transition: .25s
}

.finder-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px #0001
}

.finder-card img {
    height: 100%;
    min-height: 210px
}

.finder-card div {
    padding: 24px
}

.finder-card small {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: .14em
}

.finder-card h3 {
    font-size: 30px;
    margin: 6px 0 10px
}

.finder-card p {
    color: #5a6b64;
    margin: 0 0 12px
}

.finder-card .link-btn {
    display: inline-block;
    margin-right: 12px;
    margin-top: 8px
}

.finder-empty {
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
    color: #5a6b64
}

@media(max-width:1200px) {
    .program-finder-link {
        padding-left: 10px;
        gap: 7px
    }

    .finder-icon {
        width: 22px;
        height: 28px
    }

    nav {
        gap: 8px
    }

    nav a {
        font-size: 12px
    }

    .nav .btn {
        padding: 0 14px
    }
}

@media(max-width:750px) {
    .finder-layout {
        grid-template-columns: 1fr
    }

    .finder-panel {
        position: static
    }

    .finder-results {
        grid-template-columns: 1fr
    }

    .program-finder-link {
        border-left: 0;
        padding-left: 0
    }
}

@media(max-width:500px) {
    .finder-card {
        grid-template-columns: 1fr
    }

    .finder-card img {
        aspect-ratio: 16/9;
        min-height: auto
    }

    .finder-card div {
        padding: 22px
    }
}

.finder-breadcrumb {
    padding: 18px 0;
    background: #f7f4ee;
    margin-top: 122px
}

.finder-breadcrumb .container {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 17px
}

.finder-breadcrumb b {
    color: var(--orange);
    font-weight: 500
}

.isha-style-finder {
    padding-top: 50px;
    background: #fbfaf7
}

.isha-style-finder .finder-layout {
    grid-template-columns: 575px 1fr;
    gap: 38px;
    align-items: start
}

.isha-style-finder .finder-panel {
    position: static;
    padding: 0;
    background: #f3ebdf;
    box-shadow: none;
    border: 0
}

.filter-head {
    height: 93px;
    background: #c56f41;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 21px
}

.filter-head h2 {
    font: 700 30px var(--sans);
    margin: 0
}

.filter-head button {
    border: 0;
    background: none;
    color: #efb08d;
    font-weight: 800;
    cursor: pointer;
    font-size: 18px
}

.filter-row {
    display: grid;
    grid-template-columns: 192px 1fr;
    border-bottom: 1px solid #bbb0a2;
    min-height: 78px
}

.filter-row>b {
    background: #ded7cc;
    display: flex;
    align-items: center;
    padding: 0 21px;
    font-size: 18px
}

.filter-row label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 20px;
    background: #f3ebdf;
    font-size: 18px;
    font-weight: 500;
    color: #2d2926
}

.filter-row select {
    border: 0;
    background: transparent;
    padding: 0 34px 0 0;
    font-size: 18px;
    cursor: pointer
}

.filter-single select {
    width: 100%
}

.finder-main {
    min-width: 0
}

.finder-search {
    height: 74px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 6px 18px #00000012;
    display: flex;
    align-items: center;
    padding: 0 28px 0 46px;
    margin-bottom: 18px
}

.finder-search input {
    border: 0;
    background: transparent;
    font-size: 24px;
    padding: 0;
    flex: 1;
    color: #625b54
}

.search-symbol {
    width: 29px;
    height: 29px;
    border: 4px solid #655d52;
    border-radius: 50%;
    position: relative
}

.search-symbol:after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: -6px;
    width: 16px;
    height: 5px;
    background: #655d52;
    transform: rotate(45deg);
    border-radius: 8px
}

.finder-chips {
    display: flex;
    gap: 22px;
    margin: 0 0 26px
}

.finder-chips button {
    border: 0;
    background: #e9dfcf;
    color: #62513e;
    border-radius: 26px;
    padding: 14px 18px;
    font-size: 17px;
    cursor: pointer
}

.finder-chips button.active {
    background: var(--orange);
    color: #fff
}

.featured-title {
    font: 800 30px var(--sans);
    margin: 0 0 20px
}

.isha-style-finder .finder-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px
}

.isha-style-finder .finder-card {
    grid-template-columns: 102px 1fr;
    min-height: 204px;
    padding: 12px;
    box-shadow: 0 4px 18px #00000018;
    border: 0;
    background: #fff
}

.isha-style-finder .finder-card img {
    width: 102px;
    height: 102px;
    min-height: 102px
}

.isha-style-finder .finder-card div {
    padding: 0 0 0 18px
}

.isha-style-finder .finder-card h3 {
    font-size: 23px;
    line-height: 1.08;
    margin: 2px 0 8px;
    color: #2c2926
}

.isha-style-finder .finder-card p {
    margin: 4px 0;
    color: #6b645e;
    line-height: 1.22
}

.isha-style-finder .meta-date {
    color: #dc3f1d !important;
    font-weight: 800
}

.mode-pill {
    display: inline-flex;
    margin: 7px 0;
    background: #f3eadf;
    color: #62513e;
    border-radius: 18px;
    padding: 6px 16px;
    font-size: 14px
}

.isha-style-finder .meta-lang {
    font-size: 14px
}

.isha-style-finder .link-btn {
    font-size: 13px;
    margin-top: 4px
}

.isha-style-finder .finder-empty {
    grid-column: 1/-1
}

@media(max-width:1250px) {
    .isha-style-finder .finder-layout {
        grid-template-columns: 420px 1fr
    }

    .filter-row {
        grid-template-columns: 170px 1fr
    }

    .isha-style-finder .finder-results {
        grid-template-columns: 1fr
    }
}

@media(max-width:900px) {
    .finder-breadcrumb {
        margin-top: 86px
    }

    .isha-style-finder .finder-layout {
        grid-template-columns: 1fr
    }

    .finder-search {
        height: 64px;
        padding-left: 24px
    }

    .finder-search input {
        font-size: 18px
    }

    .filter-row {
        grid-template-columns: 1fr
    }

    .filter-row>b {
        min-height: 54px
    }
}

@media(max-width:560px) {
    .finder-chips {
        flex-direction: column;
        gap: 10px
    }

    .isha-style-finder .finder-card {
        grid-template-columns: 1fr
    }

    .isha-style-finder .finder-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9
    }

    .isha-style-finder .finder-card div {
        padding: 18px 6px 4px
    }

    .filter-head {
        height: 78px
    }
}

.filter-tabs {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 480px;
    background: #f8f4ec;
    border-radius: 0 0 16px 16px;
}

.filter-tab-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #eae1d2;
    padding: 20px 16px;
    align-content: start;
    border-bottom-left-radius: 16px;
}

.filter-tab {
    min-height: 52px;
    border: 0;
    background: #c56f41;
    color: #fff;
    text-align: left;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(197, 111, 65, 0.2);
}

.filter-tab:hover {
    background: #b05c30;
    transform: translateX(3px);
}

.filter-tab.active {
    background: #b05c30;
    color: #fff;
    box-shadow: 0 4px 12px rgba(176, 92, 48, 0.4);
}

.filter-option-area {
    background: #f8f4ec;
    padding: 26px 24px;
    border-bottom-right-radius: 16px;
}

.filter-pane {
    display: none
}

.filter-pane.active {
    display: grid;
    gap: 22px
}

.check-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #151515
}

.check-option input {
    width: 22px;
    height: 22px;
    accent-color: var(--orange);
    padding: 0
}

.filter-pane label {
    margin: 0
}

.filter-pane .check-option span {
    line-height: 1.25
}

@media(max-width:900px) {
    .filter-tabs {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .filter-tab-list {
        grid-template-columns: repeat(2, 1fr)
    }

    .filter-tab {
        height: 60px
    }

    .filter-option-area {
        min-height: 190px
    }

    .isha-style-finder .finder-panel {
        max-width: 100%
    }
}

@media(max-width:560px) {
    .filter-tab-list {
        grid-template-columns: 1fr
    }

    .filter-tab {
        height: 56px;
        font-size: 16px
    }

    .check-option {
        font-size: 18px
    }

    .filter-option-area {
        padding: 18px
    }
}

.isha-style-finder {
    padding-top: 34px
}

.isha-style-finder .finder-layout {
    grid-template-columns: 500px 1fr;
    gap: 28px
}

.filter-head {
    height: 74px
}

.filter-head h2 {
    font-size: 26px
}

.filter-head button {
    font-size: 16px
}

.filter-tabs {
    grid-template-columns: 168px 1fr;
    min-height: 430px
}

.filter-tab {
    height: 64px;
    padding: 0 18px;
    font-size: 16px
}

.filter-option-area {
    padding: 18px
}

.filter-pane.active {
    gap: 16px
}

.check-option {
    font-size: 17px
}

.check-option input {
    width: 18px;
    height: 18px
}

.finder-search {
    height: 62px;
    padding: 0 24px 0 34px;
    margin-bottom: 16px
}

.finder-search input {
    font-size: 21px
}

.search-symbol {
    width: 25px;
    height: 25px;
    border-width: 4px
}

.finder-chips {
    gap: 14px;
    margin-bottom: 22px
}

.finder-chips button {
    padding: 10px 16px;
    font-size: 15px
}

.featured-title {
    font-size: 28px;
    margin-bottom: 16px
}

.isha-style-finder .finder-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.isha-style-finder .finder-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(23, 52, 44, 0.09);
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    position: relative;
}

.isha-style-finder .finder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.09);
}

.isha-style-finder .finder-card img {
    width: 100%;
    height: 190px;
    min-height: 190px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.isha-style-finder .finder-card .card-content {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.isha-style-finder .finder-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.25;
    margin: 6px 0 10px;
    color: #0d231b;
    font-weight: 700;
}

.isha-style-finder .finder-card p {
    font-size: 14px;
    color: #4a5c55;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.isha-style-finder .finder-card p i {
    color: var(--orange);
    width: 16px;
    text-align: center;
}

.mode-pill {
    display: inline-block;
    background: rgba(13, 35, 27, 0.08);
    color: #0d231b;
    padding: 4px 10px;
    font-size: 11.5px;
    font-weight: 700;
    border-radius: 4px;
    margin-right: 6px;
}

.isha-style-finder .meta-lang {
    font-size: 13px;
    color: #6a7b74;
    margin: 8px 0 14px;
}

.isha-style-finder .link-btn {
    font-size: 13px;
    font-weight: 700;
}


@media(max-width:1250px) {
    .isha-style-finder .finder-layout {
        grid-template-columns: 390px 1fr
    }

    .filter-tabs {
        grid-template-columns: 150px 1fr
    }

    .filter-tab {
        font-size: 15px;
        padding: 0 14px
    }

    .check-option {
        font-size: 16px
    }
}

.hero-tile span:after {
    content: "›";
    display: inline-block;
    margin-left: 18px;
    font-family: var(--sans);
    font-weight: 700;
    line-height: .8;
    transform: translateY(-2px);
    transition: .25s
}

.hero-tile:hover span:after {
    transform: translate(6px, -2px)
}

@media(max-width:560px) {
    .hero-tile span:after {
        margin-left: 12px
    }
}

.hero-tile span {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    font: 600 clamp(38px, 3vw, 52px)/.95 var(--serif)
}

.hero-tile span:after {
    content: "\203A";
    margin-left: 0;
    flex: 0 0 auto;
    font-family: var(--sans);
    font-size: 1.25em;
    font-weight: 800;
    line-height: .8;
    transform: translateY(-1px)
}

@media(max-width:560px) {
    .hero-tile span {
        font-size: 38px;
        gap: 14px
    }
}

.hero-tile span {
    max-width: 100%;
    padding-right: 18px;
    font-size: clamp(34px, 2.7vw, 48px);
}

.hero-tile:nth-child(3) span {
    font-size: clamp(32px, 2.35vw, 42px);
    gap: 14px;
}

@media(max-width:560px) {
    .hero-tile span,
    .hero-tile:nth-child(3) span {
        font-size: 38px;
        
    }
}

.brand {
    gap: 4px;
    align-items: center;
}

.brand-logo {
    width: 104px;
    height: 74px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
    margin-left: 20px;
}

.load-logo,
.footer-brand img {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
}

.footer-brand img {
    width: 96px;
    height: 76px;
}

@media(max-width:560px) {
    .brand-logo {
        width: 84px;
        height: 60px;
    }
}

footer {
    padding: 52px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.05fr 28px 1.15fr 1.28fr 1.05fr 1.05fr;
    gap: 34px;
    align-items: start;
}

.footer-links,
.footer-subscribe,
.footer-contact,
.footer-download,
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-links {
    padding-top: 52px;
}

.footer-links a,
.footer-link-button,
.footer-contact a,
.footer-social a,
.copyright a {
    color: #ffffffaa;
    text-decoration: none;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-weight: 500;
}

.footer-link-button {
    font: inherit;
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: var(--orange);
    font: 700 22px/1.08 var(--serif);
}

.footer-grid p {
    margin: 0;
    color: #ffffffaa;
    line-height: 1.45;
}

.footer-grid b {
    color: #fff;
    font-weight: 700;
}

.footer-divider {
    width: 1px;
    height: 300px;
    justify-self: center;
    background: linear-gradient(#ffffff00, #ffffff55, #ffffff00);
}

.footer-subscribe img {
    width: 112px;
    height: 92px;
    object-fit: contain;
    margin: 2px 0 4px;
}

.footer-subscribe .outline {
    border-color: #ffffff99;
    color: #fff;
    min-height: 52px;
    background: transparent;
}

.footer-download img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    margin-bottom: 6px;
}

.download-pill {
    min-width: 158px;
    min-height: 46px;
    border: 1px solid #ffffff55;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffffcc;
    text-decoration: none;
    padding: 0 16px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 42px);
    gap: 18px 14px;
    margin: 3px 0 14px;
}

.social-grid a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ffffff33;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
}

.copyright {
    width: 100%;
    max-width: none;
    margin-top: 50px;
    padding: 24px max(20px, calc((100% - 1180px) / 2)) 42px;
    border-top: 1px solid #ffffff33;
    color: #ffffff88;
}

@media(max-width:1100px) {
    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-divider {
        display: none;
    }

    .footer-links {
        padding-top: 0;
    }
}

@media(max-width:700px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.article-section {
    background: var(--cream);
}

.article-content {
    max-width: 850px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 58px 64px;
}

.article-content h2 {
    font-size: clamp(38px, 4vw, 58px);
    margin-bottom: 22px;
}

.article-content h3 {
    font-size: 32px;
    margin: 34px 0 12px;
}

.article-content p {
    color: #5a6b64;
    font-size: 18px;
}

.article-content .btn {
    margin-top: 22px;
}

@media(max-width:700px) {
    .article-content {
        padding: 34px 24px;
    }
}

@media(max-width:560px) {
    #header {
        height: 112px;
        display: flex;
        align-items: center;
        background: #3d352d;
    }

    .nav {
        width: 100%;
        height: 112px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .brand {
        gap: 8px;
        min-width: 0;
    }

    .brand-logo {
        width: 128px;
        height: 96px;
        margin-left: 0;
        flex: 0 0 auto;
    }

    .brand strong {
        font-size: 23px;
        line-height: 1;
        white-space: nowrap;
    }

    .brand small {
        font-size: 10px;
        letter-spacing: .12em;
        white-space: nowrap;
    }

    #menu {
        display: block;
        flex: 0 0 auto;
        font-size: 30px;
        padding: 0;
        margin-left: 10px;
    }

    nav {
        inset: 112px 0 auto;
    }

    .hero {
        min-height: calc(100vh - 112px);
        padding: 150px 0 0;
        align-items: stretch;
        background-position: center;
    }

    .hero-grid {
        width: calc(100% - 42px);
        min-height: calc(100vh - 112px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
    }

    .hero-copy {
        text-align: left;
    }

    .hero .eyebrow {
        max-width: 150px;
        line-height: 1.45;
        letter-spacing: .24em;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 48px;
        line-height: 1.08;
        margin-bottom: 22px;
    }

    .hero h1 em {
        display: block;
        color: #e9b18d;
    }

    .lead {
        max-width: 190px;
        margin: 0;
        font-size: 23px;
        line-height: 1.38;
    }

    .hero-tiles,
    .stats {
        display: none;
    }

    .hero-form {
        width: calc(100% + 42px);
        max-width: none;
        margin: 0 -21px;
        padding: 34px 22px;
        box-shadow: none;
    }
}

.isha-style-finder .finder-layout {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 34px;
}

.filter-tabs {
    grid-template-columns: 132px 1fr;
}

.filter-tab {
    padding: 0 14px;
    font-size: 15px;
}

.filter-option-area {
    padding: 18px 16px;
}

.check-option {
    font-size: 16px;
}

.filter-head {
    padding: 0 18px;
}

.filter-head h2 {
    font-size: 24px;
}

@media(max-width:1250px) {
    .isha-style-finder .finder-layout {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 24px;
    }

    .filter-tabs {
        grid-template-columns: 118px 1fr;
    }
}

@media(max-width:900px) {
    .isha-style-finder .finder-layout {
        grid-template-columns: 1fr;
    }
}

.finder-chips button,
.filter-head button,
.filter-tab,
.footer-link-button,
button.cta-btn,
a.cta-btn {
    background: #c56f41;
    color: #fff;
    border: 0;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

.finder-chips button:hover,
.filter-head button:hover,
.filter-tab:hover,
.footer-link-button:hover,
button.cta-btn:hover,
a.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.finder-chips button.active,
.filter-tab.active {
    background: #c56f41;
    color: #fff;
}

/* ==========================================================================
   PROGRAM FINDER FILTERS PANEL (MATCHING ATTACHED IMAGE 1)
   ========================================================================== */
.isha-style-finder .finder-panel {
    background: #f4eee3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(197, 111, 65, 0.2);
}
.filter-head {
    background: #c56f41 !important;
    color: #fff !important;
    padding: 18px 22px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filter-head h2 {
    font-family: var(--serif);
    font-size: 30px !important;
    color: #fff !important;
    margin: 0 !important;
    font-weight: 700;
}
.filter-head button#finderReset {
    background: rgba(255, 255, 255, 0.22) !important;
    color: #fff !important;
    border: none !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: background 0.25s ease !important;
}
.filter-head button#finderReset:hover {
    background: rgba(255, 255, 255, 0.35) !important;
    transform: none !important;
}
.filter-tabs {
    grid-template-columns: 145px 1fr !important;
    background: #f4eee3;
}
.filter-tab-list {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #ebe3d3;
}
.filter-tab {
    background: #c56f41 !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: left;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(197, 111, 65, 0.2) !important;
    transition: all 0.25s ease !important;
    line-height: 1.2;
    display: block;
    width: 100%;
}
.filter-tab:hover, .filter-tab.active {
    background: #b05c30 !important;
    transform: translateX(3px) !important;
    box-shadow: 0 4px 12px rgba(197, 111, 65, 0.35) !important;
}
.filter-option-area {
    padding: 24px 20px !important;
    background: #f8f4ec;
}
.check-option {
    font-size: 15.5px !important;
    color: #17342c !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
    cursor: pointer;
}
.check-option input[type="radio"] {
    accent-color: #c56f41;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* ==========================================================================
   FOOTER REACH US SECTION (MATCHING ATTACHED IMAGE 2)
   ========================================================================== */
.footer-col.contact-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col.contact-col .footer-heading {
    font-family: var(--serif);
    font-size: 24px;
    color: #fff;
    margin: 0 0 10px;
    position: relative;
    padding-bottom: 6px;
}
.footer-col.contact-col .footer-heading::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    background: #c56f41;
    margin-top: 6px;
    border-radius: 2px;
}
.reach-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #e5ece9;
    margin: 0 0 6px !important;
}
.reach-item i {
    color: #e5ece9;
    font-size: 16px;
    margin-top: 3px;
    width: 18px;
    text-align: center;
}
.phone-numbers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-weight: 700;
}
.phone-numbers a {
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
}
.phone-numbers a:hover {
    color: #c56f41 !important;
}
.phone-slash {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}
.footer-book-btn {
    background: #c56f41 !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 14px 24px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    cursor: pointer;
    width: 100%;
    margin-top: 14px !important;
    box-shadow: 0 4px 14px rgba(197, 111, 65, 0.3) !important;
    transition: all 0.3s ease !important;
}
.footer-book-btn:hover {
    background: #b05c30 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(197, 111, 65, 0.4) !important;
}

/* ==========================================================================
   MOBILE FLOATING QUICK-ACTION BAR
   ========================================================================== */
.mobile-quick-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2500;
    background: #0d231b;
    padding: 8px 10px;
    display: flex;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.quick-act-btn {
    flex: 1;
    background: rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
    padding: 10px 4px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.quick-act-wa {
    background: #25d366 !important;
    color: #fff !important;
}
.quick-act-book {
    background: #c56f41 !important;
    color: #fff !important;
}

@media(min-width: 769px) {
    .mobile-quick-bar {
        display: none !important;
    }
}
/* ==========================================================================
   MODERN PROGRAM HUB (PROGRAM-FINDER.PHP) STYLES
   ========================================================================== */
.hub-hero {
    margin-top: 112px;
    background: linear-gradient(135deg, #0d231b 0%, #17342c 50%, #244b40 100%);
    color: #fff;
    padding: 85px 0 65px !important;
    position: relative;
    overflow: hidden;
}
.hub-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.hub-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 111, 65, 0.25);
    color: #e9b18d;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid rgba(197, 111, 65, 0.4);
}
.hub-hero-text h1 {
    font-family: var(--serif);
    font-size: 42px;
    line-height: 1.15;
    margin: 14px 0 18px !important;
    color: #fff;
}
.hub-hero-text p {
    font-size: 16px;
    color: #d1deda;
    line-height: 1.6;
    margin-bottom: 28px;
}
.hub-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: rgba(255,255,255,0.06);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}
.hub-stat-item strong {
    display: block;
    font-family: var(--serif);
    font-size: 24px;
    color: var(--orange);
}
.hub-stat-item span {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hub-hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.hub-search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.hub-search-box i {
    color: #c56f41;
    font-size: 16px;
}
.hub-search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #0d231b;
}
.hub-quick-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}
.quick-chip {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.quick-chip:hover {
    background: #c56f41;
}

.hub-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 14px;
}
.hub-results-header h2 {
    font-family: var(--serif);
    font-size: 28px;
    margin: 0;
    color: #0d231b;
}

/* SIDE-BY-SIDE BADGES ROW (HIGH SPECIFICITY FIX FOR IMAGE 3) */
.isha-style-finder .finder-card .card-content .hub-card-tags,
.isha-style-finder .finder-card div.hub-card-tags,
.isha-style-finder .finder-card .hub-card-tags,
.hub-card-tags {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 6px 0 12px !important;
    flex-wrap: wrap !important;
}

.hub-cat-tag {
    display: inline-block !important;
    background: rgba(197, 111, 65, 0.14) !important;
    color: #c56f41 !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    margin: 0 !important;
}
.mode-pill {
    display: inline-block !important;
    background: rgba(13, 35, 27, 0.08) !important;
    color: #0d231b !important;
    padding: 4px 10px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    margin: 0 !important;
}
.fee-pill {
    display: inline-block !important;
    font-size: 10.5px !important;
    font-weight: 800 !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
}
.fee-free {
    background: #e8f5e9 !important;
    color: #1b5e20 !important;
}
.fee-paid {
    background: #fff3e0 !important;
    color: #e65100 !important;
}

/* SIDE-BY-SIDE ACTION BUTTONS ROW (HIGH SPECIFICITY FIX FOR IMAGE 3) */
.isha-style-finder .finder-card .card-content .hub-card-btns,
.isha-style-finder .finder-card div.hub-card-btns,
.isha-style-finder .finder-card .hub-card-btns,
.hub-card-btns {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    margin-top: auto !important;
    padding-top: 16px !important;
    width: 100% !important;
}
.isha-style-finder .finder-card .hub-card-btns .btn,
.hub-card-btns .btn {
    flex: 1 1 0% !important;
    width: auto !important;
    text-align: center !important;
    justify-content: center !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 10px 14px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.prog-detail-head {
    display: flex;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid #e8eeec;
    padding-bottom: 18px;
}
.prog-detail-head img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

/* ==========================================================================
   GLOBAL RESPONSIVENESS AUDIT ADJUSTMENTS
   ========================================================================== */
@media(max-width: 1024px) {
    .hub-hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hub-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .hub-hero {
        padding: 40px 0;
    }
    .hub-hero-text h1 {
        font-size: 32px;
    }
    .finder-layout {
        grid-template-columns: 1fr !important;
    }
    .filter-tabs {
        grid-template-columns: 1fr !important;
    }
    .filter-tab-list {
        flex-direction: row !important;
        overflow-x: auto;
        padding: 10px;
    }
    .filter-tab {
        white-space: nowrap;
        width: auto !important;
    }
    .admin-modal-dialog {
        padding: 20px !important;
        width: 95vw !important;
    }
}



/* ==========================================================================
   COMPACT & OPTIMIZED FOOTER STYLES
   ========================================================================== */
.site-footer {
    background: #0f271f;
    color: #e5ece9;
    padding: 45px 0 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-compact {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
    align-items: start;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.footer-brand strong {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.1;
    color: #fff;
    display: block;
}
.footer-brand small {
    font-size: 11px;
    color: #c56f41;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0 0 16px;
}
.footer-social-icons {
    display: flex;
    gap: 12px;
}
.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 15px;
    transition: all 0.3s ease;
}
.footer-social-icons a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}
.footer-heading {
    font-family: var(--serif);
    font-size: 20px;
    color: #fff;
    margin: 0 0 14px;
    position: relative;
    padding-bottom: 8px;
}
.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--orange);
}
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.footer-link-list a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
}
.footer-link-list a:hover {
    color: var(--orange);
    padding-left: 4px;
}
.footer-col.contact-col p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-col.contact-col i {
    color: var(--orange);
    width: 16px;
}
.footer-col.contact-col a {
    color: #fff;
    font-weight: 500;
}
.footer-cta-btn {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 13px;
}
.footer-bottom {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-legal {
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
}
.footer-legal a:hover {
    color: var(--orange);
}

/* Nav Active Link */
nav a.active {
    color: var(--orange);
    font-weight: 700;
}

/* ==========================================================================
   SERVICES GRID & LIST VIEW SWITCHER
   ========================================================================== */
.services-header-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 16px;
}
.view-switcher-bar {
    display: flex;
    background: rgba(23, 52, 44, 0.08);
    padding: 4px;
    border-radius: 40px;
    gap: 4px;
}
.view-btn {
    border: none;
    background: transparent;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}
.view-btn.active {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 12px rgba(23, 55, 45, 0.2);
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.service-card-grid {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-grid:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.09);
}
.service-card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card-grid:hover .service-card-img img {
    transform: scale(1.05);
}
.service-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(16, 41, 32, 0.85);
    color: #e9b18d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}
.service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.service-card-body h3 {
    font-family: var(--serif);
    font-size: 26px;
    margin: 0 0 10px;
    color: var(--ink);
}
.service-card-body p {
    font-size: 14.5px;
    color: #4a5c55;
    margin: 0 0 18px;
    line-height: 1.6;
    flex-grow: 1;
}
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 6px;
    font-size: 13.5px;
    color: #2c3e38;
}
.service-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-features-list li i {
    color: var(--orange);
    font-size: 12px;
}

/* List View Layout */
.services-list-container {
    display: none;
    flex-direction: column;
    gap: 20px;
}
.service-row-list {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 24px;
    align-items: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
    transition: transform 0.25s ease;
}
.service-row-list:hover {
    transform: translateX(4px);
}
.service-row-img {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}
.service-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-row-info h3 {
    font-size: 24px;
    margin: 0 0 8px;
}
.service-row-info p {
    font-size: 14px;
    color: #4a5c55;
    margin: 0 0 12px;
}
.service-meta-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tag-pill {
    background: var(--sand);
    color: var(--ink);
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* ==========================================================================
   FORM VALIDATION & ERROR STYLES
   ========================================================================== */
.field-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    margin-bottom: 6px;
}
.field-group input,
.field-group select,
.field-group textarea {
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field-group.has-error input,
.field-group.has-error select,
.field-group.has-error textarea {
    border-color: #d93838 !important;
    background-color: #fff8f8;
}
.error-text {
    display: none;
    color: #d93838;
    font-size: 11.5px;
    font-weight: 600;
    margin-top: 2px;
}
.field-group.has-error .error-text {
    display: block;
}

/* ==========================================================================
   THANK YOU & WHATSAPP REDIRECTION MODAL
   ========================================================================== */
.thank-you-dialog {
    max-width: 520px;
    text-align: center;
    padding: 36px 28px;
    border-radius: 16px;
}
.thank-you-icon {
    font-size: 58px;
    color: #25d366;
    margin-bottom: 12px;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.thank-you-content h2 {
    font-size: 38px;
    margin-bottom: 8px;
}
.thank-you-message {
    font-size: 15px;
    color: #4a5c55;
    margin-bottom: 20px;
}
.inquiry-summary-box {
    background: #f4eee3;
    border: 1px dashed var(--orange);
    border-radius: 10px;
    padding: 16px;
    text-align: left;
    margin-bottom: 22px;
    font-size: 13.5px;
}
.inquiry-summary-box p {
    margin: 4px 0;
    color: #2c3e38;
}
.inquiry-summary-box strong {
    color: var(--ink);
}
.whatsapp-redirect-card {
    background: #e7f8ef;
    border: 1px solid #b3e7cc;
    border-radius: 12px;
    padding: 18px;
}
.wa-notice {
    font-size: 13.5px;
    font-weight: 600;
    color: #0d5930;
    margin: 0 0 12px;
}
.wa-btn {
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}
.wa-btn:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Responsive Footer & Services */
@media(max-width: 900px) {
    .footer-compact {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .services-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    }
    .service-row-list {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    .service-row-img {
        height: 180px;
    }
}
@media(max-width: 560px) {
    .services-header-controls {
        align-items: stretch;
    }
    .services-header-controls > div,
    .view-switcher-bar {
        width: 100%;
    }
    .view-switcher-bar {
        border-radius: 12px;
    }
    .view-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
    }
    .services-grid-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .service-card-img {
        height: 190px;
    }
    .service-card-body {
        padding: 20px;
    }
    .service-card-body h3,
    .service-row-info h3 {
        font-size: 22px;
        line-height: 1.3;
    }
    .service-card-body .btn,
    .service-row-list .btn {
        width: 100%;
        justify-content: center;
    }
    .service-row-list {
        padding: 18px;
        gap: 16px;
    }
    .service-row-img {
        height: 170px;
    }
    .footer-compact {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Homepage header and hero alignment */
:root {
    --site-shell: min(1180px, calc(100% - 40px));
}

#header .container,
.hero > .container {
    width: var(--site-shell);
    margin-inline: auto;
}

#header {
    height: auto;
    min-height: 122px;
}

#header.scrolled {
    height: auto;
    min-height: 112px;
}

#header .top-strip {
    min-height: 38px;
    height: auto;
}

#header .top-strip-inner {
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
    min-height: 38px;
    flex-wrap: wrap;
    row-gap: 4px;
    padding-block: 6px;
    text-align: center;
}

#header .nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 84px;
    height: auto;
    gap: clamp(24px, 3vw, 48px);
}

#header .brand {
    flex: 0 0 auto;
}

#header #menu {
    margin-left: auto;
}

#header #nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 1.6vw, 28px);
    margin-left: auto;
    flex: 0 1 auto;
    white-space: nowrap;
}

#header #nav .btn {
    flex: 0 0 auto;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(248, 244, 236, .24);
    background: rgba(0, 0, 0, .12);
}

.language-toggle button {
    border: 0;
    min-height: 34px;
    padding: 0 12px;
    background: transparent;
    color: #f8f4ec;
    font-weight: 800;
    cursor: pointer;
}

.language-toggle button.active {
    background: var(--orange);
    color: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: auto;
    padding: 178px 0 82px;
    align-items: center;
    background: #0d231b;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(6, 28, 22, .9) 0%, rgba(9, 35, 28, .76) 58%, rgba(0, 0, 0, .42) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(5, 24, 19, .28));
    pointer-events: none;
}

.hero-bg-slider,
.hero-slide,
.hero-showcase-slider,
.hero-showcase-card,
.hero-showcase-thumbs {
    display: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .85fr);
    align-items: center;
    gap: clamp(40px, 4vw, 64px);
    min-height: auto;
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 100%;
    text-align: left;
}

.hero .lead {
    max-width: 880px;
}

.hero-image-showcase {
    width: 100%;
    max-width: none;
    align-self: center;
}

.hero-main-image {
    position: relative;
    margin: 0;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
    background: #17342c;
    height: min(58vh, 650px);
    min-height: 500px;
}

.hero-main-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 900ms ease;
}

.hero-main-slide.active {
    opacity: 1;
}

.hero-main-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 19, 15, .08), rgba(4, 19, 15, .18));
    pointer-events: none;
}

.hero-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media(max-width:1366px) {
    :root {
        --site-shell: min(1180px, calc(100% - 40px));
    }

    #header #nav {
        gap: clamp(14px, 1.3vw, 22px);
    }
}

@media(max-width:1100px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
        gap: 36px;
    }

    .hero-main-image {
        min-height: 400px;
    }
}

@media(max-width:850px) {
    :root {
        --site-shell: min(100% - 32px, 680px);
    }

    #header {
        min-height: 86px;
    }

    #header.scrolled {
        min-height: 86px;
    }

    #header .nav {
        min-height: 86px;
    }

    #header #nav {
        display: grid;
        margin-left: 0;
        white-space: normal;
    }

    #header #nav a,
    #header #nav .btn {
        min-height: 44px;
    }

    .hero {
        padding: 132px 0 62px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: var(--site-shell);
        min-height: auto;
    }

    .hero-copy {
        text-align: left;
    }

    .hero-main-image {
        max-width: 560px;
        margin-inline: auto;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .hero-main-image img {
        height: 100%;
    }
}

@media(max-width:560px) {
    :root {
        --site-shell: calc(100% - 28px);
    }

    body {
        overflow-x: hidden;
    }

    #header .nav {
        width: var(--site-shell);
    }

    #header .brand {
        min-width: 0;
    }

    #header .brand-logo {
        flex: 0 0 auto;
    }

    #header .brand span {
        min-width: 0;
    }

    #header .brand strong,
    #header .brand small {
        white-space: nowrap;
    }

    #header #menu {
        min-width: 44px;
        min-height: 44px;
    }

    .hero {
        min-height: auto;
        padding: 146px 0 54px;
    }

    .hero-grid {
        width: var(--site-shell) !important;
        max-width: 100% !important;
        display: grid;
        gap: 26px;
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 48px);
    }

    body[data-language="mr"] .hero h1 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.28;
    }

    .hero .lead {
        max-width: 100%;
    }

    .hero-main-image {
        width: 100%;
        aspect-ratio: 4 / 5;
    }

    .hero-main-image img {
        width: 100%;
        height: 100%;
        object-position: center top;
    }
}

@media(max-width:360px) {
    :root {
        --site-shell: calc(100% - 24px);
    }

    #header .brand-logo {
        width: 104px;
        height: 78px;
    }

    #header .brand strong {
        font-size: 20px;
    }

    #header .brand small {
        font-size: 8px;
    }
}

.marathi-content,
.marathi-content h1,
.marathi-content h2,
.marathi-content h3,
.marathi-content h4,
.marathi-content p,
.marathi-content li,
.marathi-content a,
.marathi-content button {
    font-family: var(--marathi-display);
    font-weight: 500;
}

.marathi-content h1,
.marathi-content h2,
.marathi-content h3,
body[data-language="mr"] .hero h1 {
    font-family: var(--marathi-display);
    font-weight: 700;
}

body[data-language="mr"] .hero h1 {
    font-size: clamp(50px, 5.8vw, 82px);
    line-height: 1.22;
}

.marathi-content {
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.marathi-content h1,
.marathi-content h2,
.marathi-content h3 {
    line-height: 1.28;
}

.marathi-content ul,
.marathi-content ol {
    padding-left: 1.35em;
}

.marathi-content li {
    margin-bottom: 8px;
}

.batch-highlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 24px;
}

.batch-highlight-card,
.service-detail-panel,
.service-contact-mini {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(197, 111, 65, .22);
    padding: 28px;
    box-shadow: 0 18px 44px rgba(13, 35, 27, .08);
}

.batch-highlight-main {
    grid-row: span 3;
}

.batch-highlight-card h3,
.batch-highlight-card h4,
.service-detail-panel h2,
.service-contact-mini h3 {
    color: var(--ink);
    margin-bottom: 12px;
}

.regular-batches .center {
    max-width: 980px;
    margin-inline: auto;
}

.regular-batches .batch-highlight-grid {
    align-items: stretch;
}

.regular-batches .batch-highlight-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-color: rgba(23, 52, 44, .12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 250, 242, .78));
}

.regular-batches .batch-highlight-main {
    background: #fffaf2;
    border-top: 4px solid var(--orange);
}

.regular-batches .batch-highlight-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.regular-batches .batch-highlight-card li {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid rgba(23, 52, 44, .12);
    background: rgba(255, 255, 255, .72);
    color: #25493f;
    font-weight: 600;
}

.regular-batches .batch-highlight-main li {
    border-left: 3px solid var(--orange);
}

.regular-batches .contact-highlight {
    background: #17342c;
    color: #fff;
}

.regular-batches .contact-highlight h3,
.regular-batches .contact-highlight p,
.regular-batches .contact-highlight a {
    color: #fff;
}

.batch-highlight-card a,
.service-contact-mini a,
.contact-highlight a {
    color: var(--orange);
    font-weight: 700;
}

.service-rich-details .container {
    display: grid;
    gap: 22px;
}

.service-detail-panel {
    background: #fffaf2;
}

.service-notice {
    margin-top: 18px;
    padding: 16px 18px;
    background: #17342c;
    color: #fff;
    border-left: 4px solid var(--orange);
}

.service-contact-mini {
    margin: 22px 0;
    background: #f8f4ec;
}

@media(max-width:850px) {
    .batch-highlight-grid {
        grid-template-columns: 1fr;
    }

    .batch-highlight-main {
        grid-row: auto;
    }

    .regular-batches .batch-highlight-card ul {
        grid-template-columns: 1fr;
    }
}

@media(max-width:560px) {
    .batch-highlight-card,
    .service-detail-panel,
    .service-contact-mini {
        padding: 22px;
    }
}
