﻿/* 
   YUGEN Holistic Healing - Core Style Sheet
   Designed for pure elegance, professional authority, and holistic calm.
   Enhanced version: Serene luxury aesthetics, gold accents, and fluid spacing.
*/

/* Imports & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* =======================================================
   PAGE LOADER — Logo fades out after load
   ======================================================= */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-content {
    text-align: center;
    animation: loader-breathe 2s ease-in-out infinite;
}
.loader-logo {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
}
.loader-bar {
    width: 160px;
    height: 2px;
    background: rgba(80, 30, 120, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}
.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
    border-radius: 2px;
    animation: loader-fill 1.8s ease-in-out forwards;
}
.loader-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-top: 1rem;
    letter-spacing: 0.15em;
}

@keyframes loader-breathe {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.85; }
}
@keyframes loader-fill {
    0% { width: 0%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

/* =======================================================
   DISCLAIMER GATE — Full-screen before site content
   ======================================================= */
#disclaimer-gate {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#disclaimer-gate.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.disclaimer-gate-content {
    max-width: 720px;
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(80, 30, 120, 0.12);
    padding: 3.5rem;
    text-align: center;
    animation: disclaimer-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes disclaimer-rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.disclaimer-logo {
    height: 64px;
    width: auto;
    margin: 0 auto 1.25rem auto;
    display: block;
}
#disclaimer-gate h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}
.disclaimer-text {
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.disclaimer-text p {
    margin-bottom: 1.1rem;
}
.disclaimer-text p:last-child {
    margin-bottom: 0;
}
#disclaimer-gate .btn {
    margin-top: 2rem;
    min-width: 200px;
}

/* 
   Design System — Color & Typography
   
   Primary:   #501E78  (Deep Violet)  - Main brand identity
   Secondary: #00B4A0  (Teal)         - Headings, tags, accents
   Accent:    #DC0078  (Hot Pink)     - Buttons, interactive, CTAs
   Accent Dark: #B40060               - Button hover states
   
   Heading:   Cormorant Garamond (serif)
   Body:      Inter (sans-serif)
*/

:root {
    /* Brand Colors */
    --color-primary: #501E78;
    --color-secondary: #DC0078;
    --color-accent: #DC0078;
    --color-accent-dark: #B40060;
    
    /* Background Colors */
    --bg-primary: #FAF8FF;
    --bg-secondary: #FFFFFF;
    --bg-accent: #FAF8F5;
    --bg-dark: var(--color-primary);
    
    /* Text Colors */
    --text-primary: var(--color-primary);
    --text-secondary: #6B4FA0;
    --text-light: #FFFFFF;
    
    /* Legacy aliases (backward compatible) */
    --accent-gold: var(--color-accent);
    --accent-gold-dark: var(--color-accent-dark);
    --accent-gold-light: #FF6EC7;
    --accent-sage: var(--color-secondary);
    --accent-amethyst: #7B2FBE;
    --brand-violet: var(--color-primary);
    --brand-teal: var(--color-secondary);
    --brand-pink: var(--color-accent);
    
    /* Fonts */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    --max-width: 1200px;
    --header-height: 90px;
}

/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

/* Subtle calm base animations */
@keyframes calm-rise {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes calm-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes breathe-logo {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.9; }
}

.logo-img {
    animation: breathe-logo 6s ease-in-out infinite;
}

/* Fade sections in on scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero content enters gently */
.hero-content,
.hero-btn-center {
    animation: calm-rise 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Card reveal stagger */
.service-list-card,
.service-teaser-card,
.why-card,
.svc-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-list-card:hover,
.service-teaser-card:hover,
.why-card:hover,
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(80, 30, 120, 0.06);
}

body {
    font-family: var(--font-body);
    line-height: 1.8;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    letter-spacing: 0.01em;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Custom Gold Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #E91E8C, #1DC8C8);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-amethyst);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, textarea, select {
    font-family: var(--font-body);
    font-size: 0.95rem;
}

/* Custom premium hover effects & animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 8rem 0; /* Expanded vertical spacing for high-end editorial feel */
}

.text-center { text-align: center; }

/* Sticky Header with Glassmorphism */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(250, 249, 246, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    height: 75px;
    background: rgba(250, 249, 246, 0.95);
    border-bottom-color: rgba(197, 168, 128, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

/* Header and navigation styles */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    flex-wrap: wrap; /* allow wrapping on small screens */
}
.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    min-width: 0; /* prevent overflow */
}
.logo-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--text-primary);
    line-height: 1;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    white-space: nowrap;
}
.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
    white-space: nowrap;
}
nav {
    display: flex;
    align-items: center;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}
