.services-section {
    background-color: var(--bg-primary);
    padding: 4rem 2rem;
    min-height: calc(100vh - 80px);
    transition: background-color 0.3s ease;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.services-title-part1 {
    color: var(--text-primary);
}

.services-title-part2 {
    color: #f5a962;
}

.services-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Service Card */
.service-card {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px var(--shadow-hover);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Service Card Link */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Service Image */
.service-image-container {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-tertiary);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

/* Active Nav Link */
.nav-link.active {
    color: #f5a962;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 1.5rem;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 0.9375rem;
    }
}
