:root {
    --cream-bg: #fffbf0;
    --yellow-accent: #1b4332;
    --dark-text: #1a1a1a;
    --dark-green: #145954;
    --section-space-y: 4rem;
}

html {
    font-size: 16px;
}

body {
    background-color: var(--cream-bg);
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    font-size: 1rem;
}

.py-5 {
    padding-top: var(--section-space-y) !important;
    padding-bottom: var(--section-space-y) !important;
}

@media (max-width: 767.98px) {
    :root {
        --section-space-y: 3.25rem;
    }
}

/* Testimonials Page */
.video-testimonial-card {
    background: #ffffff;
    border: 1px solid #e8e4dc;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(45, 42, 38, 0.07);
}

.video-testimonial-card iframe {
    border: 0;
}

.video-testimonial-body {
    padding: 1.05rem 1.15rem 1.2rem;
}

.video-testimonial-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #1d2320;
}

.video-testimonial-meta {
    font-size: 0.95rem;
    color: #5b615d;
}

/* 404 Page */
.not-found-page .container {
    max-width: 960px;
}

.not-found-card {
    background: #ffffff;
    border: 1px solid #e8e4dc;
    border-radius: 16px;
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
    box-shadow: 0 10px 32px rgba(45, 42, 38, 0.08);
}

.not-found-code {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 9vw, 5rem);
    line-height: 1;
    color: #1b4332;
    margin-bottom: 0.5rem;
}

.not-found-card h1 {
    margin-bottom: 0.75rem;
}

.not-found-text {
    max-width: 560px;
    margin: 0 auto 1.5rem;
    color: #59605c;
}

.not-found-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

p.small {
    font-size: 1rem;
}

.playfair { font-family: 'Playfair Display', serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 500; }
h2 { font-size: 30px; }
.bg-cream { background-color: var(--cream-bg); }

.icon {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -0.125em;
}

.btn-main {
    background-color: var(--dark-green);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.65rem 1.5rem;
    font-weight: 500;
}

.btn-main:hover,
.btn-main:focus {
    background-color: #163728;
    color: #fff;
}

/* Navigation */
.navbar-brand { font-size: 1.5rem; font-family: 'Playfair Display', serif; }
.navbar {
    border-bottom: 1px solid rgba(86, 68, 24, .1);
}
.navbar-brand .navbar-logo {
    display: block;
    width: 180px;
}
.navbar-toggler {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: none;
    width: 20px;
    height: 12px;
    position: relative;
    display: block;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.8px;
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 3px;
}

.navbar-toggler .navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler .navbar-toggler-icon::after {
    bottom: 0;
}

