/* =================================================================
   Wellness Spa & Pilates Premium Theme
   Calm, luxurious design for spas, pilates studios & wellness centers
   Sage green + blush rose palette, Cormorant Garamond headings
   ================================================================= */

/* -- Design Tokens ------------------------------------------------ */
:root {
    --ws-primary: #7A9E7E;
    --ws-primary-dark: #5C7E60;
    --ws-primary-light: #EDF4EE;
    --ws-primary-soft: #D8E8DA;
    --ws-accent: #C8928A;
    --ws-accent-dark: #A87069;
    --ws-accent-light: #F9EFED;
    --ws-surface: #FAFAF8;
    --ws-surface-strong: #F2F1EE;
    --ws-ink: #2C2C2A;
    --ws-muted: #7D7B76;
    --ws-border: rgba(122, 158, 126, 0.12);
    --ws-shadow-xs: 0 1px 3px rgba(44, 44, 42, 0.04);
    --ws-shadow-sm: 0 2px 8px rgba(44, 44, 42, 0.06);
    --ws-shadow: 0 8px 30px rgba(44, 44, 42, 0.08);
    --ws-shadow-lg: 0 20px 60px rgba(44, 44, 42, 0.10);
    --ws-shadow-accent: 0 12px 28px rgba(122, 158, 126, 0.18);
    --ws-radius: 16px;
    --ws-radius-lg: 24px;
    --ws-radius-pill: 999px;
    --ws-body-font: 'Nunito Sans', sans-serif;
    --ws-heading-font: 'Cormorant Garamond', serif;
    --ws-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ws-transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -- Base --------------------------------------------------------- */
body.wellness-body {
    font-family: var(--ws-body-font);
    color: var(--ws-ink);
    background: var(--ws-surface);
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: var(--ws-primary-soft);
    color: var(--ws-primary-dark);
}

.text-muted { color: var(--ws-muted) !important; }
a { color: var(--ws-primary-dark); transition: color var(--ws-transition-fast); }
a:hover { color: var(--ws-accent-dark); }
.text-primary { color: var(--ws-primary-dark) !important; }
.bg-primary { background-color: var(--ws-primary) !important; }
.bg-light { background-color: var(--ws-surface-strong) !important; }
img { max-width: 100%; }

/* -- Typography --------------------------------------------------- */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--ws-accent);
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--ws-accent);
    border-radius: 2px;
}

.text-center .section-eyebrow::before { display: none; }

.section-title {
    font-family: var(--ws-heading-font);
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ws-ink);
    position: relative;
    padding-bottom: 1.1rem;
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--ws-accent), var(--ws-primary));
    border-radius: var(--ws-radius-pill);
}

.section-title--left { text-align: left; }
.section-title--left::after { left: 0; transform: none; }

/* -- Buttons ------------------------------------------------------ */
.btn {
    border-radius: var(--ws-radius-pill);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    padding: 0.7rem 1.5rem;
    border-width: 1.5px;
    transition: all var(--ws-transition);
    position: relative;
    overflow: hidden;
}

.btn-lg { padding: 0.85rem 1.8rem; font-size: 0.95rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }

.btn-primary {
    background: var(--ws-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--ws-shadow-accent);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--ws-primary-dark);
    border-color: transparent;
    box-shadow: 0 16px 36px rgba(122, 158, 126, 0.25);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: rgba(122, 158, 126, 0.30);
    color: var(--ws-primary-dark);
    background: rgba(255, 255, 255, 0.9);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--ws-primary);
    border-color: var(--ws-primary);
    color: #fff;
    box-shadow: var(--ws-shadow-accent);
    transform: translateY(-1px);
}

.btn-accent {
    background: var(--ws-accent);
    border-color: transparent;
    color: #fff;
}

