﻿:root {
    --primary: #00c3ff;
    --dark: #0f0f0f;
    --darker: #080808;
    --light: #f5f5f5;
    --gray: #1e1e1e;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

.service-hero {
    padding: 180px 0 100px;
    --service-bg: url(https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80);
    /*background: linear-gradient(135deg, rgba(0, 195, 255, 0.05) 0%, var(--dark) 100%);*/
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), var(--service-bg) no-repeat center center / cover;
    /*background: linear-gradient(135deg, rgba(0, 195, 255, 0.1) 0%, rgba(15, 15, 15, 1) 100%);*/
    position: relative;
    overflow: hidden;
}

    .service-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle, rgba(0, 195, 255, 0.05) 0%, transparent 70%);
        z-index: 0;
    }

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.service-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, var(--light) 20%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-hero p {
    font-size: 1.3rem;
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border: 2px solid var(--accent-color);
}

    .btn:hover {
        /*transform: translateY(-3px);*/
        box-shadow: 0 10px 20px rgba(0, 195, 255, 0.2);
    }

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-left: 15px;
}

    .btn-outline:hover {
        background: var(--primary);
        color: var(--dark);
    }

/* Service Content */
.service-section {
    padding: 100px 0;
    position: relative;
    background-image: url(../img/bg2.jpg);
    /*background: linear-gradient(135deg, rgba(0, 195, 255, 0.1) 0%, rgba(15, 15, 15, 1) 100%);*/
}

.section-title {
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--light);
    }

    .section-title p {
        color: rgba(245, 245, 245, 0.7);
        max-width: 700px;
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--gray);
    border-radius: 15px;
    padding: 40px 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border-color: var(--primary);
    }

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 195, 255, 0.1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

    .service-icon i {
        font-size: 1.8rem;
        color: var(--primary);
    }

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light);
}

.service-card p {
    color: rgba(245, 245, 245, 0.6);
    margin-bottom: 20px;
}

/* Process Section */
.process-container {
    position: relative;
}

.process-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
    z-index: 1;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--light);
}

.process-step p {
    color: rgba(245, 245, 245, 0.6);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.1) 0%, var(--darker) 100%);
    text-align: center;
}

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: var(--light);
    }

    .cta-section p {
        color: rgba(245, 245, 245, 0.7);
        max-width: 700px;
        margin: 0 auto 40px;
    }

/* Footer */
footer {
    background: var(--darker);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--light);
    position: relative;
    padding-bottom: 10px;
}

    .footer-col h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--primary);
    }

.footer-col p {
    margin-bottom: 20px;
    color: rgba(245, 245, 245, 0.6);
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 15px;
    }

        .footer-links li a {
            color: rgba(245, 245, 245, 0.6);
            transition: var(--transition);
        }

            .footer-links li a:hover {
                color: var(--primary);
                padding-left: 5px;
            }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(245, 245, 245, 0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }

    .process-step {
        padding-left: 60px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

