/* =============================================================================
   TERAPIE S ĽUDKOU - Main Stylesheet
   =============================================================================

   TABLE OF CONTENTS:
   ------------------
   1.  CSS VARIABLES (Design System)     - Line ~30
   2.  RESET & BASE STYLES               - Line ~60
   3.  LAYOUT (Container)                - Line ~120
   4.  HEADER & NAVIGATION               - Line ~130
   5.  HERO SECTION                      - Line ~340
   6.  BUTTONS                           - Line ~770
   7.  SECTIONS (General)                - Line ~815
   8.  ABOUT SECTION                     - Line ~845
   9.  SERVICES SECTION                  - Line ~900
   10. PRICING SECTION                   - Line ~995
   11. CONTACT SECTION                   - Line ~1090
   12. FORM STYLES                       - Line ~1155
   13. FOOTER                            - Line ~1250
   14. ANIMATIONS                        - Line ~1340
   15. RESPONSIVE DESIGN                 - Line ~1355
   16. ACCESSIBILITY                     - Line ~1540
   17. THERAPY DETAIL PAGES              - Line ~1565
   18. PAGE TRANSITIONS                  - Line ~1765
   19. ACTIVE NAVIGATION                 - Line ~1785
   20. PAGE HERO                         - Line ~1810
   21. PREVIEW SECTION                   - Line ~1860
   22. ABOUT PAGE                        - Line ~1945
   23. SERVICES PAGE                     - Line ~2075
   24. PRICING PAGE                      - Line ~2265
   25. CONTACT PAGE                      - Line ~2420
   26. CTA SECTION                       - Line ~2570
   27. REDUCED MOTION                    - Line ~2640

   ============================================================================= */


/* =============================================================================
   1. CSS VARIABLES - Design System
   ============================================================================= */
:root {
    /* Colors */
    --color-primary: #2d5f4f;
    --color-primary-light: #3d7f6f;
    --color-primary-dark: #1d4f3f;
    --color-secondary: #c4a56e;
    --color-secondary-light: #d4b57e;
    --color-accent: #8b7355;
    --color-bg-light: #f8f6f3;
    --color-bg-white: #ffffff;
    --color-text-dark: #2c2c2c;
    --color-text-light: #666666;
    --color-text-lighter: #999999;
    --color-border: #e5e5e5;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-overlay: rgba(45, 95, 79, 0.8);

    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    /* Container */
    --container-max-width: 1200px;
    --container-padding: 1.5rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px var(--color-shadow);
    --shadow-md: 0 4px 8px var(--color-shadow);
    --shadow-lg: 0 8px 16px var(--color-shadow);
}

/* =============================================================================
   2. RESET & BASE STYLES
   ============================================================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

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

a:hover {
    color: var(--color-primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* =============================================================================
   3. LAYOUT (Container)
   ============================================================================= */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* =============================================================================
   4. HEADER & NAVIGATION
   ============================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        135deg,
        rgba(248, 246, 243, 0.95) 0%,
        rgba(235, 228, 218, 0.95) 50%,
        rgba(220, 215, 205, 0.95) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 4px 20px rgba(45, 95, 79, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(196, 165, 110, 0.2);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header.scrolled {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 246, 243, 0.98) 50%,
        rgba(242, 238, 230, 0.98) 100%
    );
    box-shadow:
        0 8px 32px rgba(45, 95, 79, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(196, 165, 110, 0.3);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo__image {
    height: 120px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(45, 95, 79, 0.15));
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.logo:hover .logo__image {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 4px 16px rgba(45, 95, 79, 0.25));
    animation-play-state: paused;
}

.logo__text {
    font-size: 2rem;
    color: var(--color-primary);
    margin: 0;
    letter-spacing: 2px;
}

.logo__subtitle {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle__line {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 3px 0;
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
}

.nav-toggle.active .nav-toggle__line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-toggle__line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle__line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation */
.nav__list {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav__link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Jemný hover efekt - pozadie */
.nav__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(196, 165, 110, 0.1) 0%,
        rgba(45, 95, 79, 0.1) 100%
    );
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-md);
    z-index: -1;
}

.nav__link:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Animovaná podčiarka */
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--color-primary) 50%,
        transparent 100%
    );
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav__link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.nav__link:active {
    transform: translateY(0);
}

/* =============================================================================
   5. HERO SECTION
   ============================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(29, 79, 63, 0.95) 0%, rgba(45, 95, 79, 0.9) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L30 60' stroke='%23c4a56e' stroke-width='0.5' opacity='0.1'/%3E%3Cpath d='M0 30 L60 30' stroke='%23c4a56e' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    margin-top: 100px;
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(196, 165, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196, 165, 110, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(139, 115, 85, 0.05) 0%, transparent 80%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image:
        linear-gradient(90deg, transparent 0%, rgba(29, 79, 63, 0.3) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 35px,
            rgba(196, 165, 110, 0.03) 35px,
            rgba(196, 165, 110, 0.03) 38px
        );
    pointer-events: none;
    opacity: 0.7;
}

/* Animated Background - Bamboo Leaves */
.hero__bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
    background: radial-gradient(circle at center, rgba(196, 165, 110, 0.4) 0%, rgba(196, 165, 110, 0.2) 40%, transparent 80%);
    filter: blur(60px);
}