.btn-accent:hover {
    background: var(--ws-accent-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-light {
    background: #fff;
    border-color: transparent;
    color: var(--ws-primary-dark);
    font-weight: 700;
}

.btn-light:hover {
    background: var(--ws-primary-light);
    color: var(--ws-primary-dark);
    transform: translateY(-1px);
}

/* -- Navbar ------------------------------------------------------- */
.wellness-navbar {
    padding: 0.75rem 0;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-bottom: 1px solid rgba(122, 158, 126, 0.06);
    z-index: 1040;
    transition: all var(--ws-transition);
}

.wellness-navbar .container {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(122, 158, 126, 0.08);
    border-radius: 20px;
    padding: 0.6rem 1.2rem;
    box-shadow: var(--ws-shadow-sm);
}

.navbar-brand { text-decoration: none; }
.navbar-brand img { max-height: 40px; }

.brand-name {
    font-family: var(--ws-heading-font);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1;
    color: var(--ws-ink);
}

.brand-tagline {
    margin-top: 0.15rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ws-accent);
}

.navbar .nav-link {
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.45rem 0.85rem !important;
    color: var(--ws-ink);
    border-radius: var(--ws-radius-pill);
    transition: all var(--ws-transition-fast);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--ws-primary-dark) !important;
    background: var(--ws-primary-light);
}

.nav-cta-btn {
    white-space: nowrap;
    font-size: 0.85rem !important;
    padding: 0.55rem 1.2rem !important;
}

/* Language Switcher */
.lang-switcher-btn {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-color: var(--ws-border);
    color: var(--ws-ink);
    border-radius: var(--ws-radius-pill);
    padding: 0.3rem 0.7rem;
}

.lang-switcher-btn:hover {
    background: var(--ws-primary-light);
    border-color: var(--ws-primary);
    color: var(--ws-primary-dark);
}

.dropdown-item.active { background: var(--ws-primary); }
.dropdown-item form { margin: 0; }

/* =================================================================
   HERO SECTION
   ================================================================= */
.hero-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #EDF4EE;
}

/* Right-half background image — bleeds to viewport edge */
.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 0;
}

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

/* Gradient fade from bg color into image */
.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #EDF4EE 0%,
        rgba(237, 244, 238, 0.85) 18%,
        rgba(237, 244, 238, 0.4) 42%,
        rgba(237, 244, 238, 0) 68%
    );
    z-index: 1;
}

.hero-section::before { display: none; }
.hero-section::after { display: none; }

.hero-text-col { padding: 5rem 0; }

.hero-title {
    font-family: var(--ws-heading-font);
    font-size: clamp(2.5rem, 4.8vw, 3.8rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--ws-ink);
    margin-bottom: 1.25rem;
}

.hero-title .text-accent { color: var(--ws-accent); }

.hero-subtitle {
    max-width: 30rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ws-muted);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.hero-trust-stars { display: flex; gap: 2px; color: #E8B94A; font-size: 0.95rem; }
.hero-trust-text { font-size: 0.82rem; color: var(--ws-muted); font-weight: 600; }

/* Hero decorative side */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.hero-visual-grid {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero-card-float {
    background: #fff;
    border-radius: var(--ws-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--ws-shadow);
    border: 1px solid rgba(122, 158, 126, 0.06);
    position: relative;
}

.hero-card-float--main { padding: 2rem; }

.hero-card-float--small {
    position: absolute;
    padding: 1rem 1.25rem;
    border-radius: var(--ws-radius);
    z-index: 2;
}

.hero-card-float--small.card-top-right {
    top: -20px;
    right: -30px;
    animation: float-gentle 4s ease-in-out infinite;
}

.hero-card-float--small.card-bottom-left {
    bottom: -15px;
    left: -25px;
    animation: float-gentle 4s ease-in-out infinite 2s;
}

.hero-stat { display: flex; align-items: center; gap: 0.75rem; }

.hero-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-stat-icon--primary { background: var(--ws-primary-light); color: var(--ws-primary-dark); }
.hero-stat-icon--accent { background: var(--ws-accent-light); color: var(--ws-accent-dark); }

.hero-stat-number {
    font-family: var(--ws-heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ws-ink);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--ws-muted);
    font-weight: 600;
    margin-top: 2px;
}

.hero-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.hero-services-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ws-ink);
}

