:root {
    --ivory: #F8F5EF;
    --cream: #EDE8DC;
    --gold: #B89A5A;
    --gold-lt: #D4B97A;
    --gold-dk: #8A7040;
    --forest: #2a6f77;
    --forest-lt: #3D6154;
    --sage: #7A9E8E;
    --ink: #1A1A18;
    --mist: rgba(248, 245, 239, 0.06);
    --heading-font: "DM Serif Display", serif;
    --body-text: 'Onest', sans-serif;
}

a {
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--body-text);
    font-weight: 300;
    overflow-x: hidden;
}


/* â”€â”€â”€ NAV â”€â”€â”€ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.5s, padding 0.5s;
}

nav.scrolled {
    background: rgba(26, 26, 24, 0.88);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
    align-items: center;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
    margin-bottom: 0;
    align-items: end;
}

.nav-links a {
    font-size: 16px !important;
    letter-spacing: 0.8px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-family: var(--body-text) !important;
        border-radius: 10px;
}

.nav-links a:hover {
    color: var(--gold-lt);
}

.nav-cta {
    font-size: 14px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #fff;
    background: var(--gold-lt);
    border: none;
    padding: 12px 28px;
    font-weight: 500;
    transition: background 0.3s;
    font-family: var(--body-text) !important;
}

.nav-cta:hover {
    background: var(--gold);
}

.floating_btn {
    position: fixed;
    bottom: 16%;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

.floating_btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero2 {
    padding: 120px 0;
    background: url(../images/bottom-banner-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero2 .container-fluid {
    padding-left: 80px;
}

.hero2 span {
    background: #2d4a34;
    font-family: var(--body-text);
    padding: 8px 23px;
    border-radius: 50px;
    color: #fff;
    letter-spacing: 0.9px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

.hero2 .content {
    animation: 0.9s ease 0.2s 1 normal both running fadeUp;
}


.hero2 h2 {
    margin-top: 20px;
    font-family: var(--heading-font);
    font-size: 44px;
    line-height: 65px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.9px;
    font-weight: 500;
    margin-bottom: 15px;
}


.hero2 h1 em {
    color: var(--heading-color);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.certi-sec span,
.experiences span,
.about span {
    font-family: var(--heading-font);
    font-style: italic;
    color: #D4A017;
    font-size: 20px;
}



.certi-sec h2,
.experiences h2,
.about h2,
.sacred-tourism h2,
.certifications h2 {
    font-family: var(--heading-font);
    font-size: 38px;
    line-height: 54px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.9px;
    font-weight: 500;
    margin-bottom: 15px;
}


.certi-sec p,
.experiences p {
    font-family: var(--body-text);
    color: #474747;
    padding-right: 60px;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.5px;
}

/* 
.hero .right-btn {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.9px;
    border-radius: 8px;
    display: block;
    background: var(--heading-color);
    color: #fff;
    padding: 12px 30px;
    font-family: var(--body-text);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
} */

/* .hero a:hover {
    transform: translateY(-5px);
}

.hero .left-btn {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.9px;
    border-radius: 8px;
    display: block;
    border: 2px solid var(--heading-color);
    background: transparent;
    color: var(--heading-color);
    padding: 12px 30px;
    font-family: var(--body-text);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
} */

.address {
    list-style: none;
    padding-left: 0 !important;
    display: flex;
    gap: 14px;
    margin: 20px 0 30px;
    flex-wrap: wrap;
}


.address li {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #d4b97a;
    display: flex;
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    align-items: center;
}

.address li i {
    color: #d9a017;
    font-size: 20px;
}

.section-padding {
    padding: 80px 0;
}


.exp-card {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.exp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.exp-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.9) saturate(0.9);
}

.exp-tag {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #ecc960;
    margin-bottom: 10px;
    font-family: var(--body-text);
    font-weight: 500;
}

.exp-title {
    font-size: 20px;
    font-weight: 300;
    color: #212121;
    font-family: var(--heading-font);
    line-height: 32px;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
}


/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* â”€â”€ Slider track â”€â”€ */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.6s cubic-bezier(0.45, 0, 0.55, 1);
    will-change: opacity;
}

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

/* Ken Burns zoom on active slide */
.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 7s ease-out;
    will-change: transform;
}

.hero-slide.active img {
    transform: scale(1);
}

/* per-slide overlay â€” slightly varied tones */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 24, 0.28) 0%, rgba(26, 26, 24, 0.52) 55%, rgba(26, 26, 24, 0.82) 100%);
}

