/* =====================================
   DEV2LAB SERVICE DETAIL PAGES
===================================== */


/* =====================================
   HERO
===================================== */

.service-detail-hero {
    padding: 170px 0 80px;
}

.service-detail-hero-content {
    max-width: 950px;
}


/* SERVICE BADGE */

.service-detail-badge {
    display: inline-block;
    margin-bottom: 25px;
    padding: 9px 18px;

    border: 1px solid rgba(65,180,255,0.35);
    border-radius: 999px;

    color: #41b4ff;

    font-size: 0.85rem;
    letter-spacing: 2px;

    background: rgba(65,180,255,0.05);

    box-shadow:
        0 0 18px rgba(65,180,255,0.06);
}


/* HERO TITLE */

.service-detail-hero h1 {
    max-width: 950px;
    margin-bottom: 30px;

    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: 1.05;
}


/* HERO TEXT */

.service-detail-hero p {
    max-width: 780px;

    font-size: 1.15rem;
    line-height: 1.9;

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


/* =====================================
   SERVICE NAVIGATION
===================================== */

.service-navigation {
    margin-top: 35px;
    text-align: center;
}

.service-navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: #41b4ff;

    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 600;

    transition:
        color .25s ease,
        transform .25s ease,
        text-shadow .25s ease;
}

.service-navigation a:hover {
    color: #8f43ff;

    transform: translateX(-3px);

    text-shadow:
        0 0 12px rgba(65,180,255,0.35);
}


/* =====================================
   INTRO
===================================== */

.service-intro {
    max-width: 900px;
    margin: 0 auto;
}

.service-intro p {
    color: rgba(255,255,255,0.78);

    line-height: 1.9;
    font-size: 1.05rem;

    margin-bottom: 22px;
}


/* =====================================
   FEATURE GRID
===================================== */

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 28px;

    margin-top: 50px;
}

.service-feature-card {
    padding: 38px 32px;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;

    background: rgba(255,255,255,0.03);

    backdrop-filter: blur(6px);

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

.service-feature-card:hover {
    transform: translateY(-6px);

    border-color: rgba(65,180,255,0.55);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.3),
        0 0 25px rgba(65,180,255,0.06);
}

.service-feature-card h3 {
    margin-bottom: 18px;

    font-family: "Special Elite", monospace;

    font-size: 1.45rem;

    color: #fff;
}

.service-feature-card p {
    color: rgba(255,255,255,0.72);

    line-height: 1.8;
}


/* =====================================
   WHAT WE CAN DO
===================================== */

.service-list {
    max-width: 850px;
    margin: 45px auto 0;
}

.service-list ul {
    list-style: none;

    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px 35px;
}

.service-list li {
    position: relative;

    padding-left: 28px;

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

    line-height: 1.7;
}

.service-list li::before {
    content: "•";

    position: absolute;

    left: 0;
    top: 0;

    color: #41b4ff;

    font-size: 1.2rem;

    text-shadow:
        0 0 10px rgba(65,180,255,0.35);
}


/* =====================================
   WORDPRESS / CUSTOM
===================================== */

.service-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    margin-top: 50px;
}

.service-comparison .service-card {
    height: 100%;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 12px;

    padding: 2rem;

    backdrop-filter: blur(6px);

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

.service-comparison .service-card:hover {
    transform: translateY(-6px);

    border-color: #41b4ff;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.3),
        0 0 25px rgba(65,180,255,0.06);
}

.service-comparison h3 {
    margin-bottom: 18px;

    font-family: "Special Elite", monospace;

    color: #fff;
}

.service-comparison p {
    color: rgba(255,255,255,0.75);

    line-height: 1.8;

    margin-bottom: 20px;
}

.service-comparison ul {
    padding-left: 20px;

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

    line-height: 1.8;
}

.service-comparison li::marker {
    color: #41b4ff;
}


/* =====================================
   SERVICE NOTE
===================================== */

.service-note {
    max-width: 850px;

    margin: 45px auto 0;

    padding: 30px;

    border-left: 2px solid #41b4ff;

    background:
        linear-gradient(
            90deg,
            rgba(65,180,255,0.06),
            rgba(143,67,255,0.025),
            transparent
        );

    box-shadow:
        -8px 0 25px rgba(65,180,255,0.05);
}

.service-note p {
    margin: 0;

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

    line-height: 1.85;
}


/* =====================================
   PROCESS
===================================== */

.service-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;

    margin-top: 50px;
}

.process-step {
    padding: 30px 25px;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;

    background: rgba(255,255,255,0.03);

    backdrop-filter: blur(6px);

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

.process-step:hover {
    transform: translateY(-6px);

    border-color: rgba(65,180,255,0.55);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.3);
}

.process-number {
    display: block;

    margin-bottom: 20px;

    color: #41b4ff;

    font-size: 1.5rem;
    font-weight: 800;

    text-shadow:
        0 0 12px rgba(65,180,255,0.25);
}

.process-step h3 {
    margin-bottom: 14px;

    font-family: "Special Elite", monospace;

    color: #fff;

    font-size: 1.15rem;
}

.process-step p {
    color: rgba(255,255,255,0.68);

    line-height: 1.7;

    font-size: 0.95rem;
}


/* =====================================
   REFERENCES
===================================== */

.reference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 28px;

    margin-top: 45px;
}

.reference-card {
    padding: 32px;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;

    background: rgba(255,255,255,0.03);

    backdrop-filter: blur(6px);

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

.reference-card:hover {
    transform: translateY(-6px);

    border-color: rgba(65,180,255,0.55);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.3);
}

.reference-card h3 {
    margin-bottom: 14px;

    font-family: "Special Elite", monospace;

    color: #fff;
}

.reference-card p {
    margin-bottom: 20px;

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

    line-height: 1.75;
}

.reference-card a {
    color: #41b4ff;

    text-decoration: none;

    font-weight: 600;

    transition:
        color .2s ease,
        text-shadow .2s ease;
}

.reference-card a:hover {
    color: #8f43ff;

    text-shadow:
        0 0 10px rgba(65,180,255,0.25);
}


/* =====================================
   FAQ
===================================== */

.service-faq {
    max-width: 900px;

    margin: 45px auto 0;
}

.faq-item {
    padding: 25px 0;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item h3 {
    margin-bottom: 12px;

    font-family: "Special Elite", monospace;

    color: #fff;

    font-size: 1.15rem;
}

.faq-item p {
    margin: 0;

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

    line-height: 1.8;
}


/* =====================================
   BOTTOM NAVIGATION
===================================== */

.service-bottom-navigation {
    text-align: center;

    margin-top: 55px;
}

.service-bottom-navigation a {
    display: inline-flex;

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

    color: #41b4ff;

    text-decoration: none;

    font-weight: 600;

    transition:
        color .25s ease,
        text-shadow .25s ease,
        transform .25s ease;
}

.service-bottom-navigation a:hover {
    color: #8f43ff;

    text-shadow:
        0 0 14px rgba(65,180,255,0.35);

    transform: translateY(-2px);
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 900px) {

    .service-feature-grid,
    .service-comparison,
    .reference-grid {
        grid-template-columns: 1fr;
    }

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

}


@media (max-width: 700px) {

    .service-detail-hero {
        padding: 140px 0 60px;
    }

    .service-detail-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

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

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

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

    .service-feature-card,
    .reference-card {
        padding: 30px 24px;
    }

}


@media (max-width: 480px) {

    .service-detail-badge {
        font-size: 0.78rem;
        letter-spacing: 1.5px;
    }

    .service-navigation {
        margin-top: 30px;
    }

}