/* =====================================================
   BIRCH AND BALANCE - THERAPY PRACTICE WEBSITE
   Color Palette (Light Theme):
   - Backgrounds: Light creams and whites
   - Accents: Slate/Steel tones
   - Text: Dark slate colors
   ===================================================== */

/* CSS Variables */
:root {
    /* Primary Slate Tones (now used for accents/buttons) */
    --slate-deep: #1C1F26;
    --slate-primary: #2D3139;
    --slate-mid: #3D424D;
    --slate-light: #4A5060;

    /* Steel Blue Accents */
    --steel-blue: #3D5A6C;
    --steel-light: #5B7A8C;
    --steel-muted: #7A9AAD;

    /* Warm Stone (for balance) */
    --stone-warm: #8B8178;
    --stone-light: #A89F94;

    /* Backgrounds (now light colors) */
    --bg-dark: #FFFFFF;
    --bg-primary: #F5F6F8;
    --bg-elevated: #E8EDE8;
    --bg-surface: #E2E5EA;

    /* Text (now dark colors) */
    --text-primary: #1C1F26;
    --text-secondary: #4A5060;
    --text-accent: #3D5A6C;

    /* Legacy variable mappings for compatibility */
    --forest-green: #3D5A6C;
    --deep-evergreen: #1C1F26;
    --warm-sand: #8B8178;
    --warm-cream: #F5F6F8;
    --light-sand: #E2E5EA;
    --moss: #5B7A8C;
    --text-dark: #1C1F26;
    --text-light: #4A5060;
    --white: #FFFFFF;

    --font-heading: 'DM Sans', 'Segoe UI', sans-serif;
    --font-body: 'DM Sans', 'Segoe UI', sans-serif;

    --shadow-sm: 0 2px 4px rgba(28, 31, 38, 0.1);
    --shadow-md: 0 4px 12px rgba(28, 31, 38, 0.15);
    --shadow-lg: 0 8px 24px rgba(28, 31, 38, 0.2);

    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--steel-blue);
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--steel-blue);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--slate-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--bg-dark), var(--steel-blue), var(--bg-dark));
    margin: 0 auto;
    border-radius: 2px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--steel-blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: #FFFFFF;
}

