/* ==========================================
   COUNSELING CONFIDENCE / THE EXPERIENCE STUDIO
   ==========================================
   
   VIBRANT MODERN THEME
   Bold blues and reds with clean blacks and greys
   ========================================== */

:root {
    /* Vibrant Color Palette */
    --primary-color: #1E40AF;        /* Vibrant deep blue */
    --secondary-color: #DC2626;      /* Vibrant red */
    --accent-color: #3B82F6;         /* Bright blue */
    --tertiary-color: #374151;       /* Charcoal grey */
    --matisse-pink: #E11D48;         /* Vibrant rose/red */
    --matisse-coral: #EF4444;        /* Bright red */
    --matisse-lavender: #6366F1;     /* Vibrant indigo */
    
    /* Supporting Colors */
    --text-dark: #1F2937;            /* Dark grey/near black */
    --text-light: #ffffff;
    --background-light: #F3F4F6;     /* Light grey */
    --background-white: #ffffff;
    --shadow: rgba(30, 64, 175, 0.15);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px;
    --border-radius: 15px;
    
    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Dark Mode Theme */
body.dark-mode {
    --primary-color: #3B82F6;        /* Bright blue */
    --secondary-color: #EF4444;      /* Bright red */
    --accent-color: #60A5FA;         /* Light blue */
    --tertiary-color: #4B5563;       /* Medium grey */
    --matisse-pink: #F43F5E;         /* Bright rose */
    --matisse-coral: #F87171;        /* Light red */
    --matisse-lavender: #818CF8;     /* Light indigo */
    
    --text-dark: #F9FAFB;            /* Near white */
    --text-light: #111827;           /* Near black */
    --background-light: #1F2937;     /* Dark grey */
    --background-white: #111827;     /* Very dark grey */
    --shadow: rgba(0, 0, 0, 0.4);
}

/* High Contrast Mode */
body.high-contrast {
    --primary-color: #0056b3;
    --secondary-color: #ff4500;
    --accent-color: #00a86b;
    --tertiary-color: #ffd700;
    --matisse-pink: #ff1493;
    --matisse-coral: #ff6347;
    --matisse-lavender: #9370db;
    
    --text-dark: #000000;
    --text-light: #ffffff;
    --background-light: #ffffff;
    --background-white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.4);
}

body.high-contrast.dark-mode {
    --text-dark: #ffffff;
    --text-light: #000000;
    --background-light: #000000;
    --background-white: #000000;
}

/* ==========================================
   GLOBAL STYLES
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--background-white);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: background 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: flex-end;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--matisse-coral));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.logo-placeholder .logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--matisse-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ==========================================
   THEME TOGGLE BUTTON
   ========================================== */

.theme-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    background: var(--background-light);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.theme-toggle-icon {
    font-size: 1.2rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background-light) 0%, #FAF8F5 100%);
    position: relative;
    overflow: hidden;
}

/* Matisse-inspired organic shapes - more 2D and flat */
.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 500px;
    background: var(--matisse-lavender);
    opacity: 0.3;
    top: -100px;
    right: -50px;
    border-radius: 48% 52% 45% 55% / 50% 48% 52% 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 450px;
    background: var(--matisse-coral);
    opacity: 0.25;
    bottom: -80px;
    left: -80px;
    border-radius: 52% 48% 55% 45% / 48% 52% 48% 52%;
    z-index: 0;
}

.hero-content {
    text-align: center;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--matisse-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.noLinkEffect {
    text-decoration: none;
    color: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--matisse-coral));
    color: var(--text-light);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
}

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

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

/* ==========================================
   SECTIONS
   ========================================== */

.section {
    padding: var(--section-padding) 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--matisse-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    background: var(--background-white);
}

.about-content {
    display: grid;
    gap: 50px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* ==========================================
   EVENTS SECTION
   ========================================== */

.events {
    background: var(--background-light);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-color), var(--matisse-coral));
    color: var(--text-light);
    padding: 20px;
    text-align: center;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.event-date .month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-details {
    padding: 25px;
}

.event-details h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.event-details p {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.event-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    background: var(--background-white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    padding: 15px;
    background: var(--background-light);
    border-radius: 10px;
}

.contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

/* ==========================================
   CONTACT FORM
   ========================================== */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--matisse-coral));
    color: var(--text-light);
    text-align: center;
    padding: 40px 0;
}

.footer p {
    margin: 10px 0;
}

.footer-tagline {
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-content {
        gap: 15px;
    }
    
    .theme-controls {
        flex-direction: column;
        gap: 8px;
    }
    
    .theme-toggle {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--background-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 0;
        transition: left 0.3s;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px;
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 80%;
        max-width: 300px;
        text-align: center;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
}

/* ==========================================
   SERVICE CARDS (for two-column layout)
   ========================================== */

.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-section {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s;
}

.service-section:hover {
    transform: translateY(-5px);
}

.service-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-section ul {
    list-style: none;
    padding: 0;
}

.service-section li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-section li:before {
    content: "●";
    color: var(--accent-color);
    font-size: 1.2rem;
}

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

.service-subtitle {
    margin-bottom: 20px;
    color: #666;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #666;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group label {
    margin: 0;
}

/* ==========================================
   THERAPIST PROFILES
   ========================================== */

.therapists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.therapist-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.therapist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow);
}

