/* Services Pages Styling */

/* General Service Page Styling */
.service-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.service-img {
    height: 200px;
    object-fit: cover;
}

.category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
    color: white;
    font-size: 1.5rem;
}

/* Service Category Page */
.category-header {
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.category-header .bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.z-1 {
    position: relative;
    z-index: 1;
}

/* Search Results Page */
.search-highlight mark {
    background-color: rgba(255, 243, 205, 0.8);
    padding: 0 0.2em;
    border-radius: 0.2em;
}

/* Service Detail Page */
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px;
}

.feature-card {
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #009FE3;
}

/* Breadcrumb custom styling */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(0, 0, 0, 0.4);
}

/* Service Process Timeline */
.timeline-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.timeline-step:before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #e9ecef;
}

.timeline-step:last-child:before {
    height: 0;
}

.timeline-step .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #009FE3;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .category-header {
        min-height: 40vh;
    }
    
    .timeline-step {
        padding-left: 45px;
    }
}