.bg-circle--1 {
    width: 600px;
    height: 700px;
    top: -15%;
    right: -5%;
    animation: float-bg-1 15s ease-in-out infinite;
}

.bg-circle--2 {
    width: 500px;
    height: 600px;
    bottom: -10%;
    left: -5%;
    background: radial-gradient(circle at center, rgba(61, 127, 111, 0.35) 0%, rgba(61, 127, 111, 0.15) 40%, transparent 80%);
    animation: float-bg-2 18s ease-in-out infinite 3s;
}

.bg-circle--3 {
    width: 550px;
    height: 650px;
    top: 20%;
    right: 10%;
    background: radial-gradient(circle at center, rgba(196, 165, 110, 0.3) 0%, rgba(139, 115, 85, 0.15) 40%, transparent 80%);
    animation: float-bg-3 20s ease-in-out infinite 6s;
}

@keyframes float-bg-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-30px, -40px) scale(1.05);
        opacity: 1;
    }
}

@keyframes float-bg-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(30px, -30px) scale(1.08);
        opacity: 1;
    }
}

@keyframes float-bg-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, 30px) scale(1.06);
        opacity: 1;
    }
}

/* Hero Grid Layout */
.hero__grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Main Content */
.hero__main {
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

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

/* Top Badge */
.hero__badge-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(196, 165, 110, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 165, 110, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 auto var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    letter-spacing: 0.5px;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--color-secondary);
    opacity: 0.5;
}

.badge-dot {
    color: var(--color-secondary);
    font-size: 1.2rem;
    line-height: 1;
}

/* Main Headline */
.hero__headline {
    margin-bottom: var(--spacing-md);
}

.hero__headline-main {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-bg-white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero__headline-sub {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 300;
    color: var(--color-secondary);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Hero Description */
.hero__description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

/* CTA Actions */
.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.9s backwards;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-medium);
    box-shadow: 0 10px 30px rgba(196, 165, 110, 0.3);
}

.btn--primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 165, 110, 0.4);
    background: var(--color-secondary-light);
}

.btn--secondary-hero {
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--color-bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-medium);
}

.btn--secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-bg-white);
    transform: translateY(-3px);
}

/* Trust Indicators */
.hero__trust {
    display: flex;
    gap: 2rem;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 1s backwards;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-item--interactive {
    cursor: pointer;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.trust-item--interactive:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.trust-item--interactive:hover .trust-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--color-secondary);
}

.trust-item--interactive:hover .trust-description {
    opacity: 1;
    transform: translateY(0);
}

.trust-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--color-secondary-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(196, 165, 110, 0.3));
}

.trust-icon svg {
    width: 100%;
    height: 100%;
}

.trust-content {
    position: relative;
}

.trust-divider {
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    align-self: stretch;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.trust-item--interactive:hover .trust-number {
    color: #fff;
    text-shadow: 0 0 20px rgba(196, 165, 110, 0.5);
}

.trust-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.trust-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
    font-style: italic;
    text-align: center;
}

/* Hide visual container - using background decorations instead */
.hero__visual {
    display: none;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    z-index: 2;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out 1.2s backwards;
    transition: all var(--transition-fast);
}

.hero__scroll:hover {
    color: var(--color-bg-white);
}

.hero__scroll span {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    color: var(--color-secondary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* =============================================================================
   6. BUTTONS
   ============================================================================= */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-medium);
    text-decoration: none;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn--primary {
    background-color: var(--color-secondary);
    color: var(--color-text-dark);
    border-color: var(--color-secondary);
}

.btn--primary:hover {
    background-color: var(--color-secondary-light);
    border-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* =============================================================================
   7. SECTIONS (General)
   ============================================================================= */
section {
    padding: var(--spacing-xxl) 0;
}

section:nth-of-type(even) {
    background-color: var(--color-bg-light);
}

.section__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
}

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

.section__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

/* =============================================================================
   8. ABOUT SECTION (Homepage)
   ============================================================================= */
.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about__image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    margin: 0 auto;
}

.about__image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about__image:hover img {
    transform: scale(1.05);
}

.about__content {
    padding: var(--spacing-md);
}

.about__name {
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.about__text {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-dark);
    line-height: 1.8;
}

.about__highlight {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    padding: var(--spacing-md);
    background-color: var(--color-bg-light);
    border-left: 4px solid var(--color-secondary);
    margin-top: var(--spacing-md);
    border-radius: var(--radius-sm);
}