.navbar .navbar-nav > .nav-item > a {
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.navbar .navbar-nav > .nav-item > a:hover,
.navbar .navbar-nav > .nav-item > a:focus {
    color: #000;
}
.navbar-expand-lg .navbar-nav .dropdown-menu{
    width: 195px;
    --bs-dropdown-bg: #fffbf0;
}
.navbar .dropdown-menu li > a {
    display: block;
    width: 100%;
    padding: 0.45rem 1rem;
    color: var(--dark-text);
    text-decoration: none;
    font-size: 15px;
}

.navbar .dropdown-menu li > a:hover,
.navbar .dropdown-menu li > a:focus {
   color:#0f5d53;
}

@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar .container {
        position: relative;
    }

    .navbar .nav-main-collapse {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        z-index: 1045;
        background: var(--cream-bg);
        padding: 0.75rem 0;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .navbar .nav-main-collapse .navbar-nav {
        width: 100%;
        align-items: center;
        gap: 0.45rem;
        padding-top: 0.4rem;
    }

    .navbar .nav-main-collapse .navbar-nav > .nav-item {
        width: 100%;
        text-align: center;
    }

    .navbar .nav-main-collapse .navbar-nav > .nav-item > a {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1rem;
        font-size: 1.05rem;
        text-transform: lowercase;
    }

    .navbar .nav-main-collapse .d-flex.align-items-center {
        justify-content: center;
        margin-top: 0.5rem;
        padding-bottom: 0.35rem;
    }

    .navbar .nav-item.dropdown > .dropdown-menu {
        display: block;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(-4px);
        transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
        margin: 0 auto;
        width: calc(100% - 16px);
        padding-top: 0;
        padding-bottom: 0;
        border: 0;
        background: var(--cream-bg);
        box-shadow: none;
        text-align: center;
    }

    .navbar .nav-item.dropdown > .dropdown-menu.show {
        max-height: 360px;
        opacity: 1;
        transform: translateY(0);
        margin-top: 0.2rem;
        margin-bottom: 0.15rem;
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
        border: 1px solid rgba(0, 0, 0, 0.09);
        border-radius: 12px;
        background: var(--cream-bg);
    }

    .navbar .dropdown-menu li > a:hover,
    .navbar .dropdown-menu li > a:focus {
        background-color: transparent;
    }

    .navbar .nav-main-collapse .dropdown-menu li > a {
        text-align: center;
        display: flex;
        justify-content: center;
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
        font-weight: 500;
        text-transform: lowercase;
    }
}

/* Custom submenu chevron icon for dropdown nav items */
.navbar .nav-item.dropdown > a[data-bs-toggle="dropdown"]::after {
    content: "";
    border: 0;
    width: 16px;
    height: 16px;
    margin-left: 0;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M18.707 8.293a1 1 0 0 1 0 1.414l-6 6a1 1 0 0 1 -1.414 0l-6 -6a1 1 0 0 1 1.414 -1.414l5.293 5.293l5.293 -5.293a1 1 0 0 1 1.414 0'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M18.707 8.293a1 1 0 0 1 0 1.414l-6 6a1 1 0 0 1 -1.414 0l-6 -6a1 1 0 0 1 1.414 -1.414l5.293 5.293l5.293 -5.293a1 1 0 0 1 1.414 0'/%3E%3C/svg%3E") center / contain no-repeat;
}

.navbar .nav-item.dropdown > a[data-bs-toggle="dropdown"][aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Hero Section */
.hero-banner-box {
    min-height: 520px;
    border-radius: 18px;
    display: flex;
    align-items: flex-end;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(100deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

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

.hero-label {
    color: #6df79b;
    letter-spacing: 0.02em;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    opacity: 0.88;
    max-width: 560px;
}

.hero-curve {
    position: absolute;
    right: 24px;
    bottom: 0;
    width: 220px;
    height: 58px;
    z-index: 3;
}

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

@media (max-width: 767.98px) {
    .hero-banner-box {
        min-height: 460px;
        border-radius: 14px;
    }

    .hero-content {
        padding: 2.2rem 1.4rem !important;
    }

    .hero-subtitle {
        font-size: 1.02rem;
    }
}

/* About Section */
.about-transformation > .container > h2 {
    max-width: 760px;
    font-size: 30px;
    line-height: 1.22;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.about-divider {
    margin: 0 0 1rem;
    opacity: 0.22;
}

.about-location {
    font-size: 16px;
    color: #5f6762;
    font-weight: 500;
}

.about-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1c7b60;
    display: inline-block;
    margin-right: 0.45rem;
    vertical-align: middle;
}

.about-images-grid {
    display: grid;
    grid-template-columns: 1.38fr 0.92fr;
    gap: 12px;
}

.about-image-card {
    border-radius: 4px;
    overflow: hidden;
}

.about-image-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.about-copy p {
    color: #2f3532;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.85rem;
}

.about-note {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.about-note-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #e6f4ec;
    color: #1d6b54;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
}

.about-note p {
    font-size: 1.03rem;
    color: #4a514d;
    line-height: 1.45;
}

@media (max-width: 991.98px) {
    .about-image-card img {
        min-height: 290px;
    }

    .about-copy p {
        font-size: 1rem;
    }
}

/* Classes & Instructors */
.classes-label {
    text-transform: uppercase;
    font-size: 0.86rem;
    color: #464646;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.classes-top h2,
.instructor-heading h2,
.testimonial-section .container > .mb-4 h2,
.articles-top h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 500;
    line-height: 1.1;
    margin-top: 0.5rem;
}

.classes-view-all {
    color: #222;
    text-decoration: none;
    font-weight: 500;
}

.class-card {
    border-radius: 6px;
    overflow: hidden;
}

.class-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.class-img-wrapper, .instructor-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 420px;
}

.class-img-wrapper img, .instructor-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.class-card:hover img, .instructor-card:hover img { transform: scale(1.05); }

.time-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: #353535;
    font-size: 0.74rem;
    font-weight: 500;
    padding: 0.24rem 0.55rem;
    border-radius: 3px;
    z-index: 3;
}

.class-info-box {
    position: absolute;
    bottom: 12px;
    left: 14px;
    right: 14px;
    background: #fffbf0;
    padding: 14px 14px 10px;
    border-radius: 4px;
    z-index: 2;
}

.class-info-box h3 {
    font-size: 1.3rem;
    font-weight: 500;
}

.class-info-box p {
    font-size: 1rem;
}

/* Schedule Section */
.schedule-section h3 {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 40px;
}

.schedule-section .col-lg-4 h3 {
    margin-bottom: 1rem;
}

.schedule-intro {
    color: #525856;
    font-size: 1rem;
    line-height: 1.45;
    max-width: 360px;
}

.schedule-side-image,
.schedule-main-image {
    border-radius: 4px;
    overflow: hidden;
}

.schedule-side-image img,
.schedule-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-side-image {
    height: 260px;
}

.schedule-main-image {
    height: 100%;
    min-height: 640px;
}

.schedule-feature-list li {
    margin-bottom: 0.75rem;
    color: #303633;
    font-size: 1.05rem;
    font-weight: 500;
}

.schedule-feature-list .icon {
    color: #3d4b47;
    font-size: 1.15rem;
}

.schedule-item {
    margin-bottom: 55px;
}

.schedule-day-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
    gap: 16px;
    font-size: 14px;
}
.timing-line {
    border-top: 1px dashed #0003;
    width: 100%;
    height: 1px;
}

.schedule-day {
    font-weight: 500;
    color: #383d3a;
    position: relative;
    flex: 1;
}

.schedule-day::after {
    content: "";
    height: 1px;
    background: #d9dddb;
    position: absolute;
    left: calc(100% + 10px);
    right: 0;
    top: 50%;
}

.schedule-time {
    border: 1px solid #dbdfdd;
    border-radius: 4px;
    font-size: 0.88rem;
    color: #666d69;
    padding: 0.25rem 0.6rem;
    white-space: nowrap;
    /*background: rgba(255, 255, 255, 0.45);*/
}

.schedule-item p {
    color: #5b615d;
    line-height: 1.35;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 991.98px) {
    .schedule-main-image {
        min-height: 360px;
    }

    .schedule-title {
        font-size: 2rem;
    }

    .schedule-feature-list li {
        font-size: 1.15rem;
    }

    .schedule-item p,
    .schedule-intro {
        font-size: 1rem;
    }
}

/* Instructor Slider */
.instructor-section .instructor-swiper {
    position: relative;
    padding-bottom: 0.2rem;
}

.instructor-section .instructor-card {
    border-radius: 6px;
    overflow: hidden;
}

.instructor-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.instructor-section .instructor-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.instructor-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 58px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.52) 100%);
    backdrop-filter: blur(6px);
    color: #fff;
}

.instructor-overlay .name {
    font-size: 1.1rem;
    font-weight: 500;
}

.instructor-overlay .specialty {
    font-size: 0.95rem;
    opacity: 0.92;
}

.instructor-swiper .instructor-nav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1f2723;
    top: calc(50% - 28px);
}