/* sacred geometry watermark layer (sits above slides, below content) */
.hero-geometry {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='160' fill='none' stroke='rgba(184,154,90,0.08)' stroke-width='0.8'/%3E%3Ccircle cx='200' cy='200' r='120' fill='none' stroke='rgba(184,154,90,0.06)' stroke-width='0.8'/%3E%3Ccircle cx='200' cy='200' r='80' fill='none' stroke='rgba(184,154,90,0.06)' stroke-width='0.8'/%3E%3Cpolygon points='200,40 340,280 60,280' fill='none' stroke='rgba(184,154,90,0.07)' stroke-width='0.8'/%3E%3Cpolygon points='200,360 60,120 340,120' fill='none' stroke='rgba(184,154,90,0.07)' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: 500px 500px;
    background-position: center;
}

/* â”€â”€ Slide counter â€” top right â”€â”€ */
.hero-counter {
    position: absolute;
    top: 50%;
    right: 48px;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-counter-current {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.04em;
}

.hero-counter-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(184, 154, 90, 0.7), rgba(255, 255, 255, 0.2));
}

.hero-counter-total {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* â”€â”€ Dot navigation â€” bottom right â”€â”€ */
.hero-dots {
    position: absolute;
    bottom: 40px;
    right: 48px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-dot {
    width: 28px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    border: none;
    transition: background 0.4s, width 0.4s;
    padding: 0;
}

.hero-dot.active {
    background: var(--gold-lt);
    width: 44px;
}

/* â”€â”€ Progress bar â€” very bottom â”€â”€ */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 3;
    width: 0%;
    transition: width 0.1s linear;
}

/* â”€â”€ Slide caption â€” bottom left â”€â”€ */
.hero-caption {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 3;
}

.hero-caption-text {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    transition: opacity 0.6s ease;
    font-family: var(--body-text) !important;
}

@media (max-width: 768px) {
    .hero-counter {
        right: 10px;
    }

    .hero-counter-current{
        font-size: 25px;
    }

    .hero-dots {
        right: 20px;
        bottom: 80px;
    }

    .hero-caption {
        left: 24px;
        bottom: 80px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    max-width: 960px;
}

.hero-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: #f6c74c;
    margin-bottom: 12px;
    font-weight: 500;
    font-family: var(--body-text) !important;
}

.hero-headline {
    font-family: var(--heading-font);
    font-size: 85px;
    font-weight: 300;
    line-height: 1.08;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold-lt);
}

.hero-sub {
    font-size: 16px;
    letter-spacing: 2.5px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 42px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--body-text) !important;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-family: var(--body-text) !important;
    font-weight: 400;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--ivory);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.3s;
}

.btn-gold:hover {
    background: var(--gold-lt);
    transform: translateY(-1px);
}

.btn-outline {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-family: var(--body-text) !important;
    font-weight: 400;
    padding: 14px 40px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--gold-lt);
    color: var(--gold-lt);
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll span {
    font-size: 0.58rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(184, 154, 90, 0.8), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.15);
    }
}

.about p {
    font-family: var(--body-text);
    color: #2f2e2e;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
}

