/*
Theme Name: Sunflower Pszichoműhely
Theme URI: https://sunflowerpszichomuhely.hu
Author: Suzana Marketing
Description: Sunflower Pszichoműhely — hű másolat az eredeti Wix oldalról
Version: 3.0.0
License: Private
Text Domain: sunflower
*/

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
    --yellow: #FDD835;
    --yellow-dark: #F9A825;
    --yellow-light: #FFF8E1;
    --dark: #333333;
    --gray: #5f6360;
    --gray-light: #999;
    --gray-bg: #F5F5F0;
    --page-bg: #f2efe6;
    --white: #ffffff;
    --testimonial-bg: #C4A265;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --max-width: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--page-bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY — base
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    line-height: 1.2;
}

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

/* ============================================================
   BUTTONS — outlined, rounded (Wix style)
   ============================================================ */
.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border: 1.5px solid var(--dark);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--dark);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-outline:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark);
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid var(--yellow);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--yellow);
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-primary:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
}

.btn-yellow {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid var(--yellow);
    border-radius: 30px;
    font-size: 0.9rem;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-yellow:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
}

/* ============================================================
   HEADER / NAVIGATION — Yellow bar, flat menu
   ============================================================ */
.site-header {
    background: var(--yellow);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1200px;
}

/* Logo badge (text-only version) */
.site-logo {
    background: var(--yellow-dark);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
    white-space: nowrap;
}
.site-logo span {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

/* Logo image version */
.header-logo {
    display: flex;
    align-items: center;
}
.header-logo img {
    height: 50px;
    width: auto;
    background: white;
    border-radius: 50%;
    padding: 2px;
}

/* Main navigation */
.main-nav ul {
    display: flex;
    gap: 4px;
    align-items: center;
}
.main-nav li a {
    display: block;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 400;
    position: relative;
    transition: color 0.2s;
}
.main-nav li a:hover,
.main-nav li.current-menu-item a,
.main-nav li.current_page_item a {
    color: var(--dark);
}
/* Active underline — both demo class (.current) and WordPress classes */
.main-nav li.current a::after,
.main-nav li.current-menu-item a::after,
.main-nav li.current_page_item a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--dark);
}

/* Social icons in nav */
.nav-social {
    display: flex;
    gap: 12px;
    align-items: center;
}
.nav-social a {
    display: flex;
    align-items: center;
    color: var(--dark);
}
.nav-social svg {
    width: 18px;
    height: 18px;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
}

/* ============================================================
   FOOTER — Bright yellow with circle pattern
   ============================================================ */
.site-footer {
    background-color: var(--yellow);
    background-image: url('images/footer-bg-pattern.png');
    background-size: cover;
    background-position: center;
    padding: 48px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    text-align: center;
}
.footer-col {
    font-size: 0.85rem;
    color: var(--dark);
    line-height: 1.6;
}
.footer-col:first-child { text-align: left; }
.footer-col:last-child { text-align: right; }

.footer-logo {
    max-width: 160px;
    margin: 0 auto;
}
.footer-logo img {
    max-width: 100%;
    height: auto;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}
.footer-social a {
    color: var(--dark);
    font-size: 1rem;
}
.footer-social svg { width: 20px; height: 20px; }

.footer-copyright {
    text-align: center;
    font-size: 0.75rem;
    color: var(--dark);
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.1);
    opacity: 0.7;
}

/* ============================================================
   HOMEPAGE: HERO v3 — full viewport, centered, personal
   ============================================================ */
.hero-v3 {
    min-height: 100vh;
    min-height: calc(100vh - 70px);
    background-color: var(--page-bg);
    background-image: url('images/header-bg-inside.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 120% auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
}

/* Decorative yellow circle outlines in corners */
.hero-v3::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    top: -160px;
    right: -160px;
    opacity: 0.25;
    pointer-events: none;
}
.hero-v3::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    opacity: 0.2;
    pointer-events: none;
}

.hero-v3-circle-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1.5px solid var(--yellow);
    border-radius: 50%;
    bottom: 15%;
    right: 8%;
    opacity: 0.18;
    pointer-events: none;
}

.hero-v3-sunflower {
    width: 100px;
    height: auto;
    margin: 0 auto 32px;
    display: block;
}

.hero-v3-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 16px;
}

.hero-v3-subtitle {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 48px;
    max-width: 480px;
}

/* Photo collage — overlapping organic arrangement */
.hero-collage {
    position: relative;
    width: 570px;
    max-width: 100%;
    height: 210px;
    margin: 0 auto 48px;
}

