/* =========================================================
   ### Început: Hero echipamente service ###
   ========================================================= */

.service-hero {
    position: relative;
    overflow: hidden;

    padding: 110px 0 85px;

    color: var(--color-white);

    background:
        linear-gradient(
            90deg,
            rgba(8, 12, 15, 0.94) 0%,
            rgba(10, 15, 18, 0.82) 52%,
            rgba(10, 15, 18, 0.58) 100%
        ),
        url("/static/img/projects/12.webp")
        center center / cover no-repeat;

    border-bottom: 1px solid var(--color-border);
}


.service-hero::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 4px;

    background: var(--color-accent);
}


.service-hero::after {
    content: "";

    position: absolute;
    right: -140px;
    bottom: -180px;

    width: 460px;
    height: 460px;

    background: rgba(227, 6, 19, 0.08);

    border-radius: 50%;

    filter: blur(20px);

    pointer-events: none;
}


.service-hero-inner {
    position: relative;
    z-index: 1;

    max-width: 820px;
}


.service-hero .section-kicker {
    color: var(--color-accent);
}


.service-hero h1 {
    margin: 14px 0 22px;

    max-width: 780px;

    color: var(--color-white);

    font-size:
        clamp(
            2.6rem,
            5vw,
            4.6rem
        );

    font-weight: 800;

    line-height: 1.05;
    letter-spacing: -0.035em;
}


.service-hero p {
    margin: 0;

    max-width: 720px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 1.15rem;
    line-height: 1.75;
}

/* =========================================================
   ### Sfârșit: Hero echipamente service ###
   ========================================================= */


/* =========================================================
   ### Început: Introducere service ###
   ========================================================= */

.service-intro {
    padding: 100px 0;

    background: var(--color-bg);
}


.service-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 70px;

    align-items: start;
}


.service-intro h2 {
    margin: 10px 0 0;

    max-width: 560px;

    color: var(--color-white);

    font-size:
        clamp(
            2rem,
            3vw,
            3rem
        );

    font-weight: 800;

    line-height: 1.1;
    letter-spacing: -0.025em;
}


.service-intro-grid p {
    margin: 0 0 18px;

    color: var(--color-text-muted);

    line-height: 1.75;
}


.service-intro-grid p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   ### Sfârșit: Introducere service ###
   ========================================================= */


/* =========================================================
   ### Început: Secțiune echipamente service ###
   ========================================================= */

.service-equipment {
    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            var(--color-surface) 0%,
            #151b1f 100%
        );

    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}


.service-equipment .section-heading {
    max-width: 720px;

    margin-bottom: 42px;
}


.service-equipment .section-heading h2 {
    margin: 10px 0 14px;

    color: var(--color-white);

    font-size:
        clamp(
            2rem,
            3vw,
            3rem
        );

    font-weight: 800;

    line-height: 1.1;
    letter-spacing: -0.025em;
}


.service-equipment .section-heading p {
    margin: 0;

    color: var(--color-text-muted);

    line-height: 1.7;
}


.service-equipment-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 20px;
}

/* =========================================================
   ### Sfârșit: Secțiune echipamente service ###
   ========================================================= */


/* =========================================================
   ### Început: Card echipament service ###
   ========================================================= */

.service-equipment-card {
    position: relative;
    overflow: hidden;

    min-height: 300px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            var(--color-surface-light) 0%,
            var(--color-surface) 100%
        );

    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.service-equipment-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--color-accent);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.25s ease;
}


.service-equipment-card::after {
    content: "";

    position: absolute;
    right: -60px;
    bottom: -60px;

    width: 130px;
    height: 130px;

    background: rgba(227, 6, 19, 0.06);

    border-radius: 50%;

    transition:
        transform 0.3s ease,
        background 0.3s ease;

    pointer-events: none;
}


.service-equipment-card:hover {
    transform: translateY(-4px);

    border-color: rgba(227, 6, 19, 0.48);

    box-shadow: var(--shadow-accent);
}


.service-equipment-card:hover::before {
    transform: scaleX(1);
}


.service-equipment-card:hover::after {
    transform: scale(1.3);

    background: rgba(227, 6, 19, 0.10);
}