.about .right-btn {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.9px;
    border-radius: 8px;
    display: block;
    background: var(--gold);
    color: #fff;
    padding: 12px 30px;
    font-family: var(--body-text);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about a:hover {
    transform: translateY(-5px);
}

.about .left-btn {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.9px;
    border-radius: 8px;
    display: block;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    padding: 12px 30px;
    font-family: var(--body-text);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about .inner-border {
    display: inline-block;
    position: relative;
}

.about .inner-border:after {
    content: "";
    pointer-events: none;
    border: 2px solid #fff;
    position: absolute;
    inset: 5px;
    border-radius: 1rem;
}

.usp-sec span,
.section-eyebrow {
    font-family: var(--heading-font);
    font-style: italic;
    color: #D4A017;
    font-size: 20px;
    text-align: center;
}

.usp-sec h2,
.healing-section .section-title {
    font-family: var(--heading-font);
    font-size: 38px;
    line-height: 54px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.9px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.usp-sec {
    background: #f4ecdd;
}

.usp-sec p {
    font-family: var(--body-text);
    color: #474747;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.5px;
}

.first-row {
    padding: 40px 0;
}


.first-row .grid-row .icon-box {
    text-align: center;
}

.usp-sec .grid-row {
    margin-top: 30px;
}

.usp-sec .grid-row .icon-box,
.first-row .grid-row .icon-box {
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.usp-sec .grid-row .icon-box:hover,
.first-row .grid-row .icon-box:hover {
    transform: translateY(-5px);
}

.usp-sec .grid-row .icon-box {
    border-right: 1px solid #c2c0c0;
}

.first-row .grid-row .icon-box {
    border-right: 1px solid #c2c0c0;
    padding: 0 30px;
}

.first-row .grid-row .icon-box p {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.6px;
}

.usp-sec .grid-row .swiper-slide:last-child,
.first-row .grid-row .swiper-slide:last-child {
    border: 0;
}

.usp-sec .grid-row .icon-box .icon,
.first-row .grid-row .icon-box .icon {
    margin-bottom: 15px;
}

.usp-sec .grid-row .icon-box .icon img {
    width: 60px;
}

.first-row .grid-row .icon-box .icon img {
    width: 45px;
}

.usp-sec .grid-row .icon-box p {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 0;
    font-family: var(--heading-font);
    color: #212121;
    letter-spacing: 0.4px;
    font-weight: 400;
}

.art-sec {
    background: #2a6f77;
    overflow: hidden;
}

.art-sec .content {
    padding: 60px 80px 60px 60px;
}

.art-sec h2 {
    font-family: var(--heading-font);
    font-size: 38px;
    line-height: 54px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.9px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
}

.art-sec p {
    font-family: var(--body-text);
    color: #e9e2e2;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.5px;
}

.conscious-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.conscious-features .cf-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0;
}

.cf-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgb(184 154 90 / 48%);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cf-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.cf-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.cf-label {
    font-size: 16px;
    color: #e9e2e2;
    font-weight: 400;
    letter-spacing: 0.8px;
}

.healing-section {
    position: relative;
    padding: 80px 60px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover fixed;
}

.healing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 24, 0.72);
}

.healing-inner {
    position: relative;
    z-index: 1;
}

.healing-header {
    text-align: center;
    margin-bottom: 40px;
}

.healing-header .section-title {
    color: var(--ivory);
}

.healing-header .gold-rule {
    margin: 28px auto;
}

.healing-header .section-body {
    color: rgba(248, 245, 239, 0.65);
    text-align: center;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

.healing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.healing-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(184, 154, 90, 0.22);
    padding: 44px 36px;
    transition: background 0.4s, transform 0.4s;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease, background 0.4s;
}

.healing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.healing-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.healing-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
}

.healing-card-name {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 12px;
    letter-spacing: 0.8px;
}

.healing-card-desc {
    font-size: 14px;
    color: rgb(221 226 226 / 90%);
    line-height: 26px;
    font-weight: 300;
    letter-spacing: 0.7px;
}

.gold-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0;
}

.sacred-tourism {
    background: var(--ivory);
}


.sacred-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    font-style: italic;
    color: var(--forest);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.sacred-tourism,
.collection p {
    font-family: var(--body-text);
    color: #474747;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.5px;
}

.sacred-scroll {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
}

.sacred-item {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.sacred-item.visible {
    opacity: 1;
}

.sacred-item:nth-child(1) {
    transition-delay: 0s;
}

.sacred-item:nth-child(2) {
    transition-delay: 0.08s;
}

.sacred-item:nth-child(3) {
    transition-delay: 0.16s;
}

.sacred-item:nth-child(4) {
    transition-delay: 0.24s;
}

.sacred-item:nth-child(5) {
    transition-delay: 0.32s;
}

.sacred-item:nth-child(6) {
    transition-delay: 0.40s;
}

.sacred-item-img {
    aspect-ratio: 3/5;
    overflow: hidden;
}

.sacred-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
    filter: saturate(0.8);
}

.sacred-item:hover .sacred-item-img img {
    transform: scale(1.08);
    filter: saturate(1);
}

.sacred-item-name {
    padding: 10px 0 0px;
    font-family: var(--heading-font);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: 0.7px;
}

.sacred-item-sub {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #D4A017;
    font-weight: 500;
    margin-top: -2px;
}

.sacred-tourism span {
    font-family: var(--heading-font);
    font-style: italic;
    color: #D4A017;
    font-size: 20px;
}

/* Video wrapper with custom play overlay */
.video-wrap {
    position: relative;
    /* border-radius: 10px; */
}

.video-wrap video {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Play button overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    transition: opacity 0.3s;
    border-radius: 10px;
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #d4b97a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(232, 201, 125, 0.4);
    transition: transform 0.2s;
}

.card:hover .play-btn {
    transform: scale(1.1);
}

.play-btn svg {
    fill: #fff;
    margin-left: 0;
    width: 25px;
    height: 25px;
}

/* Card info */
.card-info {
    padding: 18px 20px 20px;
}

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

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: #0d0d0f;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e8c97d, #c47f5b);
}