.hero-collage-photo {
    position: absolute;
    width: 140px;
    height: auto;
    transition: transform 0.3s ease, z-index 0s;
    cursor: pointer;
}
.hero-collage-photo:hover {
    transform: scale(1.08) rotate(0deg) !important;
    z-index: 10 !important;
}

.hcp-monika  { left: 0px;   top: 30px;  transform: rotate(-4deg); z-index: 2; }
.hcp-petra   { left: 120px; top: 20px;  transform: rotate(2deg);  z-index: 3; }
.hcp-szilvia { left: 255px; top: 5px;   transform: rotate(-2deg); z-index: 1; }
.hcp-ildiko  { left: 390px; top: 18px;  transform: rotate(3deg);  z-index: 2; }

.hero-v3-cta {
    margin-bottom: 24px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--gray-light);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.7;
    animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-hint svg {
    width: 16px;
    height: 16px;
}

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

/* ============================================================
   HOMEPAGE: ILLUSTRATION RIBBON — visual rhythm strip
   ============================================================ */
.illust-ribbon {
    background: var(--white);
    padding: 52px 24px;
    overflow: hidden;
}
.illust-ribbon-inner {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 64px;
    flex-wrap: nowrap;
    max-width: 860px;
    margin: 0 auto;
}
.illust-ribbon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}
.illust-ribbon-item img {
    height: 120px;
    width: auto;
    opacity: 0.75;
    transition: opacity 0.3s, transform 0.3s;
}
.illust-ribbon-item:hover img {
    opacity: 1;
    transform: translateY(-4px);
}
.illust-ribbon-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray);
}

/* ============================================================
   HOMEPAGE: ABOUT v3 — clean, centered
   ============================================================ */
.about-v3 {
    background: var(--page-bg);
    padding: 88px 24px;
    text-align: center;
}
.about-v3 h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}
.about-v3 p {
    max-width: 560px;
    margin: 0 auto 36px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Firkás szalag — full-width decorative divider */
.firka-ribbon {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: block;
    opacity: 0.85;
}
.firka-ribbon img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   HOMEPAGE: VALUES — yellow circles + illustration
   ============================================================ */
.values-section {
    background: var(--page-bg);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.values-circles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.values-circles span {
    position: absolute;
    border-radius: 50%;
}
.values-circles .vc-1 {
    width: 380px; height: 380px;
    border: 2px solid var(--yellow);
    top: -60px; right: -80px;
    opacity: 0.35;
}
.values-circles .vc-2 {
    width: 220px; height: 220px;
    background: var(--yellow);
    opacity: 0.08;
    top: 30%; left: -40px;
}
.values-circles .vc-3 {
    width: 300px; height: 300px;
    border: 2px solid var(--yellow);
    bottom: -80px; left: 25%;
    opacity: 0.25;
}
.values-circles .vc-4 {
    width: 160px; height: 160px;
    background: var(--yellow);
    opacity: 0.06;
    top: 15%; right: 20%;
}
.values-circles .vc-5 {
    width: 120px; height: 120px;
    border: 2px solid var(--yellow);
    bottom: 20%; right: -30px;
    opacity: 0.3;
}
.values-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
.values-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0;
}
.values-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.values-illustration {
    flex: 0 0 180px;
}
.values-illustration img {
    width: 100%;
    height: auto;
}
.values-content { flex: 1; }
.values-grid-circles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.5);
    border-radius: 12px;
    transition: background 0.2s;
}
.value-item:hover { background: rgba(255,255,255,0.8); }
.value-dot {
    flex: 0 0 36px;
    height: 36px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.value-dot svg {
    width: 18px;
    height: 18px;
    fill: var(--dark);
    opacity: 0.7;
}
.value-text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}
.value-text p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}
.values-grid-circles .value-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
}

/* ============================================================
   HOMEPAGE: TEAM SECTION — 2x2 detailed cards
   ============================================================ */
.team-section-v3 {
    background: var(--gray-bg);
    padding: 88px 24px;
}
.team-section-v3-header {
    text-align: center;
    margin-bottom: 16px;
}
.team-section-v3-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 14px;
}
.team-section-v3-header p {
    max-width: 580px;
    margin: 0 auto 48px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.team-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.team-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}
.team-card-photo {
    flex: 0 0 90px;
}
.team-card-photo img {
    width: 90px;
    height: auto;
    display: block;
    /* No border-radius — shape is baked into the PNG */
}
.team-card-meta {}
.team-card-meta h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}
.team-card-meta .card-title {
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
    line-height: 1.4;
}

.team-card-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
    flex: 1;
    /* 3-line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-card-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    transition: color 0.2s;
}
.team-card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    height: 1.5px;
    background: var(--yellow);
    transition: right 0.25s ease;
}
.team-card-link:hover {
    color: var(--dark);
}
.team-card-link:hover::after {
    right: 0;
}

/* ============================================================
   HOMEPAGE: SERVICES LIST — topic list with yellow dots
   ============================================================ */
