/* === FLOURISH360 PREMIUM DESIGN === */
/* Modern, clean, and mobile-friendly design */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Logo colors */
    --sage-green: #6B9B8E;
    --sage-dark: #5F8F83;
    --sage-light: #7BA89B;
    --cream-bg: #FDFBF7;
    --white: #FFFFFF;
    --text-black: #1a1a1a;
    --text-gray: #666666;
    --orange-accent: #FF6B4A;
    
    /* Spacing */
    --max-width: 1200px;
    --section-padding: 4rem 1.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream-bg);
    color: var(--text-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

/* === NAVIGATION === */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(107, 155, 142, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border-bottom-color: rgba(107, 155, 142, 0.2);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.45rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-container a:hover {
    opacity: 0.8;
}

.logo-img {
    max-height: 57px;
    width: auto;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-black);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--sage-green);
}

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

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-black);
}

.nav-dropdown-toggle i {
    font-size: 0.75rem;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    min-width: 220px;
    border: 1px solid rgba(107, 155, 142, 0.12);
    display: none;
    flex-direction: column;
    z-index: 1200;
}

.nav-dropdown-menu .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.nav-dropdown-menu .nav-link::after {
    display: none;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: flex;
}

@media (hover: hover) {
    .nav-dropdown:hover .nav-dropdown-menu {
        display: flex;
    }
}

.btn-primary,
.btn-secondary {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 155, 142, 0.3);
}

.btn-secondary {
    background: var(--orange-accent);
    color: white;
}

.btn-secondary:hover {
    background: #ff5a35;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.3);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-black);
    cursor: pointer;
}

/* === HERO SECTION === */
.hero-home {
    background: linear-gradient(135deg, #7BA89B 0%, #6B9B8E 30%, #5F8F83 60%, #4D7D71 100%);
    min-height: 85vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 3rem 1.5rem;
    isolation: isolate;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-home::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,107,74,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.18;
    pointer-events: none;
}

.hero-shape-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(123,168,155,0.3) 50%, transparent 100%);
    top: 5%;
    right: -5%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 320px;
    height: 320px;
    background: linear-gradient(225deg, rgba(255,107,74,0.35) 0%, rgba(107,155,142,0.2) 50%, transparent 100%);
    bottom: 10%;
    left: 5%;
    animation-delay: 8s;
}

.hero-shape-3 {
    width: 280px;
    height: 280px;
    background: linear-gradient(45deg, rgba(255,255,255,0.5) 0%, rgba(95,143,131,0.25) 50%, transparent 100%);
    top: 50%;
    right: 15%;
    animation-delay: 4s;
}

.hero-shape-4 {
    width: 200px;
    height: 200px;
    background: linear-gradient(315deg, rgba(123,168,155,0.4) 0%, transparent 100%);
    top: 25%;
    left: 8%;
    animation-delay: 12s;
    border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
}