.hero-services-list li i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    background: var(--ws-primary-light);
    color: var(--ws-primary-dark);
    flex-shrink: 0;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* -- Hero Info Cards ---------------------------------------------- */
.hero-cards-section {
    margin-top: -2.5rem;
    position: relative;
    z-index: 4;
    padding-bottom: 1rem;
}

.hero-info-card {
    padding: 1.75rem 1.5rem;
    background: #fff;
    height: 100%;
    border: 1px solid var(--ws-border);
    border-radius: 0;
    transition: all var(--ws-transition);
}

.hero-cards-section .col-md-4:first-child .hero-info-card {
    border-radius: var(--ws-radius) 0 0 var(--ws-radius);
}

.hero-cards-section .col-md-4:last-child .hero-info-card {
    border-radius: 0 var(--ws-radius) var(--ws-radius) 0;
}

.hero-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ws-shadow);
    z-index: 1;
}

.hero-info-card--accent {
    background: var(--ws-primary);
    color: #fff;
    border-color: transparent;
}

.hero-info-card--accent .hero-info-card-icon { background: rgba(255, 255, 255, 0.18); color: #fff; }
.hero-info-card--accent .hero-info-card-title { color: #fff; }
.hero-info-card--accent .hero-info-card-label { color: rgba(255, 255, 255, 0.7); }
.hero-info-card--accent .hero-info-card-text { color: rgba(255, 255, 255, 0.85); }
.hero-info-card--accent .hero-info-card-link { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.hero-info-card--accent .hero-info-card-link:hover { background: rgba(255, 255, 255, 0.15); border-color: #fff; }

.hero-info-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--ws-primary-light);
    color: var(--ws-primary-dark);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.hero-info-card-title {
    font-family: var(--ws-heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--ws-ink);
}

.hero-info-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ws-muted);
    margin-bottom: 0.6rem;
}

.hero-info-card-text {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--ws-muted);
    margin-bottom: 1rem;
}

.hero-info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ws-primary-dark);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border: 1.5px solid var(--ws-border);
    border-radius: var(--ws-radius-pill);
    transition: all var(--ws-transition-fast);
}

.hero-info-card-link:hover {
    background: var(--ws-primary);
    border-color: var(--ws-primary);
    color: #fff;
}

/* =================================================================
   SERVICES SECTION
   ================================================================= */
.services-section { padding: 5rem 0; background: #fff; }

.service-card {
    background: #fff;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--ws-transition);
    height: 100%;
    box-shadow: var(--ws-shadow-xs);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ws-shadow-lg);
    border-color: rgba(122, 158, 126, 0.18);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all var(--ws-transition);
}

.service-card:hover .service-card-icon { transform: scale(1.08); }

.service-card-icon--primary { background: var(--ws-primary-light); color: var(--ws-primary-dark); }
.service-card-icon--accent { background: var(--ws-accent-light); color: var(--ws-accent-dark); }
.service-card-icon--teal { background: #E4F0EE; color: #3D8B7A; }
.service-card-icon--blue { background: #EDE8F4; color: #7B6CA5; }

.service-card h5 {
    font-family: var(--ws-heading-font);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--ws-ink);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--ws-muted);
    margin-bottom: 0;
}

/* -- About / Why Choose Us ---------------------------------------- */
.about-section { padding: 5rem 0; background: var(--ws-surface-strong); }

.about-feature { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }

.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: var(--ws-primary-light);
    color: var(--ws-primary-dark);
}