.services-home-section {
    background: var(--page-bg);
    padding: 80px 0;
    text-align: center;
    position: relative;
}
.services-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/header-bg-inside.png');
    background-repeat: no-repeat;
    background-position: center 30%;
    background-size: 80% auto;
    opacity: 0.3;
    pointer-events: none;
}
.services-home-section > .container {
    position: relative;
    z-index: 1;
}
.services-home-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.services-intro {
    max-width: 600px;
    margin: 0 auto 32px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}
.services-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto 36px;
    text-align: left;
}
.services-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.services-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
}

/* ============================================================
   HOMEPAGE: VISION SECTION
   ============================================================ */
.vision-section {
    background: var(--gray-bg);
    padding: 80px 0;
    overflow: hidden;
}
.vision-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 950px;
    margin: 0 auto;
}
.vision-content {
    flex: 1;
    text-align: left;
}
.vision-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.vision-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
}
.vision-illustration {
    flex: 0 0 200px;
}
.vision-illustration img {
    width: 100%;
    height: auto;
}

/* ============================================================
   HOMEPAGE: COMMUNITY SECTION — yellow strip
   ============================================================ */
.community-section {
    background: var(--yellow);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/footer-bg-pattern.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    pointer-events: none;
}
.community-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.community-photo {
    flex: 0 0 180px;
}
.community-photo img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
}
.community-text {
    text-align: left;
    flex: 1;
}
.community-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.community-text p {
    font-size: 0.92rem;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.85;
}

/* ============================================================
   BLOG: PAGE HERO — shared by blog archive and single
   ============================================================ */
.page-hero {
    background: var(--page-bg);
    background-image: url('images/header-bg-inside.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Decorative circles via pseudo-elements (services page variant) */
.page-hero::before {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    top: -80px; right: -60px;
    opacity: 0.25;
}
.page-hero::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    bottom: -40px; left: -30px;
    opacity: 0.2;
}
.page-hero .container {
    position: relative;
    z-index: 1;
}
/* Decorative circles via child divs (blog archive variant) */
.page-hero-circles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.page-hero-circles span {
    position: absolute;
    border-radius: 50%;
}
.page-hero-circles .phc-1 {
    width: 300px; height: 300px;
    border: 2px solid var(--yellow);
    top: -80px; right: -60px;
    opacity: 0.3;
}
.page-hero-circles .phc-2 {
    width: 180px; height: 180px;
    background: var(--yellow);
    opacity: 0.07;
    bottom: -40px; left: -50px;
}
.page-hero-circles .phc-3 {
    width: 120px; height: 120px;
    border: 2px solid var(--yellow);
    top: 20px; left: 8%;
    opacity: 0.25;
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.page-hero p {
    max-width: 540px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
/* Services page hero variants */
.page-hero h1.services-hero-h1,
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
}
.page-hero .lead {
    max-width: 580px;
    margin: 0 auto 32px;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}
.page-hero .hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   BLOG: CATEGORY FILTER STRIP
   ============================================================ */
.category-strip {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 0;
    position: sticky;
    top: 70px;
    z-index: 50;
}
.category-strip-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}
.category-strip-inner::-webkit-scrollbar { display: none; }
.cat-link {
    display: block;
    padding: 16px 20px;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--gray);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.cat-link:hover {
    color: var(--dark);
    border-bottom-color: var(--yellow-dark);
}
.cat-link.active {
    color: var(--dark);
    font-weight: 600;
    border-bottom-color: var(--yellow-dark);
}

/* ============================================================
   BLOG: FEATURED POST SECTION
   ============================================================ */
.featured-section {
    padding: 60px 0 20px;
}
.featured-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 20px;
}
.featured-card {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 0;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    transition: box-shadow 0.25s ease;
}
.featured-card:hover {
    box-shadow: 0 6px 32px rgba(0,0,0,0.12);
}
.featured-image {
    background: #d8d4c9;
    min-height: 260px;
    max-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.featured-image-placeholder {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
}
.featured-image-placeholder span {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
    opacity: 0.4;
}
.featured-content {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.post-category-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.featured-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--dark);
}
.featured-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--gray-light);
    margin-bottom: 28px;
}
.post-meta span { display: flex; align-items: center; gap: 4px; }
.read-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1.5px solid var(--yellow-dark);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}
.read-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.read-link:hover {
    border-color: var(--dark);
}

/* ============================================================
   BLOG: GRID & CARDS
   ============================================================ */
