#custom-container-services {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#custom-container-services .cms-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Services Hero Section */
#custom-container-services .services-hero {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
}

#custom-container-services .services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

#custom-container-services .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

#custom-container-services .hero-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

#custom-container-services .hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

#custom-container-services .hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

#custom-container-services .hero-stat {
    text-align: center;
}

#custom-container-services .stat-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: white;
    display: block;
}

#custom-container-services .stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services Grid */
#custom-container-services .services-section {
    padding: 5rem 0;
    background: white;
}

#custom-container-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

#custom-container-services .service-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

#custom-container-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.2);
}

#custom-container-services .service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--brand-light);
}

#custom-container-services .service-content {
    padding: 2rem;
}

#custom-container-services .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

#custom-container-services .service-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

#custom-container-services .service-description {
    color: var(--brand-neutral);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: var(--text-base);
}

#custom-container-services .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

#custom-container-services .service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--brand-neutral);
    font-size: 0.9rem;
}

#custom-container-services .service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-accent);
    font-weight: bold;
}

#custom-container-services .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

#custom-container-services .service-link:hover {
    gap: 0.75rem;
}

/* ADLW Process Section */
#custom-container-services .process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fb, #ffffff);
}

#custom-container-services .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

#custom-container-services .section-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

#custom-container-services .section-subtitle {
    font-size: var(--text-lg);
    color: var(--brand-neutral);
    line-height: 1.7;
}

#custom-container-services .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

#custom-container-services .process-step {
    text-align: center;
    position: relative;
}

#custom-container-services .step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--brand-primary);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
}

#custom-container-services .step-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
}

#custom-container-services .step-description {
    color: var(--brand-neutral);
    font-size: var(--text-base);
    line-height: 1.6;
}

/* CTA Section */
#custom-container-services .cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

#custom-container-services .cta-content {
    position: relative;
    z-index: 1;
    color: white;
}

#custom-container-services .cta-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

#custom-container-services .cta-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

#custom-container-services .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

#custom-container-services .cta-btn {
    padding: 1rem 2rem;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#custom-container-services .cta-primary {
    background: var(--brand-accent);
    color: white;
    border: 2px solid var(--brand-accent);
}

#custom-container-services .cta-primary:hover {
    background: #ff5722;
    border-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

#custom-container-services .cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

#custom-container-services .cta-secondary:hover {
    background: white;
    color: var(--brand-primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    #custom-container-services .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    #custom-container-services .hero-title {
        font-size: var(--text-4xl);
    }

    #custom-container-services .services-grid {
        grid-template-columns: 1fr;
    }

    #custom-container-services .process-steps {
        grid-template-columns: 1fr;
    }

    #custom-container-services .hero-stats {
        gap: 2rem;
    }
}
