/* Service Page Styles */
.service-page {
    min-height: 100vh;
}

.service-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
    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 50% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 25px;
    background: rgba(0, 212, 170, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.service-short-desc {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-content {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.service-image-container {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
}

.service-full-description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.service-full-description h2,
.service-full-description h3 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-full-description p {
    margin-bottom: 1.5rem;
}

.service-cta {
    padding: 4rem 0;
    background: var(--secondary-color);
    text-align: center;
}

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

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

@media (max-width: 768px) {
    .service-hero {
        padding: 6rem 0 3rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}