.blog-grid-section {
    padding: 40px 0 80px;
    position: relative;
}
.blog-grid-section-inner {
    position: relative;
}
/* Decorative circles behind the grid (blog archive) */
.blog-circles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
}
.blog-circles span {
    position: absolute;
    border-radius: 50%;
}
.blog-circles .bc-1 {
    width: 350px; height: 350px;
    border: 2px solid var(--yellow);
    top: 5%; right: -100px;
    opacity: 0.2;
}
.blog-circles .bc-2 {
    width: 200px; height: 200px;
    background: var(--yellow);
    opacity: 0.05;
    top: 40%; left: -60px;
}
.blog-circles .bc-3 {
    width: 250px; height: 250px;
    border: 2px solid var(--yellow);
    bottom: 10%; left: 30%;
    opacity: 0.15;
}
/* Decorative circles (category page variant) */
.blog-grid-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
}
.blog-grid-bg span {
    position: absolute;
    border-radius: 50%;
}
.blog-grid-bg .bgb-1 {
    width: 400px; height: 400px;
    border: 2px solid var(--yellow);
    top: -100px; right: -120px;
    opacity: 0.18;
}
.blog-grid-bg .bgb-2 {
    width: 220px; height: 220px;
    background: var(--yellow);
    opacity: 0.05;
    bottom: 10%; left: -60px;
}
.blog-grid-bg .bgb-3 {
    width: 180px; height: 180px;
    border: 2px solid var(--yellow);
    bottom: 20%; right: 5%;
    opacity: 0.15;
}

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.section-title-row h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}
/* Category page: 5th card spans 2 columns for visual variety */
.blog-grid .blog-card:nth-child(5) {
    grid-column: span 2;
}
.blog-grid .blog-card:nth-child(5) .card-image {
    height: 220px;
}

.blog-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.11);
    transform: translateY(-3px);
}
.card-image {
    background: #dbd8d0;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: #aaa;
    flex-shrink: 0;
}
.card-body {
    padding: 24px 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-body .post-category-tag {
    margin-bottom: 10px;
}
.card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--dark);
}
.card-excerpt {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    /* 3-line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: auto;
}
.card-date {
    font-size: 0.75rem;
    color: var(--gray-light);
}
.card-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.card-link:hover { color: var(--yellow-dark); }
.card-link svg { width: 14px; height: 14px; }

/* ============================================================
   BLOG: PAGINATION
   ============================================================ */
.pagination-section {
    padding: 0 0 80px;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.pag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 0.88rem;
    color: var(--gray);
    border: 1.5px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
}
.pag-btn:hover {
    border-color: var(--yellow-dark);
    color: var(--dark);
}
.pag-btn.active {
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
    border-color: var(--yellow);
}
.pag-next {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--dark);
    border: 1.5px solid var(--dark);
    margin-left: 8px;
    transition: all 0.25s;
}
.pag-next:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

/* ============================================================
   BLOG SINGLE: POST HEADER
   ============================================================ */
.post-header {
    padding: 56px 0 40px;
    background: var(--page-bg);
    background-image: url('images/header-bg-inside.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    position: relative;
    overflow: hidden;
}
.post-header-circles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.post-header-circles span {
    position: absolute;
    border-radius: 50%;
}
.post-header-circles .phc-1 {
    width: 280px; height: 280px;
    border: 2px solid var(--yellow);
    top: -80px; right: -60px;
    opacity: 0.25;
}
.post-header-circles .phc-2 {
    width: 150px; height: 150px;
    background: var(--yellow);
    opacity: 0.07;
    bottom: -30px; left: 5%;
}
.post-header-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.post-header h1 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--dark);
    margin-bottom: 24px;
}
.post-meta-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.post-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--gray);
}
.post-meta-item svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

/* ============================================================
   BLOG SINGLE: FEATURED IMAGE BOX
   ============================================================ */
.post-featured-image {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px 40px;
}
.featured-image-box {
    border-radius: 16px;
    overflow: hidden;
}
.featured-image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* ============================================================
   BLOG SINGLE: POST CONTENT STYLES
   ============================================================ */
.post-content-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px 60px;
}
.post-content {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--dark);
}
.post-content p {
    margin-bottom: 24px;
}
.post-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--dark);
    line-height: 1.25;
}
.post-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--dark);
}
.post-content ul {
    list-style: none;
    margin-bottom: 24px;
}
.post-content ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}
.post-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
}
.post-content blockquote {
    margin: 36px 0;
    padding: 24px 28px 24px 32px;
    background: var(--yellow-light);
    border-left: 4px solid var(--yellow-dark);
    border-radius: 0 10px 10px 0;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--gray);
}
.post-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.82rem;
    font-style: normal;
    color: var(--gray-light);
}