.instructor-swiper .swiper-button-prev {
    left: 10px;
}

.instructor-swiper .swiper-button-next {
    right: 10px;
}

.instructor-swiper .swiper-button-prev::after,
.instructor-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

/* Offer Package Section */
.offer-package-grid {
    margin-left: 0;
    margin-right: 0;
}

.offer-copy {
    padding: 0.4rem 0.2rem;
}

.offer-copy h2 {
    font-size:30px;
    font-weight: 500;
    margin-bottom: 40px;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
}

.offer-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #3f4642;
    font-size:18px;
    line-height: 1.4;
}

.offer-list .icon {
    position: absolute;
    left: 0;
    top: 0.18rem;
    color: #222a25;
    font-size: 24px;
}

.offer-image-wrap {
    border-radius: 3px;
    overflow: hidden;
}

.offer-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .offer-list li {
        font-size: 1.02rem;
    }

    .offer-image-wrap img {
        min-height: 340px;
    }
}

/* Testimonial Section */
.testimonial-card {
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    gap: 1.8rem;
    align-items: center;
}

.testimonial-image {
    border-radius: 4px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 1.45rem;
    line-height: 1.36;
    color: #4d5350;
    margin-bottom: 1.6rem;
}

.testimonial-author {
    font-size: 1.05rem;
    font-weight: 500;
    color: #2b302e;
    margin-bottom: 0;
}

.testimonial-nav-wrap {
    display: flex;
    justify-content: flex-end;
    gap: 0.45rem;
    margin-top: 1.1rem;
}

.testimonial-swiper .testimonial-nav {
    position: static;
    margin: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.45);
    color: #ffffff;
    background: #1b4332;
    padding: 22px;
}

.testimonial-swiper .swiper-button-prev::after,
.testimonial-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .testimonial-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-quote {
        font-size: 1.2rem;
    }
}

/* Articles Section */
.articles-section .articles-top {
    gap: 1rem;
}

.article-card {
    height: 100%;
}

.article-image-wrap {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.article-image-wrap img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.article-card:hover .article-image-wrap img {
    transform: scale(1.04);
}

.article-card h3 {
    font-size: 1.35rem;
    line-height: 1.28;
    margin: 0 0 1.1rem;
    min-height: 96px;
}

.article-card h3 a {
    color: #2a2f2d;
    text-decoration: none;
}
pb-0{
    padding-bottom: 0 !important;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #333;
    font-size: 1rem;
    border-bottom: 1px solid #e3e5e4;
    padding-bottom: 0.6rem;
}

.article-meta .meta-dot {
    width: 16px;
    height: 1px;
    background: #c7ccca;
}

@media (max-width: 991.98px) {
    .article-card h3 {
        min-height: auto;
        font-size: 1.25rem;
    }
}

/* CTA Video Section */
.cta-video-wrap {
    border-radius: 10px;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cta-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.cta-video-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #fff;
    padding: 1.2rem 1rem 2.4rem;
}

.cta-video-content h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 0.7rem;
    font-weight: 500;
}

.cta-video-content p {
    font-size: 1rem;
    line-height: 1.45;
    margin: 0 auto 1.5rem;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.92);
}

.cta-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fffbf0;
    color: #2a302d;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    padding: 0.7rem 1.25rem;
}

.cta-video-btn:hover,
.cta-video-btn:focus {
    color: #1c211f;
}

@media (max-width: 991.98px) {
    .cta-video-wrap {
        min-height: 400px;
    }

    .cta-video-content p {
        font-size: 1rem;
    }
}

/* General Utils */
.footer-section {
    background-color: #050505;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.footer-intro {
    padding: 1.2rem 1.1rem 0.8rem;
}

.footer-intro h2 {
    font-size:34px;
    line-height: 1.12;
    max-width: 420px;
    margin-bottom: 1.25rem;
    color: #f7f7f7;
}

.footer-cta-btn {
    padding: 0.55rem 1rem;
    margin-bottom: 8rem;
}

.footer-panel {
    background: #191b1e;
    border: 1px solid #24272b;
    border-radius: 4px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-menu-list {
    list-style: none;
    padding: 0;margin: 0;
        grid-row-gap: 10px;
    flex-flow: column;
    display: flex;
}

/*.footer-menu-list li {
    margin-bottom: 0.45rem;
}*/

.footer-menu-list a {
    color: #c8cbcf;
    text-decoration: none;
    font-size: 22px;
}

.footer-menu-sm a {
    font-size: 14px;
}

.footer-stack {
    display: grid;
    gap: 0.75rem;
}

.footer-contact-panel {
    padding: 1rem 1.1rem;
    justify-content: center;
}

.footer-contact-link {
    color: #e7e7e7;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-intro > p,
.footer-links-panel > p,
.footer-connect-panel > p , .footer-panel.footer-connect-panel p{
    color: #8e9499;
    font-size: 14px;
    line-height: 1.45;
}

.footer-intro > p:first-of-type {
    font-size: 34px;
    color: #fff;
    margin-bottom: 28px;
}

.footer-links-panel > p,
.footer-connect-panel > p {
    margin-bottom: 0;
}

.footer-utilities-panel > h4,
.footer-connect-panel > h4 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #f2f2f2;
}

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

    .footer-cta-btn {
        margin-bottom: 2rem;
    }
}

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

/* Floating WhatsApp Button */
.whatsapp-float-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
    width: 56px;
    height: 56px;
}

.whatsapp-float {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 0;
    background-color: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.2s ease;
    cursor: pointer;
    padding: 0;
}

.whatsapp-popup {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    width: 220px;
    padding: 0.75rem;
    padding-top: 2rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e6e8e7;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.75rem);
}

.whatsapp-float-wrap.show-popup .whatsapp-popup {
    display: flex;
}

.whatsapp-popup-close {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: #f3f5f4;
    color: #4a524e;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.15s ease, color 0.15s ease;
}