/* =============================================================================
   9. SERVICES SECTION (Homepage)
   ============================================================================= */
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    background-color: var(--color-bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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

.service-card--highlight {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: var(--color-bg-white);
}

.service-card--highlight .service-card__title,
.service-card--highlight .service-card__description {
    color: var(--color-bg-white);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.service-card--highlight .service-card__icon {
    background-color: var(--color-bg-white);
}

.service-card__icon .icon {
    width: 30px;
    height: 30px;
    color: var(--color-primary-dark);
}

.service-card--highlight .service-card__icon .icon {
    color: var(--color-primary);
}

.service-card--wide {
    grid-column: 1 / -1; /* Span all columns */
}

.service-card--wide .service-card__icon {
    width: 80px;
    height: 80px;
}

.service-card--wide .service-card__icon .icon {
    width: 40px;
    height: 40px;
}

.service-card--wide .service-card__title {
    font-size: 1.5rem;
}

.service-card__title {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-sm);
}

.service-card__description {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* =============================================================================
   10. PRICING SECTION (Homepage)
   ============================================================================= */
.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.price-card {
    background-color: var(--color-bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    border: 2px solid var(--color-border);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.price-card--featured {
    border-color: var(--color-secondary);
    background: linear-gradient(to bottom, var(--color-bg-white) 0%, var(--color-bg-light) 100%);
}

.price-card__badge {
    position: absolute;
    top: -12px;
    right: var(--spacing-md);
    background-color: var(--color-secondary);
    color: var(--color-text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.price-card__title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary-dark);
}

.price-card__duration {
    font-size: 1.125rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.price-card__description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.price-card__features ul {
    margin-bottom: var(--spacing-md);
}

.price-card__features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-dark);
}

.price-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.price-card > .btn {
    margin-top: auto;
}

.pricing__note {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--color-bg-light);
    border-left: 4px solid var(--color-secondary);
    border-radius: var(--radius-sm);
    text-align: center;
}

/* =============================================================================
   11. CONTACT SECTION (Homepage)
   ============================================================================= */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact__heading {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
}

.contact__item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact__icon {
    width: 40px;
    height: 40px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.contact__item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact__item p {
    color: var(--color-text-light);
    margin: 0;
}

.contact__item a {
    color: var(--color-primary);
}

.contact__item a:hover {
    color: var(--color-primary-light);
}

.contact__hours {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
}

.contact__hours h4 {
    margin-bottom: var(--spacing-sm);
}

.contact__hours p {
    margin-bottom: 0.25rem;
    color: var(--color-text-dark);
}

/* =============================================================================
   12. FORM STYLES
   ============================================================================= */
.contact__form {
    background-color: var(--color-bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form__group {
    margin-bottom: var(--spacing-md);
}

.form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__date-selects {
    display: flex;
    gap: 0.5rem;
}

.form__date-selects select {
    flex: 1;
    min-width: 0;
}

.form__date-selects select:first-child {
    flex: 0.7;
}

.form__date-selects select:last-child {
    flex: 0.8;
}

@media (max-width: 480px) {
    .form__date-selects {
        flex-direction: column;
    }

    .form__date-selects select {
        flex: 1;
    }
}

.form__group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form__group--checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
}

.form__label--checkbox {
    font-weight: 400;
    margin: 0;
    cursor: pointer;
}

.form__message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 500;
    animation: fadeInUp 0.4s ease-out;
}

.form__message.success {
    display: block !important;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.form__message.success::before {
    content: '✓ ';
    font-weight: bold;
}

.form__message.error {
    display: block !important;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.form__message.error::before {
    content: '⚠ ';
    font-weight: bold;
}

.form__error {
    color: #c62828;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* =============================================================================
   13. FOOTER
   ============================================================================= */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-bg-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer__title {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.footer__text {
    color: var(--color-bg-light);
    margin-bottom: 0.5rem;
}

.footer__heading {
    color: var(--color-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__list a {
    color: var(--color-bg-light);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--color-secondary);
}

.social__links {
    display: flex;
    gap: var(--spacing-sm);
}

.social__link {
    width: 40px;
    height: 40px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    transition: all var(--transition-fast);
}

.social__link:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-3px);
}

.social__link svg {
    width: 20px;
    height: 20px;
}

.footer__bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-bg-light);
}

.footer__credits {
    font-size: 0.75rem;
    color: var(--color-text-lighter);
}

/* =============================================================================
   14. ANIMATIONS
   ============================================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================================================
   15. RESPONSIVE DESIGN
   ============================================================================= */

/* Tablets */
@media (min-width: 768px) {
    .about__grid {
        grid-template-columns: 1fr 1.5fr;
    }

    .about__image {
        max-width: none;
        margin: 0;
    }

    .about__image img {
        max-height: none;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact__grid {
        grid-template-columns: 1fr 1.5fr;
    }

    .footer__content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .logo__image {
        height: 80px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--color-bg-white);
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-medium);
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: flex-start;
    }

    .nav__link {
        display: block;
        width: 100%;
        padding: var(--spacing-sm);
    }

    .hero {
        margin-top: 70px;
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }

    /* Single column layout on mobile */
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero__main {
        text-align: center;
    }

    /* Simplify background on mobile */
    .bg-circle--2,
    .bg-circle--3 {
        display: none;
    }

    .bg-circle--1 {
        width: 300px;
        height: 400px;
    }

    /* Adjust badge and headline */
    .hero__badge-top {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }

    .hero__headline-main {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__headline-sub {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }

    /* Hero description responsive */
    .hero__description {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }

    /* Stack CTA buttons */
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .btn--primary-hero,
    .btn--secondary-hero {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Trust indicators */
    .hero__trust {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
        padding-top: var(--spacing-sm);
    }

    .trust-item--interactive {
        padding: 1.2rem 0.8rem;
    }

    .trust-divider {
        display: none;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.8rem;
    }

    .trust-number {
        font-size: 1.3rem;
    }

    .trust-label {
        font-size: 0.8rem;
    }

    .trust-description {
        font-size: 0.7rem;
    }

    .hero__scroll {
        bottom: 1rem;
    }

    section {
        padding: var(--spacing-lg) 0;
    }
}

/* Large Desktops */
@media (min-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================================================
   16. ACCESSIBILITY
   ============================================================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

/* =============================================================================
   17. THERAPY DETAIL PAGES
   ============================================================================= */
.therapy-detail {
    padding: var(--spacing-xl) 0;
    min-height: 100vh;
    background-color: var(--color-bg);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    transition: all var(--transition-fast);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
}

.btn-back:hover {
    color: var(--color-primary-dark);
    background-color: rgba(45, 95, 79, 0.05);
    transform: translateX(-5px);
}

.therapy-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
}

.therapy-header__icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 8px 25px rgba(45, 95, 79, 0.2);
}

.therapy-header__icon .icon {
    width: 50px;
    height: 50px;
    color: var(--color-bg-white);
}

.therapy-header__title {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-sm);
}

.therapy-header__subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.therapy-content {
    max-width: 800px;
    margin: 0 auto;
}

.therapy-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.therapy-section h2 {
    font-size: 1.75rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
}

.therapy-section h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin: var(--spacing-md) 0 var(--spacing-sm);
}

.therapy-section p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.therapy-section p.lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-primary-dark);
    line-height: 1.7;
}

