/* Services Page Specific Styles */
.services-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0 3rem 0;
    text-align: center;
}

.services-header h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.services-intro {
    background: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    scroll-margin-top: 20px;
    position: relative;
}

.service-section:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.service-section:hover .service-icon::before {
    opacity: 1;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.service-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.service-highlight h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-highlight p {
    margin-bottom: 0;
    color: var(--text-color);
}

.service-cta {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.service-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
}

.service-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
}

/* Navigation between services */
.service-nav {
    position: static;
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 2rem;
}

.service-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-nav .nav-link:hover,
.service-nav .nav-link.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-header {
        padding: 3rem 0 2rem 0;
    }
    
    .services-intro {
        padding: 2rem 0;
    }
    
    .service-section {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-nav {
        position: static;
        padding: 0.5rem 0;
    }
    
    .service-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        margin: 0.2rem;
        display: inline-block;
    }
    
    .service-cta {
        margin-top: 3rem;
        margin-bottom: 3rem;
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .service-section {
        padding: 1.5rem 1rem;
        margin-bottom: 2.5rem;
    }
    
    .service-features li {
        padding-left: 1.5rem;
    }
    
    .service-highlight {
        padding: 1rem;
    }
    
    .service-cta {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
}
