﻿/* Therapies Overview Page Styles */

/* Hero Section */
.page-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0 8rem;
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1631549916768-4119b2e5f926?q=80&w=2079&auto=format&fit=crop') center/cover;
    z-index: 0;
}

.page-hero-background::before {
    content: none;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: #E8E8E8;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-icon {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    max-width: 220px;
    max-height: 220px;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.hero-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-icon.animated {
    opacity: 0.6;
}

/* Therapies Section */
.therapies-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.therapies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.therapy-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    padding-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.therapy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.therapy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(58, 159, 208, 0.1) 0%, rgba(44, 122, 160, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #003ABA;
}

.therapy-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.therapy-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.therapy-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #003ABA;
    text-decoration: none;
    transition: gap 0.3s ease;
    position: absolute;
    bottom: 2rem;
    left: 2.5rem;
}

.therapy-link:hover {
    gap: 0.75rem;
}

/* Why Section */
.why-section {
    padding: 6rem 0;
    background: #fff;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(58, 159, 208, 0.1) 0%, rgba(44, 122, 160, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-item svg {
    flex-shrink: 0;
    color: #003ABA;
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #003ABA 0%, #002B8F 100%);
    color: #E8E8E8;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background: #fff;
    color: #003ABA;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-hero-title {
        font-size: 3rem;
    }

    .therapies-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .why-content {
        gap: 3rem;
    }

    .why-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 65vh;
        padding: 8rem 0 5rem;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .page-hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-icon {
        width: 150px;
        height: 150px;
        right: 5%;
    }

    .therapies-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 5rem 0 3rem;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .hero-icon {
        display: none;
    }

    .therapy-card {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}

/* Comprehensive Approach Section */
.comprehensive-approach-section {
    padding: 6rem 0;
    background: #fff;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-text {
    order: 1;
}

.approach-image {
    order: 2;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.approach-image:hover img {
    transform: scale(1.05);
}

.approach-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1.5rem;
}

/* Visit Our Medical Center Section */
.visit-center-section {
    padding: 6rem 0;
    background: #fff;
}

.visit-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.visit-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1.5rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .approach-image {
        height: 350px;
        order: 1;
    }

    .approach-text {
        order: 2;
    }

    .visit-center-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .comprehensive-approach-section {
        padding: 4rem 0;
    }

    .approach-image {
        height: 280px;
    }

    .approach-description,
    .visit-description {
        font-size: 1rem;
    }
}

