/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand h1 {
    color: black;
    font-size: 1.2rem;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4B5B8A;
}

.nav-cta {
    margin-left: auto;
}

.btn-nav {
    background: #4B5B8A !important;
    color: white !important;
    padding: 0.6rem 0.7rem;
    border-radius: 8px;
    font-weight: 300;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: #5B6B95 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 91, 138, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 30%, #f0e8f8 70%, #f8f9fa 100%);
    color: #2c3e50;
    padding: 120px 2rem 80px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Aurora Layers */
.aurora-layer {
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -50%;
    opacity: 0.7;
    mix-blend-mode: normal;
    filter: blur(60px);
    z-index: 1;
}

.aurora-layer-1 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(138, 180, 248, 0.35) 20%,
        rgba(168, 200, 255, 0.4) 40%,
        rgba(138, 180, 248, 0.35) 60%,
        transparent 80%
    );
    animation: aurora-1 15s ease-in-out infinite;
}

.aurora-layer-2 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(200, 150, 255, 0.3) 15%,
        rgba(220, 180, 255, 0.35) 35%,
        rgba(240, 200, 255, 0.3) 55%,
        transparent 75%
    );
    animation: aurora-2 20s ease-in-out infinite;
    animation-delay: -5s;
}

.aurora-layer-3 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(150, 220, 255, 0.3) 25%,
        rgba(180, 230, 255, 0.35) 45%,
        rgba(150, 220, 255, 0.3) 65%,
        transparent 85%
    );
    animation: aurora-3 18s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes aurora-1 {
    0%, 100% {
        transform: translateX(0) translateY(0) scaleY(1);
        opacity: 0.5;
    }
    25% {
        transform: translateX(-10%) translateY(-5%) scaleY(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translateX(10%) translateY(5%) scaleY(0.9);
        opacity: 0.6;
    }
    75% {
        transform: translateX(-5%) translateY(-3%) scaleY(1.05);
        opacity: 0.7;
    }
}

@keyframes aurora-2 {
    0%, 100% {
        transform: translateX(10%) translateY(5%) scaleY(1);
        opacity: 0.4;
    }
    33% {
        transform: translateX(-15%) translateY(-10%) scaleY(1.15);
        opacity: 0.6;
    }
    66% {
        transform: translateX(5%) translateY(8%) scaleY(0.95);
        opacity: 0.5;
    }
}

@keyframes aurora-3 {
    0%, 100% {
        transform: translateX(-5%) translateY(-8%) scaleY(1);
        opacity: 0.5;
    }
    40% {
        transform: translateX(8%) translateY(10%) scaleY(1.2);
        opacity: 0.7;
    }
    80% {
        transform: translateX(-10%) translateY(-5%) scaleY(0.9);
        opacity: 0.6;
    }
}

/* Soft floating particles overlay */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image:
        radial-gradient(3px 3px at 20% 30%, rgba(138, 180, 248, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(200, 150, 255, 0.25), transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(150, 220, 255, 0.2), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(138, 180, 248, 0.25), transparent),
        radial-gradient(3px 3px at 90% 60%, rgba(200, 150, 255, 0.3), transparent),
        radial-gradient(2px 2px at 33% 80%, rgba(150, 220, 255, 0.25), transparent),
        radial-gradient(2px 2px at 75% 25%, rgba(138, 180, 248, 0.2), transparent);
    background-size: 200% 200%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.85;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 1px 2px rgba(255,255,255,0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #4B5B8A;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #4B5B8A;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #4B5B8A;
    font-weight: 600;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #4B5B8A;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 30%, #f0e8f8 70%, #f8f9fa 100%);
    padding: 100px 0 80px;
    text-align: center;
    margin-top: 70px;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
}

/* Page Header Aurora Layers */
.page-header-aurora-layer {
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -50%;
    opacity: 0.7;
    mix-blend-mode: normal;
    filter: blur(60px);
    z-index: 1;
}

.page-header-aurora-layer-1 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(138, 180, 248, 0.35) 20%,
        rgba(168, 200, 255, 0.4) 40%,
        rgba(138, 180, 248, 0.35) 60%,
        transparent 80%
    );
    animation: aurora-1 15s ease-in-out infinite;
}

