/* ============================================================
   THE NEERAJ — International Journey Page
   Palette: Maroon #861452 · Ink #170a10 · Gold #c9974a · Ivory #f6f0e6
   ============================================================ */

:root {
    --maroon: #861452;
    --maroon-deep: #5c0e39;
    --maroon-bright: #a91d68;
    --ink: #170a10;
    --ink-soft: #2b1420;
    --ink-softer: #3a1526;
    --gold: #c9974a;
    --gold-soft: #e7c98a;
    --ivory: #f6f0e6;
    --stone: #efe6d8;
    --text-dark: #241019;
    --text-dark-70: rgba(36, 16, 25, 0.7);
    --text-light: #f6ecf1;
    --text-light-70: rgba(246, 236, 241, 0.72);
    --font-display: "Fraunces", serif;
    --font-accent: "Cormorant Garamond", serif;
    --font-body: "Manrope", sans-serif;
    --container: 1240px;
    --section-pad: clamp(4.5rem, 8vw, 8rem);
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}


/* ============ PRELOADER ============ */

.preloader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #fff8f2;
    background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(134, 20, 82, 0.12) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201, 151, 74, 0.12) 0%, transparent 70%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
    overflow: hidden;
}


/* Decorative corner rings */

.preloader::before,
.preloader::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1.5px solid rgba(134, 20, 82, 0.07);
    pointer-events: none;
    z-index: 0;
}

.preloader::before {
    top: -200px;
    left: -200px;
    box-shadow: 0 0 0 50px rgba(134, 20, 82, 0.03), 0 0 0 100px rgba(134, 20, 82, 0.02);
}

.preloader::after {
    bottom: -200px;
    right: -200px;
    box-shadow: 0 0 0 50px rgba(201, 151, 74, 0.04), 0 0 0 100px rgba(201, 151, 74, 0.02);
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__logo-wrap {
    position: relative;
    z-index: 1;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #fff 30%, #f7e8f0 65%, #edd5e5 100%);
    box-shadow: 0 0 0 8px rgba(134, 20, 82, 0.08), 0 0 0 20px rgba(134, 20, 82, 0.04), 0 16px 48px rgba(134, 20, 82, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoEntrance 0.9s var(--ease) both;
}

.preloader__logo {
    width: 200px;
    height: auto;
    object-fit: contain;
    animation: pulse 3s ease-in-out 1s infinite;
}

.preloader__emoji {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    animation: emojiBounce 1s var(--ease) 0.6s both;
    line-height: 1;
}

.preloader__words {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.preloader__word {
    display: block;
    max-width: min(90vw, 52rem);
    color: var(--maroon);
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    text-align: center;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.6s var(--ease) both;
    animation-delay: calc(0.8s + var(--i) * 0.18s);
}

.preloader__word:first-child {
    color: var(--gold);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    letter-spacing: 0.02em;
}

.preloader__word:last-child {
    max-width: min(90vw, 48rem);
    color: var(--maroon);
    font-family: var(--font-accent);
    font-size: clamp(1.9rem, 3.8vw, 3.1rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.15;
}

@keyframes logoEntrance {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes emojiBounce {
    from {
        opacity: 0;
        transform: scale(0.4) rotate(-15deg);
    }
    60% {
        transform: scale(1.2) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes wordReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}


/* ---------- Type helpers ---------- */

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--maroon);
    margin: 0 0 1rem;
}

.eyebrow--light {
    color: var(--gold-soft);
}

.h2 {
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    line-height: 1.12;
    color: var(--text-dark);
    max-width: 18ch;
}

.h2--light {
    color: var(--text-light);
}

.lede {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    color: var(--maroon);
    margin: 1.1rem 0;
}

.body-lg {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-dark-70);
    max-width: 52ch;
}

.body-lg--light {
    color: var(--text-light-70);
}


/* ---------- Layout helpers ---------- */

.section-head {
    max-width: var(--container);
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    padding: 0 1.6rem;
}

.section-head--light {
    color: var(--text-light);
}


/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, box-shadow 0.35s;
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: var(--ink);
    border-radius: 30px;
}

.btn--gold:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 151, 74, 0.35);
}

.btn--outline-light {
    border: 1px solid rgba(246, 236, 241, 0.4);
    color: var(--text-light);
    border-radius: 30px;
}

.btn--outline-light:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
    transform: translateY(-2px);
}

.btn--ghost {
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--text-light);
    border-radius: 30px;
}

.btn--ghost:hover {
    background: var(--maroon);
    color: #fff;
}


/* ============ RIVER THREAD (signature element) ============ */

.river-thread {
    position: fixed;
    top: 0;
    right: 2.2vw;
    width: 40px;
    height: 100vh;
    z-index: 40;
    pointer-events: none;
}

.river-thread__svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.river-thread__track,
.river-thread__fill {
    fill: none;
    stroke-linecap: round;
}

.river-thread__track {
    stroke: rgba(134, 20, 82, 0.15);
    stroke-width: 2;
}

.river-thread__fill {
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 2400;
    stroke-dashoffset: 2400;
    filter: drop-shadow(0 0 4px rgba(201, 151, 74, 0.6));
}

.river-thread__marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold-soft);
    box-shadow: 0 0 12px 3px rgba(201, 151, 74, 0.7);
    transform: translate(-50%, -50%);
    transition: top 0.08s linear;
}

@media (max-width: 900px) {
    .river-thread {
        display: none;
    }
}

.scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    z-index: 60;
}

.scroll-bar__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--maroon), var(--gold));
    transition: width 0.05s linear;
}


/* ============ NAV ============ */

.river-thread,
.scroll-bar {
    display: none !important;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 1.1rem 0;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}

