/* Modern Services Page Styles */

/* Services Grid */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card-modern {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(26, 58, 95, 0.15);
}

.service-card-header {
    background: linear-gradient(135deg, #1a3a5f 0%, #2d5a8a 100%);
    color: #ffffff;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.service-icon-modern {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    letter-spacing: 1px;
}

.service-card-body {
    padding: 2rem 1.5rem;
    flex-grow: 1;
}

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

.service-item-modern {
    display: flex;
    align-items: flex-start;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.service-item-modern:last-child {
    border-bottom: none;
}

.service-item-modern:hover {
    padding-left: 0.5rem;
}

.service-item-icon {
    color: #1a3a5f;
    font-weight: 700;
    margin-right: 1rem;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-item-text {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card-footer {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.service-count {
    color: #666;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Process Stepper Modern */
.process-stepper-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step-modern {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.process-step-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 58, 95, 0.15);
}

.process-step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3a5f 0%, #2d5a8a 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 58, 95, 0.3);
    position: relative;
}

.process-step-number::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #e8eef5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.process-step-content {
    text-align: center;
}

.process-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 1rem;
}

.process-step-text {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.process-step-arrow {
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #1a3a5f;
    z-index: 10;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-modern {
        margin-bottom: 1rem;
    }
    
    .process-stepper-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step-arrow {
        display: none;
    }
    
    .service-card-header {
        padding: 1.5rem 1rem;
    }
    
    .service-icon-modern {
        font-size: 2.5rem;
    }
    
    .service-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .process-step-modern {
        padding: 1.5rem;
    }
    
    .process-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card-body {
        padding: 1.5rem 1rem;
    }
}

