/* ============================================================
   EMINENT FIZIOTERÁPIAI KLINIKA — FRONTEND CSS
   Modern, zöld-fehér medical design system
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS (CSS Variables)
   ============================================================ */
:root {
    /* Brand colors — Green palette */
    --primary-green: #2d7a3e;
    --primary-green-light: #4caf50;
    --primary-green-dark: #1b5e28;
    --primary-green-darker: #0d3d17;
    --accent-green: #81c784;
    --accent-mint: #e8f5e9;
    --accent-mint-deep: #c8e6c9;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2d7a3e 0%, #4caf50 100%);
    --gradient-primary-soft: linear-gradient(135deg, rgba(45,122,62,0.95) 0%, rgba(76,175,80,0.95) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13,61,23,0.85) 0%, rgba(27,94,40,0.75) 50%, rgba(45,122,62,0.7) 100%);
    --gradient-light: linear-gradient(135deg, #f8fdf9 0%, #e8f5e9 100%);

    /* Neutral grays */
    --white: #ffffff;
    --gray-50: #fafbfc;
    --gray-100: #f5f7f9;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --dark: #1a1a1a;

    /* Status */
    --success: #22c55e;
    --info: #0ea5e9;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Radii */
    --radius-xs: 0.25rem;
    --radius-sm: 0.5rem;
    --radius: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --radius-pill: 50rem;

    /* Shadows (layered, modern) */
    --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
    --shadow-sm: 0 1px 3px rgba(16,24,40,0.08), 0 1px 2px rgba(16,24,40,0.04);
    --shadow-md: 0 4px 12px rgba(16,24,40,0.08), 0 2px 4px rgba(16,24,40,0.04);
    --shadow-lg: 0 12px 28px rgba(16,24,40,0.10), 0 4px 8px rgba(16,24,40,0.05);
    --shadow-xl: 0 24px 50px rgba(16,24,40,0.14), 0 8px 16px rgba(16,24,40,0.06);
    --shadow-green: 0 10px 30px rgba(45,122,62,0.25);
    --shadow-green-lg: 0 20px 50px rgba(45,122,62,0.30);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
}

/* ============================================================
   2. GLOBAL RESETS & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

*:focus-visible {
    outline: 3px solid rgba(76,175,80,0.5);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

p { margin-bottom: 1rem; color: var(--gray-700); }

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

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

::selection { background: var(--accent-green); color: var(--white); }

/* Main content spacing under fixed navbar */
.main-content { padding-top: 80px; }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-green);
    border-color: transparent;
}
.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green-lg);
    color: var(--white);
    background: var(--gradient-primary);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline-primary {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-light {
    background: var(--white);
    color: var(--primary-green);
    box-shadow: var(--shadow-md);
}
.btn-light:hover,
.btn-light:focus {
    background: var(--accent-mint);
    color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

/* ============================================================
   4. NAVIGATION
   ============================================================ */
.navbar {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 1px 0 rgba(16,24,40,0.04);
    transition: padding var(--transition), box-shadow var(--transition), background var(--transition);
    z-index: 1030;
}

.navbar-scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255,255,255,0.98);
}

.navbar-brand-wrapper { display: flex; align-items: center; }

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 48px;
    width: auto;
    transition: height var(--transition);
}
.navbar-scrolled .navbar-logo { height: 40px; }

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(76,175,80,0.25); }

.navbar-nav .nav-item { margin: 0 0.25rem; }

.navbar-nav .nav-link {
    position: relative;
    color: var(--gray-800);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-pill);
    transition: width var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 70%; }

@media (max-width: 991px) {
    .navbar-nav { padding-top: 1rem; }
    .navbar-nav .nav-link::after { display: none; }
    .navbar-nav .nav-link { padding: 0.75rem 1rem !important; }
}