.logo:hover {
    color: var(--slate-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFF;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--slate-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFFFFF;
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
    background-color: var(--slate-primary);
}

.nav-cta {
    background-color: #FFFFFF;
    color: var(--steel-blue) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: var(--slate-primary);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 25px;
    height: 2px;
    background-color: #FFFFFF;
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: #FFFFFF;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hamburger animation when menu is open */
.hamburger.active {
    background-color: transparent;
}

.hamburger.active::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger.active::after {
    top: 0;
    transform: rotate(-45deg);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F0E8 35%, #D5E5D5 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3ClinearGradient id='bark1' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23B8BCC4'/%3E%3Cstop offset='30%25' stop-color='%23E8EAED'/%3E%3Cstop offset='70%25' stop-color='%23F5F5F5'/%3E%3Cstop offset='100%25' stop-color='%23C8CCD4'/%3E%3C/linearGradient%3E%3C/defs%3E%3C!-- Birch Trunk 1 --%3E%3Crect x='80' y='-50' width='45' height='900' fill='url(%23bark1)'/%3E%3Cpath d='M82 50 Q95 55 123 50' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M85 130 Q100 138 120 132' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M83 210 Q98 215 122 208' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M86 300 Q97 308 118 302' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M84 380 Q100 390 121 382' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M87 470 Q96 475 117 468' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M83 560 Q99 568 120 558' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M85 650 Q98 655 119 648' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3C!-- Birch Trunk 2 --%3E%3Crect x='180' y='-80' width='55' height='950' fill='url(%23bark1)'/%3E%3Cpath d='M183 30 Q205 38 232 28' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M186 120 Q208 130 228 118' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M184 220 Q210 232 230 218' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M187 320 Q206 328 227 315' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M185 420 Q209 432 229 418' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M188 530 Q207 538 226 525' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M184 640 Q208 650 228 635' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3C!-- Birch Trunk 3 --%3E%3Crect x='930' y='-30' width='50' height='880' fill='url(%23bark1)'/%3E%3Cpath d='M933 60 Q955 68 977 58' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M935 160 Q952 168 975 155' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M932 260 Q958 272 978 258' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M936 370 Q954 378 974 365' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M933 480 Q956 490 976 475' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M935 590 Q953 598 973 585' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3C!-- Birch Trunk 4 --%3E%3Crect x='1040' y='-60' width='40' height='920' fill='url(%23bark1)'/%3E%3Cpath d='M1042 40 Q1058 48 1078 38' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M1044 150 Q1062 160 1076 148' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M1043 270 Q1060 278 1077 265' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M1045 390 Q1061 400 1075 388' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M1042 510 Q1059 518 1076 505' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M1044 630 Q1060 640 1074 625' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3C!-- Birch Trunk 5 (thin, background) --%3E%3Crect x='320' y='-40' width='30' height='890' fill='%23D8DCE4' opacity='0.6'/%3E%3Cpath d='M322 80 Q335 86 348 78' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.6'/%3E%3Cpath d='M324 200 Q336 208 346 198' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.6'/%3E%3Cpath d='M323 340 Q337 348 347 335' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.6'/%3E%3Cpath d='M325 480 Q335 488 345 475' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.6'/%3E%3C!-- Birch Trunk 6 (thin, background) --%3E%3Crect x='850' y='-20' width='28' height='870' fill='%23D8DCE4' opacity='0.5'/%3E%3Cpath d='M852 100 Q864 108 876 98' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.5'/%3E%3Cpath d='M854 250 Q865 258 874 248' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.5'/%3E%3Cpath d='M853 400 Q866 410 875 398' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.5'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(226, 229, 234, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--steel-blue);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--steel-blue);
    border-radius: 10px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--steel-blue);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* =====================================================
   MISSION SECTION
   ===================================================== */
.mission {
    background-color: var(--bg-primary);
}

.mission-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.stacked-rocks-svg {
    width: 100%;
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(28, 31, 38, 0.4));
}

.mission-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--steel-blue);
}

.value h4 {
    color: var(--steel-blue);
    margin-bottom: 0.5rem;
}

.value p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
    background-color: var(--bg-elevated);
}

.about-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: static;
}

.image-frame {
    background-color: var(--bg-surface);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
}

.therapist-placeholder {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.therapist-photo {
    width: 100%;
    height: auto;
    border-radius: 2px;
    object-fit: cover;
    display: block;
}

.about-text h3 {
    margin-bottom: 0.5rem;
}

.credentials {
    color: var(--steel-blue);
    font-weight: 500;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.credentials-list {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-surface);
    border-radius: 8px;
    border-left: 4px solid var(--steel-blue);
}

.credentials-list h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.credentials-list ul {
    list-style: none;
}

.credentials-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.credentials-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--steel-blue);
    border-radius: 50%;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    background-color: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--bg-surface);
    padding: 2rem;
    border-radius: 8px;
}


.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(91, 122, 140, 0.3);
}

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

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--steel-blue);
    border-radius: 50%;
}

/* Policies */
.policies {
    background-color: var(--bg-elevated);
    padding: 3rem;
    border-radius: 8px;
}

.policies h3 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.policy {
    background-color: var(--bg-surface);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid var(--steel-blue);
}

.policy h4 {
    color: var(--steel-blue);
    margin-bottom: 0.75rem;
}