.nav-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
}
/* Mobile responsive adjustments moved to bottom of file */

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Enquire button in header */
.btn-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: #FFFFFF;
    color: var(--color-accent) !important;
    border: 1.5px solid var(--color-accent);
    border-radius: 100px;
    transition: var(--transition-fast);
    cursor: pointer;
    line-height: 1;
    margin-left: 0.5rem;
}
.btn-enquire:hover {
    background: var(--color-accent);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 0, 120, 0.25);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* Core Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 100px; /* Elegant pill shape */
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(44, 53, 57, 0.08);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(197, 168, 128, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background-color: var(--color-accent);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(44, 53, 57, 0.1);
}

.btn-gold {
    background-color: var(--color-accent-dark);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.15);
}

.btn-gold:hover {
    background-color: var(--color-accent);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(44, 53, 57, 0.2);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--accent-gold);
}

.btn-outline-gold:hover {
    background-color: var(--color-accent-dark);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(197, 168, 128, 0.2);
}

/* Hero Template */
.hero {
    padding-top: calc(var(--header-height) + 5rem);
    padding-bottom: 7rem;
    background: radial-gradient(circle at 50% 30%, rgba(197, 168, 128, 0.12) 0%, transparent 60%);
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(197, 168, 128, 0.12);
    position: relative;
}

.hero::before {
    content: 'YUGEN';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 15vw;
    font-weight: 700;
    color: rgba(197, 168, 128, 0.025);
    letter-spacing: 0.1em;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    font-weight: 300;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.hero .btn-group {
    justify-content: center;
    margin-top: 1rem;
}

/* Home Hero Section - Fullscreen Video */
.home-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

/* Fullscreen video - cover full frame, anchor top so head isn't cut */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

/* Dark overlay so buttons are readable */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 10, 60, 0.45) 0%,
        rgba(45, 27, 94, 0.55) 100%
    );
    z-index: 1;
}

/* Centered tag + buttons stacked on top of video */
.hero-btn-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
}

/* Tag above buttons - plain text, medium size */
.hero-tag {
    font-size: 2.8rem;
    font-weight: 400;
    font-family: var(--font-heading);
    font-style: italic;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    display: inline-block;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

/* Override button colors + smaller size for video hero */
.home-hero .btn {
    padding: 0.75rem 1.8rem;
    font-size: 0.7rem;
}

.home-hero .btn-primary {
    background-color: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    box-shadow: 0 6px 30px rgba(233, 30, 140, 0.4);
}

.home-hero .btn-primary:hover {
    background-color: var(--color-secondary);
    color: #fff;
    transform: translateY(-3px) scale(1.04);
}

.home-hero .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}

.home-hero .btn-secondary:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px) scale(1.04);
}


/* Grid & Layout elements */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem; /* Expanded spacing */
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

/* Section Header styling */
.section-header {
    max-width: 750px;
    margin: 0 auto 5.5rem auto;
    text-align: center;
}

/* Tag labels — used above section headings */
.tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--color-secondary);
    margin-bottom: 1.2rem;
    display: inline-block;
}

.section-header .tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--color-secondary);
    margin-bottom: 1.2rem;
    display: inline-block;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Section specific styling */
/* Intro Section */
.intro-text-box {
    background: var(--bg-secondary);
    padding: 5.5rem;
    border: 1px solid rgba(197, 168, 128, 0.1);
    box-shadow: 0 15px 50px rgba(197, 168, 128, 0.03);
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

.intro-text-box::before {
    content: "\201C";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 9rem;
    color: rgba(197, 168, 128, 0.12);
    line-height: 1;
}

.intro-text-box p {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-style: italic;
    line-height: 1.45;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.intro-text-box .intro-body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-style: normal;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 780px;
    margin: 0 auto;
}

/* Why Yugen Grid */
.why-card {
    background: var(--bg-secondary);
    padding: 2.2rem 2rem;
    border: 1px solid rgba(197, 168, 128, 0.12);
    transition: var(--transition-smooth);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(197, 168, 128, 0.06);
    border-color: rgba(197, 168, 128, 0.25);
}

.why-icon {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-secondary);
    margin-bottom: 1.2rem;
}