/* ============================================================
   BLOG SINGLE: SHARE STRIP
   ============================================================ */
.share-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 48px 0 0;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.share-label {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 500;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1.5px solid rgba(0,0,0,0.12);
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s;
}
.share-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}
.share-btn svg { width: 14px; height: 14px; }

/* ============================================================
   BLOG SINGLE: AUTHOR BOX
   ============================================================ */
.author-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px 60px;
}
.author-box {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.author-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--dark);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}
.author-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.author-info .author-role {
    font-size: 0.78rem;
    color: var(--gray-light);
    margin-bottom: 10px;
}
.author-info p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}
.author-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 10px;
    border-bottom: 1.5px solid var(--yellow-dark);
    padding-bottom: 1px;
}

/* ============================================================
   BLOG SINGLE: CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--yellow);
    background-image: url('images/footer-bg-pattern.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('images/footer-bg-pattern.png');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    pointer-events: none;
}
.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 24px;
}
.cta-banner h2,
.cta-banner-inner h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}
.cta-banner p,
.cta-banner-inner p {
    font-size: 0.95rem;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================================
   BLOG SINGLE: RELATED POSTS
   ============================================================ */
.related-section {
    padding: 60px 0 80px;
    position: relative;
}
.related-circles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
}
.related-circles span {
    position: absolute;
    border-radius: 50%;
}
.related-circles .rc-1 {
    width: 300px; height: 300px;
    border: 2px solid var(--yellow);
    top: -80px; right: -80px;
    opacity: 0.2;
}
.related-circles .rc-2 {
    width: 180px; height: 180px;
    background: var(--yellow);
    opacity: 0.06;
    bottom: 0; left: -40px;
}
.related-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.related-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
}
.related-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.11);
    transform: translateY(-3px);
}
.related-card-image {
    background: #dbd8d0;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: #aaa;
}
.related-card-body {
    padding: 20px 22px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.related-card-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.related-card-body h3 {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    flex: 1;
}
.related-card-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}
.related-card-link:hover { color: var(--yellow-dark); }
.related-card-link svg { width: 13px; height: 13px; }

/* ============================================================
   BLOG CATEGORY: CATEGORY HERO
   ============================================================ */
.category-hero {
    background: var(--page-bg);
    background-image: url('images/header-bg-inside.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    padding: 60px 0 56px;
    position: relative;
    overflow: hidden;
}
.cat-hero-circles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.cat-hero-circles span {
    position: absolute;
    border-radius: 50%;
}
.cat-hero-circles .chc-1 {
    width: 320px; height: 320px;
    border: 2px solid var(--yellow);
    top: -90px; right: -70px;
    opacity: 0.3;
}
.cat-hero-circles .chc-2 {
    width: 180px; height: 180px;
    background: var(--yellow);
    opacity: 0.08;
    bottom: -50px; left: -40px;
}
.cat-hero-circles .chc-3 {
    width: 100px; height: 100px;
    border: 2px solid var(--yellow);
    top: 30px; left: 10%;
    opacity: 0.2;
}
.category-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.cat-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 20px;
    transition: color 0.2s;
}
.cat-back-link:hover { color: var(--dark); }
.cat-back-link svg { width: 14px; height: 14px; }
.cat-hero-text {
    flex: 1;
    min-width: 240px;
}
.cat-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.cat-hero-text h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.15;
}
.cat-hero-text p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 520px;
}
.cat-hero-count {
    flex-shrink: 0;
    text-align: center;
}
.cat-count-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--yellow-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(253,216,53,0.1);
}
.cat-count-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}
.cat-count-label {
    font-size: 0.68rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

/* Posts count bar */
.posts-count-bar {
    padding: 28px 0 0;
}
.posts-count-bar .count-text {
    font-size: 0.82rem;
    color: var(--gray-light);
}
.posts-count-bar .count-text strong {
    color: var(--dark);
    font-weight: 600;
}

/* ============================================================
   BLOG CATEGORY: OTHER CATEGORIES STRIP
   ============================================================ */
.other-categories {
    padding: 0 0 80px;
}
.other-categories h2 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}
.cat-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--dark);
    border: 1.5px solid rgba(0,0,0,0.1);
    transition: all 0.2s;
}
.cat-pill:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}
.cat-pill-count {
    font-size: 0.75rem;
    color: var(--gray-light);
    font-weight: 400;
}

/* ============================================================
   SERVICES PAGE: SITUATIONS / PAIN POINTS — yellow dots
   ============================================================ */