.therapist-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-color), var(--matisse-lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.therapist-info {
    padding: 25px;
}

.therapist-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.therapist-info .specialty {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.therapist-info p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.therapist-info .bio-placeholder {
    color: #999;
    font-style: italic;
    font-size: 0.9rem;
}

.therapist-info .contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.therapist-info .contact-link:hover {
    color: var(--primary-color);
}

/* ==========================================
   PROGRAM DETAILS
   ========================================== */

.program-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.program-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 5px solid var(--accent-color);
}

.program-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.program-card p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ==========================================
   SCHEDULE SECTION
   ========================================== */

.schedule-grid {
    display: grid;
    gap: 25px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.schedule-item {
    background: linear-gradient(135deg, var(--background-light), var(--background-white));
    border-radius: var(--border-radius);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 15px var(--shadow);
    transition: transform 0.3s;
}

.schedule-item:hover {
    transform: translateX(5px);
}

.schedule-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.schedule-time {
    color: var(--text-dark);
    font-weight: 500;
}

/* ==========================================
   DESCRIPTION BOX
   ========================================== */

.description-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 1.3rem;
    font-style: italic;
    margin: 50px 0;
    box-shadow: 0 6px 24px rgba(30, 64, 175, 0.2);
}

/* ==========================================
   DECORATIVE ELEMENTS
   ========================================== */

.matisse-shape {
    position: absolute;
    border-radius: 50% 60% 70% 80%;
    opacity: 0.1;
    z-index: 0;
}

.matisse-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: 10%;
    right: 5%;
}

.matisse-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: 15%;
    left: 5%;
}

/* Decorative dots pattern */
.section.counseling {
    position: relative;
    overflow: hidden;
}

.section.counseling::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--secondary-color) 3px, transparent 3px);
    background-size: 20px 20px;
    opacity: 0.15;
    top: 40px;
    right: 30px;
    z-index: 0;
}

.section.counseling::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--primary-color) 3px, transparent 3px);
    background-size: 20px 20px;
    opacity: 0.12;
    bottom: 60px;
    left: 40px;
    z-index: 0;
}

/* Decorative shape for studio section */
.section.studio {
    position: relative;
    overflow: hidden;
}

.section.studio::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 300px;
    background: var(--accent-color);
    opacity: 0.08;
    top: -50px;
    left: -80px;
    border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
    z-index: 0;
}

.section.studio::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border: 4px solid var(--matisse-pink);
    opacity: 0.15;
    bottom: 80px;
    right: 50px;
    border-radius: 50%;
    z-index: 0;
}

/* Decorative elements for schedule section */
.section.schedule {
    position: relative;
    overflow: hidden;
}

.section.schedule::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--matisse-lavender) 0%, transparent 70%);
    opacity: 0.2;
    top: 20px;
    right: -60px;
    border-radius: 50%;
    z-index: 0;
}

.section.schedule::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    opacity: 0.3;
    bottom: 100px;
    left: 50px;
    border-radius: 2px;
    z-index: 0;
}

/* Decorative accents for contact section */
.section.contact {
    position: relative;
    overflow: hidden;
}

.section.contact::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    opacity: 0.1;
    top: 60px;
    left: 5%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

.section.contact::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 3px dashed var(--accent-color);
    opacity: 0.15;
    bottom: 40px;
    right: 10%;
    border-radius: 50%;
    z-index: 0;
}

/* Decorative line accents for about section */
.section.about {
    position: relative;
    overflow: hidden;
}

.section.about::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 120px;
    background: linear-gradient(180deg, var(--primary-color), var(--matisse-coral));
    opacity: 0.2;
    top: 80px;
    left: 30px;
    border-radius: 3px;
    z-index: 0;
}

.section.about::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at center, var(--matisse-lavender) 0%, transparent 70%);
    opacity: 0.2;
    bottom: 40px;
    right: 60px;
    z-index: 0;
}

/* Small decorative squares/diamonds */
.description-box {
    position: relative;
}

.description-box::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--text-light);
    opacity: 0.3;
    top: -10px;
    left: 30px;
    transform: rotate(45deg);
}

.description-box::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--text-light);
    opacity: 0.25;
    bottom: -8px;
    right: 40px;
    transform: rotate(45deg);
}

/* Decorative accent on program cards */
.program-card {
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 15px;
    right: 15px;
    opacity: 0.6;
}

/* Footer decorative wave */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 30px;
    background: var(--text-light);
    opacity: 0.1;
    top: -15px;
    left: -50%;
    border-radius: 50%;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .therapists-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .description-box {
        font-size: 1.1rem;
        padding: 30px 20px;
    }
}