.why-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Who We Help list */
.help-section {
    background: var(--bg-accent);
    border-top: 1px solid rgba(197, 168, 128, 0.12);
    border-bottom: 1px solid rgba(197, 168, 128, 0.12);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-secondary);
    padding: 2.2rem;
    border-left: 2px solid var(--accent-gold);
    border-top: 1px solid rgba(197, 168, 128, 0.05);
    border-right: 1px solid rgba(197, 168, 128, 0.05);
    border-bottom: 1px solid rgba(197, 168, 128, 0.05);
    transition: var(--transition-smooth);
}

.help-item:hover {
    transform: translateX(8px);
    border-left-color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.help-item-num {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-secondary);
    line-height: 1;
}

.help-item p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Featured Services */
.service-teaser-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(197, 168, 128, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.service-teaser-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 168, 128, 0.25);
    box-shadow: 0 25px 50px rgba(197, 168, 128, 0.06);
}

.service-teaser-card img {
    transition: var(--transition-smooth);
}

.service-teaser-card:hover img {
    transform: scale(1.04);
}

.service-teaser-content {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-teaser-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.service-teaser-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-teaser-link {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
}

.service-teaser-link::after {
    content: "\2192";
    transition: var(--transition-fast);
}

.service-teaser-card:hover .service-teaser-link::after {
    transform: translateX(6px);
}

.service-teaser-card:hover .service-teaser-link {
    color: var(--text-primary);
}

/* Process Timeline (How it works & transformation) */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: rgba(197, 168, 128, 0.2);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2.5rem 3.5rem;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-badge {
    position: absolute;
    top: 2.8rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-secondary);
    z-index: 10;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-badge {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
}

.timeline-item:nth-child(odd) .timeline-badge {
    right: -18px;
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -18px;
}

.timeline-panel {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border: 1px solid rgba(197, 168, 128, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.005);
    transition: var(--transition-smooth);
}

.timeline-panel:hover {
    border-color: rgba(197, 168, 128, 0.2);
    box-shadow: 0 15px 40px rgba(197, 168, 128, 0.03);
}

.timeline-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.timeline-panel p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.timeline-panel h4, .step-item h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

/* Meet the Founder section home */
.founder-preview-img-container {
    position: relative;
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 1.5rem;
    background: var(--bg-secondary);
    transition: var(--transition-smooth);
}

.founder-preview-img-container:hover {
    border-color: var(--accent-gold);
}

.founder-preview-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    background-color: #eee;
}

.founder-preview-info h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.founder-preview-info .title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 2.5rem;
    display: block;
}

.founder-preview-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.founder-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-primary);
    border-left: 2px solid var(--accent-gold);
    padding-left: 2rem;
    margin: 2.5rem 0;
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta {
    background: #FFFFFF;
    color: var(--text-primary);
    padding: 9rem 0;
    text-align: center;
}

.final-cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.final-cta h2 {
    color: var(--brand-teal);
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.final-cta p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    font-family: var(--font-heading);
    font-style: italic;
    line-height: 1.6;
}

/* About Story block */
.story-block {
    max-width: 800px;
    margin: 0 auto;
}

.story-block p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.9;
}

.story-block p.lead {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-secondary);
    margin-bottom: 3rem;
}

/* Mission & Vision Grid */
.mv-card {
    background: var(--bg-secondary);
    padding: 5rem 4.5rem;
    border: 1px solid rgba(197, 168, 128, 0.12);
    text-align: center;
}

.mv-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    font-weight: 300;
    color: var(--color-secondary);
}

.mv-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Values Grid */
.value-item h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.value-item h3 span {
    color: var(--accent-gold);
    margin-right: 0.5rem;
    font-weight: 300;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Philosophy panel */
.phil-box {
    background: var(--bg-secondary);
    padding: 6rem 5rem;
    border: 1px solid rgba(197, 168, 128, 0.1);
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    align-items: center;
}

.phil-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.phil-content p {
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    font-size: 1rem;
    line-height: 1.8;
}

.phil-highlight {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-secondary);
    border-left: 2px solid var(--accent-gold);
    padding-left: 2.5rem;
    line-height: 1.4;
    font-weight: 300;
}