.page-header-aurora-layer-2 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(200, 150, 255, 0.3) 15%,
        rgba(220, 180, 255, 0.35) 35%,
        rgba(240, 200, 255, 0.3) 55%,
        transparent 75%
    );
    animation: aurora-2 20s ease-in-out infinite;
    animation-delay: -5s;
}

.page-header-aurora-layer-3 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(150, 220, 255, 0.3) 25%,
        rgba(180, 230, 255, 0.35) 45%,
        rgba(150, 220, 255, 0.3) 65%,
        transparent 85%
    );
    animation: aurora-3 18s ease-in-out infinite;
    animation-delay: -10s;
}

/* Page Header floating particles overlay */
.page-header-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image:
        radial-gradient(3px 3px at 20% 30%, rgba(138, 180, 248, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(200, 150, 255, 0.25), transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(150, 220, 255, 0.2), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(138, 180, 248, 0.25), transparent),
        radial-gradient(3px 3px at 90% 60%, rgba(200, 150, 255, 0.3), transparent),
        radial-gradient(2px 2px at 33% 80%, rgba(150, 220, 255, 0.25), transparent),
        radial-gradient(2px 2px at 75% 25%, rgba(138, 180, 248, 0.2), transparent);
    background-size: 200% 200%;
    animation: twinkle 3s ease-in-out infinite;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-weight: 300;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 3px 8px 4px rgba(255,255,255,0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    opacity: 0.85;
    text-shadow: 0px 1px 2px rgba(255,255,255,0.3);
}

/* Video Section */
.video-section {
    background: #fff;
    padding: 60px 0;
    position: relative;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Image Section */
.image-section {
    background: #fff;
    padding: 60px 0;
    position: relative;
}

.image-container {
    width: fit-content;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.featured-image {
    width: 400px;
    height: auto;
    display: block;
    object-fit: cover;
}

/* About Page Styles */
.about-detailed {
    padding: 80px 0;
}

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

.about-image-large {
    text-align: center;
}

.therapist-photo-large {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-text-detailed h2 {
    color: #4B5B8A;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text-detailed h3 {
    color: #4B5B8A;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.about-text-detailed p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.credentials-detailed {
    margin-bottom: 4rem;
}

.credentials-detailed h2 {
    text-align: center;
    color: #4B5B8A;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.credential-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.credential-item h3 {
    color: #4B5B8A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.credential-item ul {
    list-style: none;
    padding: 0;
}

.credential-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.credential-item li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Services Detailed Page */
.therapy-intro {
    padding: 60px 0;
    background: #f8f9fa;
}

.intro-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-detailed {
    padding: 80px 0;
}

.services-detailed h2 {
    text-align: center;
    color: #4B5B8A;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-card-detailed {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-card-detailed h3 {
    color: #4B5B8A;
    margin-bottom: 1rem;
}

.service-card-detailed p {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    color: #666;
}

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

.service-card-detailed li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
    color: #555;
}

.service-card-detailed li:before {
    content: "•";
    color: #4B5B8A;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Approaches Detailed */
.approaches-detailed {
    padding: 30px 0;
    background: #f8f9fa;
}

.approaches-detailed h2 {
    text-align: center;
    color: #4B5B8A;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.approaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.approach-card h3 {
    color: #4B5B8A;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.approach-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #666;
}

.approach-benefits h4 {
    color: #4B5B8A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.approach-benefits ul {
    list-style: none;
    padding: 0;
}

.approach-benefits li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
    color: #555;
}

.approach-benefits li:before {
    content: "•";
    color: #4B5B8A;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Therapy Process */
.therapy-process {
    padding: 80px 0;
}

.therapy-process h2 {
    text-align: center;
    color: #4B5B8A;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4B5B8A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.step h3 {
    color: #4B5B8A;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 30%, #f0e8f8 70%, #f8f9fa 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* CTA Aurora Layers */
.cta-aurora-layer {
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -50%;
    opacity: 0.7;
    mix-blend-mode: normal;
    filter: blur(60px);
    z-index: 1;
}

.cta-aurora-layer-1 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(138, 180, 248, 0.35) 20%,
        rgba(168, 200, 255, 0.4) 40%,
        rgba(138, 180, 248, 0.35) 60%,
        transparent 80%
    );
    animation: aurora-1 15s ease-in-out infinite;
}

.cta-aurora-layer-2 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(200, 150, 255, 0.3) 15%,
        rgba(220, 180, 255, 0.35) 35%,
        rgba(240, 200, 255, 0.3) 55%,
        transparent 75%
    );
    animation: aurora-2 20s ease-in-out infinite;
    animation-delay: -5s;
}

.cta-aurora-layer-3 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(150, 220, 255, 0.3) 25%,
        rgba(180, 230, 255, 0.35) 45%,
        rgba(150, 220, 255, 0.3) 65%,
        transparent 85%
    );
    animation: aurora-3 18s ease-in-out infinite;
    animation-delay: -10s;
}

