/* Services Page Specific Styles */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Programs Section */
.programs-section {
    padding: var(--spacing-xl) 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.program-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: var(--spacing-md);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.program-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.program-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.program-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.program-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.program-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.program-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.program-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.program-features li:last-child {
    border-bottom: none;
}

.program-cta {
    text-align: center;
}

.program-cta .btn-primary {
    width: 100%;
    text-align: center;
}

/* Included Section */
.included-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.included-item {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.included-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.included-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.included-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: var(--spacing-xl) 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-sm);
    font-family: var(--font-heading);
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .process-arrow {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .program-badge {
        top: -10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

