/* ============================================================
   JANNATA GROUP — LAYANAN PAGES STYLESHEET
   Supports:
   1. Category Overview Pages (Jasa Keamanan, Pelatihan Keamanan, Penyediaan Tenaga Kerja, Layanan Pendukung Keamanan)
   2. Sub-Service Detail Pages (5 Figma Design Images)
   Responsive: Mobile (<768px), Tablet (768px-1023px), Macbook (1024px-1439px), Desktop (>=1440px)
   ============================================================ */

/* ============================================================
   CATEGORY OVERVIEW — HERO BANNER (Frame 1618873482)
   ============================================================ */
.srv-hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 130px;
    background: linear-gradient(180deg, #000843 -50.43%, #03225D 74.35%, #0F2A5C 133.57%);
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.srv-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1124px;
    margin: 0 auto;
}

.srv-hero-tag {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.srv-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: 0.2px;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

/* ============================================================
   CATEGORY OVERVIEW — MAIN SERVICE SECTION (Frame 2147227860)
   ============================================================ */
.srv-main-section {
    position: relative;
    z-index: 10;
    background: #FFFFFF;
    border-radius: 80px 80px 0px 0px;
    margin-top: -73px;
    padding-top: 80px;
    padding-bottom: 100px;
}

.srv-category-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    margin-bottom: 40px;
    width: 100%;
}

.srv-category-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    color: #1C252E;
    margin: 0;
    white-space: nowrap;
}

.srv-header-line {
    flex-grow: 1;
    height: 1.5px;
    background: #0A3995;
    border-radius: 2px;
}

/* Cards Grid Layout */
.srv-cards-grid {
    display: grid;
    gap: 32px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.srv-cards-grid.srv-grid-6,
.srv-cards-grid.srv-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.srv-cards-grid.srv-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
    margin: 0 auto;
}

/* Service Card Frame */
a.srv-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.srv-card {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    background: #000843;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.srv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 8, 67, 0.22);
}

.srv-card-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.srv-card-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.srv-card:hover .srv-card-img {
    transform: scale(1.06);
}

/* Prepared Fallback Image Layer */
.srv-card-img-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A2F7D 0%, #031438 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 0;
}

.srv-placeholder-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
}

.srv-placeholder-icon {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.srv-card-overlay {
    position: absolute;
    width: 100%;
    height: 298px;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.92) 100%);
    z-index: 2;
}

.srv-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0;
    z-index: 3;
    box-sizing: border-box;
}

.srv-card-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
}

.srv-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #FFFFFF;
    margin: 0;
}

.srv-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Card Button Wrap (Hidden by default, smooth hover expand ONLY on screens >= 1280px) */
@media (min-width: 1280px) {
    .srv-card-btn-wrap {
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
            opacity 0.3s ease,
            margin-top 0.35s ease;
        margin-top: 0;
    }

    .srv-card:hover .srv-card-btn-wrap {
        max-height: 60px;
        opacity: 1;
        margin-top: 16px;
    }
}

@media (max-width: 1279px) {
    .srv-card-btn-wrap {
        display: none !important;
    }
}

.srv-card-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    width: 100%;
    height: 44px;
    background: #0A3995;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;
    color: #FFFFFF !important;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.srv-card:hover .srv-card-btn {
    background: #0B44B5;
    box-shadow: 0 4px 16px rgba(10, 57, 149, 0.5);
}

/* ============================================================
   CATEGORY OVERVIEW — WHY CHOOSE US (Frame 1000005813)
   ============================================================ */
.srv-why-section {
    background: #F9FAFB;
    padding-top: 100px;
    padding-bottom: 100px;
}

.srv-why-header {
    margin-bottom: 48px;
}

.srv-dtl-chk-left .srv-why-tag {
    text-align: start !important;
}

.srv-why-tag {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0A3995;
    display: block;
    margin-bottom: 14px;
    text-align: center;
}

.srv-why-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    color: #000000;
    text-align: center;
    margin: 0;
}