/* CTA floating particles overlay */
.cta-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image:
        radial-gradient(3px 3px at 20% 30%, rgba(138, 180, 248, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(200, 150, 255, 0.25), transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(150, 220, 255, 0.2), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(138, 180, 248, 0.25), transparent),
        radial-gradient(3px 3px at 90% 60%, rgba(200, 150, 255, 0.3), transparent),
        radial-gradient(2px 2px at 33% 80%, rgba(150, 220, 255, 0.25), transparent),
        radial-gradient(2px 2px at 75% 25%, rgba(138, 180, 248, 0.2), transparent);
    background-size: 200% 200%;
    animation: twinkle 3s ease-in-out infinite;
}

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

.cta-buttons a {
    position: relative;
    z-index: 4;
}

.cta-section h2 {
    color: #4A5899;
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333333;
}

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

/* CTA Section Button Overrides for Better Contrast */
.cta-section .btn-primary {
    background: #4B5B8A;
    color: white;
    border: none;
}

.cta-section .btn-primary:hover {
    background: #4A5899;
    color: white;
}

.cta-section .btn-secondary {
    background: transparent;
    color: #4A5899;
    border: 2px solid #4A5899;
}

.cta-section .btn-secondary:hover {
    background: #4A5899;
    color: white;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .about-content-detailed {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .therapist-photo-large {
        width: 200px;
        height: 250px;
    }

    .video-section {
        padding: 40px 0;
    }

    .video-container {
        max-width: 100%;
        border-radius: 8px;
    }

    .image-section {
        padding: 40px 0;
    }

    .image-container {
        max-width: 100%;
        border-radius: 8px;
    }

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

    .services-grid-detailed {
        gap: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .service-card-detailed {
        padding: 1.5rem 1rem;
    }

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

    .service-card-detailed p {
        font-size: 0.65rem;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

/* About Hero Section */
.about-hero {
    padding: 80px 0;
    background: #f7f9f8;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 4fr 3fr;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-content: center;
}

.about-hero-image {
    position: relative;
    overflow: visible;
}

.therapist-photo-hero {
    width: 140%;
    height: auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-hero-text {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    width: 100%;
    margin-bottom: 20%;
}

.about-hero-text h2 {
    font-size: 2rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 0.9rem;
    font-weight: 100;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-about {
    display: inline-block;
    background: #4B5B8A;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-about:hover {
    background: #4B5B8A;
    transform: translateY(-2px);
    color: white;
}

/* Responsive Design for About Hero */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr 3fr;
    }

    .about-hero-text {
        padding: 2rem;
        margin-top: 30%;
        margin-bottom: 0;
    }

    .about-hero-text h2 {
        font-size: 1rem;
    }

    .about-hero-text p {
        font-size: 0.8rem;
    }

    .btn-about {
        display: block;
        text-align: center;
        margin: 0 auto;
        max-width: 200px;
    }

    .therapist-photo-hero {
        width: 400%;
        margin-bottom: 230% !important;
        height: auto;
        margin: 0 auto;
    }

    .about-hero {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .therapist-photo-hero {
        margin-bottom: 500% !important;
    }
}


/* Original About Section (for other pages) */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #4B5B8A;
}

.about-content {
    display: grid;
    grid-template-columns: auto 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-image {
    text-align: center;
}

.therapist-photo {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.therapist-photo:hover {
    transform: scale(1.05);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.credentials {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.credentials h3 {
    color: #4B5B8A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.credentials li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #4B5B8A;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: #4B5B8A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Approach Section */
.approach {
    padding: 80px 0;
    background: #f8f9fa;
}

.approach h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #4B5B8A;
}

.approach-content > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.approaches-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.approach-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.approach-item h3 {
    color: #4B5B8A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.approach-item p {
    color: #666;
    line-height: 1.6;
}

/* Inspiration Section */
.inspiration-section {
    padding-bottom: 60px;
    background: #f8f9fa;
}

.inspiration-image {
    text-align: center;
}

.chair-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Explore Practice Section */
.explore-practice {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.explore-practice h2 {
    color: #4B5B8A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.explore-practice p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-explore {
    display: inline-block;
    background: #4B5B8A;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: #4B5B8A;
    transform: translateY(-2px);
    color: white;
}


/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 30%, #f0e8f8 70%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Contact Aurora Layers */
.contact-aurora-layer {
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -50%;
    opacity: 0.7;
    mix-blend-mode: normal;
    filter: blur(60px);
    z-index: 1;
}

.contact-aurora-layer-1 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(138, 180, 248, 0.35) 20%,
        rgba(168, 200, 255, 0.4) 40%,
        rgba(138, 180, 248, 0.35) 60%,
        transparent 80%
    );
    animation: aurora-1 15s ease-in-out infinite;
}

.contact-aurora-layer-2 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(200, 150, 255, 0.3) 15%,
        rgba(220, 180, 255, 0.35) 35%,
        rgba(240, 200, 255, 0.3) 55%,
        transparent 75%
    );
    animation: aurora-2 20s ease-in-out infinite;
    animation-delay: -5s;
}

.contact-aurora-layer-3 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(150, 220, 255, 0.3) 25%,
        rgba(180, 230, 255, 0.35) 45%,
        rgba(150, 220, 255, 0.3) 65%,
        transparent 85%
    );
    animation: aurora-3 18s ease-in-out infinite;
    animation-delay: -10s;
}

/* Contact floating particles overlay */
.contact-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image:
        radial-gradient(3px 3px at 20% 30%, rgba(138, 180, 248, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(200, 150, 255, 0.25), transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(150, 220, 255, 0.2), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(138, 180, 248, 0.25), transparent),
        radial-gradient(3px 3px at 90% 60%, rgba(200, 150, 255, 0.3), transparent),
        radial-gradient(2px 2px at 33% 80%, rgba(150, 220, 255, 0.25), transparent),
        radial-gradient(2px 2px at 75% 25%, rgba(138, 180, 248, 0.2), transparent);
    background-size: 200% 200%;
    animation: twinkle 3s ease-in-out infinite;
}

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

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #4B5B8A;
}

.contact-info h3 {
    color: #4B5B8A;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #4B5B8A;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #4B5B8A;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(70, 130, 180, 0.15);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(95, 158, 160, 0.1);
}

.contact-form h3 {
    color: #4B5B8A;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4B5B8A;
}

.form-group textarea {
    resize: vertical;
    font-family: 'Inter', sans-serif;
}

.contact-form .btn-primary {
    background: #4B5B8A;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 12px 30px;
    font-size: 1rem;
}

.contact-form .btn-primary:hover {
    background: #4B5B8A;
    color: #fff;
}

/* Responsive Design for Buttons */
@media (max-width: 768px) {
    .btn-explore, .btn-about {
        font-size: 0.8rem;
        font-weight: 300;
    }
    .contact-form .btn-primary {
        font-size: 0.8rem;
        font-weight: 300;
    }
    .btn-primary {
        font-size: 0.8rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .contact-form h3 {
        font-size: 1rem;
    }
    .form-group {
        font-size: 0.8rem;
    }
    .form-group input, .form-group textarea {
        font-size: 0.8rem;
    }
}

/* Footer */
.footer {
    background: #4B5B8A;
    color: #fff;
    padding: 40px 0 20px;
    font-size: 0.8rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

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

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

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .services-grid,
    .approaches-list {
        grid-template-columns: 1fr;
    }

    .footer-section h3 {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .nav-brand h1 {
        font-size: 0.8rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        font-size: 1rem;
        font-weight: 300;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
    }

    .btn-nav {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }

    .nav-menu a:hover {
        background: #f8f9fa;
    }

    .hero, .page-header {
        padding: 100px 1rem 60px;
        margin-top: 50px;
    }

    .container {
        padding: 0 15px;
    }
}
