.angie-services-5845 {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 100px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.angie-services-5845::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.serv-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 80px;
}

.serv-tagline {
    display: block;
    font-size: 0.9rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.serv-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.serv-desc {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.serv-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.serv-card {
    position: relative;
    background: #f8f9fa;
    padding: 40px 30px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.serv-card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #ff6b35;
    transition: width 0.4s ease;
}

.serv-card:hover {
    background: #ffffff;
    border-color: #ff6b35;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.serv-card:hover .serv-card-top-bar {
    width: 100%;
}

.serv-num {
    font-family: monospace;
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
    opacity: 0.2;
    margin-bottom: 20px;
    line-height: 1;
}

.serv-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
}

.serv-card-desc {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s forwards ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 767px) {
    .serv-grid {
        grid-template-columns: 1fr;
    }
    .serv-title {
        font-size: 2.2rem;
    }
    .angie-services-5845 {
        padding: 60px 20px;
    }
    .serv-header {
        margin-bottom: 50px;
    }
}