.modern-services-section {
    background: #000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.modern-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(219,168,73,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(219,168,73,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-subtitle {
    color: #dba849;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.services-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.services-description {
    color: #999;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(219,168,73,0.1);
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(219,168,73,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.service-card:hover {
    transform: translateY(-15px);
    border-color: #dba849;
    box-shadow: 0 20px 60px rgba(219,168,73,0.3);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(219,168,73,0.9);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 2;
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-name {
    color: #dba849;
}

.service-desc {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #dba849;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.services-cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #dba849 0%, #c99235 100%);
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(219, 168, 73, 0.4);
    position: relative;
    overflow: hidden;
}

.services-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.services-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.services-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(219, 168, 73, 0.6);
    color: #000;
}

.services-cta-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.services-cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .services-title {
        font-size: 2.2rem;
    }
    
    .service-image {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .modern-services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .service-image {
        height: 220px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .services-cta-btn {
        padding: 15px 40px;
        font-size: 1rem;
    }
}
