/* =========================================================================
   VARIABLES & DESIGN SYSTEM
   ========================================================================= */
:root {
    /* Color Palette */
    --color-beige: #F2E0C9;       /* Soft Sand Beige */
    --color-mauve: #B38D84;       /* Dusty Mauve */
    --color-rose: #C6765A;        /* Terracotta Rose */
    --color-olive: #7B7740;       /* Olive Green */
    --color-sage: #3D4C46;        /* Forest Sage */
    
    /* Additional UI Colors */
    --color-white: #FFFFFF;
    --color-light-bg: #FCF9F5;    /* Extremely light version of beige for backgrounds */
    --color-dark-text: #2D3B36;   /* Darker sage for better readability */
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Layout */
    --header-height: 80px;
    --transition: all 0.3s ease;
    --shadow-soft: 0 10px 30px rgba(61, 76, 70, 0.08);
    --shadow-hover: 0 15px 40px rgba(61, 76, 70, 0.12);
}

/* =========================================================================
   RESET & BASE STYLES
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    color: var(--color-dark-text);
    background-color: var(--color-light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-sage);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--color-rose);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.title-underline.center {
    margin-inline: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-sage);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-olive);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 119, 64, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-sage);
    border: 1px solid var(--color-sage);
}

.btn-secondary:hover {
    background-color: var(--color-beige);
    border-color: var(--color-beige);
    color: var(--color-sage);
}

/* Image Support Classes */
.full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholders */
.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-mauve);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px dashed var(--color-mauve);
}

/* =========================================================================
   HEADER & NAVIGATION
   ========================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: none;
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    background-color: rgba(252, 249, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-sage);
    letter-spacing: 0.5px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-sage);
    position: relative;
}

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

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

/* Desktop Dropdown Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: var(--color-white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1001;
    border: 1px solid rgba(0,0,0,0.05);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--color-sage);
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--color-light-bg);
    color: var(--color-rose);
}

.nav-socials {
    display: flex;
    gap: 15px;
}

.nav-socials a {
    color: var(--color-sage);
    font-size: 1.1rem;
}

.nav-socials a:hover {
    color: var(--color-rose);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-sage);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-light-bg);
    z-index: 2000;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-sage);
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-sage);
}

/* Mobile Dropdown Styles */
.mobile-nav-item-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-nav-item-dropdown > a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-item-dropdown > a i {
    font-size: 1rem;
    opacity: 0.5;
}

.mobile-dropdown-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding-left: 20px;
    margin-top: 20px;
    gap: 15px;
}

.mobile-dropdown-link {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-sage);
    opacity: 0.8;
}

.mobile-dropdown-link:hover {
    color: var(--color-rose);
    opacity: 1;
}

.mobile-socials {
    display: flex;
    gap: 20px;
}

.mobile-socials a {
    color: var(--color-sage);
    font-size: 1.5rem;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-beige);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(242, 224, 201, 0.9) 0%, rgba(252, 249, 245, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin: 0;
    padding-left: 5%;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-sage);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--color-dark-text);
    max-width: 500px;
}

/* =========================================================================
   ABOUT SECTION
   ========================================================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-olive);
    border-radius: 8px;
    z-index: -1;
}

.about-text p {
    font-size: 1.05rem;
    color: #4A5D54;
}

/* =========================================================================
   SERVICES SECTION
   ========================================================================= */
.services {
    background-color: var(--color-beige);
    background-image: linear-gradient(135deg, var(--color-beige) 0%, var(--color-light-bg) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 220px;
    position: relative;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 76, 70, 0.1);
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    background-color: rgba(61, 76, 70, 0.0);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}



.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-mauve);
}

.service-desc {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #555;
    flex-grow: 1;
}

.service-benefits {
    margin-bottom: 25px;
}

.service-benefits li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-benefits i {
    color: var(--color-olive);
    font-size: 0.8rem;
}

/* =========================================================================
   TESTIMONIALS SECTION
   ========================================================================= */
.testimonial-carousel {
    margin-top: 50px;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: none; 
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    scroll-snap-align: start;
    border-top: 4px solid var(--color-rose);
}

.testimonial-media {
    height: 200px;
    position: relative;
}