.policy p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F0E8 35%, #D5E5D5 100%);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3ClinearGradient id='bark1' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23B8BCC4'/%3E%3Cstop offset='30%25' stop-color='%23E8EAED'/%3E%3Cstop offset='70%25' stop-color='%23F5F5F5'/%3E%3Cstop offset='100%25' stop-color='%23C8CCD4'/%3E%3C/linearGradient%3E%3C/defs%3E%3C!-- Birch Trunk 1 --%3E%3Crect x='80' y='-50' width='45' height='900' fill='url(%23bark1)'/%3E%3Cpath d='M82 50 Q95 55 123 50' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M85 130 Q100 138 120 132' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M83 210 Q98 215 122 208' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M86 300 Q97 308 118 302' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M84 380 Q100 390 121 382' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M87 470 Q96 475 117 468' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M83 560 Q99 568 120 558' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M85 650 Q98 655 119 648' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3C!-- Birch Trunk 2 --%3E%3Crect x='180' y='-80' width='55' height='950' fill='url(%23bark1)'/%3E%3Cpath d='M183 30 Q205 38 232 28' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M186 120 Q208 130 228 118' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M184 220 Q210 232 230 218' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M187 320 Q206 328 227 315' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M185 420 Q209 432 229 418' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M188 530 Q207 538 226 525' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M184 640 Q208 650 228 635' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3C!-- Birch Trunk 3 --%3E%3Crect x='930' y='-30' width='50' height='880' fill='url(%23bark1)'/%3E%3Cpath d='M933 60 Q955 68 977 58' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M935 160 Q952 168 975 155' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M932 260 Q958 272 978 258' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M936 370 Q954 378 974 365' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M933 480 Q956 490 976 475' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M935 590 Q953 598 973 585' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3C!-- Birch Trunk 4 --%3E%3Crect x='1040' y='-60' width='40' height='920' fill='url(%23bark1)'/%3E%3Cpath d='M1042 40 Q1058 48 1078 38' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M1044 150 Q1062 160 1076 148' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M1043 270 Q1060 278 1077 265' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M1045 390 Q1061 400 1075 388' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M1042 510 Q1059 518 1076 505' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M1044 630 Q1060 640 1074 625' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3C!-- Birch Trunk 5 (thin, background) --%3E%3Crect x='320' y='-40' width='30' height='890' fill='%23D8DCE4' opacity='0.6'/%3E%3Cpath d='M322 80 Q335 86 348 78' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.6'/%3E%3Cpath d='M324 200 Q336 208 346 198' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.6'/%3E%3Cpath d='M323 340 Q337 348 347 335' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.6'/%3E%3Cpath d='M325 480 Q335 488 345 475' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.6'/%3E%3C!-- Birch Trunk 6 (thin, background) --%3E%3Crect x='850' y='-20' width='28' height='870' fill='%23D8DCE4' opacity='0.5'/%3E%3Cpath d='M852 100 Q864 108 876 98' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.5'/%3E%3Cpath d='M854 250 Q865 258 874 248' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.5'/%3E%3Cpath d='M853 400 Q866 410 875 398' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.5'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 2rem 0;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form-container {
    background-color: var(--bg-surface);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--steel-blue);
    border-radius: 4px;
    background-color: var(--bg-elevated);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--steel-light);
    background-color: var(--bg-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--steel-light);
    margin-bottom: 1.5rem;
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.form-success .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
}

.form-success h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* =====================================================
   CLIENT PORTAL SECTION
   ===================================================== */
.portal {
    background-color: var(--slate-deep);
    text-align: center;
}

.portal .section-header h2 {
    color: var(--text-primary);
}

.portal .divider {
    background: linear-gradient(90deg, var(--steel-blue), var(--steel-blue), var(--steel-blue));
}

.portal-content {
    max-width: 600px;
    margin: 0 auto;
}

.portal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

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

.portal-icon circle,
.portal-icon path {
    stroke: var(--steel-blue);
    fill: var(--steel-blue);
}

.portal-icon circle:first-child {
    fill: none;
}

.portal-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.portal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.portal .btn-primary {
    background-color: var(--steel-blue);
}

.portal .btn-primary:hover {
    background-color: var(--slate-primary);
    color: #FFFFFF;
}

.portal-note {
    font-size: 0.9rem;
    margin-top: 2rem;
    color: var(--stone-warm);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background-color: var(--steel-blue);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: #FFFFFF;
}

