/* Services Page Styles */

.service-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    padding: 2rem;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.15);
    border-color: #3b82f6;
}

.service-item .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
}

.service-price-from {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Services Hero */
.services-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    padding: 2rem 0;
    margin-top: 76px;
}

/* Maintenance List */
.maintenance-list {
    counter-reset: maintenance-counter;
    list-style: none;
    padding-left: 0;
}

.maintenance-list li {
    counter-increment: maintenance-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.maintenance-list li:before {
    content: counter(maintenance-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Category Section */
.category-section {
    background: #f9fafb;
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.category-section:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.1);
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.category-title i {
    font-size: 1.5rem;
}

.category-section .service-item {
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-section .service-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.category-section .service-item .mt-auto {
    margin-top: auto;
    padding-top: 1rem;
}