/* ============================================================
   5. HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: var(--gradient-hero);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(76,175,80,0.25), transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(129,199,132,0.18), transparent 45%);
    pointer-events: none;
}

.hero-section .container { position: relative; z-index: 2; }

.hero-title {
    color: var(--white);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
    animation: fadeUp 0.9s ease both;
}

.hero-subtitle {
    color: rgba(255,255,255,0.92);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto 2rem;
    line-height: 1.55;
    animation: fadeUp 1.1s ease both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeUp 1.3s ease both;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2.2s infinite;
}
.scroll-indicator a {
    color: rgba(255,255,255,0.85);
    font-size: 2rem;
    display: inline-flex;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.scroll-indicator a:hover {
    color: var(--white);
    border-color: var(--white);
    background: rgba(255,255,255,0.15);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================================
   6. PAGE HEADER (services, therapists, contact pages)
   ============================================================ */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6rem 0 4rem;
    margin-top: -80px;
    padding-top: calc(6rem + 80px);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08), transparent 45%);
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }

.page-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.page-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 0;
    font-weight: 300;
}

/* ============================================================
   7. SECTION TITLES
   ============================================================ */
.section-title {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.title-underline {
    width: 72px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-pill);
    margin: 0 auto 1.25rem;
}
.title-underline.mx-auto { margin-left: auto; margin-right: auto; }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 660px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Section helpers */
.section-services-preview,
.section-therapists-preview,
.section-blog-preview,
.section-services,
.section-therapists,
.section-contact { padding: 5rem 0; }

.bg-light { background-color: var(--gray-50) !important; }

/* ============================================================
   8. FEATURES (Miért minket?) SECTION
   ============================================================ */
.section-features {
    padding: 5rem 0;
    background: var(--accent-mint);
    position: relative;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45,122,62,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45,122,62,0.15);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 2rem;
    box-shadow: var(--shadow-green);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
   9. SERVICE CARDS
   ============================================================ */
.service-category-section { margin-bottom: 4rem; }

.category-header { margin-bottom: 2.5rem; }

.category-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 0.75rem;
}

.category-description {
    color: var(--gray-600);
    max-width: 680px;
    margin: 0 auto 1rem;
    font-size: 1rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-mint);
    color: var(--primary-green);
    border-radius: var(--radius);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.06);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-details {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.service-detail i { color: var(--primary-green); }

.service-price {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-mint);
    color: var(--primary-green-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    margin-top: 0.5rem;
}

/* ============================================================
   10. THERAPIST CARDS
   ============================================================ */
.therapist-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.therapist-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-green);
}

.therapist-photo-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--accent-mint);
    position: relative;
}
.therapist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.therapist-card:hover .therapist-photo { transform: scale(1.05); }

.therapist-photo-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 6rem;
}

.therapist-info {
    padding: 1.75rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.therapist-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.35rem;
}

.therapist-title {
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.therapist-bio {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.therapist-contact {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}
.therapist-contact .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}
.therapist-contact .contact-item i { color: var(--primary-green); }
.therapist-contact .contact-item a { color: var(--gray-700); }
.therapist-contact .contact-item a:hover { color: var(--primary-green); }

/* Welcome variant: center-aligned therapist-card without wrapper */
.therapist-card.text-center .therapist-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 1.75rem auto 0;
    border: 4px solid var(--accent-mint);
    object-fit: cover;
}
.therapist-card.text-center .therapist-photo-placeholder {
    width: 140px;
    height: 140px;
    aspect-ratio: initial;
    border-radius: 50%;
    margin: 1.75rem auto 0;
    font-size: 4rem;
}

/* ============================================================
   11. BLOG CARDS (welcome preview + blog index)
   ============================================================ */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.blog-card-image,
.blog-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--accent-mint);
}
.blog-card-image img,
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.blog-card:hover .blog-card-image img,
.blog-card:hover .blog-image img { transform: scale(1.06); }

