﻿/* ============================================
   SERVICE SECTIONS (NEW)
   ============================================ */
.service-section {
    padding: 120px 0;
    position: relative;
    background: var(--black);
    border-top: 1px solid var(--gray-dark);
}

.service-section.alt-bg {
    background: #080808;
    /* Slightly lighter black for contrast */
}

.service-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin-bottom: 60px;
    line-height: 1.6;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 4px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text at bottom */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.service-card:hover::before {
    opacity: 0.2;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.5px;
}

/* Responsive Services */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 200px;
    }
}
