/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Page Header */
.services-page-header {
    position: relative;
    padding: 180px 0 100px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.services-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 168, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 195, 255, 0.1) 0%, transparent 40%);
}

.services-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.services-page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.services-page-header p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.breadcrumb a {
    color: var(--electric-blue);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* Main Services */
.main-services {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-premium);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--electric-blue);
}

.service-image {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin: -40px -30px 25px -30px;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--gradient-electric);
    box-shadow: var(--shadow-glow);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--electric-blue);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon svg {
    fill: var(--white);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    color: var(--text-muted);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: 700;
}

.service-card .btn {
    width: 100%;
}

/* Process Section */
.service-process {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--electric-blue), rgba(0, 168, 255, 0.3));
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--electric-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--electric-blue);
    transition: var(--transition-fast);
}

.process-step:hover .step-number {
    background: var(--electric-blue);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.process-step h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .process-steps {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex: 1 1 30%;
    }
}

@media (max-width: 768px) {
    .services-page-header h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex: 1 1 100%;
    }
}