.author-name {
    font-size: 14px;
    font-weight: 500;
    color: #f0ede8;
}

.author-role {
    font-size: 12px;
    color: #7a7880;
    margin-top: 2px;
}

.stars {
    margin-left: auto;
    color: #e8c97d;
    font-size: 13px;
    letter-spacing: 2px;
}

.testimonials,
.gallery-sec {
    background: #f4ecdd;
}

.testimonials .section-label {
    font-family: var(--heading-font);
    font-style: italic;
    color: #D4A017;
    font-size: 20px;
    text-align: center;
    display: block;
}

.testimonials h2,
.section-title {
    font-family: var(--heading-font);
    font-size: 38px;
    line-height: 54px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.9px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.testimonials .card {
    border-radius: 12px;
    border: 2px solid var(--gold);
    cursor: pointer;
}


.collection-header {
    text-align: center;
    margin-bottom: 40px;
}

.collection-header .gold-rule {
    margin: 24px auto;
}

.product-card {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:nth-child(2) {
    transition-delay: 0.08s;
}

.product-card:nth-child(3) {
    transition-delay: 0.16s;
}

.product-card:nth-child(4) {
    transition-delay: 0.24s;
}

.product-card:nth-child(5) {
    transition-delay: 0.32s;
}

.product-card:nth-child(6) {
    transition-delay: 0.40s;
}

.product-img {
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(184, 154, 90, 0.08);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 5s ease;
    mix-blend-mode: multiply;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-name {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: 0.8px;
}

.product-sub {
    font-size: 11px;
    letter-spacing: 1.7px;
    color: #dea817;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-logo img {
    width: 200px;
}

.gallery-sec span {
    font-family: var(--heading-font);
    font-style: italic;
    color: #D4A017;
    font-size: 20px;
    text-align: center;
}

.gallery-sec h2 {
    font-family: var(--heading-font);
    font-size: 38px;
    line-height: 54px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.9px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
}

.gallery-sec .container-fluid {
    padding: 0 40px;
}

.gallery-sec p {
    font-family: var(--body-text);
    color: #2d2d2d;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.gallery-sec .d-flex {
    gap: 35px;
    margin-top: 20px;
    justify-content: center;
}

.gallery-sec .d-flex img {
    width: 95px;
}

.sacred-tourism .container-fluid,
.experiences .container-fluid {
    padding: 0 60px;
}

.exp-card-content {
    margin-top: 15px;
}

.exp-card-content ul {
    padding-left: 0 !important;
    list-style: none;
    position: relative;
}

.exp-card-content ul li {
    margin-bottom: 8px;
    padding-left: 18px;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.exp-card-content ul li::before {
    content: "✦";
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
    position: absolute;
    left: -2px;
}


.why-section {
    background: var(--ivory);
}


.why-image {
    position: relative;
}


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

.why-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    opacity: 0.3;
    pointer-events: none;
}


.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(184, 154, 90, 0.2);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.why-item:last-child {
    border: 0;
}

.why-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.why-check {
    width: 25px;
    height: 25px;
    border: 1.8px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-check svg {
    width: 15px;
    height: 15px;
}

.why-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
    letter-spacing: 0.8px;
}

.tagline {
    font-family: var(--heading-font);
    font-style: italic;
    color: #D4A017;
    font-size: 22px;
}

.cert-list {
    list-style: none;
    padding-right: 30px;
    padding-left: 0 !important;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
    transition: background 0.2s;
}

.cert-item:first-child {
    border-top:0px;
    padding-top: 0;
}

.cert-item:last-child {
    border-bottom:0px;
    padding-bottom: 0;
}

.cert-num {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    font-weight: 300;
    color: #d4b97a;
    opacity: 0.9;
    flex-shrink: 0;
    width: 50px;
    line-height: 1;
}

.cert-info h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 6px;
    letter-spacing: 0.8px;
}

.cert-info p {
    font-size: 15px !important;
    color: var(--text-muted) !important;
    letter-spacing: 0.5px !important;
    font-weight: 400 !important;
}

.cert-intro {
    margin-bottom: 12px;
}

.certifications p {
    font-family: var(--body-text);
    color: #2f2e2e;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    font-weight: 400;
}

footer{
    background: var(--forest);
}

footer p{
 margin: 10px 0;
 color: #fff;
 font-weight: 400;
 letter-spacing: 0.6px;
}

#akashicModal .modal-dialog {
    max-width: 440px;
}

#akashicModal .modal-content {
    border-radius: 20px;
}

#akashicModal .modal-body {
    padding: 30px;
}

