/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f9fafb;
}

.section-header-services {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-services {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.section-description-services {
    font-size: 1.125rem;
    color: #6b7280;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.2);
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFA500;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.service-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f3f4f6;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 165, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-quick-view {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: white;
    color: #FFA500;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transform: scale(0.9);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-quick-view {
    transform: scale(1);
}

.service-quick-view:hover {
    background: #1f2937;
    color: white;
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-icon-wrapper {
    color: #FFA500;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: #FFA500;
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFA500;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    gap: 0.75rem;
    color: #FF8C00;
}

.service-link svg {
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(3px);
}

/* No Services */
.no-services {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.no-services svg {
    stroke: #d1d5db;
    margin-bottom: 1.5rem;
}

.no-services h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.no-services p {
    color: #6b7280;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.25rem;
    }
}
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 50px 0;
    }

    .services-grid {
        gap: 1.25rem;
    }

    .service-content {
        padding: 1.25rem;
    }

    .service-title {
        font-size: 1.125rem;
    }

    .service-description {
        font-size: 0.875rem;
    }

    .service-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .service-image {
        height: 200px;
    }

    .no-services {
        padding: 3rem 1.5rem;
    }

    .no-services h3 {
        font-size: 1.5rem;
    }

    .no-services p {
        font-size: 1rem;
    }
}
