/* ==========================================
   SERVICES PAGE STYLING
   ========================================== */

/* Services Grid enhancements */
.services-grid .service-card {
    transition: all 0.4s ease;
}

.services-grid .service-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-8px);
    border-color: var(--primary);
}

/* ==========================================
   PROCESS TIMELINE
   ========================================== */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

/* Connecting line behind steps */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 65px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 0;
}

.process-timeline .step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 15px;
}

.process-timeline .step-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.35);
    transition: all 0.3s ease;
}

.process-timeline .step:hover .step-number {
    transform: scale(1.15);
    background: var(--secondary);
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.35);
}

.process-timeline .step h4 {
    font-size: 17px;
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    margin-bottom: 8px;
}

.process-timeline .step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header::after {
    content: '\f078'; /* fa-chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-header:hover {
    background: var(--bg-gray);
    color: var(--primary);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 0 25px 20px;
}

.accordion-body p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ==========================================
   STATS COUNTER SECTION (Animation)
   ========================================== */
.stats-counter h2 {
    transition: all 0.3s ease;
}

.stats-counter > div:hover h2 {
    transform: scale(1.1);
}

/* ==========================================
   SERVICES PAGE - RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
    }
    .process-timeline::before {
        display: none;
    }
    .process-timeline .step {
        padding: 0;
    }
}