.video-thumbnail {
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-rose);
    font-size: 1.5rem;
    padding-left: 5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-thumbnail:hover .play-button {
    background-color: var(--color-rose);
    color: var(--color-white);
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-body {
    padding: 30px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: var(--color-beige);
    opacity: 0.5;
}

.quote-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--color-sage);
}

.quote-author {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-mauve);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 59, 54, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    aspect-ratio: 16/9;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--color-rose);
}

.video-container {
    width: 100%;
    height: 100%;
}

.modal-video-player {
    width: 100%;
    height: 100%;
    background-color: #000;
    outline: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-body);
    border: 1px dashed rgba(255,255,255,0.3);
}

/* =========================================================================
   CONTACT SECTION
   ========================================================================= */
.contact {
    background-color: var(--color-white);
}

.contact-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background-color: var(--color-light-bg);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.contact-desc {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-btn {
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 30px;
    gap: 10px;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--color-sage);
}

.contact-email:hover {
    color: var(--color-rose);
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--color-beige);
}

.contact-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sage);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-socials a:hover {
    background-color: var(--color-sage);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: var(--color-sage);
    color: var(--color-light-bg);
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    color: var(--color-beige);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(252, 249, 245, 0.7);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-beige);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(252, 249, 245, 0.7);
}

.footer-links a:hover {
    color: var(--color-rose);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(252, 249, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light-bg);
}

.footer-socials a:hover {
    background-color: var(--color-rose);
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(252, 249, 245, 0.1);
    color: rgba(252, 249, 245, 0.5);
    font-size: 0.9rem;
}

/* =========================================================================
   FLOATING WHATSAPP
   ========================================================================= */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* =========================================================================
   PLACARDS GRID & CARDS
   ========================================================================= */
.placard-card {
    height: 320px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    transition: var(--transition);
}

.placard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.placard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
    transition: var(--transition);
}

.placard-card:hover .placard-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.placard-header {
    position: relative;
    z-index: 2;
}

.placard-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.placard-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.placard-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
}

