/* Services Page Styles */

.page-header {
    background: linear-gradient(135deg, #1a7a7a 0%, #2ca8a8 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* Services Filter */
.services-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--secondary-color);
    background: white;
    color: var(--secondary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: white;
}

/* Service Card */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-image {
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-features {
    list-style: none;
    margin: 20px 0 0 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 14px;
}

.service-features i {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 20px 40px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 18px;
    }

    .services-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 20px 30px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 16px;
    }

    .services-filter {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }
}
