/* Service Hero Section */
.service-hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
    line-height: 1.2;
}

.service-hero p {
    font-size: 1.25rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Service Details Section */
.service-details {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.service-overview h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.service-overview p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card ul li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-card ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
}

/* Service Process Section */
.service-process {
    margin-bottom: 4rem;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Service CTA Section */
.service-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.service-cta h2 {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.service-cta .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero {
        padding: 6rem 1rem 3rem;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-overview h2,
    .service-process h2 {
        font-size: 2rem;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .service-cta {
        padding: 3rem 1.5rem;
    }

    .service-cta h2 {
        font-size: 1.75rem;
    }
}

/* Service Page Transitions */
.service-hero,
.service-details {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.service-details {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Card Animations */
.feature-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.service-features-grid .feature-card:nth-child(1) { animation-delay: 0.3s; }
.service-features-grid .feature-card:nth-child(2) { animation-delay: 0.4s; }
.service-features-grid .feature-card:nth-child(3) { animation-delay: 0.5s; }
.service-features-grid .feature-card:nth-child(4) { animation-delay: 0.6s; }

/* Process Steps Animation */
.step {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.process-steps .step:nth-child(1) { animation-delay: 0.4s; }
.process-steps .step:nth-child(2) { animation-delay: 0.5s; }
.process-steps .step:nth-child(3) { animation-delay: 0.6s; }
.process-steps .step:nth-child(4) { animation-delay: 0.7s; }

/* Service CTA Animation */
.service-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
    animation-delay: 0.8s;
} 