.btn-placard {
    padding: 10px 22px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 30px;
    cursor: pointer;
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.btn-placard:hover {
    background-color: var(--color-white);
    color: var(--color-dark-text);
    border-color: var(--color-white);
}

/* =========================================================================
   40 DAYS OF MANDALA SECTION
   ========================================================================= */
@keyframes spinMandala {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.mandala-section {
    position: relative;
    overflow: hidden;
    background-color: #1a1a14;
    padding: 100px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Spinning SVG background */
.mandala-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    animation: spinMandala 120s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.mandala-svg {
    width: 100%;
    height: 100%;
}

/* Decorative double-line border */
.mandala-border-outer {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(179, 141, 132, 0.2);
    pointer-events: none;
    z-index: 2;
}

.mandala-border-inner {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border: 1px solid rgba(179, 141, 132, 0.12);
    pointer-events: none;
    z-index: 2;
}

/* Content wrapper */
.mandala-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* "40" large number */
.mandala-number {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 14vw, 10rem);
    font-weight: 400;
    line-height: 0.9;
    background: linear-gradient(180deg, #c9a84c 0%, #e8d48b 35%, #c9a84c 65%, #8a6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* "D A Y S" spaced caps */
.mandala-days {
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(242, 224, 201, 0.7);
    display: block;
    margin-top: -5px;
    margin-bottom: 10px;
}

/* "of" italic */
.mandala-of {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: rgba(179, 141, 132, 0.6);
    display: block;
    margin-bottom: 5px;
}

/* "MANDALA" title */
.mandala-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 8px;
    line-height: 1;
    background: linear-gradient(180deg, #f2e0c9 0%, #e8d48b 30%, #c9a84c 60%, #8a6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

/* "with Dr. Shruti Kulkarni" */
.mandala-with {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(179, 141, 132, 0.5);
    margin-bottom: 30px;
}

/* Tagline */
.mandala-tagline {
    margin-bottom: 35px;
}

.mandala-tagline-italic {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-beige);
    line-height: 1.6;
    opacity: 0.85;
}

/* Description text */
.mandala-desc {
    max-width: 580px;
    margin-bottom: 40px;
}

.mandala-desc p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(242, 224, 201, 0.6);
    line-height: 1.8;
    margin-bottom: 16px;
}

.mandala-highlight {
    font-family: var(--font-heading) !important;
    font-style: italic;
    font-size: 1.05rem !important;
    color: var(--color-beige) !important;
    opacity: 0.9;
    margin-top: 25px !important;
}

.mandala-closing {
    color: var(--color-beige) !important;
    opacity: 0.95;
}

.mandala-closing strong {
    background: linear-gradient(90deg, #c9a84c, #e8d48b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Button */
.btn-mandala {
    padding: 16px 48px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    background: transparent;
    color: #c9a84c;
    border: 1px solid rgba(201, 168, 76, 0.5);
    transition: var(--transition);
}

.btn-mandala:hover {
    background-color: rgba(201, 168, 76, 0.12);
    border-color: #c9a84c;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

/* Footnote */
.mandala-footnote {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(179, 141, 132, 0.4);
    margin-top: 30px;
    line-height: 1.7;
}

/* =========================================================================
   PCOS SECTION (Reclaim Your Cycle)
   ========================================================================= */
.pcos-section {
    background: linear-gradient(135deg, #fdfbf7 0%, #f4eee6 100%); /* Soft, warm off-white gradient */
    padding: 120px 24px;
    color: var(--color-dark-text);
}

.pcos-container {
    max-width: 900px; /* Constrain width for better reading experience */
    margin: 0 auto;
}

/* Common Overline Style */
.pcos-overline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-rose);
    opacity: 0.8;
    margin-bottom: 40px;
}

.pcos-overline .line {
    height: 1px;
    width: 40px;
    background-color: var(--color-rose);
    opacity: 0.3;
}

.pcos-italic-accent {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-rose);
    font-weight: 400;
}

/* BLOCK 1: Hero */
.pcos-hero {
    text-align: center;
    margin-bottom: 100px;
}

.pcos-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-dark-text);
    margin-bottom: 25px;
}

.pcos-hero-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: #7a8c82;
    margin-bottom: 60px;
}

.pcos-hero-pill {
    margin: 0 auto;
    border: 1px solid rgba(179, 141, 132, 0.3); /* Subtle rose border */
    border-radius: 50px;
    background-color: rgba(253, 251, 247, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pcos-pill-small {
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-rose);
    gap: 15px;
    margin-bottom: 40px;
}

.pcos-pill-small .pill-icon {
    font-size: 0.7rem;
}

.pcos-pill-large {
    padding: 15px 40px 15px 15px;
    gap: 20px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-beige);
    color: #a48279;
    text-align: left;
    line-height: 1.6;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.pill-circle-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-rose);
    font-size: 1.2rem;
}

/* BLOCK 2: Pain Points */
.pcos-pain-points-block {
    margin-bottom: 100px;
}

.pcos-quote-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 60px;
    padding: 0 20px;
}

.pcos-quote-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-rose);
    opacity: 0.4;
    line-height: 1;
    margin-top: -5px;
}

.pcos-quote-item p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: #6b7d73; /* Muted greenish-grey */
    line-height: 1.6;
}

.pcos-empathy-card {
    background: linear-gradient(135deg, rgba(242, 224, 201, 0.4) 0%, rgba(253, 251, 247, 0.8) 100%);
    border: 1px solid rgba(179, 141, 132, 0.2);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.empathy-highlight {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--color-rose);
    margin-bottom: 15px;
}

.pcos-empathy-card p:last-child {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: #6b7d73;
}

/* BLOCK 3: Her Story */
.pcos-story-block {
    margin-bottom: 120px;
}

.pcos-story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-dark-text);
    margin-bottom: 40px;
    padding: 0 20px;
}

.pcos-story-text p {
    margin-bottom: 25px;
}

.pcos-story-card {
    border-left: 2px solid var(--color-rose);
    padding: 30px 40px;
    background-color: white;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.pcos-story-card p:first-child {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: #6b7d73;
    margin-bottom: 10px;
}

.pcos-story-card p:last-child {
    font-family: var(--font-body);
    font-size: 1.15rem;
}

/* BLOCK 4: What's Inside */
.pcos-inside-block {
    margin-bottom: 120px;
}

.pcos-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 15px;
}

.pcos-section-subtitle {
    text-align: center;
    color: #6b7d73;
    font-size: 1.05rem;
    margin-bottom: 60px;
}

