body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--ivory-white);
}

h1 {
    font-family: 'Poiret One', sans-serif;
    font-weight: 300;
    font-size: var(--fs-hero-h1) !important;
}

h2,
h3 {
    font-family: 'Poiret One', sans-serif;
    font-weight: 300;
}

h1 {
    font-size: var(--fs-hero-h1) !important;
    font-weight: bold;
}

h2 {
    font-size: var(--fs-section-h2) !important;
}

/* Hero Setup */
.hero-mini-refined {
    margin-top: 0;
    background-color: #2e2318;
    /* Fallback Dark Color */
    background-image: url('../Resource/wellness%20copy%202/detox_destress.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    height: 60vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-mini-refined h1,
.hero-mini-refined p {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Brand Grid & Text */
.brand-section {
    padding: 80px 5%;
}

.brand-gold-text {
    color: var(--gold-brand);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-h2 {
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-section-h2);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--deep-bg);
}

/* --- WELLNESS CARD GRID SYSTEM --- */
.wellness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 40px 20px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: stretch;
}

.wellness-card {
    position: relative;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

.wellness-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

@media (min-width: 1024px) {
    .wellness-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.wellness-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.wellness-card h3 {
    position: absolute;
    top: 30px;
    left: 30px;
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-h3-card);
    color: #fff;
    margin: 0;
    z-index: 3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    letter-spacing: 1px;
}

.wellness-content-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--header-bg-scroll);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    text-align: center;
}

.wellness-card:hover .wellness-content-hover {
    opacity: 1;
}

.wellness-desc {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-body-p);
    margin-bottom: 25px;
    line-height: 1.7;
    font-weight: 300;
}

.wellness-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #c9a63c;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-align: left;
    width: 100%;
    font-size: var(--fs-body-p);
}

.wellness-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.wellness-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fff;
}

.wellness-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--gold-brand);
    color: var(--deep-bg);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 3;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wellness-card:hover .wellness-btn {
    background-color: transparent;
    color: #c9a63c;
    border-color: #c9a63c;
    box-shadow: none;
}

/* Ayurveda Catalog */
.ayurveda-catalog {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.ayurveda-catalog-section {
    background: #fff;
    margin-bottom: 30px;
    padding: 30px 40px;
    border-radius: 12px;
    border-left: 5px solid var(--gold-brand);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.ayurveda-catalog-section:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.catalog-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.catalog-icon {
    font-size: 1.8rem;
    color: var(--gold-brand);
    margin-right: 15px;
}

.ayurveda-catalog-section h3 {
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-h3-card);
    color: var(--deep-bg);
    margin: 0;
    letter-spacing: 1px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.catalog-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-5px);
}

.catalog-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(201, 166, 60, 0.3);
}

.catalog-placeholder {
    width: 100%;
    height: 130px;
    background: rgba(201, 166, 60, 0.1);
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a63c;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.catalog-item:hover .catalog-placeholder {
    background: rgba(201, 166, 60, 0.2);
    transform: scale(1.05);
}

.catalog-item span {
    font-family: 'Quicksand', sans-serif;
    font-size: var(--fs-body-p);
    color: var(--deep-bg);
    font-weight: 600;
    line-height: 1.3;
}

/* Modal Styles */
.therapy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.therapy-modal-content {
    background: linear-gradient(145deg, #fff 0%, #f9f9f9 100%);
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.therapy-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 3rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.therapy-modal-close:hover {
    color: #c9a63c;
    transform: rotate(90deg);
}

.modal-image-container {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-therapy-image {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-image-container:hover .modal-therapy-image {
    transform: scale(1.05);
}

.modal-title {
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-page-h1);
    color: #2E2318;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-divider {
    width: 80px;
    height: 3px;
    background: #c9a63c;
    margin: 0 0 25px 0;
}

.modal-description {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-lead-p);
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-benefits-title {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-lead-p);
    color: #2E2318;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.modal-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.modal-benefits-list li {
    font-family: 'Quicksand', sans-serif;
    font-size: var(--fs-body-p);
    color: var(--deep-bg);
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.modal-benefits-list li:last-child {
    border-bottom: none;
}

.modal-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c9a63c;
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-book-btn {
    width: 100%;
    padding: 15px 30px;
    background-color: #c9a63c;
    color: #2E2318;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(201, 166, 60, 0.3);
}

.modal-book-btn:hover {
    background-color: var(--deep-bg);
    color: var(--gold-brand);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 166, 60, 0.4);
}

/* Mobile Adjustments */
@media(max-width: 768px) {
    .wellness-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        max-width: 500px;
    }

    .wellness-card {
        height: 400px;
    }

    .ayurveda-catalog-section {
        padding: 25px 20px;
    }

    .ayurveda-catalog-section h3 {
        font-size: var(--fs-page-h1);
    }

    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .therapy-modal-content {
        padding: 30px 25px;
        max-width: 95%;
    }

    .modal-title {
        font-size: var(--fs-page-h1);
    }

    .modal-description {
        font-size: var(--fs-body-p);
    }

    .modal-benefits-list li {
        font-size: var(--fs-body-p);
        padding: 10px 0 10px 25px;
    }

    .therapy-modal-close {
        top: 15px;
        right: 15px;
        font-size: 2.5rem;
    }
}

/* --- Luxury Wellness Dashboard System --- */

:root {
    --wellness-sage: #2E2318;
    /* Mapped to Deep BG for Contrast */
    --wellness-cream: #f9f9f9;
    /* Ivory White / Light Gray */
    --wellness-gold: #c9a63c;
    /* Gold Brand */
    --wellness-dark: #2a3529;
    /* Keeping this distinct or map to deep bg? Map to deep bg */
    --arch-radius: 180px 180px 20px 20px;
    --soft-shadow: 0 15px 40px rgba(46, 35, 24, 0.12);
}

/* Compact Category Switcher */
.wellness-explorer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px auto;
    padding: 10px;
    border-bottom: 1px solid rgba(201, 166, 60, 0.2);
    max-width: 1200px;
    position: sticky;
    top: 0;
    background: var(--ivory-white);
    z-index: 100;
}

.explorer-tab {
    font-family: 'Poiret One', cursive;
    font-size: 1.5rem;
    color: var(--deep-bg);
    /* Use brand color */
    cursor: pointer;
    background: none;
    border: none;
    padding-bottom: 15px;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0.7;
    font-weight: 600;
}

.explorer-tab:hover {
    opacity: 1;
    color: var(--gold-brand);
}

.explorer-tab.active {
    opacity: 1;
    color: var(--deep-bg);
}

.explorer-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-brand);
}