.therapy-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.therapy-list li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--color-text);
    line-height: 1.7;
}

.therapy-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

.therapy-section--highlight {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: var(--color-bg-white);
}

.therapy-section--highlight h2,
.therapy-section--highlight h3,
.therapy-section--highlight p,
.therapy-section--highlight li {
    color: var(--color-bg-white);
}

.therapy-section--highlight .therapy-list li::before {
    color: var(--color-secondary-light);
}

.therapy-cta {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(196, 165, 110, 0.1) 0%, rgba(196, 165, 110, 0.05) 100%);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
}

.therapy-cta h3 {
    font-size: 1.75rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-sm);
}

.therapy-cta p {
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

/* Therapy Gallery */
.therapy-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.therapy-gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: var(--color-bg-light);
}

.therapy-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}

.therapy-gallery__item:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .therapy-gallery {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Therapy Detail */
@media (max-width: 767px) {
    .therapy-header__title {
        font-size: 2rem;
    }

    .therapy-header__subtitle {
        font-size: 1.1rem;
    }

    .therapy-header__icon {
        width: 80px;
        height: 80px;
    }

    .therapy-header__icon .icon {
        width: 40px;
        height: 40px;
    }

    .therapy-section {
        padding: var(--spacing-md);
    }

    .therapy-section h2 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav,
    .hero,
    .contact__form,
    .footer__social {
        display: none;
    }
}

/* =============================================================================
   18. PAGE TRANSITIONS
   ============================================================================= */
/* Removed page-wide animation - using only hero title/subtitle animations */

/* =============================================================================
   19. ACTIVE NAVIGATION STATE
   ============================================================================= */
.nav__link--active {
    color: var(--color-primary) !important;
    font-weight: 600;
}

.nav__link--active::after {
    transform: translateX(-50%) scaleX(1) !important;
}

.nav__link--cta {
    background: var(--color-secondary);
    color: var(--color-primary-dark) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 50px;
}

.nav__link--cta:hover {
    background: var(--color-secondary-light);
    transform: translateY(-2px);
}

.nav__link--cta::before,
.nav__link--cta::after {
    display: none !important;
}

/* =============================================================================
   20. PAGE HERO SECTION
   ============================================================================= */
.page-hero {
    position: relative;
    padding: calc(var(--spacing-xxl) + 100px) 0 var(--spacing-xl);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    z-index: -2;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(196, 165, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(196, 165, 110, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-bg-white);
    margin-bottom: var(--spacing-sm);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.page-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.15s forwards;
}

/* =============================================================================
   21. PREVIEW SECTION (Homepage)
   ============================================================================= */
.preview-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.preview-card {
    background: var(--color-bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.preview-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    transition: transform 0.3s ease;
}

.preview-card:hover .preview-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.preview-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-bg-white);
}

.preview-card h3 {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
}

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

.preview-card--highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-color: var(--color-primary);
}