.footer-nav a:hover {
    color: var(--slate-primary);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet and smaller desktops */
@media (max-width: 992px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-image {
        order: -1;
    }

    .stacked-rocks-svg {
        max-width: 200px;
    }

    .mission-values {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .policies-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .page-header {
        padding: 8rem 0 3rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
    h4 { font-size: 1.1rem; }

    /* Navigation */
    .nav-container {
        height: 70px;
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--steel-blue);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 2rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        z-index: 999;
        /* Hidden by default using transform and opacity */
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu li {
        display: block;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-menu li a.nav-link {
        display: block;
        font-size: 1.2rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        text-align: center;
        color: #FFFFFF;
        text-decoration: none;
        background-color: transparent;
    }

    .nav-menu li a.nav-link:hover {
        color: var(--slate-primary);
        background-color: rgba(255, 255, 255, 0.1);
    }

    .nav-menu li a.nav-cta {
        background-color: #FFFFFF;
        color: var(--steel-blue);
        border-radius: 4px;
        margin-top: 1rem;
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* Sections */
    .section {
        padding: 3.5rem 0;
    }

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

    .container {
        padding: 0 1.25rem;
    }

    /* Mission - hide values section on mobile */
    .mission-values {
        display: none;
    }

    /* About */
    .about-image {
        max-width: 250px;
    }

    .credentials-list {
        padding: 1.25rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .policies {
        padding: 2rem 1.5rem;
    }

    /* Contact */
    .contact-form-container {
        padding: 1.75rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.25rem;
    }

    .footer-nav a {
        font-size: 0.85rem;
    }

    .disclaimer {
        font-size: 0.75rem !important;
        padding: 0 1rem;
    }

    /* Page Header */
    .page-header {
        padding: 7rem 0 2.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Portal */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portal-features {
        padding: 2rem 1.5rem;
    }

    .feature {
        padding: 1rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
        margin-top: 2.5rem;
    }

    .cta-section p {
        font-size: 1.25rem;
    }

    .cta-section .btn-primary {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .nav-container {
        height: 60px;
        padding: 0 0.75rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav-menu {
        top: 60px;
        padding: 1.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

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

    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .stacked-rocks-svg {
        max-width: 150px;
    }

    .about-image {
        max-width: 200px;
    }

    .image-frame {
        padding: 0.5rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .policies {
        padding: 1.25rem;
    }

    .policy {
        padding: 1.25rem;
    }

    .contact-form-container {
        padding: 1.25rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .page-header {
        padding: 5.5rem 0 2rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .portal-page .portal-content {
        margin-bottom: 2.5rem;
    }

    .portal-page .portal-icon {
        width: 80px;
        height: 80px;
    }

    .portal-features {
        padding: 1.5rem 1rem;
    }

    .footer-nav {
        gap: 0.5rem 1rem;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .nav-container {
        padding: 0 0.5rem;
    }

    .logo {
        font-size: 1.1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }

    .nav-cta:hover {
        transform: none;
    }

    /* Larger touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn {
        min-height: 48px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .tagline {
        margin-bottom: 1.5rem;
    }

    .nav-menu {
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid var(--deep-evergreen);
    }

    .nav-link::after {
        height: 3px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        border-width: 3px;
    }
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* =====================================================
   PAGE HEADER (for sub-pages)
   ===================================================== */
.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F0E8 35%, #D5E5D5 100%);
    text-align: center;
}

.page-header h1 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* =====================================================
   PORTAL PAGE STYLES
   ===================================================== */
.portal-page {
    background-color: var(--bg-dark);
}

.portal-page .portal-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.portal-page .portal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

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

.portal-page .portal-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.portal-page .portal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.portal-page .portal-note {
    font-size: 0.9rem;
    margin-top: 2rem;
    color: var(--steel-light);
}

.portal-page .portal-note a {
    color: var(--steel-blue);
    text-decoration: underline;
}

.portal-page .portal-note a:hover {
    color: var(--steel-light);
}

/* Portal Features Grid */
.portal-features {
    background-color: var(--bg-surface);
    padding: 3rem;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.portal-features h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.feature h4 {
    color: var(--steel-blue);
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* CTA Section for Services Page */
.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3.5rem;
    background-color: var(--bg-elevated);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--steel-blue);
}

.cta-section p {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: var(--steel-blue);
    color: #FFFFFF;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

.cta-section .btn-primary:hover {
    background-color: var(--slate-primary);
    color: #FFFFFF;
}

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

    .portal-features {
        padding: 2rem 1.5rem;
    }
}

/* =====================================================
   JOURNEY PAGE STYLES
   ===================================================== */
.journey-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

.journey-section-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Journey Hero Section */
.journey-hero {
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F0E8 35%, #D5E5D5 100%);
    overflow: hidden;
}

.journey-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3ClinearGradient id='bark1' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23B8BCC4'/%3E%3Cstop offset='30%25' stop-color='%23E8EAED'/%3E%3Cstop offset='70%25' stop-color='%23F5F5F5'/%3E%3Cstop offset='100%25' stop-color='%23C8CCD4'/%3E%3C/linearGradient%3E%3C/defs%3E%3C!-- Birch Trunk 1 --%3E%3Crect x='80' y='-50' width='45' height='900' fill='url(%23bark1)'/%3E%3Cpath d='M82 50 Q95 55 123 50' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M85 130 Q100 138 120 132' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M83 210 Q98 215 122 208' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M86 300 Q97 308 118 302' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M84 380 Q100 390 121 382' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M87 470 Q96 475 117 468' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M83 560 Q99 568 120 558' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M85 650 Q98 655 119 648' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3C!-- Birch Trunk 2 --%3E%3Crect x='180' y='-80' width='55' height='950' fill='url(%23bark1)'/%3E%3Cpath d='M183 30 Q205 38 232 28' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M186 120 Q208 130 228 118' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M184 220 Q210 232 230 218' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M187 320 Q206 328 227 315' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M185 420 Q209 432 229 418' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M188 530 Q207 538 226 525' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M184 640 Q208 650 228 635' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3C!-- Birch Trunk 3 --%3E%3Crect x='930' y='-30' width='50' height='880' fill='url(%23bark1)'/%3E%3Cpath d='M933 60 Q955 68 977 58' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M935 160 Q952 168 975 155' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M932 260 Q958 272 978 258' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M936 370 Q954 378 974 365' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M933 480 Q956 490 976 475' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M935 590 Q953 598 973 585' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3C!-- Birch Trunk 4 --%3E%3Crect x='1040' y='-60' width='40' height='920' fill='url(%23bark1)'/%3E%3Cpath d='M1042 40 Q1058 48 1078 38' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M1044 150 Q1062 160 1076 148' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3Cpath d='M1043 270 Q1060 278 1077 265' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M1045 390 Q1061 400 1075 388' stroke='%232D3139' stroke-width='4' fill='none'/%3E%3Cpath d='M1042 510 Q1059 518 1076 505' stroke='%232D3139' stroke-width='2' fill='none'/%3E%3Cpath d='M1044 630 Q1060 640 1074 625' stroke='%232D3139' stroke-width='3' fill='none'/%3E%3C!-- Birch Trunk 5 (thin, background) --%3E%3Crect x='320' y='-40' width='30' height='890' fill='%23D8DCE4' opacity='0.6'/%3E%3Cpath d='M322 80 Q335 86 348 78' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.6'/%3E%3Cpath d='M324 200 Q336 208 346 198' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.6'/%3E%3Cpath d='M323 340 Q337 348 347 335' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.6'/%3E%3Cpath d='M325 480 Q335 488 345 475' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.6'/%3E%3C!-- Birch Trunk 6 (thin, background) --%3E%3Crect x='850' y='-20' width='28' height='870' fill='%23D8DCE4' opacity='0.5'/%3E%3Cpath d='M852 100 Q864 108 876 98' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.5'/%3E%3Cpath d='M854 250 Q865 258 874 248' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.5'/%3E%3Cpath d='M853 400 Q866 410 875 398' stroke='%232D3139' stroke-width='2' fill='none' opacity='0.5'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.journey-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(226, 229, 234, 0.6) 100%);
}

.journey-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.journey-hero h1 {
    font-size: 4rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.journey-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--steel-blue);
    margin-bottom: 1.5rem;
}

.journey-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Continue Button */
.continue-btn {
    margin-top: 2rem;
}

.continue-btn .btn-icon {
    animation: bounce-down 2s infinite;
}

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

/* Journey Narrative Sections */
.journey-narrative {
    background-color: var(--bg-primary);
}

.journey-narrative.alt-bg {
    background-color: var(--bg-elevated);
}

.narrative-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.narrative-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.narrative-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.narrative-point {
    background-color: var(--bg-surface);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--steel-blue);
}

.journey-narrative.alt-bg .narrative-point {
    background-color: var(--bg-surface);
}

.narrative-point h4 {
    color: var(--steel-blue);
    margin-bottom: 0.75rem;
}

.narrative-point p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* What to Expect Section */
.expect-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.expect-block h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.expect-list {
    list-style: none;
    margin-top: 1.5rem;
}

.expect-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.expect-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--steel-blue);
    border-radius: 50%;
}

/* Journey Cards Sections */
.journey-cards {
    background-color: var(--bg-primary);
}

.journey-cards.alt-bg {
    background-color: var(--bg-elevated);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Focus Grid (Areas of Focus) */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.focus-item {
    background-color: var(--bg-surface);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
}

.journey-cards.alt-bg .focus-item {
    background-color: var(--bg-surface);
}


.focus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.focus-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--steel-blue);
}

.focus-item h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* Approach Grid (Treatment Approaches) */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.approach-item {
    background-color: var(--bg-surface);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid var(--steel-blue);
}

.journey-cards.alt-bg .approach-item {
    background-color: var(--bg-surface);
}

.approach-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.approach-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Journey Therapist Section */
.journey-therapist {
    background-color: var(--bg-primary);
}

.therapist-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
    margin-top: 3rem;
}

.therapist-image-wrapper {
    justify-self: center;
}

.therapist-image-wrapper .image-frame {
    max-width: 250px;
}

.therapist-bio h3 {
    margin-bottom: 0.5rem;
}

.therapist-bio .credentials {
    color: var(--steel-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--steel-blue);
    font-weight: 500;
    text-decoration: underline;
}

.btn-link:hover {
    color: var(--steel-light);
}

/* Journey Sessions Section */
.journey-sessions {
    background-color: var(--bg-elevated);
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.session-item {
    background-color: var(--bg-surface);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
}


.session-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.session-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--steel-blue);
}

.session-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.session-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Journey CTA Section */
.journey-cta {
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F0E8 35%, #D5E5D5 100%);
    position: relative;
}

.journey-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(61, 90, 108, 0.1) 0%, transparent 70%);
}

.journey-cta .journey-section-content {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: #FFFFFF;
    color: var(--steel-blue);
    border: 2px solid var(--steel-blue);
}

.btn-secondary:hover {
    background-color: var(--steel-blue);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-note {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* =====================================================
   FEES & INSURANCE STYLES
   ===================================================== */
.fees-section {
    background-color: var(--bg-primary);
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    justify-items: center;
}

.fees-grid .fee-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: calc(50% - 1rem);
}

.fee-card {
    background-color: var(--bg-surface);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--steel-blue);
    width: 100%;
}

.fee-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.fee-amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--steel-blue);
    margin-bottom: 0.5rem;
}

.fee-description {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.insurance-section {
    background-color: var(--bg-elevated);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.insurance-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.insurance-item {
    background-color: var(--bg-surface);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: var(--text-primary);
}

.insurance-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.payment-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: var(--bg-surface);
    border-radius: 8px;
}

/* =====================================================
   JOURNEY PAGE RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 992px) {
    .journey-hero h1 {
        font-size: 3rem;
    }

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

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

    .therapist-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .therapist-bio {
        text-align: center;
    }

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

@media (max-width: 768px) {
    .journey-section {
        min-height: auto;
        padding: 4rem 0;
    }

    .journey-hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .journey-hero h1 {
        font-size: 2.5rem;
    }

    .journey-tagline {
        font-size: 1.2rem;
    }

    .narrative-points {
        grid-template-columns: 1fr;
    }

    .expect-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .sessions-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .fees-grid {
        grid-template-columns: 1fr;
    }

    .insurance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .journey-hero h1 {
        font-size: 2rem;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .focus-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: 1rem;
    }

    .focus-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
}
