/* FENEXT Service Details Page Internal CSS */
/* Background image is inline to support dynamic per-page images */

.service-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.service-hero .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.service-details {
    padding: 100px 0;
    background: #0e1420;
}

.service-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 140px;
}

.service-sidebar {
    position: sticky;
    top: 190px;
    align-self: start;
    margin-top: 80px;
}

.service-sidebar .back-btn {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-sidebar .sidebar-widget {
    margin-bottom: 40px;
}

.service-sidebar .sidebar-widget h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.service-sidebar .sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.service-sidebar .sidebar-widget ul li {
    margin-bottom: 10px;
    color: #aaa;
    padding-left: 15px;
    position: relative;
}

.service-sidebar .sidebar-widget ul li span {
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

.service-content .content-block {
    margin-bottom: 50px;
}

.service-content .content-block h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: white;
}

.service-content .content-block .content-text {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.90rem;
}