/* ===== Service Hero Section ===== */
.service-hero {
    padding: 150px 0 100px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.service-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary-red);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.service-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.service-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.metric {
    text-align: left;
}

.metric h3 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.service-hero-image {
    position: relative;
}

.service-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ===== Service Details Section ===== */
.service-details {
    padding: 100px 0;
    background: var(--light-black);
}

.service-offerings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offering-card {
    background: var(--medium-black);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.offering-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-lg);
}

.offering-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 25px;
}

.offering-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offering-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offering-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offering-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.offering-card ul i {
    color: var(--primary-orange);
    font-size: 0.8rem;
}

/* ===== Service Process Section ===== */
.service-process {
    padding: 100px 0;
    background: var(--dark-black);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-number {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    margin: auto;
    position: relative;
    z-index: 2;
}

.timeline-content {
    padding: 20px 0;
}

.timeline-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.timeline-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== Service CTA Section ===== */
.service-cta {
    padding: 100px 0;
    background: var(--gradient-primary);
}

.service-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.service-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Benefits Section ===== */
.service-benefits {
    padding: 100px 0;
    background: var(--light-black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    display: flex;
    gap: 25px;
    padding: 40px;
    background: var(--medium-black);
    border-radius: 20px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* ===== Technologies Section ===== */
.service-technologies {
    padding: 100px 0;
    background: var(--dark-black);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.tech-item {
    background: var(--medium-black);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.tech-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.tech-item h4 {
    font-size: 1rem;
    margin: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .service-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-hero h1 {
        font-size: 3rem;
    }
    
    .service-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-offerings {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 30px;
    }
    
    .timeline-item:nth-child(even) .timeline-number {
        order: 1;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        order: 2;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .service-hero {
        padding: 120px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-hero p {
        font-size: 1.1rem;
    }
    
    .service-hero-buttons {
        flex-direction: column;
    }
    
    .service-hero-buttons .btn {
        width: 100%;
    }
    
    .service-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metric {
        text-align: center;
    }
    
    .service-details,
    .service-process,
    .service-benefits,
    .service-technologies {
        padding: 60px 0;
    }
    
    .service-offerings {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offering-card {
        padding: 30px 20px;
    }
    
    .service-cta {
        padding: 60px 0;
    }
    
    .service-cta h2 {
        font-size: 2rem;
    }
    
    .service-cta p {
        font-size: 1rem;
    }
    
    .service-cta .cta-buttons {
        flex-direction: column;
    }
    
    .service-cta .cta-buttons .btn {
        width: 100%;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .timeline-content h3 {
        font-size: 1.5rem;
    }
    
    .timeline-content p {
        font-size: 1rem;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .tech-item {
        padding: 20px 15px;
    }
    
    .tech-item i {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero p {
        font-size: 1rem;
    }
    
    .service-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .metric h3 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-cta h2 {
        font-size: 1.75rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}