.preview-card--highlight h3,
.preview-card--highlight p {
    color: var(--color-bg-white);
}

.preview-card--highlight .preview-card__icon {
    background: var(--color-secondary);
}

.preview-card--highlight .preview-card__icon svg {
    color: var(--color-primary-dark);
}

/* =============================================================================
   22. ABOUT PAGE
   ============================================================================= */
.about-page {
    padding: var(--spacing-xl) 0;
}

.about-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

@media (min-width: 768px) {
    .about-page__grid {
        grid-template-columns: 350px 1fr;
    }
}

.about-page__image {
    position: relative;
}

.about-page__image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-page__image-decoration {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-page__name {
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
}

.about-page__role {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.about-page__text p {
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-dark);
}

.about-page__quote {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(45, 95, 79, 0.05) 0%, rgba(196, 165, 110, 0.1) 100%);
    border-left: 4px solid var(--color-secondary);
    border-radius: var(--radius-md);
}

.about-page__quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-primary-dark);
    margin: 0;
    font-weight: 500;
}

/* Philosophy Section */
.philosophy-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.philosophy-card {
    background: var(--color-bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.philosophy-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
}

.philosophy-card__icon svg {
    width: 35px;
    height: 35px;
    color: var(--color-primary-dark);
}

.philosophy-card h3 {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
}

.philosophy-card p {
    color: var(--color-text-light);
    margin: 0;
}

/* =============================================================================
   23. SERVICES PAGE
   ============================================================================= */
.services-page {
    padding: var(--spacing-xl) 0;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
}

.services-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

@media (max-width: 992px) {
    .services-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-page__grid {
        grid-template-columns: 1fr;
    }
}

.service-card-large {
    display: flex;
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.service-card-large__icon {
    width: 100px;
    min-height: 100%;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card-large__icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-bg-white);
}

.service-card-large__content {
    padding: var(--spacing-md);
    flex: 1;
}

.service-card-large__title {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
}

.service-card-large__description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.service-card-large__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.service-card-large:hover .service-card-large__link {
    gap: 0.75rem;
}

.service-card-large--highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.service-card-large--highlight .service-card-large__icon {
    background: var(--color-secondary);
}

.service-card-large--highlight .service-card-large__icon svg {
    color: var(--color-primary-dark);
}

.service-card-large--highlight .service-card-large__title,
.service-card-large--highlight .service-card-large__description {
    color: var(--color-bg-white);
}

.service-card-large--highlight .service-card-large__link {
    color: var(--color-secondary-light);
}

/* Wide card - spans full width */
.service-card-large--wide {
    grid-column: 1 / -1 !important;
}

.service-card-large--wide .service-card-large__icon {
    width: 120px;
}

.service-card-large--wide .service-card-large__icon svg {
    width: 50px;
    height: 50px;
}

.service-card-large--wide .service-card-large__title {
    font-size: 1.5rem;
}

.service-card-large--wide .service-card-large__description {
    font-size: 1.05rem;
}

/* How it Works Section */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.step-card {
    background: var(--color-bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-card__number {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-sm);
    font-family: var(--font-heading);
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
}

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

/* =============================================================================
   24. PRICING PAGE
   ============================================================================= */
.pricing-page {
    padding: var(--spacing-xl) 0;
}

.pricing-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.price-card-large {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--color-border);
}

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

.price-card-large--featured {
    border-color: var(--color-secondary);
}

.price-card-large--featured .price-card-large__header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.price-card-large--featured .price-card-large__title,
.price-card-large--featured .price-card-large__price,
.price-card-large--featured .price-card-large__duration {
    color: var(--color-bg-white);
}

.price-card-large__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card-large__header {
    padding: var(--spacing-lg);
    background: var(--color-bg-light);
    text-align: center;
}

.price-card-large__title {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
}

.price-card-large__price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-card-large__duration {
    color: var(--color-secondary);
    font-weight: 500;
}

.price-card-large__body {
    padding: var(--spacing-md);
    flex: 1;
}

.price-card-large__description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.price-card-large__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-card-large__features li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-border);
}

.price-card-large__features li:last-child {
    border-bottom: none;
}

.price-card-large__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.price-card-large__footer {
    padding: var(--spacing-md);
    padding-top: 0;
}

.pricing-page__note {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.note-card {
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-secondary);
}

.note-card h4 {
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
}

.note-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

.note-card a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* =============================================================================
   25. CONTACT PAGE
   ============================================================================= */
