/* Services Section Styles */
.services {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 166, 255, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
    background-size: 20px 20px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.services-columns {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.service-column {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 500px;
}

.service-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 -20px 40px rgba(255, 255, 255, 0.3) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset,
        0 -20px 40px rgba(255, 255, 255, 0.4) inset;
}

.service-box:hover::before {
    opacity: 1;
}

.category-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 166, 255, 0.3);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.service-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-list li a {
    display: block;
    font-size: 1.2rem;
    color: #2d3748;
    padding: 1.2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
}

.service-list li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li a:hover {
    color: var(--primary);
    background: rgba(0, 166, 255, 0.08);
    transform: translateX(10px);
    padding-left: 2rem;
    font-weight: 600;
}

.service-list li a:hover::before {
    opacity: 1;
    transform: translateX(10px);
}

@media (max-width: 1200px) {
    .services .container {
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .services {
        padding: 4rem 2rem;
    }

    .services-columns {
        flex-direction: column;
        gap: 3rem;
    }

    .service-column {
        max-width: 600px;
        width: 100%;
    }

    .service-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 3rem 1.5rem;
    }

    .services .container {
        max-width: 100%;
    }

    .service-column {
        max-width: 100%;
    }

    .category-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .service-list li a {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .service-box {
        padding: 2.5rem;
    }
}