.situations-section {
    background: var(--page-bg);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.situations-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('images/header-bg-inside.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70% auto;
    opacity: 0.2;
    pointer-events: none;
}
.situations-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.situations-illustration {
    flex: 0 0 180px;
}
.situations-illustration img {
    width: 100%;
    height: auto;
}
.situations-content {
    flex: 1;
}
.situations-content h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 24px;
}

/* ============================================================
   SERVICES PAGE: HOW IT WORKS — 3 steps
   ============================================================ */
.steps-section {
    background: var(--gray-bg);
    padding: 70px 0;
    text-align: center;
}
.steps-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 48px;
}
.steps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.step-card {
    flex: 1;
    max-width: 260px;
    text-align: center;
}
.step-number {
    width: 56px;
    height: 56px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 auto 16px;
}
.step-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.step-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.5;
}
/* Connector lines between steps */
.step-card + .step-card {
    position: relative;
}
.step-card + .step-card::before {
    content: '';
    position: absolute;
    top: 28px;
    left: -24px;
    width: 8px;
    height: 2px;
    background: var(--yellow);
}

/* ============================================================
   SERVICES PAGE: THERAPIST CARDS — conversion-focused
   ============================================================ */
.therapists-section {
    background: var(--page-bg);
    padding: 80px 0 40px;
}
.therapists-section > .container > h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.therapists-section > .container > p.section-sub {
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.therapist-card {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 48px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
}
.therapist-card:last-child {
    border-bottom: none;
}
/* Alternate layout */
.therapist-card:nth-child(even) {
    flex-direction: row-reverse;
}

.therapist-card-photo {
    flex: 0 0 200px;
    position: relative;
}
.therapist-card-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
}
/* Yellow circle accent behind photo */
.therapist-card-photo::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    top: -10px;
    left: -10px;
    opacity: 0.5;
}

.therapist-card-content {
    flex: 1;
}
.therapist-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.therapist-card-content .therapist-title {
    font-size: 0.82rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.5;
}
.therapist-card-content .therapist-help {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 20px;
}
.therapist-topics {
    margin-bottom: 24px;
}
.therapist-topics h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}
.therapist-topics ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.therapist-topics li {
    background: var(--yellow-light);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--dark);
    border: 1px solid rgba(253,216,53,0.3);
}
.therapist-card-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.therapist-card-cta .btn-primary {
    font-size: 0.88rem;
    padding: 12px 28px;
}
.therapist-card-cta .btn-outline {
    font-size: 0.85rem;
    padding: 10px 24px;
}

/* ============================================================
   SERVICES PAGE: NOT SURE / GENERAL CONTACT FALLBACK
   ============================================================ */
.not-sure-section {
    background: var(--gray-bg);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.not-sure-section::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    opacity: 0.15;
}
.not-sure-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}
.not-sure-inner h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.not-sure-inner p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ============================================================
   SERVICES PAGE: FAQ — objection handling
   ============================================================ */
.faq-section {
    background: var(--page-bg);
    padding: 70px 0;
}
.faq-section h2 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 40px;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 0;
}
.faq-item summary {
    padding: 18px 0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gray);
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    content: '–';
}
.faq-item .faq-answer {
    padding: 0 0 18px;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================================
   THERAPIST PROFILE PAGE: PROFILE HERO
   ============================================================ */
.profile-hero {
    background: var(--page-bg);
    background-image: url('images/header-bg-inside.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 110% auto;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}
.profile-hero::before {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    top: -100px; right: -80px;
    opacity: 0.2;
    pointer-events: none;
}
.profile-hero::after {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    background: var(--yellow);
    border-radius: 50%;
    bottom: -50px; left: -40px;
    opacity: 0.07;
    pointer-events: none;
}
.profile-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.profile-hero-photo {
    flex: 0 0 auto;
    position: relative;
}
.profile-hero-photo img {
    width: 280px;
    height: auto;
    display: block;
}
.profile-hero-photo::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: var(--yellow);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.18;
}
.profile-hero-text {
    flex: 1;
}
.profile-hero-text .profile-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.profile-hero-text h1 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--dark);
}
.profile-hero-text .profile-title {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
    line-height: 1.6;
    max-width: 460px;
}

/* ============================================================
   THERAPIST PROFILE PAGE: HELP SECTION
   ============================================================ */
.help-section {
    background: var(--page-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.help-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('images/header-bg-inside.png');
    background-repeat: no-repeat;
    background-position: center 40%;
    background-size: 70% auto;
    opacity: 0.18;
    pointer-events: none;
}
.help-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.help-content {
    flex: 1;
}
.help-content h2 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}
.help-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.help-content .help-additional {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.75;
    border-left: 3px solid var(--yellow);
    padding-left: 18px;
    margin-bottom: 28px;
}
.help-illustration {
    flex: 0 0 200px;
}
.help-illustration img {
    width: 100%;
    height: auto;
}

