/* ================================================
   VAIDYAGRAM — Premium Ayurvedic Retreat
   Modern Design System
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
    --clr-forest: #0f2d1e;
    --clr-emerald: #1a5632;
    --clr-sage: #5a7a5e;
    --clr-gold: #c9a84c;
    --clr-gold-light: #e8d9a0;
    --clr-turmeric: #d4882a;
    --clr-cream: #faf7f0;
    --clr-parchment: #f0e8d8;
    --clr-white: #ffffff;
    --clr-dark: #111111;
    --clr-text: #2c2c2c;
    --clr-muted: #7a7a7a;

    --ff-heading: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Inter', system-ui, sans-serif;

    --fs-hero: clamp(3rem, 7vw, 5.5rem);
    --fs-h2: clamp(2rem, 4vw, 3.2rem);
    --fs-h3: clamp(1.3rem, 2.5vw, 1.75rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, .06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .08);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, .12);
    --shadow-gold: 0 8px 30px rgba(201, 168, 76, .25);

    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
    --transition: .4s var(--ease-out);

    --container: 1200px;
    --gap: 30px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--ff-body);
    background: var(--clr-cream);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--ff-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--clr-forest)
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

button {
    font-family: var(--ff-body);
    cursor: pointer;
    border: none;
    outline: none
}

input,
select,
textarea {
    font-family: var(--ff-body)
}

/* ---------- Utilities ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px
}

.section-pad {
    padding: 100px 0
}

.text-center {
    text-align: center
}

/* ---------- Section Headers ---------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--clr-gold)
}

.section-title {
    font-size: var(--fs-h2);
    margin-bottom: 16px
}

.section-desc {
    font-size: 1.1rem;
    color: var(--clr-muted);
    max-width: 600px
}

.section-header {
    margin-bottom: 60px
}

.section-header.centered {
    text-align: center
}

.section-header.centered .section-desc {
    margin: 0 auto
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--fs-small);
    letter-spacing: .5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--clr-gold);
    color: var(--clr-forest);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 168, 76, .4);
    background: #b8972f;
}

.btn-outline {
    background: transparent;
    color: var(--clr-white);
    border: 2px solid rgba(255, 255, 255, .4);
}

.btn-outline:hover {
    background: var(--clr-white);
    color: var(--clr-forest)
}

.btn-dark {
    background: var(--clr-forest);
    color: var(--clr-white);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg)
}

/* ---------- Scroll Progress ---------- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-turmeric));
    z-index: 1002;
    width: 0%;
    transition: width .1s linear
}

/* ---------- Loader ---------- */
#loader {
    position: fixed;
    inset: 0;
    background: var(--clr-forest);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity .8s ease;
}

.loader-icon {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(201, 168, 76, .3);
    border-top-color: var(--clr-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: var(--clr-gold-light);
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

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

.logo {
    font-family: var(--ff-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: 2px
}

.navbar.scrolled .logo {
    color: var(--clr-forest)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px
}

.nav-link {
    color: rgba(255, 255, 255, .85);
    font-size: var(--fs-small);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-gold);
    transition: var(--transition)
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%
}

.nav-link:hover {
    color: var(--clr-white)
}

.navbar.scrolled .nav-link {
    color: var(--clr-text)
}

.navbar.scrolled .nav-link:hover {
    color: var(--clr-forest)
}

.nav-cta {
    background: var(--clr-gold);
    color: var(--clr-forest);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--fs-small);
    letter-spacing: .5px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 168, 76, .35)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--clr-white);
    transition: var(--transition)
}

.navbar.scrolled .hamburger span {
    background: var(--clr-forest)
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--clr-forest);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: .6s var(--ease-out);
}

.mobile-menu.open {
    transform: translateX(0)
}

.mobile-menu a {
    color: var(--clr-white);
    font-family: var(--ff-heading);
    font-size: 2rem;
    font-weight: 400;
    transition: var(--transition)
}

.mobile-menu a:hover {
    color: var(--clr-gold)
}

.close-btn {
    position: absolute;
    top: 28px;
    right: 28px;
    color: var(--clr-white);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition)
}

.close-btn:hover {
    transform: rotate(90deg)
}

/* ---------- Hero Slider ---------- */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--clr-forest);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2
}

.hero-slide.active .hero-slide-content {
    animation: slideContentIn .9s var(--ease-out) .3s both
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 45, 30, .65), rgba(15, 45, 30, .35));
    z-index: 1;
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 0 5%;
    max-width: 800px;
    opacity: 0;
}

