/* Service Detail Page Styles */
.service-detail-page .hero-banner {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--dark-grey) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-page .hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.svg') repeat;
    opacity: 0.1;
    z-index: 1;
}

.service-detail-page .hero-banner .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: none;
    left: auto;
    top: auto;
}

.service-detail-page .hero-banner .service-icon {
    font-size: 4rem;
    color: var(--green);
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    width: auto;
}

.service-detail-page .hero-banner h1 {
    font-size: 4rem;
    color: var(--white);
    margin: 0 0 1.5rem 0;
    padding: 0;
    font-weight: 700;
    text-align: center;
    width: 100%;
    line-height: 1.2;
    display: block;
    position: relative;
    transform: none;
    left: auto;
}

.service-detail-page .hero-banner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    transform: none;
}

/* Service Details Section */
.service-details {
    padding: 8rem 0;
    background: #f8f8f8;
}

.service-overview {
    max-width: 800px;
    margin: 0 auto 6rem;
    text-align: center;
}

.service-overview h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-overview p {
    font-size: 1.1rem;
    color: var(--grey);
    line-height: 1.8;
}

/* Feature Cards */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    color: var(--grey);
    line-height: 1.6;
}

/* Process Steps */
.service-process {
    max-width: 1200px;
    margin: 0 auto;
}

.service-process h2 {
    font-size: 2.5rem;
    color: var(--black);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: #f8f8f8;
    padding: 0 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--green);
    opacity: 0.2;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--dark-grey);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.svg') repeat;
    opacity: 0.05;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #558e37;
    transform: translateY(-2px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-overview h2,
    .service-process h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
} 