/* ============================================================
   THERAPIST PROFILE PAGE: TOPICS SECTION
   ============================================================ */
.topics-section {
    background: var(--gray-bg);
    padding: 80px 0;
    overflow: hidden;
}
.topics-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.topics-illustration {
    flex: 0 0 180px;
}
.topics-illustration img {
    width: 100%;
    height: auto;
}
.topics-content {
    flex: 1;
}
.topics-content h2 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--dark);
}
.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.topic-tag {
    background: var(--yellow-light);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.88rem;
    border: 1px solid rgba(253,216,53,0.4);
    line-height: 1.3;
}

/* ============================================================
   THERAPIST PROFILE PAGE: METHODS SECTION
   ============================================================ */
.methods-section {
    background: var(--page-bg);
    padding: 80px 0;
    position: relative;
}
.methods-section::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    top: -60px; right: -60px;
    opacity: 0.18;
    pointer-events: none;
}
.methods-section::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    bottom: -40px; left: 10%;
    opacity: 0.15;
    pointer-events: none;
}
.methods-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.methods-inner h2 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--dark);
}
.methods-list {
    list-style: none;
}
.methods-list li {
    padding: 14px 0 14px 32px;
    position: relative;
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.methods-list li:last-child {
    border-bottom: none;
}
.methods-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 50%;
}

/* ============================================================
   THERAPIST PROFILE PAGE: OTHER THERAPISTS CROSS-NAVIGATION
   ============================================================ */
.other-therapists {
    background: var(--page-bg);
    padding: 80px 0;
}
.other-therapists > .container > h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark);
}
.other-therapists-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.other-therapist-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    flex: 0 0 auto;
    width: 220px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.other-therapist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}
.other-therapist-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    margin: 0 auto 14px;
}
.other-therapist-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}
.other-therapist-card p {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.4;
    margin-bottom: 16px;
}
.other-therapist-card a.btn-outline {
    font-size: 0.8rem;
    padding: 8px 20px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
    padding: 60px 0;
    background: var(--page-bg);
}
.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}
.contact-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.contact-form-wrap {
    flex: 1;
    max-width: 500px;
}
.contact-logo {
    flex-shrink: 0;
    width: 350px;
}
.contact-logo img {
    width: 100%;
    height: auto;
}

.contact-form .form-row {
    margin-bottom: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: var(--font-main);
    font-size: 0.9rem;
    background: var(--white);
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--yellow);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form label { display: none; }
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
    font-size: 0.85rem;
}

