/* Service Hero */
.service-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
    color: white;
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease;
    font-weight: 700;
}

.service-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Service Content */
.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
}

.service-details h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.service-details > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

/* Service Features */
.service-features {
    margin: 40px 0;
}

.service-features h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-features h4 i {
    color: var(--secondary);
    margin-right: 12px;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    color: var(--gray);
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-features li strong {
    color: var(--primary);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    transition: var(--transition);
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cta-box h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-box p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-box .btn {
    background: white;
    color: var(--secondary);
}

.cta-box .btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Service Image Side */
.service-image-side {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-image-side:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.service-image-side img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, var(--light), #ffffff);
    padding: 80px 0;
}

.process-section h3 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 50px;
    font-weight: 700;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--light);
    padding: 15px 0;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    color: var(--gray);
}

.breadcrumb .current {
    color: var(--gray);
}

/* Responsive */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-image-side {
        order: -1;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 130px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero p {
        font-size: 1rem;
    }
    
    .service-details h3 {
        font-size: 1.6rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 30px;
    }
    
    .cta-box h4 {
        font-size: 1.3rem;
    }
}