/* Services Grid Styles */

.services {
    position: relative;
    margin-top: 2rem;
    padding: 6rem 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 4px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
    opacity: 0.6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    color: var(--accent-color);
    opacity: 1;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        min-height: 220px;
        padding: 2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .service-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 3rem 0;
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .services-grid {
        gap: 1rem;
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 200px;
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .service-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.6rem;
    }
}