@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

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

/* Reuse existing token styles for inner elements */
.hero-slide-content .hero-label {
    display: inline-block;
    color: var(--clr-gold-light);
    font-size: var(--fs-small);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-slide-content .hero-title {
    font-size: var(--fs-hero);
    color: var(--clr-white);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-slide-content .hero-title .gold {
    color: var(--clr-gold)
}

.hero-slide-content .hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .8);
    max-width: 600px;
    margin: 0 0 40px 0;
}

.hero-slide-content .hero-btns {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Ken Burns zoom on active slide */
.hero-slide.active {
    animation: kenBurns 8s ease-in-out forwards
}

@keyframes kenBurns {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.06)
    }
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--clr-white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    transform: translateY(-50%);
}

.slider-prev {
    left: 28px
}

.slider-next {
    right: 28px
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .3);
    transform: translateY(-50%) scale(1.08);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    border: 2px solid rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    width: 32px;
    border-radius: 6px;
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, .1);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--clr-gold);
    transition: width .1s linear;
}

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

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

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-hint .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 12px;
    position: relative;
}

.scroll-hint .wheel {
    width: 4px;
    height: 8px;
    background: var(--clr-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1
    }

    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0
    }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
    background: var(--clr-white);
    padding: 48px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .04)
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    padding: 12px 0;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--clr-cream), var(--clr-parchment));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--clr-gold);
    flex-shrink: 0;
}

.trust-info strong {
    display: block;
    font-size: var(--fs-body);
    color: var(--clr-forest)
}

.trust-info span {
    font-size: var(--fs-small);
    color: var(--clr-muted)
}

/* ---------- Treatments Section ---------- */
.treatments-section {
    background: var(--clr-cream)
}

.treatment-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch
}

.treatment-scroll::-webkit-scrollbar {
    display: none
}

.t-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.t-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.t-card-img {
    height: 240px;
    overflow: hidden
}

.t-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-out)
}

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

.t-card-body {
    padding: 28px
}

.t-card-body h3 {
    font-size: var(--fs-h3);
    margin-bottom: 8px
}

.t-card-body p {
    color: var(--clr-muted);
    font-size: var(--fs-small);
    line-height: 1.6
}

.t-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(15, 45, 30, .85);
    backdrop-filter: blur(8px);
    color: var(--clr-gold-light);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------- About / Split Section ---------- */
.about-section {
    background: var(--clr-white)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px
}

.about-img {
    background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&q=80&w=1000') center/cover;
    min-height: 500px;
    position: relative;
}

.about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 45, 30, .15), transparent);
}

.about-text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: var(--fs-h2);
    margin-bottom: 20px
}

.about-text p {
    color: var(--clr-muted);
    margin-bottom: 20px;
    line-height: 1.8
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.about-feature i {
    color: var(--clr-gold);
    font-size: 18px;
    margin-top: 3px
}

.about-feature span {
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--clr-forest)
}

/* ---------- Stats Section ---------- */
.stats-section {
    background: linear-gradient(135deg, var(--clr-forest), #0a1f14);
    color: var(--clr-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, .08), transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1
}

.stat-item {
    padding: 20px 0
}

.stat-number {
    font-family: var(--ff-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--clr-gold);
    margin-bottom: 8px
}

.stat-label {
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-gold-light);
    opacity: .7
}

/* ---------- Why Us Section ---------- */
.why-section {
    background: var(--clr-parchment)
}

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

.why-card {
    background: var(--clr-white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .04);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-turmeric));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease-out);
}

.why-card:hover::before {
    transform: scaleX(1)
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(201, 168, 76, .12), rgba(201, 168, 76, .05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--clr-gold);
    margin-bottom: 24px;
}

.why-card h3 {
    font-size: var(--fs-h3);
    margin-bottom: 12px
}

.why-card p {
    color: var(--clr-muted);
    font-size: var(--fs-small);
    line-height: 1.7
}

/* ---------- Testimonials ---------- */
.testimonials-section {
    background: var(--clr-white)
}

.testimonial-swiper {
    width: 100%;
    padding: 0 50px;
}

.testimonial-card {
    background: var(--clr-cream);
    padding: 36px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.testimonial-card .quote-icon {
    font-size: 32px;
    color: var(--clr-gold);
    opacity: .4;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--clr-text);
    font-style: italic;
    flex-grow: 1
}

.swiper-pagination-bullet-active {
    background: var(--clr-gold) !important;
}