.blog-card-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    color: var(--primary-green-dark);
    border-radius: var(--radius);
    padding: 0.4rem 0.8rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    min-width: 52px;
    line-height: 1.1;
}
.blog-card-date .date-day {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
}
.blog-card-date .date-month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--gray-600);
    letter-spacing: 0.05em;
}

.blog-card-content,
.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta,
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}
.blog-card-meta i,
.blog-meta i { color: var(--primary-green); margin-right: 0.25rem; }

.blog-card-title,
.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}
.blog-card-title a,
.blog-title a {
    color: var(--gray-900);
    transition: color var(--transition-fast);
}
.blog-card-title a:hover,
.blog-title a:hover { color: var(--primary-green); }

.blog-card-excerpt,
.blog-excerpt {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.blog-card-link,
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-green) !important;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: gap var(--transition), color var(--transition-fast);
}
.blog-card-link:hover,
.blog-read-more:hover {
    gap: 0.75rem;
    color: var(--primary-green-dark) !important;
}

/* ============================================================
   12. BLOG INDEX / SHOW / CATEGORY / TAG / SEARCH PAGES
   ============================================================ */
.blog-header,
.blog-header-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5rem 0 3.5rem;
    margin-top: -80px;
    padding-top: calc(5rem + 80px);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.blog-header::before,
.blog-header-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.14), transparent 50%);
    pointer-events: none;
}
.blog-header .container,
.blog-header-section .container { position: relative; z-index: 2; }
.blog-header h1,
.blog-header-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.blog-header .lead,
.blog-header-subtitle {
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Blog show page */
.blog-post-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5rem 0 3rem;
    margin-top: -80px;
    padding-top: calc(5rem + 80px);
    position: relative;
}
.post-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.post-header-meta i { margin-right: 0.35rem; color: var(--white) !important; }
.post-header-title {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}
.post-header-excerpt {
    color: rgba(255,255,255,0.92);
    font-size: 1.1rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.55;
}

.blog-post-content { padding: 3rem 0 4rem; background: var(--gray-50); }

.post-article {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.post-featured-image {
    margin: -2.5rem -2.5rem 2rem;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.post-featured-image img { width: 100%; height: auto; display: block; }

.post-content-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-800);
}
.post-content-body h2,
.post-content-body h3,
.post-content-body h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}
.post-content-body img {
    border-radius: var(--radius);
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}
.post-content-body a {
    color: var(--primary-green);
    text-decoration: underline;
    text-decoration-color: var(--accent-green);
    text-underline-offset: 3px;
}
.post-content-body blockquote {
    border-left: 4px solid var(--primary-green);
    padding: 1rem 1.25rem;
    background: var(--accent-mint);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
    color: var(--gray-800);
    font-style: italic;
}
.post-content-body ul,
.post-content-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }

.post-share {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}
.post-share h5 {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-weight: 600;
}
.share-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.share-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 1.1rem;
    transition: all var(--transition);
}
.share-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.post-navigation {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}
.post-navigation .btn-outline-light {
    color: var(--primary-green);
    border-color: var(--primary-green);
}
.post-navigation .btn-outline-light:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.related-posts-section {
    padding: 4rem 0;
    background: var(--white);
}
.related-posts-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.related-posts-section .title-underline { margin-bottom: 2rem; }

/* Pagination */
.pagination {
    gap: 0.35rem;
    justify-content: center;
}
.page-item .page-link {
    color: var(--primary-green);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm) !important;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    transition: all var(--transition-fast);
}
.page-item .page-link:hover {
    background: var(--accent-mint);
    color: var(--primary-green-dark);
    border-color: var(--accent-green);
}
.page-item.active .page-link {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-green);
}

/* ============================================================
   13. CONTACT PAGE
   ============================================================ */
.contact-info { padding-right: 1rem; }

.contact-info h2 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.info-item:hover {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-mint);
    color: var(--primary-green);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
}