.hero-shape-5 {
    width: 150px;
    height: 150px;
    background: linear-gradient(180deg, rgba(255,107,74,0.25) 0%, transparent 100%);
    bottom: 35%;
    right: 10%;
    animation-delay: 6s;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.hero-shape-6 {
    width: 240px;
    height: 240px;
    background: linear-gradient(90deg, rgba(255,255,255,0.4) 0%, rgba(107,155,142,0.2) 100%);
    top: 70%;
    left: 35%;
    animation-delay: 10s;
    border-radius: 40% 60% 55% 45% / 65% 35% 65% 35%;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    pointer-events: none;
}

.hero-particle:nth-child(4) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.hero-particle:nth-child(5) {
    top: 70%;
    right: 25%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.hero-particle:nth-child(6) {
    bottom: 30%;
    left: 30%;
    animation-delay: 10s;
    animation-duration: 18s;
}

.hero-particle:nth-child(7) {
    top: 40%;
    right: 40%;
    animation-delay: 3s;
    width: 6px;
    height: 6px;
    background: rgba(255,107,74,0.7);
}

.hero-particle:nth-child(8) {
    top: 60%;
    left: 20%;
    animation-delay: 7s;
    animation-duration: 22s;
    width: 5px;
    height: 5px;
}

.hero-particle:nth-child(9) {
    bottom: 20%;
    right: 15%;
    animation-delay: 14s;
    animation-duration: 16s;
    background: rgba(123,168,155,0.8);
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content-minimal {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 0.6s ease-out;
}

.hero-title-main {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary-large {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.1rem 3rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    background: white;
    color: var(--sage-dark);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(107, 155, 142, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-large:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-text-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.btn-text-link:hover {
    opacity: 1;
    gap: 0.75rem;
}

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

.btn-text-link:hover i {
    transform: translateX(3px);
}

/* === CONTAINER === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-padding);
}

/* === SECTION TITLES === */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-black);
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--orange-accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* === FEATURES SECTION === */
.features-section {
    background: white;
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(107, 155, 142, 0.1);
}

.features-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--cream-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(107, 155, 142, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(107, 155, 142, 0.15);
    border-color: var(--sage-green);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--sage-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-black);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* === SHARED SECTION STYLES === */
.section-block {
    padding: var(--section-padding);
}

.section-block.light {
    background: white;
}

.section-block.cream {
    background: var(--cream-bg);
}

.section-intro {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
}

.section-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-pill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.section-pill {
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    background: rgba(107, 155, 142, 0.12);
    color: var(--sage-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* === OUR STORY === */
.story-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.story-card,
.story-visual {
    height: 100%;
}

.story-card {
    background: white;
    padding: 2.25rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(107, 155, 142, 0.15);
    display: flex;
    flex-direction: column;
}

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.story-highlight {
    padding: 1rem;
    border-radius: 12px;
    background: var(--cream-bg);
    border: 1px solid rgba(107, 155, 142, 0.15);
}

.story-highlight strong {
    display: block;
    font-size: 1.2rem;
    color: var(--sage-dark);
}

.section-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 320px;
    background: linear-gradient(135deg, var(--sage-light), var(--sage-green));
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.section-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
}

.story-visual-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 0.45rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--sage-dark);
    font-weight: 600;
    z-index: 1;
}

.section-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0 0;
}

.photo-grid-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 200px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.photo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-grid-item span {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* === WELLNESS APPROACH === */
.wellness-visual {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(107, 155, 142, 0.1);
}

.wellness-visuals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.wellness-visual-item {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(107, 155, 142, 0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.wellness-visual-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(107, 155, 142, 0.15);
}

.wellness-diagram {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.wellness-summary {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.wellness-summary p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.wellness-summary strong {
    color: var(--sage-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .wellness-visuals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* === JOURNEY TOGETHER SECTION === */
.journey-visual-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.journey-family-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.journey-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    padding: 3rem 2.5rem 2.5rem;
    color: white;
}

.journey-overlay-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.journey-overlay-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .journey-overlay-text {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .journey-overlay-text h3 {
        font-size: 1.5rem;
    }
    
    .journey-overlay-text p {
        font-size: 1rem;
    }
    
    .journey-family-img {
        max-height: 400px;
    }
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
}

.approach-step {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid rgba(107, 155, 142, 0.15);
    position: relative;
}

.approach-step span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(107, 155, 142, 0.15);
    color: var(--sage-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.approach-step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

/* === SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid rgba(107, 155, 142, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-card i {
    font-size: 1.8rem;
    color: var(--sage-green);
}

.service-card h3 {
    font-size: 1.2rem;
}

.service-chip {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sage-dark);
}

/* === COACHES === */
.coach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.coach-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(107, 155, 142, 0.12);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.coach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(107, 155, 142, 0.15);
}

.coach-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(107, 155, 142, 0.2), rgba(107, 155, 142, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--sage-dark);
    border: 3px solid rgba(107, 155, 142, 0.2);
}

.coach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-black);
}

.coach-meta {
    font-size: 0.95rem;
    color: var(--sage-green);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.coach-story {
    text-align: left;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.coach-focus {
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-gray);
    padding-top: 1rem;
    border-top: 1px solid rgba(107, 155, 142, 0.15);
}

.coach-focus strong {
    color: var(--sage-dark);
    font-weight: 600;
}

.coach-visual {
    margin-bottom: 2.5rem;
}

.coach-visual-note {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(107, 155, 142, 0.12);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.04);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-size: 3rem;
    color: rgba(107, 155, 142, 0.2);
}

.testimonial-card p {
    margin-top: 1rem;
}

.testimonial-author {
    display: block;
    margin-top: 1.25rem;
    font-weight: 600;
    color: var(--text-black);
}

.testimonial-author span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.testimonial-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.testimonial-cta p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* === TESTIMONIAL SLIDESHOW === */
.testimonials-slideshow-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-slideshow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    min-height: 320px;
    position: relative;
}

.testimonial-card-slide {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(107, 155, 142, 0.12);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.04);
    position: relative;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.testimonial-card-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-quote {
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-size: 3rem;
    color: rgba(107, 155, 142, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-message {
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 400;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--sage-green);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more-btn:hover {
    color: var(--sage-dark);
    transform: translateX(3px);
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--sage-green);
    color: var(--sage-green);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(107, 155, 142, 0.15);
}

.slide-nav:hover {
    background: var(--sage-green);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(107, 155, 142, 0.3);
}

.slide-prev {
    left: 0;
}

.slide-next {
    right: 0;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(107, 155, 142, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-dot:hover {
    background: rgba(107, 155, 142, 0.6);
    transform: scale(1.3);
}

.slide-dot.active {
    background: var(--sage-green);
    transform: scale(1.4);
    box-shadow: 0 2px 8px rgba(107, 155, 142, 0.4);
}

.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.review-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.review-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(107, 155, 142, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--sage-dark);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.review-modal-close:hover {
    background: var(--sage-green);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.review-modal-body {
    padding: 3rem;
    position: relative;
}

.review-modal-body .testimonial-quote {
    font-size: 4rem;
    color: rgba(107, 155, 142, 0.15);
}

.review-modal-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 1.5rem 0 2rem;
}

.modal-review-author {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(107, 155, 142, 0.1);
}

.modal-review-author strong {
    font-size: 1.05rem;
    color: var(--text-black);
}

.modal-review-author .testimonial-role {
    font-size: 0.9rem;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .testimonials-slideshow-wrapper {
        padding: 0 50px;
    }
    
    .testimonials-slideshow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: 280px;
    }
    
    .testimonial-card-slide {
        padding: 1.5rem;
    }
    
    .slide-nav {
        width: 40px;
        height: 40px;
    }
    
    .slide-prev {
        left: -5px;
    }
    
    .slide-next {
        right: -5px;
    }
    
    .review-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .review-modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }
}

/* === CONNECT SECTION === */
.connect-card {
    max-width: var(--max-width);
    margin: 0 auto;
    background: linear-gradient(120deg, var(--sage-light), var(--sage-green));
    border-radius: 24px;
    padding: 3rem;
    color: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.connect-card h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.connect-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.connect-actions .btn-primary,
.connect-actions .btn-secondary {
    background: white;
    color: var(--sage-dark);
}

.connect-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* === FAQ === */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(107, 155, 142, 0.15);
    padding: 1.25rem 1.5rem;
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin-top: 0.75rem;
    color: var(--text-gray);
}

/* === BLOG POSTS GRID === */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(107, 155, 142, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(107, 155, 142, 0.2);
    border-color: var(--sage-green);
}

.post-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--sage-light), var(--sage-green));
}

.post-content {
    padding: 1.75rem;
}

.post-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-black);
    font-weight: 600;
    line-height: 1.3;
}