.nav.is-scrolled {
    background: rgba(23, 10, 16, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.7rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav__inner {
    width: 100%;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav__mark {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.nav__logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s var(--ease);
}

.nav.is-scrolled .nav__logo {
    height: 90px;
}

.nav__links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}

.nav__links a {
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.02em;
    transition: color 0.3s;
    position: relative;
}

.nav__links a:hover {
    color: var(--gold-soft);
}

.nav__cta {
    margin-left: 1rem;
    border-color: rgba(246, 236, 241, 0.35);
    color: var(--text-light);
}

.nav__cta:hover {
    background: var(--gold);
    color: var(--ink);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
}

.nav__burger span {
    height: 2px;
    background: var(--text-light);
    transition: transform 0.3s, opacity 0.3s;
}

.nav__mobile {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78vw;
    max-width: 340px;
    background: var(--ink-soft);
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    gap: 1.6rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 49;
}

.nav__mobile.is-open {
    transform: translateX(0);
}

.nav__mobile a {
    color: var(--text-light);
    font-size: 1.05rem;
}

@media (max-width: 900px) {
    .nav__links {
        display: none;
    }
    .nav__cta {
        display: none;
    }
    .nav__burger {
        display: flex;
    }
    .nav__mobile {
        display: flex;
    }
}


/* ============ HERO ============ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
    perspective: 1200px;
    isolation: isolate;
}

.hero__scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    transform-style: preserve-3d;
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(23, 10, 16, 0.38) 0%, rgba(23, 10, 16, 0.16) 58%, rgba(23, 10, 16, 0.30) 100%), linear-gradient(to bottom, rgba(23, 10, 16, 0.14), rgba(23, 10, 16, 0.58));
    z-index: 1;
}

.hero__diyas {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}

.diya {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-soft);
    box-shadow: 0 0 10px 3px rgba(231, 201, 138, 0.8);
    animation: diyaFloat 7s ease-in-out infinite;
}

@keyframes diyaFloat {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.55;
    }
    50% {
        transform: translateY(-18px);
        opacity: 1;
    }
}

.hero__content {
    position: relative;
    z-index: 3;
    display: block;
    visibility: visible;
    opacity: 1;
    width: 100%;
    padding: 5rem 4rem 0;
}

.hero__title {
    font-size: clamp(2.4rem, 6.4vw, 5rem);
    color: var(--text-light);
    line-height: 1.08;
    max-width: 780px;
    text-wrap: balance;
}

.hero__title em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold-soft);
    font-weight: 500;
}

.hero__sub {
    margin-top: 1.6rem;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #fff;
    max-width: 570px;
}

.hero__ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.4rem;
}

@media (max-width: 700px) {
    .hero__content {
        padding: 7.5rem 1.25rem 5.5rem;
    }
    .hero__title {
        max-width: 100%;
        font-size: clamp(2.35rem, 11vw, 4rem);
        line-height: 1.04;
    }
    .hero__sub {
        max-width: 40rem;
        margin-top: 1.25rem;
        font-size: 0.98rem;
        line-height: 1.6;
    }
    .hero__ctas {
        margin-top: 1.8rem;
        gap: 0.75rem;
    }
}

.hero__scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light-70);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
}

.hero__scroll-cue span {
    width: 1px;
    height: 34px;
    background: linear-gradient(var(--gold-soft), transparent);
    animation: scrollCue 2s ease-in-out infinite;
}

@keyframes scrollCue {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }
    40% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }
    100% {
        opacity: 0;
        transform: scaleY(1);
        transform-origin: bottom;
    }
}


/* ============ REVEAL ANIMATION ============ */

[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============ 03 NEERAJ JOURNEY ============ */

.neeraj-journey {
    --primary: #861452;
    --primary-dark: #4c092e;
    --primary-deep: #28071a;
    --gold: #c6a15b;
    --gold-light: #ead7a7;
    --cream: #f8f3ea;
    --paper: #fcfaf5;
    --text: #321d28;
    --muted: #806b73;
    position: relative;
    overflow: hidden;
    padding: 110px 0 0;
    background: url('images/bg-section.png') center center / cover no-repeat;
    color: var(--text);
}

.journey-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(5px);
}

.journey-glow-1 {
    width: 500px;
    height: 500px;
    top: 300px;
    left: -250px;
    background: radial-gradient(circle, rgba(134, 20, 82, .10), transparent 68%);
}

.journey-glow-2 {
    width: 600px;
    height: 600px;
    right: -300px;
    bottom: 200px;
    background: radial-gradient(circle, rgba(198, 161, 91, .12), transparent 65%);
}

.journey-world-watermark {
    position: absolute;
    left: -30px;
    top: 440px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(134, 20, 82, .07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
    pointer-events: none;
}

.journey-world-watermark::before,
.journey-world-watermark::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(134, 20, 82, .06);
    border-radius: 50%;
}

.journey-world-watermark::before {
    width: 70%;
    height: 100%;
}

.journey-world-watermark::after {
    width: 100%;
    height: 70%;
}

.journey-world-watermark span {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 12px;
    color: rgba(134, 20, 82, .035);
}

.journey-header {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto 65px;
}

.header-lotus {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.journey-title {
    margin: 0 0 10px;
    color: #4c092e;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.journey-subtitle {
    margin: 0 0 14px;
    color: #59464e;
    font-family: Georgia, serif;
    font-size: clamp(16px, 2vw, 24px);
    font-style: normal;
    line-height: 1.3;
}

.journey-subtitle em {
    color: #916d40;
    font-style: italic;
}

.journey-intro {
    margin: 8px 0 0;
    color: #59464e;
    font-family: Georgia, serif;
    font-size: 15px;
    line-height: 1.7;
}

.neeraj-lotus {
    margin-bottom: 6px;
    font-size: 2rem;
    line-height: 1;
}

.journey-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 60px;
    width: 100%;
    max-width: none;
    margin: auto;
    padding: 0 clamp(20px, 4vw, 80px);
    box-sizing: border-box;
    align-items: start;
}

.journey-content {
    position: relative;
}

.origin-delhi-lines {
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: visible;
    pointer-events: none;
}

.origin-delhi-lines path {
    fill: none;
    stroke: rgba(134, 20, 82, .45);
    stroke-width: 1.5;
    stroke-dasharray: 2 8;
    stroke-linecap: round;
}

.origin-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: visible;
}

.origin-card {
    position: relative;
    overflow: hidden;
    min-height: 335px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(134, 20, 82, .13);
    box-shadow: 0 14px 35px rgba(56, 20, 38, .08);
    transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.origin-card:hover {
    transform: translateY(-8px);
    border-color: rgba(198, 161, 91, .65);
    box-shadow: 0 24px 45px rgba(56, 20, 38, .2), 0 0 0 3px rgba(198, 161, 91, .1);
}

.origin-image {
    position: relative;
    position: absolute;
    inset: 0;
    height: auto;
    overflow: hidden;
}

.origin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.origin-card:hover .origin-image img {
    transform: scale(1.12);
}

.origin-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(35, 5, 22, .78) 100%);
}

.origin-country {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    z-index: 3;
}

.country-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .95);
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    filter: none !important;
    overflow: hidden;
    padding: 0;
}

.country-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.origin-country strong {
    font-family: Georgia, serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.origin-content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 48px 17px 20px;
    text-align: center;
    background: linear-gradient(to top, rgba(35, 5, 22, .78), transparent);
}

.origin-content h4 {
    margin: 0;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(35, 5, 22, .55);
}

.origin-content p {
    display: none;
}

.journey-route {
    position: relative;
    z-index: 2;
    min-height: 650px;
    margin-top: 25px;
    padding-top: 20px;
}

.route-world {
    position: absolute;
    left: -80px;
    top: 80px;
    width: 190px;
    height: 190px;
    opacity: .8;
}

.world-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(134, 20, 82, .14);
    background: radial-gradient(circle at 40% 35%, rgba(134, 20, 82, .05), transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.world-map {
    color: rgba(134, 20, 82, .18);
    font-size: 80px;
    transform: rotate(30deg);
}

.route-plane {
    position: absolute;
    right: 10px;
    top: 100px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #861452;
    font-size: 25px;
    transform: rotate(15deg);
    animation: planeFloat 4s ease-in-out infinite;
}

@keyframes planeFloat {
    0%,
    100% {
        transform: translate(0, 0) rotate(15deg);
    }
    50% {
        transform: translate(8px, -7px) rotate(15deg);
    }
}

.destination-path {
    position: relative;
    width: min(650px, 80%);
    margin-left: auto;
    padding: 20px 0 0 90px;
}

.destination-path::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 140px;
    top: 92px;
    bottom: 92px;
    width: 1px;
    background: repeating-linear-gradient(to bottom, #861452 0, #861452 6px, transparent 6px, transparent 13px);
    opacity: .55;
}

.route-line {
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    z-index: 3;
}

.route-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #861452;
    border: 5px solid #f8f3ea;
    box-shadow: 0 0 0 1px rgba(134, 20, 82, .35), 0 8px 20px rgba(134, 20, 82, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ead7a7;
    font-size: 19px;
}

.india-label {
    position: absolute;
    left: 65px;
    top: 8px;
    color: #861452;
    font-family: Georgia, serif;
    font-size: 26px;
    letter-spacing: 2px;
}

.destination-row {
    position: relative;
    display: grid;
    grid-template-columns: 110px 30px 1fr 100px;
    align-items: center;
    min-height: 145px;
    gap: 18px;
}

.destination-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, .9);
    box-shadow: 0 7px 20px rgba(55, 20, 35, .13);
    z-index: 2;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-point {
    position: relative;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #f8f3ea;
    border: 3px solid #861452;
    z-index: 4;
}

.destination-point span {
    position: absolute;
    width: 5px;
    height: 5px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #861452;
}

.destination-copy {
    padding-left: 4px;
}

.destination-number {
    display: block;
    margin-bottom: 2px;
    color: #c6a15b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.destination-copy h3 {
    margin: 0;
    color: #861452;
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.destination-copy p {
    margin: 5px 0 0;
    color: #705d64;
    font-family: Georgia, serif;
    font-size: 13px;
    line-height: 1.5;
}

.destination-sketch {
    color: rgba(134, 20, 82, .16);
    font-size: 48px;
    text-align: center;
}

.destination-final {
    margin-top: 8px;
    min-height: 165px;
}

.destination-final .destination-image {
    border: 4px solid #c6a15b;
    box-shadow: 0 0 0 6px rgba(198, 161, 91, .10), 0 15px 30px rgba(134, 20, 82, .18);
}

.final-point {
    width: 24px;
    height: 24px;
    background: #861452;
    border: 4px solid #f8f3ea;
    box-shadow: 0 0 0 2px #c6a15b, 0 0 30px rgba(198, 161, 91, .45);
}

.final-point span {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    background: none;
    color: #ead7a7;
    font-size: 11px;
}

.neeraj-lotus {
    margin-bottom: 2px;
    color: #c6a15b;
    font-size: 20px;
}

.destination-final .destination-copy h3 {
    font-size: 28px;
    color: #4c092e;
}

.journey-quote {
    position: absolute;
    left: 15px;
    bottom: 40px;
    width: 300px;
    padding: 10px 20px 20px;
    color: #513b43;
}

.quote-mark {
    height: 35px;
    color: #861452;
    font-family: Georgia, serif;
    font-size: 75px;
    line-height: .8;
}

.journey-quote p {
    margin: 15px 0;
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.55;
}

.journey-quote em {
    color: #861452;
    font-weight: 600;
}

.quote-line {
    width: 65px;
    height: 1px;
    background: #c6a15b;
}

.rhythm-panel {
    position: relative;
    align-self: start;
    min-height: 0;
    border-radius: 25px;
    padding: 0;
    background: linear-gradient(145deg, rgba(134, 20, 82, .72), rgba(75, 9, 44, .66) 50%, rgba(33, 6, 22, .62));
    box-shadow: 0 22px 45px rgba(55, 5, 30, .14);
}

.rhythm-inner {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: hidden;
    padding: 50px 42px 35px;
    border-radius: 23px;
    background: radial-gradient(circle at 50% 20%, rgba(198, 161, 91, .12), transparent 35%), linear-gradient(160deg, rgba(105, 11, 63, .76), rgba(54, 7, 31, .72) 65%, rgba(30, 6, 21, .68));
}

.rhythm-inner::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(234, 215, 167, .22);
    border-radius: 17px;
    pointer-events: none;
}