.service-equipment-number {
    position: relative;
    z-index: 1;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 34px;

    color: var(--color-white);

    background: var(--color-accent);

    border-radius: var(--radius-small);

    box-shadow: 0 8px 22px rgba(227, 6, 19, 0.18);

    font-size: 0.95rem;
    font-weight: 800;
}


.service-equipment-card h3 {
    position: relative;
    z-index: 1;

    margin: 0 0 14px;

    color: var(--color-white);

    font-size: 1.3rem;
    line-height: 1.25;
}


.service-equipment-card p {
    position: relative;
    z-index: 1;

    margin: 0;

    color: var(--color-text-muted);

    line-height: 1.65;
}

/* =========================================================
   ### Sfârșit: Card echipament service ###
   ========================================================= */


/* =========================================================
   ### Început: Prezentare service ###
   ========================================================= */

.service-feature {
    padding: 100px 0;

    background: var(--color-bg);
}


.service-feature-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);

    gap: 70px;

    align-items: center;
}


.service-feature-image {
    position: relative;
    overflow: hidden;

    min-height: 480px;

    background: var(--color-surface-dark);

    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);

    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.30);
}


.service-feature-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(8, 12, 15, 0.30) 100%
        );

    pointer-events: none;
}


.service-feature-image img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 480px;

    object-fit: cover;

    transition: transform 0.35s ease;
}


.service-feature-image:hover img {
    transform: scale(1.03);
}


.service-feature-content h2 {
    margin: 10px 0 20px;

    color: var(--color-white);

    font-size:
        clamp(
            2rem,
            3vw,
            3rem
        );

    font-weight: 800;

    line-height: 1.1;
    letter-spacing: -0.025em;
}


.service-feature-content p {
    margin: 0 0 18px;

    color: var(--color-text-muted);

    line-height: 1.75;
}


.service-feature-content .btn {
    margin-top: 12px;
}

/* =========================================================
   ### Sfârșit: Prezentare service ###
   ========================================================= */


/* =========================================================
   ### Început: CTA service ###
   ========================================================= */

.service-cta {
    position: relative;
    overflow: hidden;

    padding: 80px 0;

    color: var(--color-white);

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(227, 6, 19, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #10161a 0%,
            var(--color-surface-dark) 100%
        );

    border-top: 1px solid var(--color-border);
}


.service-cta::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 4px;

    background: var(--color-accent);
}


.service-cta-inner {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


.service-cta-inner > div {
    max-width: 720px;
}


.service-cta .section-kicker {
    color: var(--color-accent);
}


.service-cta h2 {
    margin: 10px 0 14px;

    color: var(--color-white);

    font-size:
        clamp(
            2rem,
            3vw,
            3rem
        );

    font-weight: 800;

    line-height: 1.1;
    letter-spacing: -0.025em;
}


.service-cta p {
    margin: 0;

    color: var(--color-text-muted);

    line-height: 1.7;
}


.service-cta .btn {
    flex-shrink: 0;
}

/* =========================================================
   ### Sfârșit: CTA service ###
   ========================================================= */


/* =========================================================
   ### Început: Responsive echipamente service ###
   ========================================================= */

@media (max-width: 1000px) {

    .service-equipment-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .service-feature-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}


@media (max-width: 900px) {

    .service-hero {
        padding: 90px 0 70px;
    }


    .service-intro,
    .service-equipment,
    .service-feature {
        padding: 75px 0;
    }


    .service-intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .service-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 30px;
    }

}


@media (max-width: 640px) {

    .service-hero {
        padding: 70px 0 55px;
    }


    .service-hero h1 {
        font-size: clamp(2.3rem, 11vw, 3.2rem);
    }


    .service-hero p {
        font-size: 1rem;
    }


    .service-intro,
    .service-equipment,
    .service-feature {
        padding: 60px 0;
    }


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


    .service-equipment-card {
        min-height: 0;

        padding: 24px;
    }


    .service-feature-image,
    .service-feature-image img {
        min-height: 300px;
    }


    .service-cta {
        padding: 60px 0;
    }

}

/* =========================================================
   ### Sfârșit: Responsive echipamente service ###
   ========================================================= */