.srv-why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.srv-why-card {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
    padding: 28px 32px;
    gap: 20px;
    background: #FFFFFF;
    border: 1.5px solid #0C45B5;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 32px;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.srv-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(12, 69, 181, 0.12);
}

.srv-why-badge {
    position: relative;
    width: calc(100% + 64px);
    margin-top: -28px;
    margin-left: -32px;
    margin-right: -32px;
    padding: 24px 32px 28px 32px;
    background: linear-gradient(90deg, #23469A 0%, #05195A 100%);
    border-bottom-left-radius: 50% 28px;
    border-bottom-right-radius: 50% 28px;
    text-align: center;
    z-index: 1;
}

.srv-why-card-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.srv-why-body {
    padding: 4px 0 8px 0;
    text-align: center;
    width: 100%;
}

.srv-why-body p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #606060;
    margin: 0;
}

/* ============================================================
   CATEGORY OVERVIEW — CTA BANNER (Frame 2147227858)
   ============================================================ */
.srv-cta-section {
    position: relative;
    z-index: 5;
    background: #FFFFFF;
    border-radius: 80px 80px 0px 0px;
    margin-top: -60px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.srv-cta-banner {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    padding: 80px 48px;
    background: linear-gradient(146.01deg, #0D2745 0.31%, rgba(13, 39, 69, 0.96) 94%);
    box-shadow: 0 12px 36px rgba(0, 8, 67, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.srv-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 45, 118, 0.85) 0%, rgba(0, 8, 67, 0.92) 100%);
}

.srv-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1028px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.srv-cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    color: #FFFFFF;
    margin: 0 0 17px 0;
    text-align: center;
}

.srv-cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    text-align: center;
    max-width: 1028px;
}

.srv-cta-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    gap: 9.62px;
    width: 223.62px;
    height: 44px;
    background: #204093;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: #FFFFFF !important;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.srv-cta-btn:hover {
    background: #082D76;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 64, 147, 0.5);
}

/* ============================================================
   SUB-SERVICE DETAIL PAGES (5 FIGMA IMAGES STYLES)
   ============================================================ */

/* 1. Detail Hero Section (Figma Frame 1618873326 Spec) */
.srv-dtl-hero-section {
    position: relative;
    width: 100%;
    min-height: 613px;
    height: 613px;
    background: url('/img/sub-layanan/bg-hero.png') no-repeat center left / cover, #FFFFFF;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    padding-top: 80px !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
}

.srv-dtl-hero-container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.srv-dtl-hero-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

.srv-dtl-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 590px;
    max-width: 48%;
    box-sizing: border-box;
}

.srv-dtl-tag {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #204093;
    display: block;
    margin: 0;
}

.srv-dtl-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;
    color: #1C252E;
    margin: 0;
}

.srv-dtl-desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #637381;
    margin: 0;
}

.srv-dtl-hero-btn {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    width: max-content;
    height: 40px;
    border: 1px solid #0C45B5;
    border-radius: 24px;
    color: #0C45B5 !important;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-dtl-hero-btn:hover {
    background: #0C45B5;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(12, 69, 181, 0.25);
}

.srv-dtl-hero-img-wrap {
    position: absolute;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    width: 720px;
    max-width: 50vw;
    z-index: 1;
    margin: 0 !important;
    padding: 0 !important;
}

.srv-dtl-img-card {
    position: relative;
    width: 100%;
    height: 100% !important;
    border-radius: 120px 0px 0px 120px;
    overflow: hidden;
    background: #000843;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    margin: 0 !important;
    padding: 0 !important;
}

.srv-dtl-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: 120px 0px 0px 120px;
}

/* Checklist Section Style (Exact Figma Specs — e.g. Jasa Cleaning Service) */
.srv-dtl-checklist-section {
    background: #FFFFFF;
    padding: 120px 0;
}

.srv-dtl-chk-grid {
    display: grid;
    grid-template-columns: 476px 1fr;
    gap: 120px;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.srv-dtl-chk-left .srv-why-tag {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #204093;
    margin: 0 0 14px 0;
    display: block;
}

.srv-dtl-chk-left .srv-dtl-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;
    color: #1C252E;
    margin: 0;
}