/* Dashboard Content Zone */
.wellness-content-panel {
    display: none;
    animation: fadeInPanel 0.8s ease forwards;
    max-width: 1100px;
    /* Reduced from 1400px */
    margin: 0 auto;
    padding: 0 20px;
}

.wellness-content-panel.active {
    display: block;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Showcase (Compact) */
.wellness-feature-row {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 80px;
}

.wellness-feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-arch-frame {
    flex: 1;
    height: 450px;
    border-radius: var(--arch-radius);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
}

.feature-arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-info {
    flex: 0.9;
}

.feature-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-section-topper);
    letter-spacing: 3px;
    color: var(--gold-brand);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.feature-title {
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-page-h1);
    color: var(--deep-bg);
    margin: 0 0 20px;
}

.feature-desc {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-lead-p);
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.feature-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* CTA Buttons */
.dash-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-btn-text);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.global-enquire-btn {
    background: var(--deep-bg);
    color: white;
    box-shadow: 0 5px 15px rgba(46, 35, 24, 0.2);
}

.global-enquire-btn:hover {
    background: var(--gold-brand);
    color: var(--deep-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 166, 60, 0.3);
}

.know-more-btn {
    background: transparent;
    border: 2px solid var(--deep-bg);
    color: var(--deep-bg);
}

.know-more-btn:hover {
    background: var(--deep-bg);
    color: var(--gold-brand);
    transform: translateY(-3px);
}

/* Mini Rituals Grid */
.rituals-compact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.ritual-item {
    background: white;
    padding: 15px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid rgba(201, 166, 60, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 100px;
    justify-content: center;
}

.ritual-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 166, 60, 0.15);
    border-color: var(--gold-brand);
}

.ritual-item.active {
    color: white;
    border-color: var(--gold-brand);
    box-shadow: 0 5px 15px rgba(201, 166, 60, 0.3);
    background: transparent;
}

/* Entire Pill acts as a Loader */
.ritual-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    /* JS or CSS animation fills this ?? No, CSS animation below */
    height: 100%;
    background: var(--gold-brand);
    /* Gold fill */
    z-index: 0;
    animation: pillFillLoader 6s linear forwards;
}

@keyframes pillFillLoader {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.ritual-meta {
    position: relative;
    z-index: 1;
    /* Keep text above the filling background */
}

.ritual-item.active h4 {
    color: #2E2318;
    /* Dark text on Gold background looks better? Or White? Gold is #c9a63c. White text is readable. */
    color: white;
    font-weight: 600;
}

.ritual-meta h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin: 0;
    color: var(--deep-bg);
    transition: color 0.4s ease;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .wellness-explorer-nav {
        gap: 10px;
        flex-wrap: wrap;
    }

    .explorer-tab {
        font-size: 1.1rem;
        padding: 10px;
    }

    .wellness-feature-row,
    .wellness-feature-row.reverse {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 50px;
    }

    .feature-arch-frame {
        width: 100%;
        height: 350px;
        border-radius: 120px 120px 15px 15px;
    }

    .feature-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .feature-desc {
        text-align: center;
    }

    .feature-info {
        text-align: center;
        width: 100%;
    }
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}