/* Services Page - Filter bar and grid */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 5rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.8rem 2.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 100px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-accent);
    color: #FFFFFF;
    border-color: var(--color-accent);
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-list-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(197, 168, 128, 0.12);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.service-list-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 168, 128, 0.25);
    box-shadow: 0 20px 50px rgba(197, 168, 128, 0.06);
}

.service-list-card h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.service-list-card .service-tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    margin-bottom: 1.8rem;
    display: inline-block;
}

.service-list-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-list-card .learn-more {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
}

.service-list-card .learn-more::after {
    content: "\2192";
    transition: var(--transition-fast);
}

.service-list-card:hover .learn-more::after {
    transform: translateX(6px);
}

/* Individual Service Page Layout */
.service-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.service-main-content h2 {
    font-size: 2.4rem;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
}

.service-main-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-main-content p.intro-lead {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.service-main-image {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    margin: 0 auto 3.5rem auto;
    padding: 12px;
    background: var(--bg-primary);
    border: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.025);
    transition: var(--transition-smooth);
}

.signs-box {
    background: var(--bg-accent);
    border: 1px solid rgba(197, 168, 128, 0.12);
    padding: 3.5rem;
    margin: 3.5rem 0;
}

.signs-box h3 {
    font-size: 1.7rem;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.signs-list {
    list-style: none;
}

.signs-list li {
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.signs-list li::before {
    content: "\2022";
    color: var(--color-secondary);
    position: absolute;
    left: 0.6rem;
    top: -0.1rem;
    font-size: 1.6rem;
}

.service-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2.5rem);
    background: var(--bg-secondary);
    border: 1px solid rgba(197, 168, 128, 0.12);
    padding: 3rem;
}

.sidebar-title {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(197, 168, 128, 0.12);
    padding-bottom: 1rem;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.sidebar-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-links a::after {
    content: "\2192";
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition-fast);
}

.sidebar-links a:hover {
    color: var(--text-primary);
}

.sidebar-links a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* FAQ Layout integrated on Home */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-sidebar-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.faq-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-section-block {
    margin-bottom: 4rem;
}

.faq-section-title {
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 2.2rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.12);
    padding-bottom: 1rem;
    color: var(--color-secondary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(197, 168, 128, 0.1);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(197, 168, 128, 0.25);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem 2.8rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(197, 168, 128, 0.01);
}

