/* Service Hero Section */
.service-hero {
    background: url('/images/anxiety_hero_image.svg') center/cover no-repeat;
    background-size: cover;
    min-height: 400px;
    position: relative;
}
.service-hero-icon {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.hero-stats-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-highlight .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD166;
    display: block;
}

.stat-highlight .stat-text {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Anxiety Overview Section */
.anxiety-overview {
    background-color: #f8f9fa;
}

.anxiety-type-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #2a9d8f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anxiety-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.anxiety-title {
    color: #0077b6;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.anxiety-symptoms {
    list-style: none;
    padding-left: 0;
}

.anxiety-symptoms li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.5;
}

.anxiety-symptoms li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2a9d8f;
    font-weight: bold;
}

/* EMDR Process Section */
.emdr-anxiety-process {
    background-color: #f8f9fa;
}

.anxiety-process-step {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.anxiety-process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0077b6, #2a9d8f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.anxiety-process-step h4 {
    color: #0077b6;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.anxiety-process-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Anxiety Difference Section */
.anxiety-difference {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.traditional-approach,
.emdr-approach {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    height: 100%;
}

.traditional-approach {
    border-left: 4px solid #6c757d;
}

.emdr-approach {
    border-left: 4px solid #2a9d8f;
}

.traditional-approach h5 {
    color: #6c757d;
    margin-bottom: 1rem;
}

.emdr-approach h5 {
    color: #0077b6;
    margin-bottom: 1rem;
}

.traditional-approach ul,
.emdr-approach ul {
    list-style: none;
    padding-left: 0;
}

.traditional-approach li,
.emdr-approach li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.traditional-approach li::before {
    content: "○";
    position: absolute;
    left: 0;
    color: #6c757d;
}

.emdr-approach li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a9d8f;
    font-weight: bold;
}

/* Anxiety Outcomes */
.anxiety-outcomes {
    background-color: white;
}

.outcome-card {
    text-align: center;
    padding: 2rem 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-top: 4px solid #2a9d8f;
}

.outcome-card:hover {
    transform: translateY(-3px);
    background-color: #e3f2fd;
}

.outcome-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.outcome-card h4 {
    color: #0077b6;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.outcome-card p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Therapist Approach */
.therapist-approach {
    background-color: #f8f9fa;
}

.sherly-profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #0077b6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.approach-points {
    margin: 2rem 0;
}

.approach-point {
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2a9d8f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.approach-point strong {
    color: #0077b6;
}

/* Anxiety Triggers Section */
.anxiety-triggers {
    background-color: white;
}

.triggers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.trigger-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-top: 4px solid #0077b6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trigger-category h4 {
    color: #0077b6;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.trigger-category ul {
    list-style: none;
    padding-left: 0;
}

.trigger-category li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.5;
}

.trigger-category li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Virtual Treatment */
.virtual-treatment {
    background-color: #f8f9fa;
}

.virtual-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    background-color: #e3f2fd;
}

.benefit-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 40px;
}

/* Getting Started */
.getting-started {
    background: linear-gradient(135deg, #0077b6, #2a9d8f);
    color: white;
}

.getting-started h2,
.getting-started .lead {
    color: white;
}

.next-steps .step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    color: white;
    height: 100%;
}

.next-steps .step-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.next-steps .step-card h4 {
    color: white;
    margin: 1rem 0;
}

.next-steps .step-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Related Services */
.related-services {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.related-services h5 {
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.related-services a:hover h5 {
    color: #2a9d8f !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero {
        min-height: 300px;
        text-align: center;
    }
    
    .service-hero-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-stats-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .stat-highlight .stat-number {
        font-size: 2.5rem;
    }
    
    .sherly-profile-img {
        width: 150px;
        height: 150px;
    }
    
    .anxiety-process-step,
    .outcome-card {
        margin-bottom: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .triggers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .anxiety-difference {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-hero {
        padding: 2rem 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .anxiety-type-card,
    .anxiety-process-step,
    .outcome-card {
        padding: 1.25rem;
    }
    
    .approach-point,
    .trigger-category {
        padding: 1rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .anxiety-difference {
        padding: 1rem;
    }
    
    .traditional-approach,
    .emdr-approach {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}