.post-excerpt {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.read-more {
    color: var(--orange-accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.post-card:hover .read-more {
    gap: 1rem;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
}

.no-posts i {
    font-size: 3.5rem;
    color: var(--sage-green);
    opacity: 0.3;
    margin-bottom: 1rem;
}

/* === FLASH MESSAGES === */
.flash-messages {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem 0;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(107, 155, 142, 0.1);
    color: var(--sage-dark);
    border-left: 4px solid var(--sage-green);
}

.alert-error {
    background: rgba(255, 107, 74, 0.1);
    color: #c73a1e;
    border-left: 4px solid var(--orange-accent);
}

/* === FOOTER === */
.footer {
    background: var(--text-black);
    color: rgba(255, 255, 255, 0.9);
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--sage-light);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link i {
    font-size: 1.1rem;
    line-height: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    background: var(--sage-green);
    border-color: var(--sage-green);
    transform: translateY(-3px);
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(107, 155, 142, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 0.5rem;
    }
    
    .nav-dropdown-menu .nav-link {
        width: 100%;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(107, 155, 142, 0.1);
    }
    
    .nav-dropdown-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo-img {
        height: 110px;
    }
    
    .hero-home {
        padding: 4rem 1.25rem 3.5rem;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-content {
        text-align: left;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-media {
        order: -1;
        margin-bottom: 1.5rem;
    }
    
    .hero-media-card {
        bottom: 0.85rem;
        right: 0.85rem;
        left: auto;
        max-width: 180px;
        padding: 0.75rem 1rem;
    }
    
    .container {
        padding: 3rem 1.25rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wellness-visual {
        padding: 1rem;
    }
    
    .wellness-summary p {
        font-size: 1rem;
    }
    
    .story-visual {
        max-width: 100%;
        margin: 2rem auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-visual {
        min-height: 260px;
    }

    .section-photo-grid {
        grid-template-columns: 1fr;
    }
}

/* === OUR STORY NARRATIVE === */
.story-narrative {
    max-width: 900px;
    margin: 0 auto;
}

.story-chapter {
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.story-chapter h3 {
    font-size: 1.8rem;
    color: var(--sage-dark);
    margin-bottom: 1.25rem;
}

.story-chapter p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.story-cycle {
    list-style: none;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
}

.story-cycle li {
    font-size: 1.05rem;
    color: var(--text-black);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.story-cycle li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
}

.story-visual {
    max-width: 700px;
    margin: 3rem auto;
    padding: 0;
    opacity: 0.85;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(107, 155, 142, 0.12);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.story-visual:hover {
    opacity: 1;
    transform: scale(1.01);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.belief-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.belief-card {
    background: white;
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(107, 155, 142, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.belief-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 155, 142, 0.15);
}

.belief-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
}

.belief-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.story-closing {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-black);
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(107, 155, 142, 0.2);
}

/* === SERVICE CATEGORIES === */
.service-category {
    margin-bottom: 3.5rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--sage-green);
}

.category-header i {
    font-size: 2rem;
    color: var(--sage-green);
}

.category-header h3 {
    font-size: 1.8rem;
    color: var(--sage-dark);
    margin: 0;
}

.service-expandable {
    background: white;
    border: 1px solid rgba(107, 155, 142, 0.12);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-expandable:hover {
    box-shadow: 0 8px 25px rgba(107, 155, 142, 0.1);
}

.service-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.service-toggle:hover {
    background: rgba(107, 155, 142, 0.05);
}

.service-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-black);
    flex: 1;
}

.service-toggle i {
    color: var(--sage-green);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.service-expandable.active .service-toggle i {
    transform: rotate(180deg);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.service-expandable.active .service-details {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

.service-offerings {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-offerings li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(107, 155, 142, 0.08);
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-offerings li:last-child {
    border-bottom: none;
}

.service-offerings strong {
    color: var(--sage-dark);
    font-weight: 600;
}

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

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

@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: translate(-15px, 15px) rotate(180deg);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: translate(10px, 25px) rotate(270deg);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    25% {
        transform: translate(40px, -60px);
        opacity: 0.8;
    }
    50% {
        transform: translate(-30px, -120px);
        opacity: 0.5;
    }
    75% {
        transform: translate(60px, -80px);
        opacity: 0.9;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero-home {
        min-height: 70vh;
    }
    
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .btn-primary-large {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
    
    .story-chapter h3 {
        font-size: 1.5rem;
    }
    
    .belief-cards {
        grid-template-columns: 1fr;
    }
    
    .category-header h3 {
        font-size: 1.4rem;
    }
    
    .service-title {
        font-size: 1rem;
    }
}