.info-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.35rem;
    font-family: var(--font-primary);
}
.info-content p { margin-bottom: 0; color: var(--gray-700); font-size: 0.95rem; line-height: 1.6; }
.info-content a { color: var(--gray-700); }
.info-content a:hover { color: var(--primary-green); }

.opening-hours { margin-top: 0.5rem; }
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px dashed var(--gray-200);
    font-size: 0.9rem;
    color: var(--gray-700);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { font-weight: 600; color: var(--gray-800); }

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}
.contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.form-label {
    font-weight: 500;
    color: var(--gray-800);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.form-control,
.form-select {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    background: var(--white);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
    outline: none;
}
.form-control.is-invalid { border-color: var(--danger); }
.form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(239,68,68,0.15); }
.invalid-feedback { font-size: 0.85rem; color: var(--danger); }

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}
.map-wrapper iframe { display: block; width: 100%; }

.alert {
    border-radius: var(--radius);
    border: 1px solid transparent;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
}
.alert-success {
    background: var(--accent-mint);
    color: var(--primary-green-dark);
    border-color: var(--accent-green);
}
.alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}
.alert-info {
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe;
}

/* ============================================================
   14. CTA SECTION
   ============================================================ */
.section-cta {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(255,255,255,0.12), transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(255,255,255,0.08), transparent 50%);
    pointer-events: none;
}
.section-cta .container { position: relative; z-index: 2; }

.cta-title {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.cta-text {
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(135deg, #0d3d17 0%, #1b5e28 100%);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 1.5rem;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green-light), var(--accent-green), var(--primary-green-light));
}

.footer-title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-green-light);
    border-radius: var(--radius-pill);
}

.footer-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
}
.footer-links a::before {
    content: '›';
    margin-right: 0.5rem;
    color: var(--primary-green-light);
    opacity: 0;
    transform: translateX(-6px);
    transition: all var(--transition-fast);
}
.footer-links a:hover {
    color: var(--primary-green-light);
    padding-left: 4px;
}
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    margin-bottom: 0.85rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.5;
}
.footer-contact i {
    color: var(--primary-green-light);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}
.footer-contact a {
    color: rgba(255,255,255,0.75);
    transition: color var(--transition-fast);
}
.footer-contact a:hover { color: var(--primary-green-light); }

.social-links {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}
.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all var(--transition);
}
.social-links a:hover {
    background: var(--primary-green-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
}
.footer-bottom p { margin-bottom: 0; color: inherit; }
.footer-bottom a { color: var(--primary-green-light); }
.footer-bottom a:hover { color: var(--accent-green); }

/* ============================================================
   16. UTILITY HELPERS
   ============================================================ */
.text-primary { color: var(--primary-green) !important; }
.text-muted { color: var(--gray-500) !important; }
.bg-primary { background: var(--gradient-primary) !important; }

/* ============================================================
   17. RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 991px) {
    .section-services-preview,
    .section-therapists-preview,
    .section-blog-preview,
    .section-services,
    .section-therapists,
    .section-contact,
    .section-features { padding: 4rem 0; }

    .post-article { padding: 1.75rem; }
    .post-featured-image { margin: -1.75rem -1.75rem 1.5rem; }
}

@media (max-width: 768px) {
    .main-content { padding-top: 72px; }

    .hero-section {
        min-height: 620px;
        padding: 100px 0 80px;
        background-attachment: scroll;
    }

    .page-header {
        padding: 4rem 0 3rem;
        padding-top: calc(4rem + 72px);
    }

    .hero-buttons { flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .hero-buttons .btn { width: 100%; }

    .section-cta .row > div { text-align: center !important; }
    .section-cta .col-lg-4 { margin-top: 1.5rem; }

    .contact-form-wrapper { padding: 1.75rem 1.25rem; }
    .contact-info { padding-right: 0; }

    .footer { padding: 3rem 0 1.5rem; text-align: center; }
}
