.services-section {
    background: var(--secondary-black);
    padding: 120px 20px;
    position: relative;
    border-top: 20px solid #2b2b2b;
    border-bottom: 20px solid #2b2b2b;
}

.services-container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-red), #9b0000);
    color: var(--pure-white);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--pure-white);
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.title-accent {
    color: var(--accent-red);
    display: block;
}

.section-description {
    font-family: var(--font-secondary);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-layout {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}
.services-image-wrapper {
    position: sticky;
    top: 40px;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(229, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.image-frame:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 2px rgba(229, 0, 0, 0.5),
    0 0 30px rgba(229, 0, 0, 0.2);
}

.services-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover .services-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(229, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: var(--pure-white);
    color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.badge-text strong {
    color: var(--pure-white);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.badge-text span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-category {
    background: linear-gradient(135deg, rgba(37, 37, 37, 0.98) 0%, rgba(18, 18, 18, 0.98) 100%);
    border-radius: 20px;
    padding: 45px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-red), #9b0000);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-category:hover {
    border-color: #333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateX(5px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #2a2a2a;
}

.category-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-red), #9b0000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(229, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.service-category:hover .category-icon {
    transform: rotate(5deg) scale(1.05);
}

.category-icon svg {
    width: 28px;
    height: 28px;
    color: var(--pure-white);
}

.category-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pure-white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-item:hover {
    background: rgba(255, 0, 0, 0.05);
    border-color: rgba(229, 0, 0, 0.2);
    transform: translateX(5px);
}

.service-bullet {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.service-item:hover .service-bullet {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.service-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-info p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.cta-banner {
    background: linear-gradient(135deg, var(--accent-red) 0%, #9b0000 100%);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--pure-white);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.cta-text {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--pure-white);
    color: var(--accent-red);
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .services-layout {
        grid-template-columns: 450px 1fr;
        gap: 50px;
    }
}

@media (max-width: 1200px) {
    .services-layout {
        grid-template-columns: 400px 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: clamp(2.2rem, 5vw, 3rem);
    }
}

@media (max-width: 1024px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-image-wrapper {
        position: relative;
        top: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-intro {
        margin-bottom: 50px;
    }
    
    .service-category {
        padding: 30px 25px;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .image-badge {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .service-item {
        padding: 15px;
    }
}