.faq-icon-indicator {
    font-size: 1.2rem;
    color: var(--color-secondary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon-indicator {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 2.8rem 2.2rem 2.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact page elements */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
}

.contact-info-panel h3 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-detail-icon {
    font-size: 1.3rem;
    color: var(--color-secondary);
    font-family: var(--font-heading);
}

.contact-detail-text h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-detail-text p {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Forms */
.contact-form {
    background: var(--bg-secondary);
    border: 1px solid rgba(197, 168, 128, 0.12);
    padding: 4.5rem;
}

.form-group {
    margin-bottom: 2.2rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(197, 168, 128, 0.25);
    padding: 1rem 0;
    background: transparent;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--text-primary);
}

select.form-control {
    cursor: pointer;
    border-radius: 0;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Maps & Media Embed */
.map-container {
    width: 100%;
    height: 450px;
    background-color: #eee;
    border: 1px solid rgba(197, 168, 128, 0.12);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Section */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 2.5rem 0 1rem 0;
    border-top: 1px solid rgba(197, 168, 128, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.footer-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo-block .logo-main {
    color: var(--text-light);
}

.footer-logo-block p {
    color: rgba(244, 246, 247, 0.55);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
    text-align: justify;
}

.footer-column h4 {
    color: var(--text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 2.2rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(244, 246, 247, 0.55);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact-item {
    font-size: 0.95rem;
    color: rgba(244, 246, 247, 0.55);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact-item span {
    display: block;
    color: var(--accent-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(244, 246, 247, 0.08);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(244, 246, 247, 0.35);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    html { font-size: 15px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .services-list-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --header-height: 75px;
    }
    
    .section-padding { padding: 5rem 0; }
    
    .hero h1 { font-size: 2.8rem; }
    .home-hero h1 { font-size: 3.2rem; }
    .section-header h2 { font-size: 2.4rem; }
    
    .hero-tag { font-size: 1.8rem; text-align: center; }
    
    .grid-2 { grid-template-columns: 1fr; gap: 4rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .services-list-grid { grid-template-columns: 1fr; }
    .help-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .phil-box { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
    .service-layout { grid-template-columns: 1fr; gap: 4rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 4rem; }

    /* FAQ mobile — stack to single column */
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .faq-question {
        padding: 1.2rem 1.2rem;
        font-size: 1rem;
    }
    .faq-answer-inner {
        padding: 0 1.2rem 1.5rem 1.2rem;
    }
    /* Navigation drawer for mobile */
    .header-container { flex-wrap: nowrap; padding: 0 1rem; }
    .menu-toggle { display: flex; flex-shrink: 0; order: 3; }
    .logo-img { height: 50px; } /* Slightly smaller for mobile */
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
        z-index: 999;
        border-top: 1px solid rgba(197, 168, 128, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Scale down the header logo for mobile screens */
    .logo-main {
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }
    
    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 0.25em;
        margin-top: 2px;
    }

    /* Mobile Timeline Vertical Stacking */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100% !important;
        padding: 1.5rem 1rem 1.5rem 3.5rem !important;
        text-align: left !important;
        left: 0 !important;
    }
    
    .timeline-badge {
        left: 2px !important;
        right: auto !important;
        top: 1.8rem !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 0.95rem !important;
    }

    /* Footer Bottom Stack for Mobile */
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
/* Logo Image - Bigger & Blended into Navbar */
.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform var(--transition-smooth), opacity 0.3s ease;
}
.logo-img:hover {
    transform: scale(1.05);
}

/* Footer Logo Image */
.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 1rem auto;
    display: block;
    filter: brightness(1.15);
}

/* Services Page & Category Card Standardized Styles */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
    background: var(--bg-secondary);
    padding: 3rem;
    border: 1px solid rgba(197, 168, 128, 0.12);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    border-radius: 0;
}
.svc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 168, 128, 0.25);
    box-shadow: 0 20px 50px rgba(197, 168, 128, 0.06);
}
.svc-card .svc-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}
.svc-card h3 {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}
.svc-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 2.2rem;
}
.svc-card .svc-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
}
.svc-card:hover .svc-link {
    color: var(--accent-gold);
    gap: 0.8rem;
}
.svc-card .svc-link::after { content: "\2192"; }

.choose-guide {
    background: var(--bg-dark);
    padding: 3.5rem;
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: var(--text-light);
    border-radius: 0;
}
.choose-guide h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}
.guide-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.4rem;
    color: rgba(245, 240, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
}
.guide-item strong {
    color: var(--text-light);
    font-weight: 600;
}
.guide-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    flex-shrink: 0;
    position: relative;
    top: -2px;
}
.benefit-section {
    background: var(--bg-dark);
    padding: 5rem 4rem;
    color: var(--text-light);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
    border: 1px solid rgba(197, 168, 128, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.benefit-section h2 {
    color: var(--text-light);
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.2rem;
}
.benefit-section p {
    color: rgba(245, 240, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
}
.benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}
.benefit-tag {
    background: rgba(245, 240, 255, 0.1);
    color: var(--text-light);
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 0;
}
.benefit-img {
    position: relative;
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 1.5rem;
    background: var(--bg-secondary);
    transition: var(--transition-smooth);
}
.benefit-img:hover {
    border-color: var(--accent-gold);
}
.benefit-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(197, 168, 128, 0.12);
    border-radius: 0;
    background: var(--bg-secondary);
    margin: 3rem 0;
}
@media (max-width: 900px) { .steps-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps-row { grid-template-columns: 1fr; } }
.step-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(197, 168, 128, 0.12);
    position: relative;
}
.step-item:last-child { border-right: none; }
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
}
.step-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.sec-divider {
    height: 1px;
    background: rgba(59, 31, 122, 0.12);
    max-width: var(--max-width);
    margin: 0 auto;
}
.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    padding-bottom: 1.5rem;
}
.cat-icon {
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: var(--bg-primary);
    border: 1px solid rgba(197, 168, 128, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 600;
    flex-shrink: 0;
}
.cat-title h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}
.cat-title p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Cleaned Service Page Detail Styles */
.service-layout {
    margin-top: 2rem;
}
.service-detail-section {
    margin-bottom: 4rem;
}
.service-detail-section h2 {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
}
.service-detail-section p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    padding-left: 1.7rem;
    margin-bottom: 1.5rem;
}
.service-detail-section h3 {
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-primary);
}
.hero p.service-hero-subtitle, .service-hero-subtitle {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}
.service-main-image {
    margin-bottom: 4.5rem;
}
.service-cta-box {
    margin: 6rem 0 2rem 0;
    padding: 4.5rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(197, 168, 128, 0.15);
}
.service-cta-box p.cta-lead, .service-cta-lead {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-primary);
}

