/* ============================================
   SERVICES BANNER SECTION
   ============================================ */
.service-banner-section {
    padding-top: 40px;
    padding-bottom: 80px;
}

.service-banner {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    padding: 60px 40px;
}

.service-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: blur(2px) grayscale(50%);
}

.service-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 8, 12, 0.95), rgba(15, 15, 25, 0.85));
}

.service-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.service-content h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
}

.btn-glow {
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}