#akashicModal .modal-body .modal-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F1E9FB;
    color: #1A1129;
    display: flex;
    align-items: center;
    justify-content: center;
    border: unset;
    font-size: 15px;
}

#akashicModal .modal-body .modal-close i {
    transform: translateY(1px);
}

#akashicModal form .modal-sub {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    text-align: center;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

#akashicModal form .form-group {
    margin-bottom: 16px;
}

#akashicModal form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1A1129;
    margin-bottom: 6px;
    font-family: 'Cinzel', serif;
}

#akashicModal form .form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #EBE2F5 ;
    border-radius: 11px;
    font-size: 15px;
    font-family: inherit;
    color: #1A1129;
    background: #fff;
    transition: all .2s ease;
    font-weight: 500;
    box-shadow: unset;
}

#akashicModal form .form-group .phone-grp {
    display: flex;
}

#akashicModal form .form-group .phone-grp .prefix {
    display: inline-flex;
    align-items: center;
    width: 100px;
    padding: 0 14px;
    background: #FBFAFD;
    border: 1.5px solid #EBE2F5;
    border-right: none;
    border-radius: 11px 0 0 11px;
    font-size: 14px;
    font-weight: 600;
    color: #3D2F5C;
}

#akashicModal form .form-group .phone-grp input {
    border-radius: 0 11px 11px 0;
}

#akashicModal form .price-box {
    margin-top: 18px;
    padding: 16px;
    background: #FBFAFD;
    border-radius: 12px;
}

#akashicModal form .price-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #6B5E85;
    font-weight: 500;
}

#akashicModal form .price-row.total {
    border-top: 1px solid #EBE2F5;
    padding-top: 11px;
    margin-top: 6px;
    font-size: 16.5px;
    font-weight: 600;
    color: #1A1129;
}

#akashicModal form .btn-block {
    margin-top: 18px;
    background: var(--gold);
    padding: 17px 36px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.8px;
    z-index: 2;
    width: 100%;
    box-shadow: 0 12px 28px var(--gold-lt);
    position: relative;
    overflow: hidden;
    line-height: 1.1;
    border-radius: 14px;
}

#akashicModal form .modal-trust {
    text-align: center;
    font-size: 12px;
    color: #6B5E85;
    margin-top: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#akashicModal form .btn-block::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -80%;
    width: 50%;
    height: 200%;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .5) 50%, transparent 100%);
    transform: skewX(-22deg);
    animation: shine 2.8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -80%;
    }
    55% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

label.error {
    margin-top: 6px;
    margin-bottom: unset !important;
    color: red !important;
    font-size: 12px !important;
    line-height: 18px;
    font-weight: 500 !important;
    letter-spacing: .4px;
    font-family: 'Poppins', sans-serif !important;
}

#akashicModal form .alert-success {
    text-transform: capitalize;
    letter-spacing: .6px;
    color: #5B2EA6;
    border: 2px solid #5B2EA6;
    padding: 8px 16px 6px;
    font-size: 12px;
    font-weight: 600;
    background: transparent;
}

#mobile-gallery{
    display: none;
}

.grid-wrap { position: relative; display: inline-block; }

  .grid-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }

  .grid-icon {
    display: grid;
    grid-template-columns: repeat(1, 30px);
    gap: 5px;
    padding: 2px;
  }
  .grid-icon span {
    width: 30px;
    height: 2.4px;
    border-radius: 1px;
    background: #fff;
    display: block;
  }

  .dropdown {
  position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 310px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
  }
  .dropdown.open {  opacity: 1;
    visibility: visible;
    transform: translateY(0);}

  .close-x {
    position: absolute;
    top: 0px;
    right: 6px;
    background: none;
    border: none;
    font-size: 25px;
    color: #666;
    cursor: pointer;
    line-height: 1;
  }
  .close-x:hover { color: #111; }

  /* APP ROWS */
  .app-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px 10px 18px;
    cursor: pointer;
    text-decoration: none;
  }
  .app-row:hover { background: #f7f7f7; }

  .app-icon-box {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .app-title {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: .04em;
    font-family: var(--body-text);
  }
  .app-sub {
    font-size: 12px;
    color: #666;
    line-height: 18px;
    margin-top: 2px;
    letter-spacing: 1px;
  }

  /* OVERLAY */
  .overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 199;
  }
  .overlay.open { display: block; }
  
  .video-wrap img,
.video-wrap iframe {
    width: 100%;
    height: 520px;
    object-fit:cover;
    display: block;
}

.collection .container-fluid{
    padding: 0 30px;
}