/* Justify content properly across sections and cards */
section p, .story-block p, .service-detail-section p, .why-card p, .svc-card p, .value-item p, .timeline p, .phil-content p, .signs-box p, .intro-text-box p, .mv-card p, .benefit-card p {
    text-align: justify;
}
.section-header p, .text-center p, .cat-title p {
    text-align: center;
}
.hero p, .intro-lead, .service-hero-subtitle {
    text-align: center;
}

/* Mobile responsiveness for benefit-section */
@media (max-width: 768px) {
    .benefit-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.8rem;
        gap: 3rem;
    }
}

/* Ensure all headings and section headers are bold as requested */
h1, h2, h3, h4, h5, h6,
.section-header h2,
.benefit-section h2,
.hero h1,
.home-hero h1,
.why-card h3,
.service-teaser-card h3,
.final-cta h2,
.mv-card h3,
.value-item h3,
.phil-content h3,
.service-list-card h3,
.service-main-content h2,
.signs-box h3,
.contact-info-panel h3,
.svc-card h3,
.choose-guide h3,
.cat-title h2,
.service-detail-section h2,
.service-detail-section h3,
.footer-column h4,
h1[style], h2[style], h3[style], h4[style], h5[style], h6[style] {
    font-weight: 700 !important;
}



/* =======================================================
   STATE / UTILITY OVERRIDES
   ======================================================= */

/* Ensure readability on dark hero background */
.hero-video-overlay p, .home-hero .hero-tag {
    color: #FFFFFF !important;
}

/* FIX FOOTER SIZE */
footer {
    padding: 2.5rem 0 1rem 0 !important;
    background-color: #FFFFFF !important;
}
.footer-grid {
    gap: 2.5rem !important;
    margin-bottom: 2rem !important;
}



/* FIX TEXT COLORS FOR WHITE FOOTER */
footer p, .footer-links a, .footer-contact-item, .footer-bottom p {
    color: rgba(80, 30, 120, 0.8) !important;
}
.footer-logo-block p {
    color: rgba(80, 30, 120, 0.9) !important;
}
.footer-links a:hover {
    color: var(--color-accent) !important;
}



/* FOOTER SOCIAL ICONS */
.footer-social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #FFFFFF !important;
    transition: all 0.3s ease;
}
.footer-social-icons .social-icon:hover {
    background-color: var(--color-accent);
    color: #FFFFFF !important;
    transform: translateY(-3px);
}

/* INTRO IMAGE HOVER EFFECT */
.intro-image-wrapper {
    position: relative;
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 1.5rem;
    background: var(--bg-secondary);
    transition: var(--transition-smooth);
    border-radius: 4px;
}
.intro-image-wrapper:hover {
    border-color: var(--accent-gold);
}

/* FINAL MOBILE OPTIMIZATIONS */
html, body {
    overflow-x: hidden !important; /* Strictly prevents horizontal scroll */
    width: 100%;
    position: relative;
}

/* Ensure images never overflow */
img {
    max-width: 100% !important;
    height: auto;
}

