/* ============================================
   CIFRE ACADEMY - Services Section
   ============================================ */

.services {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-dark);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

/* Background Glow Effects */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0,102,255,0.3) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0,212,255,0.2) 0%, transparent 40%);
    pointer-events: none;
}

/* Section Header Override for Dark BG */
.services .section-header h2 {
    color: var(--text-white);
}

.services .section-header p {
    color: rgba(255,255,255,0.7);
}

/* Services Grid - 2 columns */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* Services CTA Wrapper - Centered below grid */
.services-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.services-cta-wrapper .service-cta {
    max-width: 500px;
    width: 100%;
}

/* Service Cards - Less rounded */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-cyan);
}

.service-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* Service CTA Card - Special styling for the contact prompt */
.service-cta {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    border: 2px solid var(--accent-cyan);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-cta h3 {
    color: var(--text-white);
    font-size: 1.3rem;
}

.service-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.btn-service-cta {
    display: inline-block;
    background: var(--accent-cyan);
    color: var(--bg-dark);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    background: white;
}