.rhythm-top-decoration {
    position: relative;
    margin-bottom: 14px;
    color: #c6a15b;
    text-align: center;
    font-size: 19px;
}

.rhythm-kicker {
    position: relative;
    text-align: center;
    color: rgba(255, 255, 255, .68);
    font-size: 9px;
    letter-spacing: 4px;
    font-weight: 700;
}

.rhythm-inner h3 {
    position: relative;
    margin: 15px 0 45px;
    color: #f3e5c0;
    text-align: center;
    font-family: Georgia, serif;
    font-size: 38px;
    line-height: .95;
    letter-spacing: 3px;
}

.rhythm-inner h3 em {
    color: #fff;
    font-style: italic;
}

.rhythm-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    padding-left: 4px;
}

.rhythm-step::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 70px;
    height: 55px;
    border-left: 1px dashed rgba(234, 215, 167, .55);
}

.rhythm-step:last-of-type::before {
    display: none;
}

.rhythm-icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(234, 215, 167, .6);
    background: radial-gradient(circle, rgba(255, 255, 255, .07), rgba(255, 255, 255, .015));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.rhythm-text span {
    display: block;
    margin-bottom: 6px;
    color: #ead7a7;
    font-family: Georgia, serif;
    font-size: 17px;
    letter-spacing: 1px;
}

.rhythm-text p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-family: Georgia, serif;
    font-size: 13px;
    line-height: 1.55;
}

.rhythm-arrow {
    width: 64px;
    margin: 15px 0;
    color: #c6a15b;
    text-align: center;
    font-size: 22px;
}

.rhythm-neeraj .rhythm-icon {
    background: linear-gradient(145deg, rgba(198, 161, 91, .25), rgba(134, 20, 82, .15));
    box-shadow: 0 0 25px rgba(198, 161, 91, .13);
}

.rhythm-neeraj .rhythm-text span {
    color: #f3d68f;
}

.journey-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 55px;
    padding: 16px 19px;
    border: 1px solid #c6a15b;
    border-radius: 50px;
    color: #4c092e;
    background: linear-gradient(135deg, #ead19a, #c6a15b);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: transform .35s ease, box-shadow .35s ease;
}

.journey-cta span {
    font-size: 18px;
    line-height: 0;
}

.journey-cta:hover {
    color: #4c092e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(198, 161, 91, .25);
}

.experience-strip {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 80px;
    padding: 25px 40px;
    background: linear-gradient(110deg, #6c0c40, #861452, #650a3b);
    box-shadow: 0 -15px 35px rgba(50, 0, 25, .08);
}

.experience-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 35px;
    color: rgba(255, 255, 255, .9);
    font-size: 10px;
    letter-spacing: 1px;
}

.experience-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 24px;
    transform: translateY(-50%);
    background: rgba(234, 215, 167, .35);
}

.experience-icon {
    font-size: 20px;
}


/* container-fluid helper */

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.px-lg-5 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.text-center {
    text-align: center;
}

@media (max-width: 1300px) {
    .journey-main {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 35px;
    }
    .origin-grid {
        gap: 12px;
    }
    .origin-image {
        height: auto;
    }
    .destination-path {
        width: 85%;
    }
}