.whatsapp-popup-close:hover {
    background: #e8ecea;
    color: #1f2522;
}

.whatsapp-popup-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.whatsapp-popup-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    color: #1f2522;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    background: #f7faf8;
    border: 1px solid #e3ebe6;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.whatsapp-popup-link:hover {
    color: #1b4332;
    background: #eef6f1;
    border-color: #c8ddd2;
}

.whatsapp-popup-link .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #25D366;
}

.whatsapp-float:hover {
    color: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 88px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #1b4332;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    z-index: 1049;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-2px);
}

/* About Page */
.about-page-intro {
    max-width: 860px;
}

.about-page-intro h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 0.65rem;
}

.about-page-intro p {
    color: #59605c;
    font-size: 1rem;
    margin-bottom: 0;
    max-width: 760px;
}

.about-top-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}

.about-top-gallery img {
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.about-top-gallery .about-gallery-tall {
    height: 340px;
}

.about-top-gallery .about-gallery-shift {
    height: 220px;
    margin-top: 58px;
}

.about-mosaic img,
.about-instructor-grid img,
.about-bottom-gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
}

.about-story-image img {
    width: 100%;
    border-radius: 6px;
    min-height: 360px;
    object-fit: cover;
}

.about-story-copy p {
    color: #4f5652;
    font-size: 1rem;
}

.about-mini-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.about-mini-cards > div {
    background: #fffbf0;
    border: 1px solid #e6e7e7;
    border-radius: 6px;
    padding: 0.75rem;
}

.about-mini-cards h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.about-mini-cards p {
    font-size: 16px;
    margin: 0;
}

.about-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.about-mosaic-text {
    background: #fffbf0;
    border: 1px solid #e6e7e7;
    border-radius: 6px;
    padding: 1.25rem;
}

.about-mosaic-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.45rem;
}

.about-mosaic-text p {
    color: #59605c;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.about-stats article {
    background: #fffbf0;
    border: 1px solid #e6e7e7;
    border-radius: 6px;
    padding: 1rem;
}

.about-stats h4 {
    font-size: 1.8rem;
    margin-bottom: 0.45rem;
}

.about-stats p {
    margin: 0;
    color: #5a605d;
    font-size: 1rem;
}

.about-stats-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-stats-mark img {
    width: 86px;
    opacity: 0.5;
}

.about-instructor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.about-instructor-grid a {
    display: block;
}

.about-faq-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

.about-faq-intro h2 {
    margin-bottom: 0.75rem;
}

.about-faq-intro p {
    max-width: 320px;
    color: #4f5552;
    font-size: 1rem;
    margin-bottom: 1.4rem;
    line-height: 1.5;
}

.about-faq-list {
    display: grid;
    gap: 0.55rem;
}

.about-faq-row {
    width: 100%;
    background: #f9f5e8;
    border: 1px solid #ecece9;
    border-radius: 3px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 1rem;
    color: #212725;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.about-faq-row span:first-child {
    font-size: 1.07rem;
}

.about-faq-icon {
    font-size: 1.45rem;
    font-weight: 300;
    line-height: 1;
    color: #404640;
    transition: transform 0.25s ease, color 0.25s ease;
}

.about-faq-answer {
    background: #fffbf0;
    border: 1px solid #ecece9;
    border-top: 0;
    border-radius: 0 0 3px 3px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease, padding 0.32s ease;
    padding: 0 1rem;
    will-change: max-height;
}

.about-faq-answer p {
    margin: 0;
    color: #4f5552;
    font-size: 1rem;
    line-height: 1.5;
    padding-bottom: 0.95rem;
}

.about-faq-item.active .about-faq-row {
    border-radius: 3px 3px 0 0;
}

.about-faq-item.active .about-faq-icon {
    transform: rotate(45deg);
    color: #0f5d53;
}

.about-faq-item.active .about-faq-answer {
    opacity: 1;
    padding-top: 0.2rem;
}

.mission-main-image {
    width: 100%;
    height: 320px;
    border-radius: 6px;
    object-fit: cover;
}

.mission-vision-side {
    display: grid;
    gap: 1rem;
}

.mission-vision-side p,
.mission-text-block p {
    color: #505753;
    font-size: 1rem;
    line-height: 1.45;
    margin: 0;
}

.mission-block-title {
    font-size: 1.95rem;
    margin-bottom: 0.45rem;
}

.mission-vision-side h4 {
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.mission-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mission-tags span {
    border: 1px solid #d6d9d8;
    border-radius: 999px;
    padding: 0.32rem 0.8rem;
    font-size: 16px;
    color: #59605d;
    background: #fbfbfb;
}

.mission-text-block {
    display: grid;
    gap: 1rem;
    padding-top: 1.2rem;
}

.mission-secondary-image {
    width: 100%;
    height: 290px;
    border-radius: 6px;
    object-fit: cover;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-values-lead {
    display: flex;
    align-items: flex-start;
    padding-top: 46px;
}

.about-values-lead h2 {
    max-width: 280px;
    line-height: 1.2;
}

.about-value-card {
    background: #f9f5e8;
    border: 1px solid #e6e8e7;
    border-radius: 4px;
    padding: 18px 20px;
    display: grid;
    gap: 10px;
}

.about-value-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d3e0df;
}

.about-value-card h3 {
    font-size: 1.5rem;
    margin: 0;
}

.about-value-card p {
    color: #59605d;
    font-size: 1rem;
    margin: 0;
}

.about-value-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 8px;
}

.about-value-stat {
    margin-top: 28px;
}

.about-value-stat h4 {
    font-size: 3rem;
    margin-bottom: 4px;
}

.about-value-stat p {
    font-size: 1rem;
}

.about-values-icon-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-values-icon-card img {
    width: 100%;
    opacity: 0.25;
}

