/* Fisio Page Specific Styles */

/* Page Hero - Using primary color instead of secondary */
.page-hero {
    background: var(--primary-color);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--text-light);
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.page-hero-content .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.page-hero-content .description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Fisio Services Section */
.fisio-services {
    padding: 4rem 0;
    background: var(--text-light);
}

.fisio-services h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-description {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.service-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-description h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
    font-weight: 500;
}

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

.service-description ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    line-height: 1.8;
}

.service-description ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Pricing Section */
.pricing-section {
    margin-top: 4rem;
    padding-top: 3rem;
    padding-bottom: 4rem;
    border-top: 1px solid #e0e0e0;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 300;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.pricing-card .price {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.pricing-card .duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card .btn {
    width: 100%;
}

/* Approach Section */
.approach-section {
    padding: 4rem 0;
    background: #fafafa;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}

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

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.approach-content ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.approach-content ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.approach-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Therapeutic Massage Section */
.therapeutic-massage {
    padding: 4rem 0;
    background: #fafafa;
}

.therapeutic-massage h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Obstetric Section */
.obstetric-section {
    padding: 4rem 0;
    background: var(--text-light);
}

.obstetric-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.obstetric-section blockquote {
    background: #f9f9f9;
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    font-style: italic;
}

.obstetric-section blockquote p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.obstetric-section blockquote cite {
    display: block;
    text-align: right;
    color: var(--primary-color);
    font-style: normal;
    font-weight: 500;
    margin-top: 1rem;
}

/* Postpartum Section */
.postpartum-section {
    padding: 4rem 0;
    background: #fafafa;
}

.postpartum-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Active Navigation Link */
.nav-menu a.active {
    opacity: 0.8;
    border-bottom: 2px solid var(--text-light);
    padding-bottom: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero-content .subtitle {
        font-size: 1.2rem;
    }
    
    .approach-section h2 {
        font-size: 2rem;
    }
    
    .approach-content ul {
        padding: 0 1rem;
    }
}