.pcos-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pcos-feature-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.pcos-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-rose);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.pcos-feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4;
}

.pcos-feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6d63;
}

.pcos-highlight {
    color: var(--color-rose);
    font-weight: 500;
}

/* BLOCK 5: Is This For You? */
.pcos-foryou-block {
    margin-bottom: 60px;
}

.pcos-foryou-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.foryou-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.foryou-card-header {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-rose);
    margin-bottom: 30px;
}

.foryou-list {
    list-style: none;
    padding: 0;
}

.foryou-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5d54;
}

.foryou-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-rose);
}

.yes-list li::before {
    content: '✦'; /* Diamond/Star */
    font-size: 1.1rem;
}

.no-list li::before {
    content: '○'; /* Hollow circle */
    font-size: 1rem;
    color: #9aa8a1;
}

/* Registration CTA */
.pcos-cta-container {
    text-align: center;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .pcos-grid-2x2,
    .pcos-foryou-grid {
        grid-template-columns: 1fr;
    }
    
    .pcos-pill-large {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

/* =========================================================================
   NUTRITION SECTION
   ========================================================================= */
.nutrition-section {
    background-color: var(--color-white);
}

.nutrition-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.nutrition-lead {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-rose);
    margin-bottom: 20px;
}

.nutrition-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.nutrition-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #4a5d54;
}

.nutrition-features i {
    color: var(--color-rose);
    font-size: 1.2rem;
}

.nutrition-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nutrition-image-wrapper {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
}

.nutrition-image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-rose);
    border-radius: 20px;
    z-index: -1;
}

/* =========================================================================
   MODALS (COURSE DETAIL & REGISTRATION)
   ========================================================================= */
.course-modal,
.reg-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 76, 70, 0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.course-modal.active,
.reg-modal.active {
    display: flex;
    opacity: 1;
}

.course-modal-content,
.reg-modal-content {
    background-color: var(--color-light-bg);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    overflow-y: auto;
    border-top: 6px solid var(--color-rose);
}

.close-course-modal,
.close-reg-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--color-sage);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-course-modal:hover,
.close-reg-modal:hover {
    color: var(--color-rose);
}

.course-modal-title {
    font-size: 2.2rem;
    color: var(--color-sage);
    margin-bottom: 5px;
}

.course-modal-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-mauve);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.course-modal-divider {
    height: 1px;
    background-color: var(--color-beige);
    margin: 20px 0;
}

.course-modal-details h4 {
    font-size: 1.1rem;
    color: var(--color-sage);
    margin-top: 24px;
    margin-bottom: 10px;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.course-modal-details p {
    color: #4a5d54;
    line-height: 1.7;
    margin-bottom: 20px;
}

.course-modal-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.course-modal-benefits li {
    font-size: 0.95rem;
    color: #4a5d54;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.course-modal-benefits i {
    color: var(--color-olive);
    font-size: 0.9rem;
    margin-top: 4px;
}

.course-modal-footer {
    display: flex;
    justify-content: flex-end;
}

.reg-modal-header {
    margin-bottom: 30px;
}

.reg-modal-header h3 {
    font-size: 2rem;
    color: var(--color-sage);
    margin-bottom: 10px;
}

.reg-modal-header p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.reg-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-sage);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--color-mauve);
    background-color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark-text);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-rose);
    box-shadow: 0 0 0 3px rgba(198, 118, 90, 0.1);
}

.btn-submit {
    margin-top: 10px;
    padding: 16px;
    font-size: 1rem;
    border-radius: 8px;
    width: 100%;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        height: 400px;
        order: -1;
    }
    
    .nutrition-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nutrition-image-wrapper {
        height: 380px;
        order: -1;
        width: calc(100% - 20px);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list,
    .nav-socials {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-overlay {
        background: linear-gradient(to right, rgba(242, 224, 201, 0.95) 0%, rgba(252, 249, 245, 0.7) 100%);
    }
    
    .contact-box {
        padding: 40px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .course-modal-content,
    .reg-modal-content {
        padding: 30px 20px;
    }
    
    .course-modal-title {
        font-size: 1.8rem;
    }
    
    .reg-modal-header h3 {
        font-size: 1.6rem;
    }
    
    .btn-placard {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