@media (max-width: 991.98px) {
    .about-top-gallery,
    .about-stats,
    .about-instructor-grid,
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-top-gallery img,
    .mission-secondary-image,
    .about-instructor-grid img {
        height: 220px;
    }

    .about-top-gallery .about-gallery-shift {
        margin-top: 0;
    }

    .about-values-lead {
        padding-top: 0;
    }

    .about-faq-layout {
        grid-template-columns: 1fr;
    }

    .about-faq-intro p {
        max-width: 100%;
    }
}

/* Contact Page */


.contact-page:not(.booking-page) .container {
    max-width: 1140px;
}

.contact-page-head {
    margin-bottom: 2.25rem;
    max-width: 640px;
}

.contact-page h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.65rem);
    color: #1a1a1a;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.85rem;
}

.contact-page-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

.contact-info-section {
    margin-bottom: 0;
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-image-col {
    position: relative;
}

.contact-image {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(45, 42, 38, 0.12);
    border: 1px solid rgba(224, 227, 225, 0.9);
}

.contact-image img {
    width: 100%;
    display: block;
    height: 100%;
    min-height: 320px;
    max-height: 560px;
    object-fit: cover;
}

.contact-details {
    background: #f9f5e8;
    border: 1px solid #e5e8e6;
    border-radius: 12px;
    padding: 1.35rem 1.5rem 0.25rem;
    margin-bottom: 1.35rem;
    /*box-shadow: 0 4px 24px rgba(45, 42, 38, 0.06);*/
}

.contact-details-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5c6560;
    margin: 0 0 0.15rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #eceeed;
}

.contact-details-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-details-list > li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 0;
    border-bottom: 1px solid #f0f2f1;
}

.contact-details-list > li:last-child {
    border-bottom: none;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #fffbf0;
    color: #5a635e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-icon svg {
    display: block;
}

.contact-detail-body {
    min-width: 0;
    padding-top: 0.1rem;
}

.contact-detail-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8a928d;
    margin-bottom: 0.35rem;
}

.contact-detail-value {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.55;
    color: #2c322f;
    margin: 0;
}

.contact-detail-link {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #2a4d3a;
    text-decoration: none;
    word-break: break-word;
}

.contact-detail-link:hover {
    text-decoration: underline;
    color: #1e3d2d;
}

.contact-info-section .contact-social {
    margin-bottom: 0;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.contact-social span {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #3d4540;
    margin-bottom: 0.15rem;
}

@media (min-width: 576px) {
    .contact-social span {
        width: auto;
        margin-bottom: 0;
        margin-right: 0.35rem;
    }
}

.contact-social a {
    text-decoration: none;
    color: #3d4540;
    background: #f9f5e8;
    border: 1px solid #dcdfdc;
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    font-size: 0.87rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.contact-social a.contact-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
}

.contact-social a.contact-social-icon .icon {
    width: 20px;
    height: 20px;
}

.contact-social a:hover {
    border-color: #b8c4bc;
    background: #f8f7f4;
}

.contact-page:not(.booking-page) .contact-form-section,
.contact-page:not(.booking-page) .contact-map-section {
    margin-top: 2.75rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(215, 210, 198, 0.85);
}

.contact-map-wrap {
    border: 1px solid #ece8df;
    border-radius: 14px;
    overflow: hidden;
    background: #f9f5e8;
    box-shadow: 0 12px 40px rgba(45, 42, 38, 0.09);
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.contact-form-section .contact-form-card {
    max-width: 920px;
}

.contact-form-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-form-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 1rem;
}

.contact-form-card {
    background: #f9f5e8;
    border: 1px solid #ece8df;
    border-radius: 14px;
    padding: 2rem 2.25rem 2.25rem;
   /* box-shadow:
        0 12px 40px rgba(45, 42, 38, 0.09),
        0 2px 8px rgba(45, 42, 38, 0.04);*/
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form.contact-form--boxed .contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1.75rem;
}

.contact-form.contact-form--boxed .contact-field--full {
    grid-column: 1 / -1;
}

.contact-form.contact-form--boxed .contact-field > label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #3d4540;
    margin-bottom: 0.5rem;
    padding: 0;
    border: none;
    align-items: unset;
    gap: 0;
}

.contact-form.contact-form--boxed .contact-field input,
.contact-form.contact-form--boxed .contact-field textarea {
    display: block;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.45;
    color: #1f2522;
    background: #fffbf0;
    border: 1px solid #ddd9d2;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form.contact-form--boxed .contact-field textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form.contact-form--boxed .contact-field input::placeholder,
.contact-form.contact-form--boxed .contact-field textarea::placeholder {
    color: #9aa09c;
}

.contact-form.contact-form--boxed .contact-field input:hover,
.contact-form.contact-form--boxed .contact-field textarea:hover {
    border-color: #c8c4bc;
}

.contact-form.contact-form--boxed .contact-field input:focus,
.contact-form.contact-form--boxed .contact-field textarea:focus {
    border-color: #1b4332;
    box-shadow:
        inset 0 1px 3px rgba(0, 0, 0, 0.05),
        0 0 0 3px rgba(27, 67, 50, 0.16);
}

.contact-form-actions {
    margin-top: 1.25rem;
    display: flex;
    justify-content: flex-end;
}

.contact-form.contact-form--boxed .contact-form-actions {
    margin-top: 1.85rem;
    justify-content: center;
}

.contact-form-actions .btn {
    min-width: 160px;
}

.contact-field-icon {
    flex-shrink: 0;
    display: inline-flex;
    color: #6a726d;
}

.contact-field-icon svg {
    display: block;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border-bottom: 1px solid #d5d9d7;
    padding: 0.65rem 0;
    color: #5b615d;
}

.contact-form label.contact-form-label-message {
    align-items: flex-start;
}

.contact-form label.contact-form-label-message .contact-field-icon {
    margin-top: 0.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    color: #2e3431;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 90px;
}

.contact-form select {
    appearance: none;
}

.booking-page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1.12;
    color: #1d2320;
}

