/* ============================================== */
/* INFLUZIA - "SERVICES" PAGE SPECIFIC STYLES     */
/* ============================================== */

/* --- CSS-ONLY SMOOTH ANIMATIONS --- */
@keyframes smoothFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-element {
    opacity: 0; 
    animation: smoothFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* --- 1. SERVICES HERO SECTION --- */
.services-hero {
    padding: 120px 0 100px 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left; 
}

.services-hero .massive-headline {
    font-size: clamp(3rem, 7vw, 6.5rem); 
    text-align: left; 
    margin-bottom: 24px;
    color: #0a0a0a;
}

.services-hero-desc {
    font-size: 1.25rem;
    color: #666666;
    max-width: 700px;
    line-height: 1.6;
}

.highlight-pill {
    display: inline-block; 
    background-color: #111111; 
    color: #ffffff; 
    padding: 0 40px; 
    border-radius: 200px; 
    font-weight: 800; 
    line-height: 1.1; 
    margin-top: 10px;
}

/* --- 2. PREMIUM SERVICES LIST --- */
.services-list-section {
    padding: 100px 0 160px 0;
    background-color: #ffffff;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 40px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    align-items: flex-start;
    transition: background-color 0.4s ease;
}

/* Remove bottom border from the last item */
.service-row:last-child {
    border-bottom: none;
}

/* Subtle hover effect on the entire row */
.service-row:hover {
    background-color: #fcfcfb;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 16px;
}

.service-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #d1d1d1;
    line-height: 1;
    transition: color 0.4s ease;
}

.service-row:hover .service-number {
    color: #8B5CF6;
}

.service-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.service-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666666;
    max-width: 850px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 900px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0;
    }
    
    .service-row:hover {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        background-color: transparent;
    }

    .service-number {
        font-size: 2rem;
        color: #8B5CF6; /* Keep it colored on mobile since hover doesn't exist */
        margin-bottom: 10px;
    }
}