.about-feature h6 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--ws-ink); }
.about-feature p { font-size: 0.85rem; line-height: 1.6; color: var(--ws-muted); margin-bottom: 0; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.about-stat-card {
    background: #fff;
    border-radius: var(--ws-radius);
    padding: 1.25rem;
    text-align: center;
    border: 1px solid var(--ws-border);
    box-shadow: var(--ws-shadow-xs);
}

.about-stat-number {
    font-family: var(--ws-heading-font);
    font-size: 2rem;
    font-weight: 600;
    color: var(--ws-primary-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ws-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* =================================================================
   CARD SYSTEM
   ================================================================= */
.card { border-radius: var(--ws-radius-lg); }

.staff-card,
.testimonial-card,
.blog-card {
    border-radius: var(--ws-radius-lg);
    border: 1px solid var(--ws-border);
    box-shadow: var(--ws-shadow-xs);
    transition: all var(--ws-transition);
    overflow: hidden;
}

.staff-card:hover,
.testimonial-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ws-shadow);
    border-color: rgba(122, 158, 126, 0.16);
}

.staff-card .card-title,
.blog-card .card-title { font-weight: 700; color: var(--ws-ink); }
.blog-card .card-img-top { border-radius: 0; }

/* -- Badges ------------------------------------------------------- */
.badge {
    border-radius: var(--ws-radius-pill);
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 0.75rem;
}

.badge.bg-primary.bg-opacity-10.text-primary {
    background: var(--ws-primary-light) !important;
    color: var(--ws-primary-dark) !important;
    border: 1px solid rgba(122, 158, 126, 0.14);
}

.badge.bg-light.text-muted.border {
    background: var(--ws-surface-strong) !important;
    color: var(--ws-ink) !important;
    border-color: var(--ws-border) !important;
    font-weight: 600;
}

/* -- Testimonials ------------------------------------------------- */
.testimonials-section { padding: 5rem 0; background: var(--ws-surface-strong); }

.testimonial-card .card-body {
    position: relative;
    padding: 1.75rem;
}

.testimonial-card .card-body::before {
    content: '\201C';
    position: absolute;
    top: 0.75rem;
    right: 1.25rem;
    font-family: var(--ws-heading-font);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--ws-primary-light);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #E8B94A;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--ws-ink);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.testimonial-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ws-primary-light);
}

.testimonial-author strong { font-size: 0.88rem; color: var(--ws-ink); display: block; }
.testimonial-author small { font-size: 0.78rem; color: var(--ws-muted); }