/* Google Maps section */
.contact-map {
    width: 100%;
    height: 400px;
    margin-top: 40px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================
   WORDPRESS UTILITY CLASSES
   ============================================================ */
.screen-reader-text,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption.alignnone { margin: 5px 20px 20px 0; }
.wp-caption.alignleft { margin: 5px 20px 20px 0; }
.wp-caption.alignright { margin: 5px 0 20px 20px; }
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* WordPress utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 12px 0;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--gray-light);
}
.breadcrumb a {
    color: var(--gray);
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb-sep {
    opacity: 0.4;
}
.breadcrumb-current {
    color: var(--dark);
    font-weight: 500;
}

/* ============================================================
   MOBILE RESPONSIVE — @media queries
   ============================================================ */

/* --- 900px breakpoint --- */
@media (max-width: 900px) {
    /* Blog: featured card stacks */
    .featured-card { grid-template-columns: 1fr; }
    .featured-image { min-height: 240px; }
    .featured-content { padding: 32px 28px; }

    /* Blog: grid goes 2 columns */
    .blog-grid { grid-template-columns: repeat(2, 1fr); }

    /* Blog category: grid 2 columns, wide card resets */
    .blog-grid .blog-card:nth-child(5) { grid-column: span 1; }
    .blog-grid .blog-card:nth-child(5) .card-image { height: 190px; }
    .category-hero-inner { flex-direction: column; gap: 20px; }

    /* Blog single: related grid 2 columns */
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .author-box { flex-direction: column; text-align: center; gap: 16px; }

    /* Services: stack illustration */
    .situations-inner { flex-direction: column; }
    .situations-illustration { flex: none; width: 140px; margin: 0 auto; }

    /* Services: steps stack */
    .steps-grid { flex-direction: column; align-items: center; gap: 24px; }
    .step-card + .step-card::before { display: none; }

    /* Services: therapist cards stack */
    .therapist-card,
    .therapist-card:nth-child(even) {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .therapist-card-photo { flex: none; }
    .therapist-card-cta { justify-content: center; }
    .therapist-topics ul { justify-content: center; }

    /* Profile page: stack */
    .profile-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    .profile-hero-photo img { width: 220px; }
    .profile-hero-text .profile-title { max-width: none; }

    .help-inner { flex-direction: column; gap: 32px; }
    .help-illustration { flex: none; width: 160px; margin: 0 auto; }

    .topics-inner { flex-direction: column; gap: 32px; }
    .topics-illustration { flex: none; width: 150px; margin: 0 auto; }

    .other-therapists-grid { gap: 20px; }
    .other-therapist-card { width: 180px; padding: 20px 16px; }
}

/* --- 768px breakpoint --- */
@media (max-width: 768px) {
    /* Header: hamburger menu */
    .menu-toggle { display: block; }
    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--yellow);
        display: none;
        padding: 16px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav li a { padding: 12px 24px; }
    .nav-social { display: none; }

    /* Footer: single column */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col:first-child,
    .footer-col:last-child { text-align: center; }

    /* Hero v3 */
    .hero-v3 {
        min-height: auto;
        padding: 60px 24px 80px;
    }
    .hero-collage {
        width: 100%;
        height: auto;
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0 8px;
    }
    .hero-collage-photo {
        position: static;
        width: 100%;
        transform: none !important;
    }
    .hero-collage-photo:hover {
        transform: scale(1.04) !important;
    }

    /* Illustration ribbon: 2-column grid */
    .illust-ribbon-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
        justify-items: center;
    }
    .illust-ribbon-item img {
        height: 90px;
    }

    /* About */
    .about-v3 { padding: 64px 24px; }

    /* Values */
    .values-section { padding: 64px 0; }
    .values-inner { flex-direction: column; padding: 0 24px; }
    .values-illustration { flex: none; width: 160px; margin: 0 auto; }
    .values-grid-circles { grid-template-columns: 1fr; }
    .values-grid-circles .value-item:nth-child(5) { grid-column: auto; max-width: none; }

    /* Team cards */
    .team-section-v3 { padding: 64px 24px; }
    .team-cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    /* Vision */
    .vision-inner { flex-direction: column; text-align: center; padding: 0 24px; }
    .vision-illustration { flex: none; width: 160px; margin: 0 auto; }
    .vision-content { text-align: center; }

    /* Community */
    .community-inner { flex-direction: column; padding: 0 24px; }
    .community-text { text-align: center; }

    /* Therapist profile (old classes) */
    .therapist-hero-inner { flex-direction: column; text-align: center; }
    .therapist-photo-wrap { width: 240px; }
    .therapist-help-inner { flex-direction: column; }
    .therapist-help-decor { width: 160px; margin: 0 auto; }
    .therapist-topics-inner { flex-direction: column; }
    .therapist-topics-decor { width: 160px; margin: 0 auto; }
    .therapist-methods-inner { flex-direction: column; }
    .therapist-methods-photo { width: 220px; margin: 0 auto; }

    /* Contact page */
    .contact-inner { flex-direction: column; }
    .contact-logo { width: 220px; margin: 0 auto; }
}

/* --- 600px breakpoint --- */
@media (max-width: 600px) {
    /* Header: compact wrap */
    .site-header .container { height: auto; flex-wrap: wrap; padding: 10px 16px; gap: 8px; }
    .main-nav ul { flex-wrap: wrap; gap: 0; }
    .main-nav li a { padding: 6px 8px; font-size: 0.78rem; }
    .nav-social { display: none; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col:first-child, .footer-col:last-child { text-align: center; }

    /* Hero v3 */
    .hero-v3-heading { font-size: 2.2rem; }
    .hero-collage {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Illustration ribbon */
    .illust-ribbon { padding: 36px 16px; }
    .illust-ribbon-inner { gap: 20px 16px; }
    .illust-ribbon-item img { height: 72px; }

    /* Team */
    .team-card { padding: 24px; }

    /* Blog: single column */
    .blog-grid { grid-template-columns: 1fr; }
    .blog-grid .blog-card:nth-child(5) { grid-column: span 1; }

    /* Blog single */
    .related-grid { grid-template-columns: 1fr; }
    .post-meta-bar { gap: 12px; }
    .featured-image-box { max-height: 280px; }

    /* Featured */
    .featured-content { padding: 24px 20px; }
    .featured-content h2 { font-size: 1.25rem; }

    /* Services page */
    .page-hero { padding: 50px 0 40px; }
    .page-hero h1 { font-size: 1.8rem; }

    /* Profile page */
    .profile-hero { padding: 40px 0; }
    .profile-hero-photo img { width: 180px; }

    /* Other therapists */
    .other-therapists-grid { flex-direction: column; align-items: center; }
    .other-therapist-card { width: 240px; }
}