.srv-dtl-chk-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
}

.srv-dtl-chk-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.srv-dtl-chk-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
}

.srv-dtl-chk-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
}

/* 2. Special Features & Badges (Exact Figma Specs) */
.srv-dtl-special-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.srv-dtl-special-card {
    background: transparent;
    border-radius: 0;
    border: none;
    padding: 0;
    box-shadow: none;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.srv-dtl-special-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    color: #1F1F1F;
    margin: 0 0 20px 0;
    width: 100%;
}

.srv-dtl-special-desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #777777;
    margin: 0 auto;
    max-width: 1140px;
    width: 100%;
}

.srv-dtl-divider-line {
    width: 100%;
    height: 1px;
    background-color: #E2E8F0;
    margin: 28px 0 32px 0;
}

.srv-dtl-badges-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 0;
}

.srv-dtl-badge-pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.srv-dtl-badge-svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.srv-dtl-badge-pill span {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
    white-space: nowrap;
}

/* 3. Features Section (Exact Figma Specifications) */
.srv-dtl-features-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.srv-dtl-features-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    margin-bottom: 56px;
}

.srv-dtl-features-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    max-width: 735px;
    flex: 1;
}

.srv-dtl-features-header-left .srv-why-tag {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #204093;
    margin: 0;
    display: block;
}

.srv-dtl-features-header-left .srv-why-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 44px;
    color: #000000;
    margin: 0;
    text-align: left;
}

.srv-dtl-features-header-right {
    max-width: 441px;
    flex-shrink: 0;
}

.srv-dtl-special-subdesc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: right;
    color: #777777;
    margin: 0;
}

.srv-dtl-features-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    margin: 0 auto;
}

.srv-dtl-levels-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: 100%;
    margin: 0 auto;
}

.srv-dtl-feat-card {
    background: transparent;
    border: none;
    border-right: 1px solid #D2D2D2;
    border-radius: 0;
    padding: 0 40px;
    box-shadow: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.srv-dtl-feat-card:first-child {
    padding-left: 0;
    padding-right: 40px;
}

.srv-dtl-feat-card:last-child {
    padding-left: 40px;
    padding-right: 0;
    border-right: none;
}

.srv-dtl-level-card {
    background: transparent;
    border: none;
    border-right: 1px solid #D2D2D2;
    border-radius: 0;
    padding: 0 60px;
    box-shadow: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.srv-dtl-level-card:first-child {
    padding-left: 0;
    padding-right: 60px;
}

.srv-dtl-level-card:last-child {
    padding-left: 60px;
    padding-right: 0;
    border-right: none;
}

.srv-dtl-feat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.srv-dtl-level-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.srv-dtl-feat-icon img,
.srv-dtl-level-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.srv-dtl-sys-header img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.srv-dtl-feat-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    color: #333333;
    margin: 0 0 10px 0;
}

.srv-dtl-level-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: capitalize;
    color: #333333;
    margin: 0 0 10px 0;
}

.srv-dtl-feat-desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #777777;
    margin: 0;
}

.srv-dtl-level-desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #777777;
    margin: 0;
}

/* Integrated System Section (Exact Figma Specs — e.g. Jasa Driver / Peralatan) */
.srv-dtl-system-section {
    background: #FFFFFF;
    padding: 120px 0;
}

.srv-dtl-sys-grid-container {
    display: grid;
    grid-template-columns: 415px 1fr;
    gap: 120px;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.srv-dtl-sys-left .srv-why-tag {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #204093;
    margin: 0 0 14px 0;
    display: block;
    text-align: left;
}

.srv-dtl-sys-left .srv-dtl-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;
    color: #1C252E;
    margin: 0;
}

.srv-dtl-system-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 48px;
    width: 100%;
    margin: 0 auto;
}

.srv-dtl-sys-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.srv-dtl-sys-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    width: 100%;
}

.srv-dtl-sys-header .srv-dtl-chk-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-dtl-sys-header svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.srv-dtl-sys-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
    margin: 0;
}

