.service-page {
    background:
        radial-gradient(circle at 15% 15%, rgba(56, 189, 248, 0.18), transparent 30%),
        radial-gradient(circle at 85% 5%, rgba(250, 204, 21, 0.2), transparent 25%),
        linear-gradient(180deg, #f7fbff 0%, #eef6ff 45%, #f5f9ff 100%);
}

.service-hero {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 38%, #7c3aed 100%);
    color: #fff;
    padding: 24px;
    margin-bottom: 26px;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.3);
}

.service-hero::before,
.service-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.service-hero::before {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.14);
    top: -70px;
    right: -60px;
}

.service-hero::after {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.12);
    left: -30px;
    bottom: -50px;
}

.service-hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.service-hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.service-image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.service-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 55%, rgba(2, 6, 23, 0.35) 100%);
}

.service-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #deebff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.service-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #1d4ed8;
    background: #dbeafe;
}

.service-divider {
    border-top: 1px dashed #d7e4f8;
    margin: 14px 0 18px;
}

.cta-btn {
    border-radius: 999px;
    border: 0;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1px;
}

.cta-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.cta-secondary {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #cfdcf3;
}

.service-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #334155;
}

.service-content ul {
    padding-left: 20px;
}

.service-content ul li {
    margin-bottom: 8px;
}

.sidebar-card {
    background: #fff;
    border: 1px solid #dfe9f8;
    border-radius: 16px;
    overflow: hidden;
}

.sidebar-card-header {
    margin: -1.5rem -1.5rem 1rem;
    padding: 0.85rem 1.1rem;
    color: #fff;
}

.gradient-services {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.gradient-products {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.sidebar-title {
    font-size: 18px;
    margin-bottom: 14px;
}

.sidebar-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f5;
}

.sidebar-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.12);
}

.sidebar-meta {
    min-width: 0;
}

.sidebar-meta strong {
    display: block;
    font-size: 14px;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 5px;
}

.sidebar-meta p {
    font-size: 12px;
    color: #667085;
    margin-bottom: 4px;
    line-height: 1.5;
}

.sidebar-meta a {
    font-size: 12px;
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
}

.sidebar-meta a:hover {
    text-decoration: underline;
}

.sidebar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mini-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 999px;
    padding: 4px 9px;
    text-decoration: none;
    border: 1px solid #d0d5dd;
}

.mini-btn-primary {
    color: #1d4ed8;
    border-color: rgba(37, 99, 235, 0.4);
    background: rgba(59, 130, 246, 0.1);
}

.mini-btn-neutral {
    color: #344054;
    background: #f8fafc;
}

.mini-btn-disabled {
    color: #98a2b3;
    background: #f2f4f7;
    cursor: not-allowed;
    pointer-events: none;
    border-color: #e4e7ec;
}

@media (max-width: 991px) {
    .service-hero {
        padding: 20px;
        margin-bottom: 18px;
    }

    .service-hero-title {
        font-size: 1.45rem;
    }
}