.swiper-button-next,
.swiper-button-prev {
    z-index: 10 !important;
}

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

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover
}

.testimonial-author strong {
    display: block;
    font-size: var(--fs-small);
    color: var(--clr-forest)
}

.testimonial-author span {
    font-size: 12px;
    color: var(--clr-muted)
}

.stars {
    color: var(--clr-gold);
    font-size: 12px;
    margin-bottom: 12px;
    letter-spacing: 2px
}

/* ---------- Video, Events, Reversal Swiper ---------- */
.events-section,
.video-testimonials-section,
.reversal-heroes-section {
    overflow: hidden;
}

.events-swiper,
.video-swiper,
.reversal-swiper {
    width: 100%;
    padding: 0 50px 50px 50px;
    box-sizing: border-box;
}

.events-swiper .swiper-slide,
.video-swiper .swiper-slide,
.reversal-swiper .swiper-slide {
    width: auto;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.events-swiper .swiper-slide:hover,
.video-swiper .swiper-slide:hover,
.reversal-swiper .swiper-slide:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.events-swiper .swiper-slide img,
.reversal-swiper .swiper-slide img,
.video-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.events-swiper .swiper-pagination,
.video-swiper .swiper-pagination,
.reversal-swiper .swiper-pagination {
    bottom: 10px !important;
}

@media (max-width: 768px) {

    .events-swiper .swiper-slide,
    .video-swiper .swiper-slide,
    .reversal-swiper .swiper-slide {
        height: 240px;
    }

    .events-swiper,
    .video-swiper,
    .testimonial-swiper,
    .reversal-swiper {
        padding: 0 10px 40px 10px;
    }
}

/* ---------- Packages ---------- */
.packages-section {
    background: var(--clr-white)
}

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

.package-card {
    background: var(--clr-cream);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, .04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    background: var(--clr-forest);
    color: var(--clr-white);
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: scale(1.04);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
}

.package-card.featured:hover {
    transform: scale(1.04) translateY(-6px)
}

.package-duration {
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 12px
}

.package-card h3 {
    font-size: var(--fs-h3);
    margin-bottom: 12px
}

.package-card.featured h3 {
    color: var(--clr-white)
}

.package-desc {
    color: var(--clr-muted);
    font-size: var(--fs-small);
    margin-bottom: 24px;
    flex-grow: 1
}

.package-card.featured .package-desc {
    color: rgba(255, 255, 255, .7)
}

.package-features {
    margin-bottom: 28px
}

.package-features li {
    padding: 8px 0;
    font-size: var(--fs-small);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.package-card.featured .package-features li {
    border-color: rgba(255, 255, 255, .08)
}

.package-features li i {
    color: var(--clr-gold);
    font-size: 14px
}

.package-price {
    font-family: var(--ff-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-forest)
}

.package-price small {
    font-size: .9rem;
    font-weight: 400;
    color: var(--clr-muted)
}

.package-card.featured .package-price {
    color: var(--clr-gold)
}

.package-card.featured .package-price small {
    color: rgba(255, 255, 255, .5)
}

/* ---------- CTA Banner ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--clr-forest) 0%, #1a5632 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, .1), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.cta-section h2 {
    font-size: var(--fs-h2);
    color: var(--clr-white);
    margin-bottom: 16px
}

.cta-section p {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 32px;
    font-size: 1.1rem
}

/* ---------- Footer ---------- */
.footer {
    background: var(--clr-dark);
    color: var(--clr-white);
    padding: 80px 0 40px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

.footer-brand .logo {
    color: var(--clr-white);
    display: inline-block;
    margin-bottom: 16px
}

.footer-brand p {
    color: rgba(255, 255, 255, .5);
    font-size: var(--fs-small);
    line-height: 1.7;
    margin-bottom: 24px
}

.footer-social {
    display: flex;
    gap: 12px
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-forest)
}

.footer-col h4 {
    color: var(--clr-gold);
    font-family: var(--ff-body);
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.footer-col li {
    margin-bottom: 10px
}

.footer-col li a {
    color: rgba(255, 255, 255, .5);
    font-size: var(--fs-small);
    transition: var(--transition)
}

.footer-col li a:hover {
    color: var(--clr-gold);
    padding-left: 4px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 32px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .3)
}

.footer-newsletter {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-full);
    overflow: hidden
}

.footer-newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--clr-white);
    font-size: var(--fs-small);
    outline: none;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, .3)
}

