.services-section {
    padding: 100px 40px 60px;
    background: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(201, 169, 97, 0.1);
    color: var(--global-palette3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    background-image: url('data:image/svg+xml,%3Csvg width="800" height="600" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3ClinearGradient id="grad" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%230A0E27;stop-opacity:1" /%3E%3Cstop offset="100%25" style="stop-color:%231A1F3A;stop-opacity:1" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width="800" height="600" fill="url(%23grad)" /%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 10px 24px rgba(0, 0, 0, 0.3);
    border-color: #ff914d;
}

.service-card-with-image {
    background-image: url('http://localhost/lux/wp-content/uploads/2025/10/imagen-demo.jpeg');
    background-size: cover;
    background-position: center;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    fill: none;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: #ff914d;
    filter: drop-shadow(0 0 8px rgba(255, 145, 77, 0.5));
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.services-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service Brands */
.service-brands {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 145, 77, 0.2);
    font-size: 12px;
    color: #ff914d;
    background: transparent;
    font-weight: 600;
    letter-spacing: 0.5px;
}