.srv-dtl-sys-desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    margin: 0;
}

/* 4. Section Keunggulan (Exact Figma Specifications — Overlapping Layout) */
.srv-dtl-keunggulan-section {
    background: #F9F9F9;
    padding: 80px 0 100px 0;
    width: 100%;
}

.srv-dtl-keunggulan-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    gap: 14px;
    width: 100%;
    margin: 0 auto 48px auto;
}

.srv-dtl-keunggulan-tag {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #204093;
    display: block;
    margin: 0;
}

.srv-dtl-keunggulan-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 44px;
    color: #000000;
    margin: 0;
    width: 100%;
}

.srv-dtl-keunggulan-wrapper {
    position: relative;
    width: 100%;
    min-height: 462.22px;
    margin: 0 auto;
}

.srv-dtl-keunggulan-photo {
    position: absolute;
    width: 54%;
    height: 462.22px;
    left: 0px;
    top: 0px;
    border-radius: 56px;
    overflow: hidden;
    background: #E2E8F0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.srv-dtl-keunggulan-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 56px;
}

.srv-dtl-keunggulan-box {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 24px;
    position: absolute;
    width: 55%;
    min-height: 298px;
    right: 0px;
    top: 10%;
    background: #FFFFFF;
    mix-blend-mode: normal;
    border: 2px solid #0C45B5;
    border-radius: 40px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.srv-dtl-keunggulan-box.anim-fade-in-up,
.srv-dtl-keunggulan-box.anim-fade-in-active {
    transform: none !important;
}

.srv-dtl-num-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 100%;
}

.srv-dtl-num-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 24px;
    width: 100%;
    border-bottom: none;
}

.srv-dtl-num-badge {
    width: 50px;
    height: 34px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: #0C45B5;
    flex-shrink: 0;
}

.srv-dtl-num-text {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #606060;
}

/* 5. Section Galeri */
.srv-dtl-galeri-section {
    background: #FFFFFF;
    padding: 80px 0 100px 0;
    width: 100%;
}

.srv-dtl-galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    margin: 0 auto;
}

.srv-dtl-galeri-card {
    position: relative;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    background: #000843;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.srv-dtl-galeri-card:hover {
    transform: scale(1.03);
}

.srv-dtl-galeri-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 6. Section CTA Banner Detail (Full Width Edge-to-Edge Figma Specs) */
.srv-dtl-cta-section {
    position: relative;
    width: 100%;
    min-height: 489px;
    height: 489px;
    background: linear-gradient(90.01deg, #081A5D 0.01%, #1D3C8E 56.04%);
    box-shadow: 0px -10px 40px rgba(0, 0, 0, 0.25);
    border-radius: 80px 80px 0px 0px;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 3;
    margin-top: 40px;
}

.srv-dtl-cta-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
    width: 100%;
    height: 489px;
    margin: 0 auto;
    position: relative;
}

.srv-dtl-cta-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 760px;
    max-width: 62%;
    z-index: 2;
}

.srv-dtl-cta-title {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 130%;
    color: #F7F5F0;
    margin: 0;
}

.srv-dtl-cta-desc {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    margin: 0;
}

.srv-dtl-cta-btn {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    gap: 9.62px;
    min-width: 180.62px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #0A3995 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.srv-dtl-cta-btn:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.srv-dtl-cta-right {
    width: 440px;
    height: 489px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
}