.contact-page {
    padding: var(--spacing-xl) 0;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 992px) {
    .contact-page__grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-page__heading {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
}

.contact-info-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-md);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item__icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item__icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-bg-white);
}

.contact-info-item__content h4 {
    font-size: 0.95rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.2rem;
}

.contact-info-item__content p {
    color: var(--color-text-light);
    margin: 0;
}

.contact-info-item__content a {
    color: var(--color-primary);
}

.contact-hours-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    color: var(--color-bg-white);
}

.contact-hours-card h4 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item--closed {
    opacity: 0.7;
}

.contact-page__form {
    background: var(--color-bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form .form__row {
    margin-bottom: var(--spacing-md);
}

.contact-form .form__row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.contact-form .form__row--3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

@media (max-width: 767px) {
    .contact-form .form__row--2col,
    .contact-form .form__row--3col {
        grid-template-columns: 1fr;
    }
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* =============================================================================
   26. CTA SECTION
   ============================================================================= */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.cta-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--color-bg-white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(196, 165, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(196, 165, 110, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-box h2 {
    color: var(--color-bg-white);
    margin-bottom: var(--spacing-xs);
    position: relative;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    position: relative;
}

.cta-box .btn {
    position: relative;
}

.cta-box__buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.cta-box .btn--secondary {
    background: transparent;
    border-color: var(--color-bg-white);
    color: var(--color-bg-white);
}

.cta-box .btn--secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary-dark);
}

/* =============================================================================
   28. HERO MINIMAL SECTION (Homepage - Therapist Dominant)
   ============================================================================= */
.hero-minimal {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-minimal__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-minimal__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 40% center;
    transform: scale(1.5);
}

.hero-minimal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(29, 79, 63, 0.9) 0%,
        rgba(29, 79, 63, 0.6) 15%,
        rgba(29, 79, 63, 0.2) 30%,
        transparent 50%
    );
}

.hero-minimal__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 4rem;
    color: white;
}

.hero-minimal__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero-minimal__btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-minimal__btn:hover {
    background: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .hero-minimal__content {
        padding-bottom: 3rem;
    }

    .hero-minimal__title {
        letter-spacing: 2px;
    }
}

/* =============================================================================
   28b. HERO WELCOME SECTION (Legacy)
   ============================================================================= */
.hero-welcome {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-welcome--left {
    justify-content: flex-start;
}

.hero-welcome--left .container {
    display: flex;
    align-items: center;
}

.hero-welcome__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-welcome__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-welcome--left .hero-welcome__background img {
    object-position: 85% center;
    transform: scale(1.5);
}

.hero-welcome__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(29, 79, 63, 0.4) 0%,
        rgba(29, 79, 63, 0.2) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.hero-welcome__overlay--left {
    background: linear-gradient(
        90deg,
        rgba(29, 79, 63, 0.95) 0%,
        rgba(29, 79, 63, 0.9) 15%,
        rgba(29, 79, 63, 0.6) 25%,
        rgba(29, 79, 63, 0.2) 35%,
        transparent 40%
    );
}

.hero-welcome__content {
    text-align: center;
    color: var(--color-bg-white);
    padding: var(--spacing-xl);
    max-width: 700px;
}

.hero-welcome__content--left {
    text-align: left;
    max-width: 340px;
    margin-right: auto;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    left: -40px;
}

.hero-welcome__greeting {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.hero-welcome__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-welcome__content--left .hero-welcome__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.hero-welcome__subtitle {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    font-weight: 300;
}

.hero-welcome__content--left .hero-welcome__subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-welcome__cta {
    margin-bottom: var(--spacing-xl);
}

.btn--primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(196, 165, 110, 0.4);
}

.btn--primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 165, 110, 0.6);
    background: var(--color-secondary-light);
}

.btn--primary-glow svg {
    transition: transform 0.3s ease;
}

.btn--primary-glow:hover svg {
    transform: scale(1.1);
}

.hero-welcome__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.hero-welcome__scroll span {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

@media (max-width: 768px) {
    .hero-welcome {
        min-height: 90vh;
    }

    .hero-welcome__content {
        padding: var(--spacing-md);
    }

    .hero-welcome__content--left {
        text-align: center;
        margin: 0 auto;
    }

    .hero-welcome__overlay--left {
        background: linear-gradient(
            to top,
            rgba(29, 79, 63, 0.9) 0%,
            rgba(29, 79, 63, 0.6) 40%,
            rgba(29, 79, 63, 0.3) 70%,
            transparent 100%
        );
    }

    .hero-welcome__subtitle {
        font-size: 1.1rem;
    }

    .hero-welcome--left {
        justify-content: center;
        align-items: flex-end;
        padding-bottom: var(--spacing-xl);
    }
}

/* =============================================================================
   29. INTRO SECTION (Personal Introduction)
   ============================================================================= */
.intro-section {
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.intro-image::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--color-secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.intro-content {
    padding: var(--spacing-md) 0;
}

.intro-greeting {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.intro-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-sm);
}

.intro-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary-dark);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: var(--spacing-md);
    transition: all 0.3s ease;
}