/* -- CTA Section -------------------------------------------------- */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: linear-gradient(135deg, #5C7E60 0%, #7A9E7E 50%, #8FB393 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(200, 146, 138, 0.08);
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section .section-eyebrow { color: rgba(255, 255, 255, 0.5); }
.cta-section .section-eyebrow::before { background: rgba(255, 255, 255, 0.3); }
.cta-section h2 { font-family: var(--ws-heading-font); color: #fff; }
.cta-section p { color: rgba(255, 255, 255, 0.8); }

/* -- WhatsApp Float ----------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    width: 56px; height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    z-index: 1050;
    text-decoration: none;
    transition: all var(--ws-transition);
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    color: #fff;
}

/* -- LGPD Banner -------------------------------------------------- */
.lgpd-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(44, 44, 42, 0.96);
    color: #ccc;
    z-index: 1060;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(12px);
}
.lgpd-banner a { color: #fff; }

/* =================================================================
   FOOTER
   ================================================================= */
.wellness-footer {
    background: linear-gradient(180deg, #2C2C2A 0%, #1E1E1C 100%);
}

.footer-brand-lockup h5 { font-family: var(--ws-heading-font); font-size: 1.5rem; }

.footer-tagline {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.footer-contact-list li { display: flex; align-items: flex-start; }
.footer-contact-list i { margin-top: 0.18rem; }
.footer a:hover { color: #fff !important; }

.wellness-footer h6 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.footer-social a {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--ws-transition-fast);
}

.footer-social a:hover {
    background: var(--ws-primary);
    border-color: var(--ws-primary);
    transform: translateY(-2px);
}

/* =================================================================
   BLOG PAGES
   ================================================================= */
.page-header {
    padding: 3.5rem 0 2rem;
    background: linear-gradient(135deg, #FAFAF8 0%, #EDF4EE 100%);
    border-bottom: 1px solid var(--ws-border);
}

.blog-detail-hero { padding: 3rem 0 1rem; }

.blog-detail-title {
    font-family: var(--ws-heading-font);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ws-ink);
}

.blog-featured-image {
    border-radius: var(--ws-radius-lg);
    overflow: hidden;
    box-shadow: var(--ws-shadow);
}

.blog-featured-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.blog-content-body { font-size: 1.05rem; line-height: 1.85; }

.blog-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--ws-radius);
    margin: 1.5rem 0;
}

/* -- Rich Content ------------------------------------------------- */
.rich-content { color: var(--ws-ink); font-size: 1.02rem; line-height: 1.85; }
.rich-content > * + * { margin-top: 1rem; }

.rich-content h2,
.rich-content h3,
.rich-content h4 {
    font-family: var(--ws-heading-font);
    color: var(--ws-ink);
    line-height: 1.2;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.rich-content h2 { font-size: 1.6rem; }
.rich-content h3 { font-size: 1.35rem; }
.rich-content p { margin-bottom: 0; color: var(--ws-muted); }
.rich-content ul, .rich-content ol { padding-left: 1.2rem; margin-bottom: 0; }
.rich-content li { margin-bottom: 0.5rem; color: var(--ws-muted); }
.rich-content strong { color: var(--ws-ink); }

/* -- Breadcrumbs -------------------------------------------------- */
.breadcrumb { font-size: 0.82rem; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--ws-muted); }
.breadcrumb-item a { color: var(--ws-muted); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--ws-primary-dark); }

/* -- Forms -------------------------------------------------------- */
.form-control, .form-select {
    border-radius: 12px;
    border-color: var(--ws-border);
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    transition: all var(--ws-transition-fast);
}

.form-control:focus, .form-select:focus {
    border-color: var(--ws-primary);
    box-shadow: 0 0 0 3px rgba(122, 158, 126, 0.1);
}

.form-label { font-size: 0.85rem; font-weight: 600; color: var(--ws-ink); margin-bottom: 0.35rem; }

/* -- Staff Detail ------------------------------------------------- */
.appointment-sidebar { position: sticky; top: 5rem; }

.staff-profile-image {
    width: 200px; height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--ws-primary-light);
    box-shadow: var(--ws-shadow);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 991.98px) {
    .wellness-navbar .container { border-radius: 16px; }
    .hero-section { min-height: auto; }
    .hero-text-col { padding: 3rem 0; }
    .hero-bg-image { width: 100%; }
    .hero-bg-image::after {
        background: linear-gradient(
            to right,
            #EDF4EE 0%,
            rgba(237, 244, 238, 0.92) 30%,
            rgba(237, 244, 238, 0.7) 55%,
            rgba(237, 244, 238, 0.3) 80%,
            transparent 100%
        );
    }
}

@media (max-width: 767.98px) {
    .hero-section { text-align: center; min-height: 480px; }
    .hero-bg-image::after {
        background: linear-gradient(
            to bottom,
            rgba(237, 244, 238, 0.92) 0%,
            rgba(237, 244, 238, 0.75) 40%,
            rgba(237, 244, 238, 0.5) 70%,
            rgba(237, 244, 238, 0.2) 100%
        );
    }
    .hero-bg-image { width: 100%; }
    .hero-bg-image img { object-position: 70% center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }

    .hero-info-card { border-radius: 0 !important; border-bottom: 1px solid var(--ws-border); }
    .hero-cards-section .col-md-4:first-child .hero-info-card { border-radius: var(--ws-radius) var(--ws-radius) 0 0 !important; }
    .hero-cards-section .col-md-4:last-child .hero-info-card { border-radius: 0 0 var(--ws-radius) var(--ws-radius) !important; }
    .hero-cards-section { margin-top: 0; }

    .section-title { font-size: 1.8rem; }
    .section-eyebrow::before { display: none; }

    .whatsapp-float {
        bottom: 1rem; right: 1rem;
        width: 48px; height: 48px;
        font-size: 1.3rem;
    }

    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .about-stat-number { font-size: 1.5rem; }
    .staff-profile-image { width: 160px; height: 160px; }
    .btn-lg { width: 100%; }
    .footer-social { justify-content: center; }
}

/* -- Utility ------------------------------------------------------ */
.py-section { padding: 5rem 0; }
.min-vh-75 { min-height: 75vh; }
html { scroll-behavior: smooth; }
:focus-visible { outline: 2px solid var(--ws-primary); outline-offset: 2px; }