.footer-newsletter button {
    background: var(--clr-gold);
    color: var(--clr-forest);
    padding: 12px 20px;
    font-weight: 600;
    font-size: var(--fs-small);
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: #b8972f
}

/* ---------- Floating Buttons ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
    animation: pulse-wa 2s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1)
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
    }
}

#backToTop {
    position: fixed;
    bottom: 104px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-forest);
    font-size: 16px;
    z-index: 999;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

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

#backToTop:hover {
    background: var(--clr-gold);
    color: var(--clr-forest);
    transform: translateY(-3px)
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

.reveal-delay-4 {
    transition-delay: .4s
}

/* ---------- Booking Form ---------- */
.booking-form {
    background: var(--clr-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--clr-parchment);
    z-index: 1;
}

.step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--clr-parchment);
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step.active {
    background: var(--clr-gold);
    color: var(--clr-forest);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, .15)
}

.step.completed {
    background: var(--clr-emerald);
    color: var(--clr-white)
}

.form-step {
    display: none;
    animation: fadeUp .5s var(--ease-out)
}

.form-step.active {
    display: block
}

.form-step h3 {
    font-size: var(--fs-h3);
    margin-bottom: 24px
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--clr-forest);
    margin-bottom: 6px
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: var(--radius-sm);
    font-size: var(--fs-body);
    color: var(--clr-text);
    background: var(--clr-cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .1);
}

/* ---------- Responsive ---------- */
@media(max-width:1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

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

    .package-card.featured {
        transform: none
    }

    .package-card.featured:hover {
        transform: translateY(-6px)
    }

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

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

    .about-text {
        padding: 60px 40px
    }

    .gallery-masonry {
        column-count: 2
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero-title {
        font-size: clamp(2.2rem, 6vw, 3.5rem)
    }

    .hero-btns {
        flex-direction: column;
        align-items: center
    }

    .hero-btns .btn {
        width: 240px;
        justify-content: center
    }

    .section-pad {
        padding: 70px 0
    }

    .section-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem)
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

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

    .testimonial-swiper {
        padding: 0 10px;
    }

    .gallery-masonry {
        column-count: 2
    }

    .t-card {
        flex: 0 0 280px
    }

    .about-text {
        padding: 48px 24px
    }

    .booking-form {
        padding: 32px 24px
    }

    .stats-grid {
        gap: 24px
    }

    .stat-number {
        font-size: 2.5rem
    }
}

@media(max-width:480px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 8px
    }

    .gallery-masonry {
        column-count: 1
    }

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

    .hero-title {
        font-size: 2rem
    }

    .container {
        padding: 0 16px
    }

}

/* ---------- New Treatments & Conditions Sections ---------- */

/* Holistic Conditions Grid */
.conditions-grid-section {
    background: var(--clr-white);
    padding: 100px 0;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.condition-card {
    background: var(--clr-cream);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.condition-card:hover {
    transform: translateY(-5px);
    background: var(--clr-white);
    border-color: var(--clr-gold-light);
    box-shadow: var(--shadow-lg);
}

.condition-icon {
    width: 60px;
    height: 60px;
    background: var(--clr-forest);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.condition-card:hover .condition-icon {
    background: var(--clr-gold);
    color: var(--clr-forest);
}

.condition-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--clr-forest);
    font-family: var(--ff-heading);
}

.condition-card p {
    font-size: 0.95rem;
    color: var(--clr-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.condition-link {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-gold);
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateX(0);
    transition: var(--transition);
}

.condition-card:hover .condition-link {
    transform: translateX(5px);
}

.conditions-cta {
    text-align: center;
    margin-top: 60px;
}

/* Our Treatments Category Grid */
.treatments-category-section {
    background: var(--clr-cream);
    padding: 100px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.category-card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--clr-gold-light);
}

.category-icon {
    font-size: 48px;
    color: var(--clr-gold);
    margin-bottom: 30px;
}

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--clr-forest);
    position: relative;
    padding-bottom: 15px;
}

.category-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--clr-gold);
}

.category-list {
    margin-top: 25px;
    text-align: left;
    width: 100%;
}

.category-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    color: var(--clr-text);
    font-size: 1.05rem;
    transition: var(--transition);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li i {
    color: var(--clr-gold);
    font-size: 0.8rem;
}

.category-list li:hover {
    padding-left: 8px;
    color: var(--clr-gold);
}

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

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .category-card {
        padding: 40px 30px;
    }
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .conditions-grid {
        grid-template-columns: 1fr;
    }
}