@media (max-width: 1100px) {
    .journey-main {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .origin-delhi-lines {
        display: none;
    }
    .rhythm-panel {
        min-height: auto;
    }
    .rhythm-inner {
        min-height: auto;
    }
    .journey-cta {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .neeraj-journey {
        padding-top: 75px;
    }
    .journey-header {
        margin-bottom: 45px;
    }
    .origin-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .origin-image {
        height: auto;
    }
    .route-world {
        display: none;
    }
    .destination-path {
        width: 100%;
        padding-left: 72px;
        padding-right: 10px;
    }
    .destination-path::before {
        left: 36px;
        top: 82px;
        bottom: 82px;
    }
    .route-line {
        left: 30px;
        transform: none;
    }
    .india-label {
        left: 55px;
        font-size: 20px;
    }
    .destination-row {
        grid-template-columns: 75px 20px 1fr;
        gap: 12px;
        min-height: 125px;
    }
    .destination-image {
        width: 72px;
        height: 72px;
    }
    .destination-sketch {
        display: none;
    }
    .journey-quote {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 20px;
        padding: 15px 30px;
        text-align: center;
    }
    .quote-line {
        margin: auto;
    }
    .experience-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .origin-grid {
        grid-template-columns: 1fr 1fr;
    }
    .origin-image {
        height: auto;
    }
    .experience-strip {
        grid-template-columns: 1fr;
    }
    .experience-item {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .origin-card {
        animation: journeyCardIn .8s both;
    }
    .origin-card:nth-child(1) {
        animation-delay: .05s;
    }
    .origin-card:nth-child(2) {
        animation-delay: .12s;
    }
    .origin-card:nth-child(3) {
        animation-delay: .19s;
    }
    .origin-card:nth-child(4) {
        animation-delay: .26s;
    }
    @keyframes journeyCardIn {
        from {
            opacity: 0;
            transform: translateY(25px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/* =========================================================
   WHY RISHIKESH
========================================================= */

.why-rishikesh {
    --wine: #861452;
    --wine-dark: #64103f;
    --cream: #f8f5ed;
    --cream-dark: #eee8db;
    --text: #252326;
    --muted: #625d5b;
    --gold: #a98a55;
    width: 100%;
    overflow: hidden;
    background: var(--cream);
    color: var(--text);
}


/* =========================================================
   MAIN SECTION
========================================================= */

.why-rishikesh-main {
    display: grid;
    grid-template-columns: 31% 69%;
    gap: 42px;
    padding: 38px 5.2% 18px;
    min-height: 615px;
    box-sizing: border-box;
}


/* =========================================================
   LEFT EDITORIAL CONTENT
========================================================= */

.why-intro {
    position: relative;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* =========================================================
   SECTION NUMBER
========================================================= */

.section-number {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--wine);
    white-space: nowrap;
}

.section-number span {
    font-size: 30px;
    line-height: 1;
}

.section-number i {
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(134, 20, 82, .45);
}

.section-number strong {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2.5px;
}


/* =========================================================
   ORNAMENT
========================================================= */

.title-ornament {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 290px;
    margin-top: 6px;
}

.title-ornament span {
    height: 1px;
    flex: 1;
    background: linear-gradient( to right, transparent, rgba(134, 20, 82, .6));
}

.title-ornament span:last-child {
    background: linear-gradient( to left, transparent, rgba(134, 20, 82, .6));
}

.title-ornament b {
    color: var(--gold);
    font-size: 19px;
    font-weight: 400;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.why-intro h2 {
    margin: 17px 0 20px;
    font-size: 44px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.5px;
    color: #252427;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    text-shadow: none;
    filter: none;
    transform: none;
}

.why-intro h2 em {
    display: block;
    margin-left: 2px;
    margin-top: 2px;
    color: var(--wine);
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    text-shadow: none;
    filter: none;
    transform: none;
}


/* =========================================================
   INTRO LINE
========================================================= */

.intro-line {
    width: 43px;
    height: 1px;
    margin: 2px 0 17px;
    background: var(--wine);
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.why-intro p {
    max-width: 465px;
    margin: 0 0 16px;
    color: #000;
    font-size: 16px;
    line-height: 1.48;
    letter-spacing: .05px;
}

.why-intro .intro-lead {
    color: #302d2f;
    margin-bottom: 18px;
}

.why-intro .intro-lead strong {
    display: block;
    font-weight: 700;
}


/* =========================================================
   EXPERIENCE CARDS
========================================================= */

.why-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 19px;
    align-items: stretch;
}


/* =========================================================
   CARD
========================================================= */

.why-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 11px;
    border: 1px solid rgba(117, 94, 72, .15);
    background: linear-gradient( 180deg, #fffdf8, #f7f2e8);
    box-shadow: 0 4px 15px rgba(46, 34, 24, .025);
    transition: transform .45s ease, box-shadow .45s ease;
}

.why-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 35px rgba(60, 36, 44, .12);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.why-card-image {
    position: relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
}

.why-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.why-card:hover .why-card-image img {
    transform: scale(1.07);
}

.why-card-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 75px;
    background: linear-gradient( to top, rgba(34, 21, 17, .18), transparent);
    pointer-events: none;
}


/* =========================================================
   CIRCULAR CARD ICON
========================================================= */

.card-icon {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--wine);
    border: 3px solid #f7f1e7;
    color: #fff;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(70, 10, 40, .18);
}

.card-icon span {
    font-size: 27px;
    line-height: 1;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.why-card-content {
    flex: 1;
    padding: 38px 18px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card-content h3 {
    margin: 0;
    color: var(--wine);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: .3px;
}

.card-line {
    width: 36px;
    height: 1px;
    margin: 13px 0 16px;
    background: var(--wine);
}

.why-card-content p {
    margin: 0;
    max-width: 190px;
    color: #000;
    font-size: 16px;
    line-height: 1.55;
}


/* =========================================================
   BOTTOM IMAGE SECTION
========================================================= */

.rishikesh-bottom {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url("images/banner-0.png");
    background-size: cover;
    background-position: center 57%;
}


/* =========================================================
   BOTTOM OVERLAY
========================================================= */

.bottom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(10, 14, 15, .62), rgba(10, 13, 14, .78));
}


/* =========================================================
   BOTTOM CONTENT
========================================================= */

.bottom-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 19px 5.2% 22px;
    color: white;
    text-align: center;
}


/* =========================================================
   BOTTOM HEADING
========================================================= */

.bottom-heading h3 {
    margin: 0;
    font-size: 38px;
    font-weight: 400;
    padding-bottom: 10px;
    line-height: 1.05;
    color: #f8f6f1;
}

.bottom-heading h4 {
    margin: 2px 0 0;
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: #f7f3ec;
}


/* =========================================================
   BOTTOM ORNAMENT
========================================================= */

.bottom-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 160px;
    margin: 12px auto 14px;
}

.bottom-ornament span {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .7);
}

.bottom-ornament b {
    color: #d9c28e;
    font-size: 18px;
    font-weight: 400;
}


/* =========================================================
   USP GRID
========================================================= */

.rishikesh-usps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: min(100%, 1500px);
    max-width: 1500px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.rishikesh-usp {
    position: relative;
    padding: 12px 24px 0;
    min-height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}


/* =========================================================
   USP DIVIDERS
========================================================= */

.rishikesh-usp:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18px;
    width: 1px;
    height: 58px;
    background: rgba(255, 255, 255, .35);
}


/* =========================================================
   USP ICONS
========================================================= */

.usp-icon {
    height: 35px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 37px;
    line-height: 1;
}

.usp-icon span {
    display: inline-block;
    transition: transform .35s ease, color .35s ease;
}

.rishikesh-usp:hover .usp-icon span {
    color: #d9c28e;
    transform: translateY(-3px) scale(1.08);
}


/* =========================================================
   USP TITLE
========================================================= */

.rishikesh-usp h5 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}


/* =========================================================
   USP DESCRIPTION
========================================================= */

.rishikesh-usp p {
    max-width: 155px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 9.5px;
    line-height: 1.35;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1400px) {
    .why-rishikesh-main {
        grid-template-columns: 30% 70%;
        gap: 30px;
        padding-left: 5%;
        padding-right: 5%;
    }
    .why-card-image {
        height: 310px;
    }
    .why-card-content {
        padding-left: 13px;
        padding-right: 13px;
    }
}

@media (max-width: 1150px) {
    .why-rishikesh-main {
        grid-template-columns: 1fr;
        padding: 55px 5% 45px;
    }
    .why-intro {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }
    .section-number {
        justify-content: center;
    }
    .title-ornament {
        margin-left: 0;
    }
    .why-intro h2 {
        font-size: 58px;
    }
    .why-intro p {
        max-width: 700px;
    }
    .why-cards {
        max-width: 1100px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 850px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .why-card-image {
        height: 300px;
    }
    .rishikesh-usps {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 20px;
    }
    .rishikesh-usp:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .why-rishikesh-main {
        padding: 45px 20px 35px;
    }
    .section-number span {
        font-size: 24px;
    }
    .section-number strong {
        font-size: 14px;
        letter-spacing: 1.8px;
    }
    .title-ornament {
        width: 220px;
    }
    .why-intro h2 {
        font-size: 46px;
        letter-spacing: -1.8px;
    }
    .why-intro p {
        font-size: 13px;
        line-height: 1.55;
    }
    .why-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .why-card-image {
        height: 235px;
    }
    .card-icon {
        width: 53px;
        height: 53px;
        bottom: -22px;
    }
    .why-card-content {
        padding: 32px 9px 20px;
    }
    .why-card-content h3 {
        font-size: 11px;
    }
    .why-card-content p {
        font-size: 10.5px;
        line-height: 1.45;
    }
    .card-line {
        margin: 10px 0 12px;
    }
    /* Bottom */
    .rishikesh-bottom {
        min-height: auto;
        background-position: center center;
    }
    .bottom-content {
        padding: 35px 18px;
    }
    .bottom-heading h3 {
        font-size: 27px;
    }
    .bottom-heading h4 {
        font-size: 19px;
    }
    .rishikesh-usps {
        grid-template-columns: 1fr 1fr;
        margin-top: 20px;
    }
    .rishikesh-usp {
        padding: 12px 8px;
    }
    .rishikesh-usp:not(:last-child)::after {
        display: none;
    }
    .rishikesh-usp h5 {
        font-size: 9px;
        text-align: center;
    }
    .rishikesh-usp p {
        font-size: 9px;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .why-cards {
        grid-template-columns: 1fr;
    }
    .why-card-image {
        height: 280px;
    }
    .why-card-content p {
        max-width: 240px;
    }
    .why-intro h2 {
        font-size: 40px;
    }
    .rishikesh-usps {
        grid-template-columns: 1fr;
    }
}


/* Sharper editorial heading rendering */

.why-intro h2,
.why-intro h2 em {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    text-shadow: none;
    filter: none;
}

.bottom-heading h3,
.bottom-heading h4,
.rishikesh-usp h5 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    text-shadow: none;
    filter: none;
}


/* =========================================================
   THE NEERAJ DIFFERENCE
   PRIMARY COLOR: #861452
========================================================= */

.neeraj-difference-section {
    --nd-primary: #861452;
    --nd-primary-dark: #5a0b37;
    --nd-cream: #f8f4ee;
    --nd-card: #fbf8f3;
    --nd-gold: #b99552;
    --nd-text: #282426;
    --nd-muted: #5d5658;
    --nd-white: #ffffff;
    width: 100%;
    background: var(--nd-cream);
    color: var(--nd-text);
    overflow: hidden;
}


/* =========================================================
   MAIN AREA
========================================================= */

.nd-main {
    position: relative;
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: 650px;
}


/* =========================================================
   LEFT INTRO
========================================================= */

.nd-intro {
    position: relative;
    z-index: 3;
    padding: 55px 45px 45px 8%;
    background: var(--nd-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   CURVED EDGE
========================================================= */

.nd-intro::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -8%;
    right: -80px;
    width: 160px;
    height: 116%;
    background: var(--nd-cream);
    border-radius: 50%;
}


/* =========================================================
   SECTION NUMBER
========================================================= */

.nd-section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 240px;
    margin-bottom: 20px;
    color: var(--nd-primary);
}

.nd-section-number span {
    width: 60px;
    height: 1px;
    background: var(--nd-gold);
}

.nd-section-number strong {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
}


/* =========================================================
   TITLE
========================================================= */

.nd-title {
    margin: 0;
    color: var(--nd-primary);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -2px;
    font-family: Georgia, "Times New Roman", serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    text-shadow: none;
}

.nd-title span {
    display: inline-block;
}


/* =========================================================
   DIVIDER
========================================================= */

.nd-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    margin: 18px 0 12px;
}

.nd-divider i {
    flex: 1;
    height: 1px;
    background: var(--nd-gold);
}

.nd-divider b {
    margin: 0 14px;
    color: var(--nd-gold);
    font-size: 20px;
    font-weight: 400;
}


/* =========================================================
   TAGLINE
========================================================= */

.nd-tagline {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--nd-text);
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.3;
    font-family: Georgia, "Times New Roman", serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}

.nd-tagline em {
    font-style: italic;
}

.nd-tagline strong {
    color: var(--nd-primary);
    font-weight: 500;
    font-style: italic;
}


/* =========================================================
   ORNAMENT
========================================================= */

.nd-ornament {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 180px;
    margin: 14px 0 28px;
}

.nd-ornament span {
    flex: 1;
    height: 1px;
    background: var(--nd-gold);
}

.nd-ornament b {
    color: var(--nd-gold);
    font-size: 23px;
    font-weight: 400;
}


/* =========================================================
   TOP PILLARS
========================================================= */

.nd-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 700px;
}


/* =========================================================
   PILLAR
========================================================= */

.nd-pillar {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(134, 20, 82, 0.25);
}

.nd-pillar:first-child {
    padding-left: 0;
}

.nd-pillar:last-child {
    padding-right: 0;
    border-right: 0;
}


/* =========================================================
   PILLAR ICON
========================================================= */

.nd-pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 12px;
}

.nd-pillar-icon svg {
    width: 58px;
    height: 58px;
    stroke: var(--nd-primary);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   PILLAR TITLE
========================================================= */

.nd-pillar h3 {
    margin: 0;
    color: var(--nd-primary);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.6px;
}


/* =========================================================
   SMALL GOLD LINE
========================================================= */

.nd-small-line {
    display: block;
    width: 35px;
    height: 1px;
    margin: 10px auto;
    background: var(--nd-gold);
}


/* =========================================================
   PILLAR TEXT
========================================================= */

.nd-pillar p {
    margin: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.nd-hero-image {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

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


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.nd-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(248, 244, 238, 0.25) 0%, rgba(248, 244, 238, 0) 25%);
    pointer-events: none;
}


/* =========================================================
   FACILITIES SECTION
========================================================= */

.nd-facilities {
    position: relative;
    z-index: 5;
    padding: 18px 2.5% 22px;
    background: var(--nd-cream);
}


/* =========================================================
   FACILITY GRID
========================================================= */

.nd-facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}