@media (max-width: 768px) {
    /* Tighten container paddings */
    .container {
        padding: 0 1.2rem !important;
        width: 100% !important;
    }
    
    /* Reduce huge paddings on intro text and image wrappers */
    .intro-text-box {
        padding: 2.5rem 1.5rem !important;
    }
    .intro-image-wrapper, .founder-preview-img-container {
        padding: 1rem !important;
    }
    
    /* Scale down large font elements */
    .intro-text-box p {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Adjust pseudo quote marks */
    .intro-text-box::before {
        font-size: 5rem !important;
        top: -15px !important;
    }
    
    /* Adjust inline giant quotes */
    span[style*="font-size: 8rem"] {
        font-size: 4rem !important;
        left: -10px !important;
        top: -15px !important;
    }
    
    /* Ensure flex buttons stack if they get too tight */
    .btn {
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }
}

/* CONTACT PAGE MOBILE OVERFLOW FIX */
@media (max-width: 768px) {
    /* Force long email addresses to wrap */
    .contact-detail-text p, 
    .contact-detail-text a, 
    .footer-contact-item a {
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        word-break: break-all !important;
        white-space: normal !important;
        font-size: 0.95rem !important;
    }
    
    /* Reduce huge padding on contact panels */
    .contact-info-panel, 
    .contact-form-panel {
        padding: 2rem 1.2rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure flex items in contact grid wrap if needed */
    .contact-detail-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
}

/* =======================================================
   ERROR PAGES — Quirky yoga-themed 404 & 500
   ======================================================= */

.error-page {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 180, 160, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 0, 120, 0.05) 0%, transparent 50%),
        var(--bg-primary);
}

.error-container {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-secondary);
    opacity: 0.3;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.error-heading {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.error-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.error-wisdom {
    margin-bottom: 2.5rem;
}

.error-wisdom p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.error-footer-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    opacity: 0.7;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .error-code { font-size: 5rem; }
    .error-heading { font-size: 1.8rem; }
    .error-subtitle { font-size: 1.1rem; }
    .error-actions { flex-direction: column; align-items: center; }
    .error-actions .btn { width: 100%; max-width: 320px; }
}

/* Very small screens (<480px) */
@media (max-width: 480px) {
    html { font-size: 14px; }
    .section-padding { padding: 3.5rem 0; }
    .hero h1, .home-hero h1 { font-size: 2.2rem; }
    .section-header h2 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }
    .hero-tag { font-size: 1.4rem; }
    .hero-btn-center { padding: 0 1rem; }
    .grid-2, .grid-3, .grid-4, .services-list-grid, .help-grid,
    .contact-grid, .phil-box, .service-layout,
    .benefit-section { gap: 2rem; }
    .intro-text-box p { font-size: 1.3rem; }
    .section-header { margin-bottom: 3rem; }
    .btn { padding: 0.8rem 1.8rem; font-size: 0.7rem; }
    .logo-main { font-size: 1.1rem; letter-spacing: 0.1em; }
    .logo-img { height: 45px; }
    .final-cta h2 { font-size: 2.2rem; }
    .intro-text-box { padding: 2rem 1.2rem; }
    .contact-form { padding: 2rem 1.2rem; }
    .signs-box { padding: 2rem 1.5rem; }
    .service-list-card { padding: 2rem 1.5rem; }
    .service-teaser-content { padding: 2rem 1.5rem; }
    .timeline-item { padding: 1.5rem 1rem 1.5rem 3rem !important; }
    .footer-grid { gap: 2.5rem; }
    svc-card { padding: 2rem 1.5rem; }
}

/* =======================================================
   PRINT STYLES
   ======================================================= */
@media print {
    header, footer, .hero-video, .hero-video-overlay,
    .home-hero .btn, .menu-toggle, .filter-container,
    .faq-filter-bar, .error-actions, .btn-group,
    .map-container iframe {
        display: none !important;
    }
    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
        line-height: 1.5;
    }
    .container { width: 100%; max-width: 100%; padding: 0; }
    .section-padding { padding: 1.5rem 0; }
    .home-hero { min-height: auto; padding-top: 2rem; }
    .hero { padding-top: 2rem; padding-bottom: 2rem; }
    .hero::before { display: none; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
    .grid-2, .grid-3, .grid-4 { display: block; }
    .grid-2 > *, .grid-3 > *, .grid-4 > * { margin-bottom: 1.5rem; }
    .error-code { font-size: 36pt; opacity: 0.5; }
    .error-footer-text { opacity: 0.5; }
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
}