.booking-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 0.65rem;
    color: #1d2320;
}

.booking-page .contact-content > p {
    color: #5b615d;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.55;
}

.booking-inquiry-card {
    background: #f9f5e8;
    border: 1px solid #e8e4dc;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(45, 42, 38, 0.07);
}

.booking-inquiry-form-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 2.35rem;
}

.booking-inquiry-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.85rem 0 1.65rem;
}

.booking-inquiry-divider::before,
.booking-inquiry-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4cfc4 20%, #d4cfc4 80%, transparent);
}

.booking-inquiry-divider-ornament {
    width: 9px;
    height: 9px;
    border: 1px solid #c9a227;
    transform: rotate(45deg);
    flex-shrink: 0;
    background: #fffdf8;
}

.booking-inquiry-form .booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1.35rem;
    margin-bottom: 1.25rem;
}

.booking-inquiry-form .booking-form-grid:last-of-type {
    margin-bottom: 0;
}

.booking-field--full {
    grid-column: 1 / -1;
}

.booking-field > label,
.booking-field-legend {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.booking-field input:not([type="radio"]):not([type="file"]),
.booking-field select,
.booking-field textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.45;
    color: #1f2522;
    background: #fffbf0;
    border: 1px solid #ddd9d2;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.booking-field textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c5c5c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
    padding-right: 2.25rem;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
    color: #8a908b;
}

.booking-field input:hover,
.booking-field select:hover,
.booking-field textarea:hover {
    border-color: #c8c4bc;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    outline: none;
    border-color: #c9a227;
    background: #faf9f6;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.booking-field input[type="file"] {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.5rem 0.65rem;
    cursor: pointer;
}

.booking-field--radios {
    padding-top: 0.15rem;
}

.booking-radio-fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.booking-radio-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #2c322f;
    margin-bottom: 0.55rem;
    cursor: pointer;
}

.booking-radio-label:last-child {
    margin-bottom: 0;
}

.booking-radio-label input {
    width: 1.12rem;
    height: 1.12rem;
    accent-color: #c9a227;
    flex-shrink: 0;
}

.booking-info-bar {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #4a524e;
    background: #f0e8d8;
    border: 1px solid #e5dcc8;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin: 0 0 1.35rem;
}

.booking-inquiry-actions {
    margin-top: 1.75rem;
    display: flex;
    justify-content: center;
}

.booking-inquiry-actions .btn {
    min-width: 160px;
}

@media (max-width: 767.98px) {
    .booking-inquiry-form .booking-form-grid {
        grid-template-columns: 1fr;
    }

    .booking-inquiry-card {
        padding: 1.35rem 1.15rem 1.6rem;
    }
}

.footer-hero-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.16;
    margin-bottom: 1rem;
}

.footer-title-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem;
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .contact-image img {
        max-height: 420px;
        min-height: 280px;
    }

    .contact-page-head {
        margin-bottom: 1.75rem;
    }

    .contact-page:not(.booking-page) .contact-form-section,
    .contact-page:not(.booking-page) .contact-map-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .contact-form.contact-form--boxed .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 1.5rem 1.25rem 1.75rem;
    }
}

/* Instructor Page */
.instructor-page h1 {
    margin-bottom: 1.25rem;
}

/* .instructor-page-grid .instructor-card img {
    height: 280px;
} */

/* Instructor Detail Page */
.instructor-detail-top {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.2rem;
    margin-bottom: 1.8rem;
}

.instructor-profile-card {
    background: #fffbf0;
    border: 1px solid #e2e5e3;
    border-radius: 4px;
    overflow: hidden;
}

.instructor-profile-card img {
    width: 100%;
    height: 510px;
    object-fit: cover;
}

.instructor-profile-card h2 {
    margin: 0;
    padding: 0.8rem 1rem 0.55rem;
    font-size: 2.5rem;
    font-weight: 500;
}

.instructor-meta {
    padding: 0 1rem 0.35rem;
}

.instructor-meta-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #d9dddb;
    padding: 0.6rem 0;
    font-size: 16px;
    color: #4c5350;
}

.instructor-detail-content h1 {
    font-size: 2.15rem;
    margin-bottom: 0.6rem;
}

.instructor-detail-content p {
    color: #535a56;
    font-size: 1.15rem;
    line-height: 1.45;
    margin-bottom: 0.8rem;
}

.instructor-tabs {
    margin: 1.45rem 0 0;
    border-bottom: 1px solid #d7dcd9;
    padding-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.35rem;
}

.instructor-tab {
    font: inherit;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #9ca3a0;
    background: none;
    border: 0;
    border-bottom: 2px solid transparent;
    padding: 0.45rem 0;
    margin-bottom: -1px;
    cursor: pointer;
    border-radius: 0;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.instructor-tab:hover {
    color: #5c6560;
}

.instructor-tab:focus-visible {
    outline: 2px solid #1b4332;
    outline-offset: 3px;
}

.instructor-tab.active {
    color: #1f2522;
    border-bottom-color: #1b4332;
}

.instructor-tab-panels {
    margin-top: 1rem;
}

.instructor-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.instructor-bullets li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.55rem;
    font-size: 1.05rem;
    color: #3f4642;
}

.instructor-social {
    font-size: 0.95rem;
    color: #555c58;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.5rem;
}

.instructor-social a {
    text-decoration: none;
    border: 1px solid #e1e4e2;
    border-radius: 3px;
    color: #5c6360;
    background: #f9f5e8;
    padding: 0.26rem 0.7rem;
    font-size: 16px;
}

.instructor-tab-summary {
    font-size: 1rem !important;
    color: #5a615d !important;
    margin-bottom: 16px !important;
}

.instructor-introduction {
    margin-bottom: 2.25rem;
    max-width: 900px;
}