.srv-dtl-cta-glow {
    position: absolute;
    width: 540px;
    height: 527px;
    left: calc(50% - 270px);
    top: calc(50% - 263.5px);
    background: radial-gradient(60.49% 60.49% at 50% 50%, #00BDFF 0%, rgba(29, 60, 142, 0) 100%);
    opacity: 0.5;
    pointer-events: none;
}

.srv-dtl-satpam-img {
    position: absolute;
    width: auto;
    height: 520px;
    max-height: 520px;
    bottom: 0;
    right: -20px;
    object-fit: contain;
    z-index: 2;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS (Desktop, Macbook, Tablet, Mobile)
   ============================================================ */

/* 1. DESKTOP (>= 1440px) - Default styles */

/* 2. MACBOOK / LAPTOP (1024px to 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .srv-hero-title {
        font-size: 32px;
        line-height: 48px;
    }

    .srv-category-title,
    .srv-why-title,
    .srv-cta-title,
    .srv-dtl-title,
    .srv-dtl-cta-title {
        font-size: 30px;
    }

    .srv-cards-grid {
        gap: 24px;
    }

    .srv-card {
        height: 440px;
    }

    .srv-dtl-sys-grid-container {
        grid-template-columns: 320px 1fr;
        gap: 48px;
    }

    .srv-dtl-system-grid {
        gap: 28px 32px;
    }

    .srv-dtl-galeri-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1199px) {
    .srv-dtl-features-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
        margin-bottom: 36px !important;
    }

    .srv-dtl-features-header-left,
    .srv-dtl-features-header-right {
        max-width: 100% !important;
        width: 100% !important;
    }

    .srv-dtl-special-subdesc {
        text-align: left !important;
    }

    .srv-dtl-keunggulan-wrapper {
        display: flex;
        flex-direction: column;
        gap: 32px;
        min-height: auto;
    }

    .srv-dtl-keunggulan-photo {
        position: relative;
        width: 100%;
        height: 380px;
        left: auto;
        top: auto;
        border-radius: 40px;
    }

    .srv-dtl-keunggulan-box {
        position: relative;
        width: 100%;
        max-width: 100%;
        left: auto;
        top: auto;
        transform: none;
        border-radius: 32px;
        padding: 28px;
    }
}

/* 3. TABLET (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .srv-hero-section {
        padding-top: 130px;
        padding-bottom: 100px;
    }

    .srv-hero-title {
        font-size: 28px;
        line-height: 40px;
    }

    .srv-main-section {
        border-radius: 50px 50px 0 0;
        margin-top: -50px;
        padding-top: 60px;
    }

    .srv-cards-grid.srv-grid-6,
    .srv-cards-grid.srv-grid-3,
    .srv-cards-grid.srv-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 100%;
    }

    .srv-card {
        height: 400px;
    }

    .srv-category-title,
    .srv-why-title,
    .srv-cta-title,
    .srv-dtl-title,
    .srv-dtl-cta-title {
        font-size: 28px;
        line-height: 36px;
    }

    .srv-why-grid {
        grid-template-columns: 1fr;
    }

    .srv-dtl-badges-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Sub-Service Detail Page Tablet */
    .srv-dtl-hero-section {
        min-height: auto;
        height: auto;
        padding: 100px 32px 60px 32px !important;
        flex-direction: column;
    }

    .srv-dtl-hero-container {
        padding: 0;
    }

    .srv-dtl-hero-grid {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .srv-dtl-hero-content {
        max-width: 100%;
        width: 100%;
    }

    .srv-dtl-hero-img-wrap {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 360px !important;
        border-radius: 36px !important;
        top: auto !important;
        right: auto !important;
    }

    .srv-dtl-img-card,
    .srv-dtl-img {
        border-radius: 36px !important;
        height: 360px !important;
        width: 100% !important;
    }

    .srv-dtl-chk-grid,
    .srv-dtl-sys-grid-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .srv-dtl-features-grid,
    .srv-dtl-levels-grid,
    .srv-dtl-system-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .srv-dtl-features-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 36px;
    }

    .srv-dtl-features-header-left,
    .srv-dtl-features-header-right {
        max-width: 100%;
        width: 100%;
    }

    .srv-dtl-special-subdesc {
        text-align: left;
    }

    .srv-dtl-galeri-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .srv-cta-section,
    .srv-dtl-cta-section {
        border-radius: 50px 50px 0 0;
        margin-top: -40px;
        height: auto;
        min-height: auto;
        padding: 48px 32px 0 32px;
    }

    .srv-dtl-cta-container {
        flex-direction: column;
        height: auto;
        gap: 32px;
        text-align: center;
    }

    .srv-dtl-cta-left {
        max-width: 100%;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .srv-dtl-cta-right {
        width: 100%;
        height: auto;
    }

    .srv-dtl-satpam-img {
        position: relative;
        height: 380px;
        right: auto;
        bottom: auto;
    }
}

/* 4. MOBILE (< 768px) */
@media (max-width: 767px) {
    .srv-hero-section {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .srv-hero-tag,
    .srv-dtl-tag {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .srv-hero-title {
        font-size: 24px;
        line-height: 34px;
    }

    .srv-main-section {
        border-radius: 36px 36px 0 0;
        margin-top: -36px;
        padding-top: 48px;
        padding-bottom: 60px;
    }

    .srv-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 28px;
    }

    .srv-header-line {
        width: 100%;
    }

    .srv-category-title,
    .srv-why-title,
    .srv-cta-title,
    .srv-dtl-cta-title {
        font-size: 24px;
        line-height: 32px;
    }

    .srv-cards-grid.srv-grid-6,
    .srv-cards-grid.srv-grid-3,
    .srv-cards-grid.srv-grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .srv-card {
        height: 400px;
        border-radius: 24px;
    }

    .srv-card-content {
        padding: 24px 20px;
        gap: 12px;
    }

    .srv-card-title {
        font-size: 18px;
        line-height: 24px;
    }

    .srv-card-desc {
        font-size: 15px;
        line-height: 24px;
    }

    .srv-card-btn-wrap {
        display: none !important;
    }

    .srv-why-section {
        padding: 48px 0;
    }

    .srv-why-header {
        margin-bottom: 32px;
    }

    .srv-why-grid {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .srv-why-card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 24px 20px;
        border-radius: 24px;
    }

    .srv-why-badge {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        margin-top: -24px;
        padding: 16px 20px;
    }

    .srv-why-card-title {
        font-size: 20px;
        line-height: 26px;
    }

    .srv-why-body p {
        font-size: 15px;
        line-height: 24px;
    }

    /* Sub-Service Detail Page Mobile Fix */
    .srv-dtl-hero-section {
        min-height: auto;
        height: auto;
        padding: 90px 16px 36px 16px !important;
        flex-direction: column;
        background: #FFFFFF;
    }

    .srv-dtl-hero-container {
        padding: 0;
        flex-direction: column;
    }

    .srv-dtl-hero-grid {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .srv-dtl-hero-content {
        max-width: 100%;
        width: 100%;
        gap: 14px;
    }

    .srv-dtl-title {
        font-size: 24px;
        line-height: 32px;
    }

    .srv-dtl-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .srv-dtl-hero-img-wrap {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 240px !important;
        margin-top: 12px !important;
        border-radius: 20px !important;
        top: auto !important;
        right: auto !important;
    }

    .srv-dtl-img-card,
    .srv-dtl-img {
        border-radius: 20px !important;
        height: 240px !important;
        width: 100% !important;
    }

    .srv-dtl-checklist-section {
        padding: 40px 0;
    }

    .srv-dtl-chk-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .srv-dtl-chk-left .srv-why-tag {
        font-size: 15px;
        line-height: 15px;
        margin-bottom: 10px;
    }

    .srv-dtl-chk-left .srv-dtl-title {
        font-size: 24px;
        line-height: 34px;
    }

    .srv-dtl-chk-list {
        gap: 12px;
    }

    .srv-dtl-chk-text {
        font-size: 15px;
        line-height: 22px;
    }

    .srv-dtl-special-card {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .srv-dtl-special-section {
        padding: 40px 0;
    }

    .srv-dtl-special-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px;
    }

    .srv-dtl-features-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin-bottom: 28px !important;
    }

    .srv-dtl-features-header-left,
    .srv-dtl-features-header-right {
        max-width: 100% !important;
        width: 100% !important;
    }

    .srv-dtl-special-subdesc {
        text-align: left !important;
        font-size: 15px !important;
        line-height: 22px !important;
    }

    .srv-dtl-features-grid,
    .srv-dtl-levels-grid {
        flex-direction: column;
        gap: 28px;
    }

    .srv-dtl-v-divider {
        display: none;
    }

    .srv-dtl-feat-card,
    .srv-dtl-level-card {
        padding: 0 0 20px 0 !important;
        border-right: none !important;
        border-bottom: 1px solid #E2E8F0;
        width: 100%;
    }

    .srv-dtl-feat-card:last-child,
    .srv-dtl-level-card:last-child {
        border-bottom: none;
        padding-bottom: 0 !important;
    }

    .srv-dtl-divider-line {
        margin: 20px 0 24px 0;
    }

    .srv-dtl-badges-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .srv-dtl-badge-pill {
        gap: 12px;
    }

    .srv-dtl-badge-pill span {
        font-size: 15px;
        line-height: 22px;
        white-space: normal;
        text-align: left;
    }

    .srv-dtl-system-section {
        padding: 40px 0;
    }

    .srv-dtl-sys-grid-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .srv-dtl-sys-left .srv-why-tag {
        font-size: 15px;
        line-height: 15px;
        margin-bottom: 10px;
    }

    .srv-dtl-sys-left .srv-dtl-title {
        font-size: 24px;
        line-height: 34px;
    }

    .srv-dtl-features-grid,
    .srv-dtl-levels-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .srv-dtl-system-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .srv-dtl-feat-card,
    .srv-dtl-level-card {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .srv-dtl-sys-card {
        padding: 0;
    }

    .srv-dtl-feat-title,
    .srv-dtl-level-title,
    .srv-dtl-sys-title {
        font-size: 18px;
        line-height: 26px;
    }

    .srv-dtl-feat-desc,
    .srv-dtl-level-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .srv-dtl-sys-desc {
        font-size: 15px;
        line-height: 22px;
    }

    .srv-dtl-keunggulan-section {
        padding: 48px 0;
    }

    .srv-dtl-keunggulan-header {
        margin-bottom: 28px;
    }

    .srv-dtl-keunggulan-title {
        font-size: 22px;
        line-height: 30px;
    }

    .srv-dtl-keunggulan-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-height: auto;
        width: 100%;
    }

    .srv-dtl-keunggulan-photo {
        position: relative !important;
        width: 100% !important;
        height: 220px !important;
        left: auto !important;
        top: auto !important;
        border-radius: 20px !important;
    }

    .srv-dtl-keunggulan-photo img {
        border-radius: 20px !important;
    }

    .srv-dtl-keunggulan-box {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        border-radius: 20px !important;
        padding: 20px 16px !important;
        margin: 0 !important;
        min-height: auto !important;
    }

    .srv-dtl-num-item {
        gap: 14px;
    }

    .srv-dtl-num-badge {
        font-size: 22px;
        width: 32px;
        height: 28px;
    }

    .srv-dtl-num-text {
        font-size: 14px;
        line-height: 22px;
    }

    .srv-dtl-galeri-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .srv-dtl-galeri-card {
        height: 140px;
        border-radius: 14px;
    }

    .srv-cta-section {
        border-radius: 36px 36px 0 0;
        margin-top: -30px;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .srv-cta-banner {
        padding: 36px 20px;
        border-radius: 24px;
    }

    .srv-dtl-cta-section {
        min-height: auto;
        height: auto;
        border-radius: 40px 40px 0 0;
        padding: 40px 16px 0 16px;
        margin-top: 30px;
    }

    .srv-dtl-cta-container {
        flex-direction: column;
        height: auto;
        gap: 24px;
        padding: 0;
        align-items: center;
        text-align: center;
    }

    .srv-dtl-cta-left {
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .srv-dtl-cta-title {
        font-size: 22px;
        line-height: 30px;
        text-align: center;
    }

    .srv-dtl-cta-desc {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
    }

    .srv-dtl-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .srv-dtl-cta-right {
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin: 0;
    }

    .srv-dtl-satpam-img {
        position: relative;
        height: 260px;
        right: auto;
        bottom: auto;
        margin: 0 auto;
        display: block;
        vertical-align: bottom;
    }
}