.intro-link:hover {
    color: var(--color-primary);
    gap: 0.75rem;
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .intro-image::after {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }

    .intro-link {
        justify-content: center;
    }
}

/* =============================================================================
   30. VALUES SECTION
   ============================================================================= */
.values-section {
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.value-card {
    background: var(--color-bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-lg);
}

.value-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-bg-white);
}

.value-card h3 {
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =============================================================================
   31. JOURNEY SECTION
   ============================================================================= */
.journey-section {
    position: relative;
    padding: var(--spacing-xxl) 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.journey-section__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.journey-section__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 79, 63, 0.92) 0%, rgba(45, 95, 79, 0.88) 100%);
}

.journey-content {
    color: var(--color-bg-white);
    max-width: 800px;
}

.journey-content h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.journey-steps {
    margin-bottom: var(--spacing-lg);
}

.journey-step {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.journey-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.journey-step__number {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--color-bg-white);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.journey-step__text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.journey-step__text p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: var(--color-primary-dark);
}

.btn--secondary-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-bg-white);
    color: var(--color-primary-dark);
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--color-bg-white);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn--secondary-light:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .journey-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

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

/* =============================================================================
   32. FINAL CTA SECTION
   ============================================================================= */
.final-cta {
    position: relative;
    padding: var(--spacing-xxl) 0;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.final-cta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.final-cta__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.final-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(29, 79, 63, 0.85) 0%,
        rgba(29, 79, 63, 0.7) 100%
    );
}

.final-cta__content {
    text-align: center;
    color: var(--color-bg-white);
    max-width: 600px;
    margin: 0 auto;
}

.final-cta__content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
    font-weight: 400;
}

.final-cta__content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.final-cta__buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn--large svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 600px) {
    .final-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta__buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* =============================================================================
   32. HERO WITH BACKGROUND IMAGE (kept for other pages)
   ============================================================================= */
.hero--with-image {
    position: relative;
}

.hero__background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero__background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.3);
}

.hero__background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 79, 63, 0.85) 0%, rgba(45, 95, 79, 0.75) 100%);
}

/* =============================================================================
   29. PAGE HERO WITH BACKGROUND IMAGE
   ============================================================================= */
.page-hero--with-image {
    position: relative;
    overflow: hidden;
}

.page-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--color-primary-dark);
}

.page-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    background: var(--color-primary-dark);
}

/* Malé obrazovky - posunúť fotku nižšie aby bola vidno hlava */
@media (max-width: 576px) {
    .page-hero__background img {
        object-position: center 15%;
    }
}

/* Stredné obrazovky */
@media (min-width: 577px) and (max-width: 768px) {
    .page-hero__background img {
        object-position: center 18%;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .page-hero__background img {
        object-position: center 20%;
    }
}

/* Špecifické stránky - posunúť fotky nižšie aby nebola odrezaná hlava */
.page-hero--about .page-hero__background img {
    object-position: center 95%;
}

.page-hero--contact .page-hero__background img {
    object-position: center 55%;
}

.page-hero--services .page-hero__background img {
    object-position: center 55%;
}

.page-hero--pricing .page-hero__background img {
    object-position: center 40%;
}

@media (max-width: 576px) {
    .page-hero--about .page-hero__background img {
        object-position: center 75%;
    }

    .page-hero--contact .page-hero__background img {
        object-position: center 50%;
    }

    .page-hero--services .page-hero__background img {
        object-position: center 50%;
    }

    .page-hero--pricing .page-hero__background img {
        object-position: center 35%;
    }
}

.page-hero__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 79, 63, 0.5) 0%, rgba(45, 95, 79, 0.4) 100%);
}

/* =============================================================================
   30. GALLERY SECTION (Homepage)
   ============================================================================= */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item--large {
    grid-row: span 2;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-item--large {
        grid-row: span 1;
        grid-column: span 2;
        height: 300px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--large {
        grid-column: span 1;
        height: 250px;
    }
}

/* =============================================================================
   31. ABOUT PAGE - ENHANCED IMAGE CONTAINER
   ============================================================================= */
.about-page__image-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-page__gallery-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.about-page__gallery-mini img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    object-position: center;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page__gallery-mini img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* =============================================================================
   32. WORKSPACE GALLERY (About Page)
   ============================================================================= */
.workspace-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-white);
}

.workspace-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.workspace-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.workspace-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--color-bg-light);
    transition: transform 0.5s ease;
}

.workspace-item:hover img {
    transform: scale(1.08);
}

.workspace-item--main {
    grid-row: span 2;
}