/* =========================================================
   FACILITY CARD
========================================================= */

.nd-facility-card {
    display: flex;
    min-height: 145px;
    overflow: hidden;
    background: var(--nd-card);
    border: 1px solid rgba(134, 20, 82, 0.10);
    border-radius: 13px;
    box-shadow: 0 5px 20px rgba(50, 25, 35, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.nd-facility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(50, 25, 35, 0.10);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.nd-card-image {
    flex: 0 0 44%;
    min-width: 44%;
    overflow: hidden;
}

.nd-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nd-facility-card:hover .nd-card-image img {
    transform: scale(1.05);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.nd-card-content {
    position: relative;
    flex: 1;
    padding: 17px 13px 15px 15px;
}


/* =========================================================
   CARD ICON
========================================================= */

.nd-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    margin-bottom: 8px;
    border-radius: 50%;
    background: var(--nd-primary);
}

.nd-card-icon svg {
    width: 25px;
    height: 25px;
    stroke: var(--nd-white);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CARD TITLE
========================================================= */

.nd-card-content h3 {
    margin: 0 0 8px;
    color: var(--nd-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.4px;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.nd-card-content p {
    margin: 0;
    color: #000;
    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.nd-bottom {
    position: relative;
    padding: 28px 20px 24px;
    text-align: center;
    background: var(--nd-primary);
    color: var(--nd-white);
    overflow: hidden;
}


/* =========================================================
   BOTTOM DECORATION
========================================================= */

.nd-bottom::before,
.nd-bottom::after {
    content: "";
    position: absolute;
    bottom: -65px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(185, 149, 82, 0.25);
    border-radius: 50%;
}

.nd-bottom::before {
    left: -90px;
}

.nd-bottom::after {
    right: -90px;
}


/* =========================================================
   BOTTOM FLOWER
========================================================= */

.nd-bottom-flower {
    position: relative;
    z-index: 2;
    margin-bottom: 7px;
    color: var(--nd-gold);
    font-size: 24px;
}


/* =========================================================
   BOTTOM TITLE
========================================================= */

.nd-bottom h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: clamp(18px, 2vw, 27px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 1px;
}


/* =========================================================
   BOTTOM SUBTITLE
========================================================= */

.nd-bottom p {
    position: relative;
    z-index: 2;
    margin: 7px 0 13px;
    color: #e2c687;
    font-size: 11px;
    letter-spacing: 2px;
}


/* =========================================================
   BOTTOM LINE
========================================================= */

.nd-bottom-decoration {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.nd-bottom-decoration span {
    width: 150px;
    height: 1px;
    background: var(--nd-gold);
}

.nd-bottom-decoration b {
    color: var(--nd-gold);
    font-size: 12px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {
    .nd-intro {
        padding-left: 5%;
        padding-right: 30px;
    }
    .nd-title {
        font-size: 58px;
    }
    .nd-pillars {
        max-width: 100%;
    }
    .nd-pillar {
        padding-left: 9px;
        padding-right: 9px;
    }
    .nd-facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .nd-main {
        grid-template-columns: 1fr;
    }
    .nd-intro {
        order: 2;
        padding: 55px 35px 45px;
        text-align: center;
    }
    .nd-section-number {
        margin-left: auto;
        margin-right: auto;
    }
    .nd-title {
        font-size: 55px;
    }
    .nd-divider,
    .nd-ornament {
        margin-left: auto;
        margin-right: auto;
    }
    .nd-pillars {
        margin: 0 auto;
    }
    .nd-hero-image {
        order: 1;
        min-height: 500px;
    }
    .nd-hero-image img {
        min-height: 500px;
    }
    .nd-intro::after {
        display: none;
    }
    .nd-facilities {
        padding-left: 3%;
        padding-right: 3%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .nd-intro {
        padding: 45px 20px 40px;
    }
    .nd-section-number {
        width: 190px;
        gap: 10px;
    }
    .nd-section-number span {
        width: 42px;
    }
    .nd-title {
        font-size: 31px;
        line-height: 0.98;
        letter-spacing: -1px;
    }
    .nd-tagline {
        font-size: 19px;
    }
    .nd-pillars {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }
    .nd-pillar {
        padding: 0 12px;
        border-right: 1px solid rgba(134, 20, 82, 0.20);
    }
    .nd-pillar:nth-child(2),
    .nd-pillar:nth-child(4) {
        border-right: none;
    }
    .nd-pillar:nth-child(1),
    .nd-pillar:nth-child(2) {
        padding-bottom: 22px;
        border-bottom: 1px solid rgba(134, 20, 82, 0.15);
    }
    .nd-pillar:first-child {
        padding-left: 5px;
    }
    .nd-pillar:last-child {
        padding-right: 5px;
    }
    .nd-pillar-icon {
        width: 52px;
        height: 52px;
    }
    .nd-pillar-icon svg {
        width: 50px;
        height: 50px;
    }
    .nd-pillar h3 {
        font-size: 13px;
    }
    .nd-pillar p {
        font-size: 9px;
    }
    .nd-hero-image {
        min-height: 420px;
    }
    .nd-hero-image img {
        min-height: 420px;
    }
    .nd-facilities {
        padding: 12px 14px 18px;
    }
    .nd-facilities-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .nd-facility-card {
        min-height: 145px;
    }
    .nd-card-image {
        flex-basis: 42%;
        min-width: 42%;
    }
    .nd-card-content {
        padding: 15px 13px;
    }
    .nd-card-content h3 {
        font-size: 11px;
    }
    .nd-card-content p {
        font-size: 9px;
    }
    .nd-bottom {
        padding: 25px 15px 22px;
    }
    .nd-bottom h3 {
        font-size: 17px;
    }
    .nd-bottom p {
        font-size: 9px;
        letter-spacing: 1.4px;
    }
    .nd-bottom-decoration span {
        width: 55px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
    .nd-title {
        font-size: 36px;
    }
    .nd-tagline {
        font-size: 17px;
    }
    .nd-hero-image,
    .nd-hero-image img {
        min-height: 360px;
    }
    .nd-card-image {
        flex-basis: 40%;
        min-width: 40%;
    }
}

.wellness-therapies-section {
    --primary: #861452;
    --dark-green: #233f31;
    --cream: #f8f1e8;
    --text: #252525;
    --light-border: #ded5ca;
    background: #f8f1e8;
    padding: 70px 20px;
    width: 100%;
}

.wellness-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}


/* ================================
       HEADING
    ================================= */

.wellness-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 35px;
}

.wellness-heading h2 {
    margin: 0;
    color: var(--primary);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.wellness-heading p {
    width: 100%;
    margin: -8px 0 0;
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .2px;
}

.heading-line {
    width: 75px;
    height: 1px;
    background: var(--primary);
    position: relative;
}

.heading-line::after {
    content: "◇";
    position: absolute;
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
    background: var(--cream);
    color: var(--primary);
    padding: 0 5px;
    font-size: 10px;
}


/* ================================
       THERAPY GRID
    ================================= */

.therapy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 55px;
}

.therapy-card {
    background: #fbf7f1;
    border: 1px solid var(--light-border);
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.therapy-image {
    height: 210px;
    position: relative;
    overflow: hidden;
}

.therapy-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.therapy-icon {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    border: 2px solid #f8f1e8;
}

.therapy-content {
    text-align: center;
    padding: 17px 20px 22px;
}

.therapy-content h3 {
    margin: 0 0 3px;
    color: var(--dark-green);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: .5px;
}

.therapy-content span {
    display: block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 9px;
}

.therapy-content p {
    margin: 0 auto;
    max-width: 310px;
    color: #000;
    font-size: 15px;
    line-height: 1.55;
}


/* ================================
       BEYOND THERAPY
    ================================= */

.beyond-heading {
    margin-bottom: 28px;
}

.beyond-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.beyond-item {
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid #d9d0c5;
}

.beyond-item:last-child {
    border-right: 0;
}

.beyond-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 9px;
    border: 1px solid var(--dark-green);
    border-radius: 50%;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.beyond-item h3 {
    min-height: 38px;
    margin: 0 0 12px;
    color: var(--dark-green);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: .3px;
}

.beyond-item h3 small {
    font-size: 13px;
    font-weight: 500;
}

.beyond-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
    border-radius: 0;
}

.beyond-item p {
    margin: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.5;
}


/* ================================
       TABLET
    ================================= */

@media (max-width: 991px) {
    .therapy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .beyond-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 30px;
    }
    .beyond-item:nth-child(3) {
        border-right: 0;
    }
    .beyond-item:nth-child(4) {
        border-top: 1px solid #d9d0c5;
        padding-top: 25px;
    }
    .beyond-item:nth-child(5) {
        border-top: 1px solid #d9d0c5;
        padding-top: 25px;
    }
    .beyond-item:nth-child(6) {
        border-top: 1px solid #d9d0c5;
        padding-top: 25px;
    }
}


/* ================================
       MOBILE
    ================================= */

@media (max-width: 767px) {
    .wellness-therapies-section {
        padding: 50px 15px;
    }
    .wellness-heading h2 {
        font-size: 22px;
    }
    .heading-line {
        width: 45px;
    }
    .therapy-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .therapy-image {
        height: 210px;
    }
    .therapy-content {
        padding: 15px 18px 20px;
    }
    .therapy-content h3 {
        font-size: 16px;
    }
    .therapy-content p {
        font-size: 12px;
    }
    .beyond-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }
    .beyond-item {
        border-right: 1px solid #d9d0c5;
    }
    .beyond-item:nth-child(2n) {
        border-right: 0;
    }
    .beyond-item:nth-child(n+3) {
        border-top: 1px solid #d9d0c5;
        padding-top: 25px;
    }
    .beyond-item img {
        height: 115px;
    }
    .beyond-item p {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .wellness-heading {
        gap: 10px;
    }
    .wellness-heading h2 {
        font-size: 19px;
    }
    .heading-line {
        width: 30px;
    }
    .therapy-image {
        height: 190px;
    }
    .beyond-grid {
        grid-template-columns: 1fr 1fr;
    }
    .beyond-item {
        padding-left: 7px;
        padding-right: 7px;
    }
}


/* =========================================
       WHAT WILL YOU TAKE HOME
    ========================================= */

.take-home-section {
    width: 100%;
    padding: 30px 20px 45px;
    background: #f8f2e9;
    color: #202c25;
}

.take-home-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/* =========================================
       MAIN GRID
    ========================================= */

.take-home-grid {
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: stretch;
    min-height: 690px;
}


/* =========================================
       LEFT IMAGE
    ========================================= */

.take-home-image {
    width: 100%;
    height: 100%;
    min-height: 690px;
    overflow: hidden;
}

.take-home-image img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* =========================================
       RIGHT CONTENT
    ========================================= */

.take-home-content {
    padding: 20px 65px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #f8f2e9;
}


/* =========================================
       HEADING
    ========================================= */

.take-home-heading {
    text-align: center;
    margin-bottom: 25px;
}

.lotus-symbol {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #861452;
    font-size: 35px;
    line-height: 1;
}

.take-home-heading h2 {
    margin: 0;
    color: #861452;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 1px;
}


/* =========================================
       HEADING DECORATION
    ========================================= */

.heading-decoration {
    width: 320px;
    max-width: 80%;
    margin: 17px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.heading-decoration span {
    height: 1px;
    flex: 1;
    background: #861452;
    opacity: .65;
}

.heading-decoration i {
    font-style: normal;
    color: #861452;
    font-size: 13px;
}


/* =========================================
       SUB HEADING
    ========================================= */

.take-home-heading h4 {
    margin: 0;
    color: #203b2e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(17px, 1.5vw, 23px);
    font-weight: 400;
    line-height: 1.4;
}


/* =========================================
       TAKEAWAY LIST
    ========================================= */

.takeaway-list {
    width: 100%;
    margin-top: 8px;
}


/* =========================================
       EACH TAKEAWAY
    ========================================= */

.takeaway-item {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(134, 20, 82, .16);
}

.takeaway-item:first-child {
    border-top: 1px solid rgba(134, 20, 82, .16);
}


/* =========================================
       ICON
    ========================================= */

.takeaway-icon {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    margin-right: 25px;
    border: 1px solid rgba(134, 20, 82, .18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #861452;
    background: rgba(255, 255, 255, .15);
}

.takeaway-icon span {
    font-size: 28px;
    line-height: 1;
    font-weight: 300;
}


/* =========================================
       TEXT
    ========================================= */

.takeaway-text {
    flex: 1;
}

.takeaway-text h3 {
    margin: 0 0 6px;
    color: #18382b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(17px, 1.45vw, 24px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .4px;
}

.takeaway-text p {
    margin: 0;
    color: #242424;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}


/* =========================================
       BOTTOM MESSAGE
    ========================================= */

.take-home-message {
    width: 100%;
    margin: 30px 0 0;
    min-height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid rgba(134, 20, 82, .10);
    background: rgba(255, 255, 255, .18);
    text-align: center;
}

.message-lotus {
    color: #861452;
    font-size: 27px;
    line-height: 1;
}

.take-home-message p {
    margin: 0;
    color: #861452;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2vw, 31px);
    font-weight: 400;
    line-height: 1.3;
}

.take-home-message p::after {
    content: "”";
    margin-left: 3px;
}


/* =========================================
       HOVER
    ========================================= */

.takeaway-item {
    transition: padding-left .3s ease;
}

.takeaway-item:hover {
    padding-left: 8px;
}

.takeaway-item:hover .takeaway-icon {
    background: rgba(134, 20, 82, .06);
}

.takeaway-icon {
    transition: background .3s ease, transform .3s ease;
}

.takeaway-item:hover .takeaway-icon {
    transform: scale(1.04);
}


/* =========================================
       TABLET
    ========================================= */

@media (max-width: 1100px) {
    .take-home-grid {
        grid-template-columns: 43% 57%;
        min-height: 620px;
    }
    .take-home-image {
        min-height: 620px;
    }
    .take-home-content {
        padding: 30px 35px;
    }
    .takeaway-icon {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
        margin-right: 18px;
    }
    .takeaway-icon span {
        font-size: 24px;
    }
    .takeaway-item {
        padding: 14px 0;
    }
}


/* =========================================
       MOBILE
    ========================================= */

@media (max-width: 767px) {
    .take-home-section {
        padding: 45px 15px 30px;
    }
    .take-home-grid {
        display: block;
        min-height: auto;
    }
    .take-home-image {
        width: 100%;
        height: 420px;
        min-height: 0;
    }
    .take-home-content {
        padding: 45px 15px 10px;
    }
    .take-home-heading {
        margin-bottom: 25px;
    }
    .take-home-heading h2 {
        font-size: 27px;
    }
    .take-home-heading h4 {
        font-size: 17px;
    }
    .heading-decoration {
        width: 220px;
    }
    .takeaway-item {
        padding: 16px 0;
        align-items: flex-start;
    }
    .takeaway-icon {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        margin-right: 15px;
    }
    .takeaway-icon span {
        font-size: 21px;
    }
    .takeaway-text h3 {
        font-size: 17px;
    }
    .takeaway-text p {
        font-size: 12px;
    }
    .take-home-message {
        margin-top: 20px;
        padding: 22px 15px;
        min-height: auto;
    }
    .take-home-message p {
        font-size: 20px;
    }
}


/* =========================================
       SMALL MOBILE
    ========================================= */

@media (max-width: 480px) {
    .take-home-image {
        height: 350px;
    }
    .take-home-content {
        padding-left: 5px;
        padding-right: 5px;
    }
    .take-home-heading h2 {
        font-size: 23px;
    }
    .take-home-heading h4 {
        font-size: 15px;
    }
    .takeaway-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    .takeaway-icon span {
        font-size: 18px;
    }
    .takeaway-text h3 {
        font-size: 15px;
    }
    .takeaway-text p {
        font-size: 11px;
    }
    .take-home-message p {
        font-size: 17px;
    }
}


/* Google-style review cards */

.video-testimonials {
    padding: 58px 4% 42px;
    background: #f6f0e6;
    text-align: center;
}

.video-testimonials h2 {
    margin: 0 0 28px;
    color: #861452;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 400;
}

.video-testimonials__grid {
    max-width: 1248px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.video-testimonial-card {
    overflow: hidden;
    border-radius: 14px;
    background: #21151b;
    box-shadow: 0 8px 22px rgba(50, 20, 35, .12);
}

.video-testimonial-card video {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.google-testimonials {
    padding: 28px 4% 52px;
    background: #fff;
    text-align: center;
}

.google-testimonials h2 {
    margin: 0 0 28px;
    color: #861452;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 400;
}

.google-testimonials__viewport {
    max-width: 1248px;
    margin: 0 auto;
    overflow: hidden;
}

.google-testimonials__track {
    display: flex;
    gap: 16px;
    text-align: left;
    transition: transform .45s ease;
    will-change: transform;
}

.google-testimonials__track .google-review-card {
    flex: 0 0 calc((100% - 48px) / 4);
}

.google-testimonials__controls {
    max-width: 1248px;
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    gap: 14px;
    margin: 18px auto 0;
}

.google-testimonials__button {
    width: 36px;
    height: 36px;
    border: 1px solid #e1e1e1;
    border-radius: 50%;
    color: #666;
    background: #fff;
    cursor: pointer;
    font-size: 27px;
    line-height: 1;
}

.google-testimonials__button:hover {
    color: #861452;
    border-color: #861452;
}

.google-testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 7px;
}

.google-testimonials__dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d1d1d1;
    cursor: pointer;
}

.google-testimonials__dots button.is-active {
    background: #861452;
}

.google-review-card {
    min-height: 233px;
    padding: 20px;
    border-radius: 13px;
    background: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.google-review-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #78909c;
    font-size: 20px;
}

.review-avatar--green {
    background: #2e6b20;
}

.review-avatar--purple {
    background: #7920a1;
}

.review-avatar--photo {
    background: linear-gradient(135deg, #c9d8dc, #4c5a4f);
}

.review-avatar--orange {
    background: #d87822;
}

.review-avatar--blue {
    background: #3377b5;
}

.review-avatar--red {
    background: #bd4545;
}

.review-avatar--teal {
    background: #208c83;
}

.review-avatar--pink {
    background: #c34b83;
}

.review-avatar--navy {
    background: #344c79;
}

.reviewer-info {
    min-width: 0;
    flex: 1;
}

.reviewer-info h3 {
    overflow: hidden;
    margin: 0 0 3px;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reviewer-info span {
    color: #777;
    font-size: 13px;
}

.google-logo {
    flex: 0 0 auto;
    font-size: 22px;
    font-weight: 700;
    background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 25% 45%, #fbbc05 45% 68%, #ea4335 68% 85%, #4285f4 85%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.review-rating {
    margin: 12px 0 8px;
    color: #fbbc04;
    font-size: 20px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.review-rating i {
    color: #c9c9c9;
    font-style: normal;
}

.review-rating span {
    display: inline-grid;
    width: 14px;
    height: 14px;
    margin-left: 4px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #4285f4;
    font-size: 9px;
    letter-spacing: 0;
    vertical-align: 2px;
}

.google-review-card p {
    margin: 0;
    color: #111;
    font-size: 15px;
    line-height: 1.42;
}

@media(max-width:768px) {
    .video-testimonials {
        padding: 42px 15px 32px;
    }
    .video-testimonials__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .video-testimonial-card video {
        height: 400px;
    }
    .google-testimonials {
        padding: 40px 15px;
    }
    .google-testimonials h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .google-testimonials__track .google-review-card {
        flex-basis: calc((100% - 16px) / 2);
    }
}

@media(max-width:520px) {
    .video-testimonials__grid {
        grid-template-columns: 1fr;
    }
    .video-testimonial-card video {
        height: 500px;
    }
    .google-testimonials__track .google-review-card {
        flex-basis: 100%;
    }
}


/* Service enquiry section */

.service-enquiry {
    padding: 100px 5%;
    background: #fbf8f5;
    position: relative;
    overflow: hidden;
}

.service-enquiry::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(134, 20, 82, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.service-enquiry__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 40px 80px rgba(134, 20, 82, 0.08), 0 10px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
}

.service-enquiry__form-wrap {
    padding: 72px clamp(32px, 6vw, 80px);
    background: #ffffff;
}

.service-enquiry__eyebrow {
    margin: 0 0 12px;
    color: #861452;
    font-family: Manrope, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.service-enquiry h2 {
    margin: 0 0 40px;
    color: #2b111f;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.15;
}

.service-enquiry__form {
    display: grid;
    gap: 24px;
}

.service-enquiry__field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-enquiry label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #4a2738;
    font-family: Manrope, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.service-enquiry input,
.service-enquiry select,
.service-enquiry textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ebdbe2;
    border-radius: 12px;
    outline: 0;
    padding: 16px 20px;
    color: #202020;
    background: #faf6f8;
    font: 400 15px/1.5 Manrope, Arial, sans-serif;
    transition: all .3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-enquiry textarea {
    resize: vertical;
    min-height: 130px;
}

.service-enquiry input::placeholder,
.service-enquiry textarea::placeholder {
    color: #a38c97;
    font-weight: 400;
}

.service-enquiry input:focus,
.service-enquiry select:focus,
.service-enquiry textarea:focus {
    border-color: #861452;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(134, 20, 82, 0.08), 0 0 0 4px rgba(134, 20, 82, 0.05);
}

.service-enquiry select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23861452%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 20px top 50%;
    background-size: 12px auto;
    cursor: pointer;
    color: #4a2738;
}

.service-enquiry select:invalid {
    color: #a38c97;
}

.service-enquiry__submit {
    justify-self: start;
    margin-top: 12px;
    border: 0;
    border-radius: 50px;
    padding: 18px 44px;
    color: #fff;
    background: linear-gradient(135deg, #861452 0%, #5c0b36 100%);
    cursor: pointer;
    font: 700 13px Manrope, Arial, sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(134, 20, 82, 0.3);
}

.service-enquiry__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(134, 20, 82, 0.4);
    background: linear-gradient(135deg, #99165d 0%, #6f0d41 100%);
}

.service-enquiry__submit:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(134, 20, 82, 0.3);
}

.service-enquiry__status {
    min-height: 18px;
    margin: 0;
    color: #2e6b20;
    font: 500 13px Manrope, Arial, sans-serif;
}

.service-enquiry__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px clamp(32px, 5vw, 64px);
    background: linear-gradient(135deg, #861452 0%, #5c0b36 100%);
    text-align: center;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.service-enquiry__content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%), radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.service-enquiry__content .service-enquiry__eyebrow {
    color: #e5cd9e;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    letter-spacing: 2.5px;
}

.service-enquiry__logo {
    width: min(240px, 85%);
    height: auto;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    transform: scale(1.05);
}

.service-enquiry__content h2 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(34px, 3.5vw, 46px);
    position: relative;
    z-index: 1;
}

.service-enquiry__content>p:not(.service-enquiry__eyebrow) {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font: 400 16px/1.8 Manrope, Arial, sans-serif;
    position: relative;
    z-index: 1;
}

.service-enquiry__ornament {
    margin-top: 40px;
    color: #e5cd9e;
    font-size: 24px;
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .service-enquiry {
        padding: 60px 20px;
    }
    .service-enquiry__inner {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }
    .service-enquiry__content {
        order: -1;
        padding: 56px 32px;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }
    .service-enquiry__form-wrap {
        padding: 48px 32px;
    }
}

@media (max-width: 480px) {
    .service-enquiry__field-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .service-enquiry__form-wrap {
        padding: 40px 24px;
    }
    .service-enquiry__content {
        padding: 48px 24px;
    }
}


/* Mobile header and the section directly below the hero */

@media (max-width: 700px) {
    .nav {
        padding: 8px 0;
        background: transparent;
    }
    .nav.is-scrolled {
        padding: 6px 0;
        background: rgba(23, 10, 16, .72);
    }
    .nav__inner {
        padding: 0 18px;
        gap: 12px;
    }
    .nav__logo,
    .nav.is-scrolled .nav__logo {
        width: auto;
        height: 100px;
    }
    .nav__burger {
        width: 28px;
        height: 28px;
        justify-content: center;
        gap: 5px;
        padding: 0;
    }
    .nav__burger span {
        width: 25px;
        height: 2px;
    }
    .hero {
        min-height: 100svh;
    }
    .hero__content {
        padding: 9rem 1.25rem 5.5rem;
    }
    .neeraj-journey {
        padding-top: 82px;
    }
    .container-fluid.px-lg-5 {
        padding-left: 0;
        padding-right: 0;
    }
    .journey-main {
        width: 100%;
        padding: 0 12px;
    }
    .journey-content {
        width: 100%;
        min-width: 0;
    }
    .origin-grid {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .origin-card,
    .origin-image {
        min-width: 0;
        width: 100%;
    }
    .journey-title {
        font-size: clamp(30px, 9vw, 40px);
        line-height: 1.05;
        letter-spacing: 1px;
    }
    .journey-header {
        margin-bottom: 34px;
    }
    /* Keep the experience-card icon visible between image and copy. */
    .why-card {
        overflow: visible;
    }
    .why-card-image {
        overflow: visible;
        border-radius: 11px 11px 0 0;
    }
    .why-card-image img {
        overflow: hidden;
        border-radius: 11px 11px 0 0;
    }
    .why-card-content {
        position: relative;
        z-index: 1;
        padding: 38px 12px 22px;
    }
    .why-card-content h3 {
        font-size: 13px;
        line-height: 1.3;
    }
    .why-card-content p {
        font-size: 12px;
        line-height: 1.5;
    }
    .card-icon {
        bottom: -25px;
        width: 56px;
        height: 56px;
        z-index: 6;
    }
    .card-icon span {
        font-size: 25px;
    }
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: linear-gradient(to bottom, rgba(21, 11, 16, 0.85) 0%, rgba(21, 11, 16, 0.95) 100%), url('images/rajmahal-building.png') no-repeat center center / cover;
    color: #fbf8f5;
    padding: 80px 5% 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(229, 205, 158, 0.4), transparent);
}

.site-footer__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer__logo-wrap {
    margin-bottom: 48px;
    position: relative;
}

.site-footer__logo-wrap::after {
    content: '✦';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    color: #861452;
    font-size: 14px;
    opacity: 0.7;
}

.site-footer__logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 56px;
}

.site-footer__links a {
    color: #e5cd9e;
    text-decoration: none;
    font-family: Manrope, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.site-footer__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #e5cd9e;
    transition: width 0.3s ease;
}

.site-footer__links a:hover {
    color: #ffffff;
}

.site-footer__links a:hover::after {
    width: 100%;
}

.site-footer__contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 64px;
}

.site-footer__contact p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Manrope, Arial, sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.site-footer__contact p svg {
    color: #861452;
    opacity: 0.9;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #e5cd9e;
}

.site-footer__bottom {
    width: 100%;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: Manrope, Arial, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .site-footer__contact {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 60px 5% 30px;
    }
    .site-footer__links {
        gap: 24px;
        flex-direction: column;
    }
    .site-footer__logo {
        width: 160px;
    }
}


/* =========================================
   WELLNESS PACKAGES SECTION
========================================= */

.wellness-packages-section {
    position: relative;
    padding: 105px 0 90px;
    background: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

.wellness-packages-section>.container {
    position: relative;
    width: min(100% - 48px, 1500px);
    margin: 0 auto;
}


/* Background Image */

.wellness-packages-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/wellness-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18;
    z-index: -2;
}


/* White overlay */

.wellness-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 40%, rgba(255, 255, 255, 0.96) 100%);
    z-index: -1;
}


/* =========================================
   HEADING
========================================= */

.wellness-heading {
    max-width: 900px;
    margin: 0 auto 55px;
}

.wellness-eyebrow {
    display: inline-block;
    position: relative;
    color: #861452;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.wellness-eyebrow::before,
.wellness-eyebrow::after {
    content: "";
    display: inline-block;
    width: 45px;
    height: 1px;
    background: #c79a42;
    vertical-align: middle;
    margin: 0 15px;
}

.wellness-heading h2 {
    margin: 0;
    color: #861452;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.wellness-heading p {
    max-width: 720px;
    margin: 22px auto 0;
    color: #4e4549;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   PACKAGES GRID
========================================= */

.wellness-packages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: stretch;
}


/* =========================================
   CARD
========================================= */

.wellness-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 610px;
    padding: 48px 25px 25px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(134, 20, 82, 0.20);
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(61, 20, 45, 0.08);
    transition: all 0.4s ease;
}

.wellness-card:hover {
    transform: translateY(-12px);
    border-color: #861452;
    box-shadow: 0 25px 55px rgba(134, 20, 82, 0.18);
}


/* Featured */

.wellness-card-featured {
    border: 2px solid #861452;
    box-shadow: 0 20px 55px rgba(134, 20, 82, 0.16);
}


/* =========================================
   ICON
========================================= */

.wellness-icon {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #861452;
    border: 3px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(134, 20, 82, 0.25);
    transition: all 0.4s ease;
}

.wellness-card:hover .wellness-icon {
    transform: translateX(-50%) rotate(8deg) scale(1.08);
}


/* =========================================
   DAYS
========================================= */

.wellness-days {
    text-align: center;
    margin-top: 8px;
}

.wellness-days strong {
    display: block;
    color: #861452;
    font-size: 52px;
    line-height: 0.9;
    font-weight: 500;
}

.wellness-days span {
    display: block;
    margin-top: 8px;
    color: #861452;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}


/* =========================================
   DECORATIVE LINE
========================================= */

.wellness-line {
    width: 70px;
    height: 1px;
    margin: 18px auto;
    background: #c79a42;
    position: relative;
}

.wellness-line::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #c79a42;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}


/* =========================================
   CARD CONTENT
========================================= */

.wellness-card h3 {
    min-height: 52px;
    margin: 0 0 12px;
    color: #861452;
    text-align: center;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 600;
}

.wellness-card>p {
    min-height: 92px;
    margin: 0;
    color: #5b5357;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   LIST
========================================= */

.wellness-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 25px;
}

.wellness-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 12px;
    color: #403a3d;
    font-size: 13px;
    line-height: 1.4;
}

.wellness-card ul li i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #861452;
    font-size: 13px;
}


/* =========================================
   BUTTON
========================================= */

.wellness-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 13px 15px;
    border-radius: 8px;
    background: #861452;
    color: #ffffff !important;
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
}

.wellness-btn i {
    transition: transform 0.3s ease;
}

.wellness-btn:hover {
    background: #6d103f;
    color: #ffffff !important;
}

.wellness-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   CANCER CARD
========================================= */

.wellness-cancer-card {
    border-color: rgba(199, 154, 66, 0.45);
}

.wellness-cancer-card .wellness-icon {
    background: #861452;
}

.wellness-cancer-title {
    text-align: center;
    margin-top: 12px;
    min-height: 76px;
}

.wellness-cancer-title strong,
.wellness-cancer-title span {
    display: block;
    color: #861452;
}

.wellness-cancer-title strong {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
}

.wellness-cancer-title span {
    margin-top: 3px;
    font-size: 17px;
    letter-spacing: 2px;
}


/* =========================================
   BOTTOM BENEFITS
========================================= */

.wellness-benefits {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 55px auto 0;
    padding: 25px 35px;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(134, 20, 82, 0.18);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(61, 20, 45, 0.08);
}

.wellness-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border-right: 1px solid rgba(134, 20, 82, 0.15);
}

.wellness-benefit:last-child {
    border-right: 0;
}

.wellness-benefit i {
    color: #861452;
    font-size: 25px;
}

.wellness-benefit span {
    color: #4a4145;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {
    .wellness-packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    .wellness-card {
        min-height: 590px;
    }
    .wellness-benefits {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 25px;
    }
    .wellness-benefit:nth-child(3) {
        border-right: 0;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .wellness-packages-section {
        padding: 105px 0 60px;
    }
    .wellness-packages-section>.container {
        width: min(100% - 30px, 560px);
    }
    .wellness-heading {
        margin-bottom: 45px;
        padding: 0 15px;
    }
    .wellness-eyebrow {
        font-size: 11px;
        letter-spacing: 2.5px;
    }
    .wellness-eyebrow::before,
    .wellness-eyebrow::after {
        width: 25px;
        margin: 0 8px;
    }
    .wellness-heading h2 {
        font-size: 38px;
        line-height: 1.15;
    }
    .wellness-heading p {
        font-size: 14px;
        line-height: 1.7;
    }
    .wellness-packages-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 0;
    }
    .wellness-card {
        min-height: auto;
        padding: 50px 25px 25px;
    }
    .wellness-card>p {
        min-height: auto;
    }
    .wellness-card h3 {
        min-height: auto;
    }
    .wellness-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 45px 15px 0;
        padding: 25px 20px;
    }
    .wellness-benefit {
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid rgba(134, 20, 82, 0.12);
        padding: 0 0 18px;
    }
    .wellness-benefit:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
    .wellness-heading h2 {
        font-size: 32px;
    }
    .wellness-card {
        padding-left: 20px;
        padding-right: 20px;
    }
    .wellness-days strong {
        font-size: 58px;
    }
}


/* Large Mac / desktop typography */

@media (min-width: 1440px) {
    .nav__inner {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .nav__links a,
    .nav__cta {
        font-size: 17px;
    }
    .hero__content {
        padding-left: 6rem;
    }
    .hero__sub {
        max-width: 680px;
        font-size: 1.2rem;
    }
    .journey-title {
        font-size: 52px;
    }
    .journey-subtitle {
        font-size: 26px;
    }
    .journey-intro,
    .origin-country strong,
    .why-intro p {
        font-size: 18px;
    }
    .why-intro h2 {
        font-size: 42px;
    }
    .why-card-content h3 {
        font-size: 18px;
    }
    .why-card-content p {
        font-size: 15px;
    }
    .nd-title {
        font-size: 58px;
    }
    .nd-tagline {
        font-size: 30px;
    }
    .nd-pillar h3 {
        font-size: 19px;
    }
    .nd-pillar p,
    .nd-card-content p {
        font-size: 15px;
    }
    .nd-card-content h3 {
        font-size: 16px;
    }
    .wellness-heading h2 {
        font-size: 72px;
    }
    .wellness-heading p {
        font-size: 20px;
    }
    .wellness-eyebrow {
        font-size: 16px;
    }
    .wellness-card h3 {
        font-size: 20px;
    }
    .wellness-card>p,
    .wellness-card ul li {
        font-size: 15px;
    }
    .take-home-heading h2 {
        font-size: 48px;
    }
    .take-home-heading h4 {
        font-size: 25px;
    }
    .google-review-card p,
    .service-enquiry__content>p:not(.service-enquiry__eyebrow) {
        font-size: 16px;
    }
    .service-enquiry label,
    .service-enquiry input,
    .service-enquiry select,
    .service-enquiry textarea {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .wellness-heading {
        width: 100%;
        max-width: 900px;
        padding: 0 20px;
        box-sizing: border-box;
        text-align: center;
    }

    .wellness-heading h2 {
        width: 100%;
        font-size: 45px;
        font-family: Georgia, "Times New Roman", serif;
        font-weight: 500;
        line-height: 1.15;
        letter-spacing: 0;
        text-shadow: none;
        transform: none;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        overflow-wrap: normal;
    }

    .wellness-heading p {
        width: min(100%, 720px);
        box-sizing: border-box;
        overflow-wrap: break-word;
    }
}