.instructor-introduction h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.instructor-introduction p {
    font-family: 'Inter', sans-serif;
    color: #555555;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.instructor-introduction p:last-child {
    margin-bottom: 0;
}

.instructor-workspace {
    margin-bottom: 2rem;
}

.instructor-workspace-label {
    margin-bottom: 1rem;
}

.instructor-workspace-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.instructor-workspace-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.25rem;
    background: #f9f5e8;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 1.15rem 1.25rem;
}

.instructor-workspace-body {
    flex: 1 1 280px;
    min-width: 0;
}

.instructor-workspace-body h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0 0 0.45rem;
    color: #333333;
}

.instructor-workspace-body p {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: #555555;
    font-size: 1rem;
    line-height: 1.5;
}

.instructor-workspace-meta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex-shrink: 0;
    align-self: flex-start;
    padding-top: 0.15rem;
}

.instructor-workspace-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #4d5551;
}

.instructor-workspace-meta-item svg {
    flex-shrink: 0;
    color: #5c6360;
}

.other-instructors {
    margin-bottom: 2rem;
}

.other-instructors h2 {
    margin-bottom: 0.7rem;
}

@media (max-width: 991.98px) {
    .instructor-detail-top {
        grid-template-columns: 1fr;
    }

    .instructor-workspace-card {
        flex-direction: column;
    }

    .instructor-workspace-meta {
        flex-direction: row;
        flex-wrap: wrap;
        padding-top: 0;
    }
}

/* Blog Page */
.blog-page h1 {
    margin-bottom: 1.2rem;
}

.blog-page .article-image-wrap img {
    height: 180px;
}

.blog-page .article-card h3 {
    min-height: 76px;
}
.article-card:hover{
    background:white;
}
.blog-next-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}
.article-padding{
    padding: 12px 15px 10px;
}

.blog-next-btn {
    display: inline-flex;
    align-items: center;
    border: 1px solid #111;
    border-radius: 8px;
    color: #111;
    text-decoration: none;
    padding: 0.45rem 0.85rem;
    font-size: 16px;
}

/* Video Gallery Page */
.video-page h1 {
    margin-bottom: 1rem;
}

.video-featured {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.video-thumb-large,
.video-thumb {
    border: 0;
    padding: 0;
    background: transparent;
    width: 100%;
    cursor: pointer;
    position: relative;
    display: block;
    overflow: hidden;
}

.video-thumb-large {
    border-radius: 8px;
}

.video-thumb-large img {
    width: 100%;
    min-height: 340px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.video-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.photo-thumb {
    overflow: hidden;
    display: block;
}

.photo-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.video-card:hover .photo-thumb img {
    transform: scale(1.04);
}

.video-thumb-large::before,
.video-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    transition: opacity 0.25s ease;
}

.video-thumb-large::after,
.video-thumb::after {
    content: "▶";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: rgba(21, 89, 74, 0.92);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    line-height: 1;
    text-indent: 2px;
}

.video-thumb-large:hover::before,
.video-thumb:hover::before {
    opacity: 0.78;
}

.video-play-badge {
    position: absolute;
    left: 0.8rem;
    bottom: 0.8rem;
    z-index: 1;
    background: rgba(18, 22, 20, 0.78);
    color: #fff;
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    font-size: 0.82rem;
}

.video-featured-content {
    background: #fffbf0;
    border: 1px solid #dfe3e1;
    border-radius: 8px;
    padding: 1.1rem;
    display: grid;
    align-content: start;
    gap: 0.7rem;
}

.video-featured-content p {
    color: #555c58;
    font-size: 1rem;
    margin: 0;
}

.video-card {
    background: #fffbf0;
    border: 1px solid #dfe3e1;
    border-radius: 8px;
    overflow: hidden;
}

.video-card-body {
    padding: 0.8rem 16px 0.95rem;
}

.video-card-body h3 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
}

.video-card-body p {
    margin: 0;
    color: #59605c;
    font-size: 1rem;
}

.video-popup {
    position: fixed;
    inset: 0;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.video-popup.show {
    opacity: 1;
    pointer-events: auto;
}

.video-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 7, 0.78);
}

.video-popup-dialog {
    position: relative;
    width: min(94vw, 960px);
    margin: 6vh auto 0;
    z-index: 1;
}

.video-popup-close {
    position: absolute;
    top: -2.4rem;
    right: 0;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #fffbf0;
    color: #1f2522;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.video-popup-frame-wrap {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-popup-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

body.video-popup-open {
    overflow: hidden;
}

/* Blog Detail Page */
.blog-detail-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-detail-head h1 {
    /* max-width: 680px; */
    margin: 0;
}

.blog-detail-meta {
    color: #6a706d;
    font-size: 0.86rem;
    white-space: nowrap;
}

.blog-detail-meta span {
    margin: 0 0.45rem;
}

.blog-detail-hero {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 1.2rem;
}

.blog-detail-content {
    max-width: 760px;
}

.blog-detail-content p {
    color: #535a56;
    font-size: 1rem;
    line-height: 1.6;
}

.blog-detail-content h2 {
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
}

.blog-detail-content h3 {
    font-size: 1.35rem;
    margin: 1rem 0 0.35rem;
}

.blog-detail-content img {
    width: 100%;
    border-radius: 4px;
    margin: 0.8rem 0;
}

.blog-detail-content blockquote {
    border-left: 3px solid #d3d7d5;
    padding-left: 0.85rem;
    margin: 1rem 0;
    color: #3f4642;
    font-style: italic;
}

.blog-detail-content ul {
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.blog-detail-content li {
    margin-bottom: 0.35rem;
    color: #4f5652;
    font-size: 16px;
}

.blog-similar-posts {
    margin-top: 2rem;
}

@media (max-width: 767.98px) {
    .blog-detail-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Service Detail Page */
.service-detail-page h1 {
    margin-bottom: 60px;
    font-size: 60px;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 2.15fr 0.85fr;
    gap: 1rem;
    align-items: start;
}

.service-main-content {
    min-width: 0;
}

.service-detail-sidebar {
    align-self: flex-start;
}

.service-detail-page > .container > section.row {
    align-items: flex-start;
}

.service-main-image img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 30px;
}

.service-info-card {
    /*border: 1px solid #dfe3e1;*/
    border-radius: 6px;
    padding: 30px;
    background: #fefcf7;
}

@media (min-width: 992px) {
    .service-detail-page .service-detail-sidebar {
        position: sticky;
        top: 6.25rem;
        z-index: 2;
    }

   /* .service-detail-page .service-detail-sidebar .service-info-card {
        max-height: calc(100vh - 7rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }*/
}

.service-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.05rem;
}

.service-info-card li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eceeed;
    padding: 16px 0;
    font-size: 0.92rem;
    gap: 0.8rem;
}