@media (max-width: 992px) {
    .workspace-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .workspace-item {
        height: 200px;
    }

    .workspace-item--main {
        grid-row: span 1;
        grid-column: span 2;
        height: 280px;
    }
}

@media (max-width: 600px) {
    .workspace-gallery {
        grid-template-columns: 1fr;
    }

    .workspace-item--main {
        grid-column: span 1;
        height: 250px;
    }
}

/* =============================================================================
   33. THERAPY IMAGES SECTION (Services Page)
   ============================================================================= */
.therapy-images-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.therapy-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.therapy-image-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 350px;
    box-shadow: var(--shadow-md);
}

.therapy-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.therapy-image-card:hover img {
    transform: scale(1.1);
}

.therapy-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(29, 79, 63, 0.95) 0%, rgba(29, 79, 63, 0.7) 50%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.therapy-image-card:hover .therapy-image-overlay {
    transform: translateY(0);
}

.therapy-image-overlay span {
    display: block;
    color: var(--color-bg-white);
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

@media (max-width: 992px) {
    .therapy-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .therapy-image-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .therapy-images-grid {
        grid-template-columns: 1fr;
    }

    .therapy-image-card {
        height: 280px;
    }

    .therapy-image-card:last-child {
        grid-column: span 1;
    }

    .therapy-image-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(29, 79, 63, 0.85) 0%, transparent 100%);
    }
}

/* =============================================================================
   27. REDUCED MOTION (Accessibility)
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =============================================================================
   28. COOKIE CONSENT BANNER
   ============================================================================= */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-white);
    color: var(--color-text-dark);
    padding: var(--spacing-md);
    z-index: 9999;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--color-primary);
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-consent__content {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.cookie-consent__header {
    margin-bottom: var(--spacing-sm);
}

.cookie-consent__title {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
}

.cookie-consent__desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

/* Cookie Options */
.cookie-consent__options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.cookie-option {
    flex: 1;
    min-width: 200px;
}

.cookie-option__label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
}

.cookie-option__label:hover {
    background-color: var(--color-bg-light);
}

.cookie-option__label input {
    display: none;
}

.cookie-option__checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-fast);
    margin-top: 2px;
}

.cookie-option__label input:checked + .cookie-option__checkbox {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.cookie-option__label input:checked + .cookie-option__checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.cookie-option__label input:disabled + .cookie-option__checkbox {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    opacity: 0.7;
}

.cookie-option__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cookie-option__info strong {
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.cookie-option__info small {
    font-size: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

/* Buttons */
.cookie-consent__buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-sm);
}

.cookie-consent__btn {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cookie-consent__btn--accept {
    background: var(--color-primary);
    color: var(--color-bg-white);
}

.cookie-consent__btn--accept:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 79, 0.3);
}

.cookie-consent__btn--save {
    background: var(--color-secondary);
    color: var(--color-primary-dark);
}

.cookie-consent__btn--save:hover {
    background: var(--color-secondary-light);
    transform: translateY(-2px);
}

.cookie-consent__btn--decline {
    background: transparent;
    color: var(--color-text-dark);
    border: 2px solid var(--color-border);
}

.cookie-consent__btn--decline:hover {
    background: var(--color-bg-light);
    border-color: var(--color-text-light);
}

.cookie-consent__link {
    font-size: 0.85rem;
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-consent__link:hover {
    color: var(--color-primary-dark);
}

/* Responsive */
@media (max-width: 767px) {
    .cookie-consent {
        padding: var(--spacing-sm);
        max-height: 90vh;
        overflow-y: auto;
    }

    .cookie-consent__options {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-option {
        min-width: 100%;
    }

    .cookie-consent__buttons {
        flex-direction: column;
    }

    .cookie-consent__btn {
        width: 100%;
        text-align: center;
    }
}

/* Cookie Settings Link in Footer */
.cookie-settings-link {
    cursor: pointer;
    color: var(--color-bg-light);
    transition: color var(--transition-fast);
}

.cookie-settings-link:hover {
    color: var(--color-secondary);
}

/* Footer Legal Links */
.footer__legal {
    margin-top: var(--spacing-sm);
    font-size: 0.8rem;
}

.footer__legal a {
    color: var(--color-bg-light);
    transition: color var(--transition-fast);
}

.footer__legal a:hover {
    color: var(--color-secondary);
}

.footer__separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* =============================================================================
   29. COOKIE TABLE (GDPR Page)
   ============================================================================= */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-sm) 0 var(--spacing-md);
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
    background-color: var(--color-bg-light);
    font-weight: 600;
    color: var(--color-primary-dark);
}

.cookie-table code {
    background-color: var(--color-bg-light);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--color-primary);
}

.cookie-table tbody tr:hover {
    background-color: var(--color-bg-light);
}

@media (max-width: 767px) {
    .cookie-table {
        font-size: 0.8rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }

    .cookie-table code {
        font-size: 0.75rem;
    }
}