.service-info-left {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 125px;
}

.service-info-left svg {
    flex-shrink: 0;
    color: #6a726d;
}

.service-info-card li span {
    color: #202522;
    font-weight: 600;
    font-size: 16px;
}

.service-info-card li strong {
    font-weight: 500;
    color: #4b504e;
    font-size: 14px;
    text-align: right;
}

.service-info-card li:last-child {
    border-bottom: 0;
}

.service-info-card .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    border-radius: 12px;
}

.service-copy {
    max-width: 820px;
}

.service-copy p {
    color: #555c58;
    font-size: 16px;
    line-height: 1.55;
}

.service-copy h2,
.service-copy h3 {
    margin-top: 0.75rem;
    margin-bottom: 10px;
}

.service-copy ul {
    padding-left: 1rem;
}

.service-copy li {
    color: #4e5551;
    margin-bottom: 15px;
    font-size: 16px;
}

.service-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 820px;
}

.service-gallery img {
    width: 100%;
    border-radius: 4px;
    height: 190px;
    object-fit: cover;
}

.service-faq {
    max-width: 820px;
}

.service-faq h2 {
    margin-bottom: 0.75rem;
}

.service-faq-list .about-faq-row span:first-child {
    font-size: 1rem;
}

.similar-services h2 {
    margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
    .video-featured,
    .service-gallery {
        grid-template-columns: 1fr;
    }

    .video-thumb-large img {
        min-height: 250px;
    }

    .video-thumb img {
        height: 230px;
    }

    .video-popup-dialog {
        width: 92vw;
        margin-top: 12vh;
    }

    .service-detail-page .service-detail-sidebar {
        position: static;
        top: auto;
        max-height: none;
        overflow: visible;
        z-index: auto;
    }

    .service-info-card {
        padding: 1rem;
    }

    .service-info-card li {
        padding: 0.72rem 0;
    }

    .service-info-left {
        min-width: 110px;
    }

    .service-info-card li span,
    .service-info-card li strong {
        font-size: 0.95rem;
    }
}

/* Packages & Retreats page */
.packages-page .packages-intro {
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .packages-page .packages-intro {
        margin-bottom: 3.5rem;
    }
}

.packages-intro-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.packages-intro-copy p {
    font-family: 'Inter', sans-serif;
    color: #555555;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.packages-intro-copy p:last-of-type {
    margin-bottom: 0;
}

.packages-intro-figure {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(45, 42, 38, 0.12);
    border: 1px solid rgba(224, 227, 225, 0.9);
}

.packages-intro-figure img {
    width: 100%;
    display: block;
    min-height: 260px;
    max-height: 440px;
    object-fit: cover;
}

.packages-services h2 {
    margin-top: 0.35rem;
}

@media (max-width: 991.98px) {
    .packages-intro-figure img {
        max-height: 360px;
    }
}

/* Photo Gallery — Album listing */
.photo-gallery-page h1,
.photo-gallery-detail-page h1 {
    margin-bottom: 1rem;
}

.photo-album-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.photo-album-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.photo-album-cover {
    overflow: hidden;
    border-radius: 8px;
    background: #f0ede6;
    border: 1px solid #e8e4dc;
    aspect-ratio: 4 / 3;
}

.photo-album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.photo-album-card:hover .photo-album-cover img {
    transform: scale(1.05);
}

.photo-album-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #2a2f2d;
    margin: 0.85rem 0 0;
    line-height: 1.35;
    transition: color 0.15s ease;
}

.photo-album-card:hover .photo-album-title {
    color: #1b4332;
}

/* Photo Gallery — Album detail */
.photo-album-back {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #3d4540;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.15s ease;
}

.photo-album-back:hover {
    color: #1b4332;
}

.photo-album-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.photo-album-item {
    border: 0;
    padding: 0;
    background: transparent;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    width: 100%;
}

.photo-album-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.photo-album-item:hover img {
    transform: scale(1.04);
    opacity: 0.92;
}

.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.photo-lightbox.show {
    display: flex;
}

.photo-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 12, 0.88);
}

.photo-lightbox-dialog {
    position: relative;
    z-index: 1;
    max-width: min(1100px, 100%);
    max-height: 90vh;
}

.photo-lightbox-dialog img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    border-radius: 6px;
    object-fit: contain;
}

.photo-lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.photo-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.photo-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.28);
}

.photo-lightbox-prev {
    left: 1.25rem;
}

.photo-lightbox-next {
    right: 1.25rem;
}

body.photo-lightbox-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .photo-album-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .photo-album-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .photo-album-item img {
        height: 190px;
    }
}

@media (max-width: 575.98px) {
    .photo-album-grid,
    .photo-album-detail-grid {
        grid-template-columns: 1fr;
    }

    .photo-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }

    .photo-lightbox-prev {
        left: 0.5rem;
    }

    .photo-lightbox-next {
        right: 0.5rem;
    }
}