
/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:       #e62020;
    --red-dark:  #c01818;
    --navy:      #0d1b2a;
    --navy-mid:  #1a2d42;
    --white:     #ffffff;
    --gray-100:  #f5f6f7;
    --gray-200:  #e8eaed;
    --gray-400:  #9aa0a8;
    --gray-700:  #3c4043;
    --text:      #1f2937;
    --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --radius:    4px;
    --shadow:    0 2px 8px rgba(0,0,0,.10);

    /* ── Tipografi (referensi Divi settings) ── */
    --font-size-body:    14px;   /* Ukuran Teks Utama  */
    --line-height-body:  1.7;    /* Tinggi Baris Teks  */
    --font-size-h1:      30px;   /* Ukuran Header H1   */
    --font-size-h2:      26px;
    --font-size-h3:      22px;
    --font-size-h4:      18px;
    --font-size-h5:      16px;
    --font-size-h6:      14px;
    --letter-spacing-h:  0em;    /* Jarak Huruf Header */
    --line-height-h:     1.2;    /* Tinggi Baris Header*/
    --font-weight-h:     800;    /* Ketebalan Header   */
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--gray-100);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
}

/* ── Global Heading Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: var(--font-weight-h);
    line-height: var(--line-height-h);
    letter-spacing: var(--letter-spacing-h);
    color: var(--navy);
}
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =============================================
   BREAKING NEWS TICKER
   ============================================= */
.breaking-bar {
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 36px;
    position: relative;
    z-index: 200;
}
.breaking-bar__label {
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}
.breaking-bar__label::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: var(--red-dark);
}
.breaking-bar__ticker {
    flex: 1;
    overflow: hidden;
    padding-left: 16px;
}
.breaking-bar__ticker-inner {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: ticker 35s linear infinite;
}
.breaking-bar__ticker-inner a { color: #fff; opacity: .9; }
.breaking-bar__ticker-inner a:hover { opacity: 1; color: #ffd; }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* =============================================
   HEADER / NAVBAR  — dark style (image 2)
   ============================================= */
.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

/* --- LOGO --- */
.site-logo { flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; }
.logo-link {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}
.logo-wordmark {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -.03em;
    line-height: 1;
}
.logo-icon { display: flex; align-items: center; }
/* old fallback .logo-text kept for compat */
.logo-text { font-size: 24px; font-weight: 900; color: #fff; letter-spacing: -.03em; }
.logo-text span { color: var(--red); }

/* --- PRIMARY NAV --- */
.primary-nav { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
.primary-nav > li { position: relative; }
.primary-nav > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 16px;
    height: 68px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    color: rgba(255,255,255,.88);
    white-space: nowrap;
    transition: color .18s, background .18s;
    text-transform: uppercase;
}
.primary-nav > li > a:hover,
.primary-nav > li.current-menu-item > a {
    color: #fff;
    background: rgba(255,255,255,.07);
}
.primary-nav > li > a .arrow {
    font-size: 9px;
    opacity: .55;
    transition: transform .2s;
}
.primary-nav > li:hover > a .arrow { transform: rotate(180deg); opacity: .9; }

/* --- DROPDOWN --- */
.primary-nav .sub-menu {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: var(--navy-mid);
    min-width: 200px;
    border-top: 3px solid var(--red);
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 300;
}
.primary-nav > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sub-menu li a {
    display: block;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.78);
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: background .15s, color .15s, padding-left .15s;
}
.sub-menu li:last-child a { border-bottom: none; }
.sub-menu li a:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
    padding-left: 26px;
}

/* --- HEADER RIGHT --- */
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Search */
.header-search { display: flex; align-items: center; }
.header-search form { display: flex; }
.header-search input {
    border: 1.5px solid rgba(255,255,255,.18);
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 8px 14px;
    font-size: 13px;
    outline: none;
    width: 180px;
    color: #fff;
    background: rgba(255,255,255,.1);
    transition: border-color .2s, background .2s;
}
.header-search input::placeholder { color: rgba(255,255,255,.45); }
.header-search input:focus {
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.4);
}
.header-search button {
    border: 1.5px solid rgba(255,255,255,.18);
    border-left: none;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    padding: 8px 14px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background .2s;
}
.header-search button:hover { background: rgba(255,255,255,.2); color: #fff; }

/* LIVE TV Button — purple like original */
.btn-live-tv {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #7c3aed;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    text-decoration: none;
}
.btn-live-tv:hover { background: #6d28d9; transform: translateY(-1px); color: #fff !important; }
.btn-live-tv .dot {
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Keep old .btn-streaming for footer/sidebar compat */
.btn-streaming {
    background: var(--red);
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
    white-space: nowrap;
    text-decoration: none;
}
.btn-streaming:hover { background: var(--red-dark); color: #fff !important; }
.btn-streaming .dot {
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; transition: all .25s; }

/* =============================================
   HERO SECTION (Feature + Side Articles)
   ============================================= */
.hero-section { max-width: 1200px; margin: 24px auto 0; padding: 0 20px; }
.hero-grid { display: grid; grid-template-columns: 1fr 320px; gap: 20px; }

.hero-main { position: relative; border-radius: var(--radius); overflow: hidden; }
.hero-main a { display: block; }
.hero-main img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.hero-main__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
    padding: 32px 24px 20px;
    color: #fff;
}
.hero-main__cat {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}
.hero-main__title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.hero-main__meta { margin-top: 10px; font-size: 12.5px; opacity: .75; }

.hero-side { display: flex; flex-direction: column; gap: 14px; }
.hero-side-card { display: flex; gap: 12px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s; }
.hero-side-card:hover { transform: translateY(-2px); }
.hero-side-card img { width: 110px; height: 78px; object-fit: cover; flex-shrink: 0; }
.hero-side-card__body { padding: 10px 12px 10px 0; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.hero-side-card__cat { font-size: 10.5px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .05em; }
.hero-side-card__title { font-size: 13px; font-weight: 700; line-height: 1.4; color: var(--navy); }
.hero-side-card__title:hover { color: var(--red); }

/* =============================================
   SECTION LABELS
   ============================================= */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    margin-top: 32px;
}
.section-label__text {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.section-label::before {
    content: '';
    display: block;
    width: 4px;
    height: 22px;
    background: var(--red);
    border-radius: 2px;
}
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

/* =============================================
   MAIN CONTENT LAYOUT
   ============================================= */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 48px;
}
.content-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

/* =============================================
   NEWS GRID
   ============================================= */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.news-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.news-card__thumb { overflow: hidden; }
.news-card__thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .35s; }
.news-card:hover .news-card__thumb img { transform: scale(1.04); }
.news-card__body { padding: 14px 16px 16px; }
.news-card__cat { font-size: 10.5px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 7px; }
.news-card__title { font-size: var(--font-size-body); font-weight: 700; line-height: 1.45; color: var(--navy); margin-bottom: 8px; }
.news-card__title a:hover { color: var(--red); }
.news-card__excerpt { font-size: calc(var(--font-size-body) - 1.5px); color: var(--gray-400); line-height: var(--line-height-body); margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card__meta { font-size: calc(var(--font-size-body) - 2.5px); color: var(--gray-400); display: flex; align-items: center; gap: 6px; }
.news-card__meta .author { font-weight: 600; color: var(--navy); }
.news-card__meta .sep { opacity: .4; }

/* News List (berita terbaru) */
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-list-item { display: flex; gap: 14px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s; }
.news-list-item:hover { transform: translateX(3px); }
.news-list-item__thumb { flex-shrink: 0; }
.news-list-item__thumb img { width: 130px; height: 88px; object-fit: cover; }
.news-list-item__body { padding: 12px 14px 12px 0; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.news-list-item__cat { font-size: 10.5px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .05em; }
.news-list-item__title { font-size: var(--font-size-body); font-weight: 700; line-height: 1.4; color: var(--navy); }
.news-list-item__title a:hover { color: var(--red); }
.news-list-item__meta { font-size: calc(var(--font-size-body) - 2.5px); color: var(--gray-400); }

/* Load More */
.btn-loadmore {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 12px;
    text-align: center;
    background: transparent;
    border: 2px solid var(--red);
    border-radius: var(--radius);
    color: var(--red);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}
.btn-loadmore:hover { background: var(--red); color: #fff; }

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.widget { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.widget-header {
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 12px 16px;
    border-left: 4px solid var(--red);
}
.widget-body { padding: 16px; }

/* Popular Posts */
.popular-posts { display: flex; flex-direction: column; gap: 14px; }
.popular-post-item { display: flex; gap: 12px; align-items: flex-start; }
.popular-post-item__num {
    width: 26px; height: 26px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.popular-post-item:first-child .popular-post-item__num { background: var(--navy); }
.popular-post-item__title { font-size: calc(var(--font-size-body) - 1px); font-weight: 600; line-height: 1.4; color: var(--navy); }
.popular-post-item__title a:hover { color: var(--red); }
.popular-post-item__meta { font-size: calc(var(--font-size-body) - 3px); color: var(--gray-400); margin-top: 2px; }

/* Categories Widget */
.cat-list { display: flex; flex-direction: column; }
.cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: calc(var(--font-size-body) - 0.5px);
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
    transition: color .15s;
}
.cat-list li:last-child a { border-bottom: none; }
.cat-list li a:hover { color: var(--red); }
.cat-list li a .count {
    background: var(--gray-100);
    color: var(--gray-400);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

/* Tags Widget */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    font-size: 12px;
    color: var(--gray-700);
    transition: all .15s;
}
.tag-cloud a:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* Streaming Widget */
.streaming-widget { text-align: center; padding: 20px; }
.streaming-widget__logo { font-size: 28px; font-weight: 900; color: var(--navy); letter-spacing: -.02em; margin-bottom: 6px; }
.streaming-widget__logo span { color: var(--red); }
.streaming-widget__desc { font-size: 12.5px; color: var(--gray-400); margin-bottom: 14px; }
.streaming-widget .btn-streaming { justify-content: center; width: 100%; font-size: 13px; }

/* =============================================
   PROGRAM SECTION
   ============================================= */
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.program-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s; }
.program-card:hover { transform: translateY(-3px); }
.program-card__thumb img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.program-card__body { padding: 12px; }
.program-card__title { font-size: 13.5px; font-weight: 700; line-height: 1.4; color: var(--navy); }
.program-card__title a:hover { color: var(--red); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-top { max-width: 1200px; margin: 0 auto; padding: 40px 20px 30px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .logo-text { font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.footer-brand .logo-text span { color: var(--red); }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: #fff;
    transition: background .2s;
}
.footer-socials a:hover { background: var(--red); }

.footer-widget h4 { font-size: 13px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; border-left: 3px solid var(--red); padding-left: 10px; }
.footer-widget ul { display: flex; flex-direction: column; gap: 8px; }
.footer-widget ul li a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .15s; }
.footer-widget ul li a:hover { color: var(--red); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; }

/* =============================================
   SINGLE POST
   ============================================= */
.single-hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); margin-bottom: 24px; }
.single-cat { display: inline-block; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; margin-bottom: 12px; }
.single-title { font-size: var(--font-size-h1); font-weight: var(--font-weight-h); line-height: var(--line-height-h); color: var(--navy); margin-bottom: 12px; }
.single-meta { display: flex; align-items: center; gap: 16px; font-size: calc(var(--font-size-body) - 1px); color: var(--gray-400); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
.single-meta a { font-weight: 600; color: var(--navy); }
.single-meta .sep { opacity: .4; }
.entry-content { font-size: var(--font-size-body); line-height: var(--line-height-body); color: var(--text); }
.entry-content p { margin-bottom: 18px; }
.entry-content h2 { font-size: var(--font-size-h2); font-weight: var(--font-weight-h); line-height: var(--line-height-h); margin: 28px 0 12px; color: var(--navy); }
.entry-content h3 { font-size: var(--font-size-h3); font-weight: var(--font-weight-h); line-height: var(--line-height-h); margin: 22px 0 10px; color: var(--navy); }
.entry-content h4 { font-size: var(--font-size-h4); font-weight: var(--font-weight-h); margin: 18px 0 8px; color: var(--navy); }
.entry-content img { border-radius: var(--radius); margin: 20px 0; }
.entry-content blockquote { border-left: 4px solid var(--red); padding-left: 18px; color: var(--gray-700); font-style: italic; margin: 20px 0; font-size: calc(var(--font-size-body) + 1px); line-height: var(--line-height-body); }

/* Post Tags */
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.post-tags span { font-weight: 700; font-size: 13px; }
.post-tags a { padding: 4px 12px; border: 1px solid var(--gray-200); border-radius: 20px; font-size: 12.5px; color: var(--gray-700); transition: all .15s; }
.post-tags a:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* Share Bar */
.share-bar { background: var(--gray-100); border-radius: var(--radius); padding: 16px; margin: 24px 0; display: flex; align-items: center; gap: 10px; }
.share-bar span { font-weight: 700; font-size: 13px; }
.share-btn { padding: 7px 16px; border-radius: var(--radius); font-size: 12.5px; font-weight: 600; color: #fff; cursor: pointer; border: none; }
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #1da1f2; }
.share-btn.wa { background: #25d366; }
.share-btn.cp { background: var(--gray-700); }

/* =============================================
   PAGE: LIVE STREAMING
   ============================================= */
.live-page { max-width: 900px; margin: 40px auto; padding: 0 20px; }
.live-page h1 { font-size: 24px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.live-page__desc { color: var(--gray-400); margin-bottom: 20px; }
.live-embed { background: #000; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; width: 100%; position: relative; }
.live-embed iframe { width: 100%; height: 100%; border: none; }
.live-embed__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; gap: 12px; }
.live-embed__placeholder .live-icon { font-size: 48px; }
.live-embed__placeholder p { opacity: .6; font-size: 14px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-side { display: grid; grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .content-sidebar { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .program-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .primary-nav, .header-search, .btn-live-tv { display: none; }
    .hamburger { display: flex; }
    .news-grid { grid-template-columns: 1fr; }
    .hero-side { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .sidebar { grid-template-columns: 1fr; }
    .single-title { font-size: 20px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .hero-main__title { font-size: 17px; }
    .program-grid { grid-template-columns: 1fr 1fr; }
    .breaking-bar { font-size: 12px; }
}

/* Mobile nav open */
.primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy-mid);
    padding: 8px 0;
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
    z-index: 99;
}
.primary-nav.is-open > li > a {
    height: auto;
    line-height: 1.4;
    padding: 13px 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.88);
}
.primary-nav.is-open .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: none;
    box-shadow: none;
    background: rgba(0,0,0,.2);
}
.primary-nav.is-open .sub-menu li a {
    padding-left: 40px;
    color: rgba(255,255,255,.65);
    border-bottom: 1px solid rgba(255,255,255,.04);
}

/* =============================================
   UTILITY
   ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.visually-hidden { position: absolute; clip: rect(0,0,0,0); width: 1px; height: 1px; overflow: hidden; }

/* =============================================
   HALAMAN LAYANAN — shared styles
   ============================================= */

/* Hero Banner Layanan */
.layanan-hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2d42 60%, #0a1520 100%);
    color: #fff;
    padding: 72px 0 64px;
    overflow: hidden;
    text-align: center;
}
.layanan-hero--ph    { background: linear-gradient(135deg, #0d1b2a 0%, #1e3a5f 60%, #0a1520 100%); }
.layanan-hero--brand { background: linear-gradient(135deg, #1a0533 0%, #3b0f6e 60%, #0d0020 100%); }
.layanan-hero--event { background: linear-gradient(135deg, #0d2a1a 0%, #1a5c37 60%, #051a0d 100%); }

.layanan-hero__shape {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 60px;
    background: var(--gray-100);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.layanan-hero .container { position: relative; z-index: 2; }
.layanan-hero__badge {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.85);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.layanan-hero__title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}
.layanan-hero__title span { color: var(--red); }
.layanan-hero--brand .layanan-hero__title span { color: #b388ff; }
.layanan-hero--event .layanan-hero__title span { color: #69f0ae; }
.layanan-hero__desc {
    font-size: 17px;
    color: rgba(255,255,255,.75);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.layanan-hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Buttons layanan */
.btn-layanan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: all .2s;
    text-decoration: none;
}
.btn-layanan--primary {
    background: var(--red);
    color: #fff !important;
}
.btn-layanan--primary:hover { background: var(--red-dark); transform: translateY(-2px); color: #fff !important; }
.btn-layanan--outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,.4);
}
.btn-layanan--outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff !important; }
.btn-layanan--lg { padding: 15px 36px; font-size: 15px; }

/* Stats bar */
.layanan-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 32px 0;
    overflow: hidden;
}
.layanan-stats__item {
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid var(--gray-200);
}
.layanan-stats__item:last-child { border-right: none; }
.stat-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 4px;
}
.stat-label { font-size: 12.5px; color: var(--gray-400); font-weight: 500; }

/* Format / Layanan Grid */
.format-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.format-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px 18px;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
    text-align: center;
}
.format-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.format-card__icon { font-size: 32px; margin-bottom: 10px; }
.format-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.format-card p  { font-size: 12.5px; color: var(--gray-400); line-height: 1.5; }

/* Paket Cards */
.paket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.paket-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform .2s, box-shadow .2s;
}
.paket-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.paket-card--featured {
    border: 2px solid var(--red);
    transform: scale(1.03);
}
.paket-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.paket-card__badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--red);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}
.paket-card__header {
    padding: 28px 24px 20px;
    text-align: center;
    color: #fff;
}
.paket-card__header--basic    { background: linear-gradient(135deg, #374151, #1f2937); }
.paket-card__header--standard { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.paket-card__header--premium  { background: linear-gradient(135deg, #0d1b2a, #1a2d42); }
.paket-icon { font-size: 36px; display: block; margin-bottom: 8px; }
.paket-card__header h3 { font-size: 20px; font-weight: 800; color: #fff; }
.paket-card__body { padding: 22px 24px 26px; }
.paket-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.paket-features li { font-size: 13.5px; color: var(--gray-700); }
.btn-paket {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 700;
    background: var(--navy);
    color: #fff !important;
    transition: background .2s, transform .15s;
    text-decoration: none;
}
.btn-paket:hover { background: var(--red); transform: translateY(-1px); color: #fff !important; }
.btn-paket--featured { background: var(--red); }
.btn-paket--featured:hover { background: var(--red-dark); }

/* Proses Timeline */
.proses-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.proses-step {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px 20px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.proses-step__num {
    width: 40px; height: 40px;
    background: var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.proses-step__body h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.proses-step__body p  { font-size: 12.5px; color: var(--gray-400); line-height: 1.5; }

/* Equipment Grid */
.layanan-equipment { margin-bottom: 40px; }
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.equipment-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    box-shadow: var(--shadow);
    border-left: 3px solid var(--red);
}

/* CTA Section */
.layanan-cta {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2d42 100%);
    color: #fff;
    text-align: center;
    padding: 56px 40px;
    border-radius: 12px;
    margin: 40px 0 0;
}
.layanan-cta h2 { font-size: 30px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.layanan-cta p  { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 24px; }
.layanan-cta--brand { background: linear-gradient(135deg, #1a0533 0%, #3b0f6e 100%); }

/* Responsive Layanan */
@media (max-width: 1024px) {
    .format-grid    { grid-template-columns: repeat(3, 1fr); }
    .equipment-grid { grid-template-columns: repeat(3, 1fr); }
    .layanan-stats  { grid-template-columns: repeat(2, 1fr); }
    .layanan-stats__item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
    .layanan-hero__title { font-size: 32px; }
    .format-grid    { grid-template-columns: repeat(2, 1fr); }
    .paket-grid     { grid-template-columns: 1fr; }
    .paket-card--featured { transform: none; }
    .proses-timeline { grid-template-columns: 1fr; }
    .equipment-grid { grid-template-columns: repeat(2, 1fr); }
    .layanan-stats  { grid-template-columns: repeat(2, 1fr); }
    .layanan-cta h2 { font-size: 22px; }
}
@media (max-width: 480px) {
    .format-grid    { grid-template-columns: 1fr; }
    .equipment-grid { grid-template-columns: 1fr; }
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
    font-size: 12.5px;
    color: var(--gray-400);
    padding: 14px 0 0;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--red); }
.bc-sep { opacity: .5; }

/* =============================================
   HALAMAN LIVE STREAMING
   ============================================= */

.live-page-wrap { background: #0a0f1a; min-height: 100vh; }

/* Top bar */
.live-topbar {
    background: linear-gradient(90deg, #0d1b2a 0%, #1a2d42 100%);
    border-bottom: 3px solid var(--red);
    padding: 16px 0;
}
.live-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.live-topbar__title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -.01em;
}
.live-topbar__info { display: flex; align-items: center; gap: 14px; }
.live-topbar__meta { font-size: 13px; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 8px; }
.live-topbar__meta .sep { opacity: .4; }

/* Live badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.live-dot {
    width: 7px; height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
    flex-shrink: 0;
}

/* Layout grid */
.live-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    padding: 28px 0 48px;
    align-items: start;
}

/* Player */
.live-player {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
}
.live-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.live-player__offline {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    text-align: center;
    padding: 40px;
    gap: 12px;
    min-height: 400px;
}
.live-player__offline-icon { font-size: 64px; opacity: .4; }
.live-player__offline h3 { font-size: 22px; font-weight: 800; color: #fff; }
.live-player__offline p { font-size: 14px; max-width: 400px; }
.live-player__offline-hint {
    font-size: 12px;
    background: rgba(255,255,255,.08);
    border-radius: 6px;
    padding: 10px 16px;
    margin-top: 8px;
}

/* Actions bar below player */
.live-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #111827;
    border-radius: 0 0 10px 10px;
    margin-top: -6px;
    flex-wrap: wrap;
    gap: 10px;
}
.live-actions__left { display: flex; align-items: center; gap: 12px; }
.live-channel-name { font-size: 14px; color: rgba(255,255,255,.75); }
.live-channel-name strong { color: #fff; }
.live-actions__right { display: flex; align-items: center; gap: 8px; }

.live-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .2s;
    text-decoration: none;
}
.live-btn--yt { background: #cc0000; color: #fff; }
.live-btn--yt:hover { background: #a00; color: #fff; }
.live-btn--share { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.live-btn--share:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Description */
.live-desc {
    background: #111827;
    border-radius: 10px;
    padding: 24px 24px;
    margin-top: 16px;
    color: rgba(255,255,255,.75);
}
.live-desc h2 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.live-desc p  { font-size: 14px; line-height: 1.7; }

/* Schedule */
.live-schedule {
    background: #111827;
    border-radius: 10px;
    padding: 24px;
    margin-top: 16px;
}
.live-schedule__title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.schedule-list { display: flex; flex-direction: column; gap: 4px; }
.schedule-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 6px;
    transition: background .15s;
}
.schedule-item:hover { background: rgba(255,255,255,.05); }
.schedule-item--active {
    background: rgba(230,32,32,.15);
    border-left: 3px solid var(--red);
}
.schedule-time {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    min-width: 48px;
    font-variant-numeric: tabular-nums;
}
.schedule-item--active .schedule-time { color: var(--red); }
.schedule-info { flex: 1; }
.schedule-info strong { display: block; font-size: 13.5px; font-weight: 700; color: #fff; }
.schedule-info span  { font-size: 12px; color: rgba(255,255,255,.45); }
.schedule-live-tag {
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 2px 8px;
    border-radius: 20px;
}

/* Sidebar widgets */
.live-sidebar { display: flex; flex-direction: column; gap: 16px; }
.live-widget {
    background: #111827;
    border-radius: 10px;
    overflow: hidden;
}
.live-widget__header {
    background: #0d1b2a;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 13px 18px;
    border-left: 4px solid var(--red);
}
.live-widget__body { padding: 16px 18px; }

/* Watch methods */
.watch-methods { display: flex; flex-direction: column; gap: 12px; }
.watch-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.watch-method:last-child { border-bottom: none; padding-bottom: 0; }
.watch-method__icon { font-size: 24px; flex-shrink: 0; }
.watch-method strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.watch-method span   { font-size: 12px; color: rgba(255,255,255,.45); }

/* Live news items */
.live-news-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.live-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.live-news-item__img {
    width: 72px; height: 52px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.live-news-item__body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.live-news-item__title {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.live-news-item__title:hover { color: var(--red); }
.live-news-item__date { font-size: 11px; color: rgba(255,255,255,.35); }

/* Social buttons */
.live-socials { display: flex; flex-direction: column; gap: 8px; }
.live-social-btn {
    display: block;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff !important;
    background: var(--sc, #333);
    transition: opacity .2s, transform .15s;
    text-decoration: none;
    text-align: center;
}
.live-social-btn:hover { opacity: .85; transform: translateY(-1px); color: #fff !important; }

/* Responsive Live Page */
@media (max-width: 1024px) {
    .live-layout { grid-template-columns: 1fr; }
    .live-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .live-sidebar { grid-template-columns: 1fr; }
    .live-actions { flex-direction: column; align-items: flex-start; }
    .live-topbar__inner { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   HALAMAN LAYANAN — SVC COMPONENTS
   ============================================= */

/* Container */
.svc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HERO ── */
.svc-hero {
    position: relative;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2d42 55%, #0a1520 100%);
    overflow: hidden;
    padding: 80px 0 72px;
    color: #fff;
}
.svc-hero--ph    { background: linear-gradient(135deg, #0a1a30 0%, #0d2d4a 55%, #061020 100%); }
.svc-hero--brand { background: linear-gradient(135deg, #1a0533 0%, #3b0f6e 55%, #0d0020 100%); }
.svc-hero--event { background: linear-gradient(135deg, #0a2010 0%, #0e4020 55%, #041008 100%); }
.svc-hero--tvp   { background: linear-gradient(135deg, #200a0a 0%, #4a0d0d 55%, #100404 100%); }

.svc-hero__bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 140px;
    font-weight: 900;
    color: rgba(255,255,255,.04);
    letter-spacing: -.04em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.svc-hero__inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.svc-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.8);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.svc-hero__dot {
    width: 7px; height: 7px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 1.2s ease-in-out infinite;
    flex-shrink: 0;
}
.svc-hero__title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -.03em;
}
.svc-hero__title span { color: var(--red); }
.svc-hero--brand .svc-hero__title span { color: #c084fc; }
.svc-hero--event .svc-hero__title span { color: #4ade80; }
.svc-hero__desc {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}
.svc-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Floating badges */
.svc-hero__visual {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.svc-hero__icon-big {
    font-size: 100px;
    opacity: .18;
    filter: grayscale(1);
}
.svc-hero__badge-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 40px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
.badge-icon { font-size: 18px; }
.svc-hero__badge-float--1 { top: 20px; left: 0; animation: floatBadge 3s ease-in-out infinite; }
.svc-hero__badge-float--2 { top: 50%; right: 0; transform: translateY(-50%); animation: floatBadge 3.5s ease-in-out infinite .5s; }
.svc-hero__badge-float--3 { bottom: 20px; left: 30px; animation: floatBadge 4s ease-in-out infinite 1s; }

@keyframes floatBadge {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.svc-hero__badge-float--2 {
    animation: floatBadge2 3.5s ease-in-out infinite .5s;
}
@keyframes floatBadge2 {
    0%,100% { transform: translateY(-50%); }
    50%      { transform: translateY(calc(-50% - 8px)); }
}

/* ── BUTTONS ── */
.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: all .2s;
    text-decoration: none;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.svc-btn--white {
    background: #fff;
    color: var(--navy) !important;
}
.svc-btn--white:hover { background: #f0f0f0; transform: translateY(-2px); color: var(--navy) !important; }
.svc-btn--outline-white {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,.4);
}
.svc-btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff !important; }

/* ── STATS ── */
.svc-stats {
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    position: relative;
    z-index: 10;
}
.svc-stats__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.svc-stat-card {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid var(--gray-200);
    transition: background .2s;
}
.svc-stat-card:last-child { border-right: none; }
.svc-stat-card:hover { background: var(--gray-100); }
.svc-stat-card__icon { font-size: 28px; margin-bottom: 8px; }
.svc-stat-card__num  { font-size: 32px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.svc-stat-card__label{ font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.svc-stat-card__desc { font-size: 12px; color: var(--gray-400); line-height: 1.4; }

/* ── SECTION ── */
.svc-section { padding: 72px 0; }
.svc-section--dark { background: #0d1b2a; }
.svc-section--gray { background: var(--gray-100); }
.svc-section:not(.svc-section--dark):not(.svc-section--gray) { background: #fff; }

.svc-section-head { text-align: center; margin-bottom: 48px; }
.svc-section-head--light .svc-section-head__tag   { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.2); }
.svc-section-head--light .svc-section-head__title { color: #fff; }
.svc-section-head--light .svc-section-head__desc  { color: rgba(255,255,255,.6); }

.svc-section-head__tag {
    display: inline-block;
    background: rgba(230,32,32,.08);
    color: var(--red);
    border: 1px solid rgba(230,32,32,.2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.svc-section-head__title {
    font-size: 34px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -.02em;
}
.svc-section-head__title span { color: var(--red); }
.svc-section-head__desc {
    font-size: 15px;
    color: var(--gray-400);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── SERVICE CARDS ── */
.svc-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.svc-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    transition: transform .25s, box-shadow .25s;
    border: 1px solid var(--gray-200);
}
.svc-section--dark .svc-service-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
.svc-service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }

.svc-service-card__top {
    background: color-mix(in srgb, var(--accent, #e62020) 12%, transparent);
    padding: 28px 22px 18px;
    position: relative;
}
.svc-service-card__emoji { font-size: 36px; display: block; }
.svc-service-card__accent-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent, #e62020);
    border-radius: 0;
}
.svc-service-card__body { padding: 18px 22px 22px; }
.svc-service-card__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}
.svc-section--dark .svc-service-card__title { color: #fff; }
.svc-service-card__desc {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 14px;
}
.svc-service-card__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--gray-200);
    padding-top: 12px;
}
.svc-section--dark .svc-service-card__list { border-color: rgba(255,255,255,.08); }
.svc-service-card__list li {
    font-size: 12px;
    color: var(--gray-700);
    padding-left: 14px;
    position: relative;
}
.svc-service-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}
.svc-section--dark .svc-service-card__list li { color: rgba(255,255,255,.6); }

/* ── PROCESS CARDS ── */
.svc-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.svc-process-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: background .2s, transform .2s;
}
.svc-process-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.svc-section--gray .svc-process-card { background: #fff; border-color: var(--gray-200); }
.svc-process-card__num {
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    color: var(--red);
    background: rgba(230,32,32,.1);
    border: 1px solid rgba(230,32,32,.2);
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.svc-process-card__icon  { font-size: 36px; display: block; margin-bottom: 12px; }
.svc-process-card__title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.svc-section--gray .svc-process-card__title { color: var(--navy); }
.svc-process-card__desc  { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }
.svc-section--gray .svc-process-card__desc { color: var(--gray-400); }

/* ── PAKET CARDS ── */
.svc-paket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.svc-paket-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform .25s, box-shadow .25s;
}
.svc-section:not(.svc-section--dark) .svc-paket-card { background: #fff; border-color: var(--gray-200); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.svc-paket-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.svc-paket-card--featured { border-color: var(--red); border-width: 2px; }
.svc-paket-card__badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.svc-paket-card__head {
    padding: 32px 28px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-align: center;
}
.svc-section:not(.svc-section--dark) .svc-paket-card__head { border-color: var(--gray-200); }
.svc-paket-card__icon  { font-size: 44px; display: block; margin-bottom: 12px; }
.svc-paket-card__head h3 { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 6px; }
.svc-section:not(.svc-section--dark) .svc-paket-card__head h3 { color: var(--navy); }
.svc-paket-card__head p  { font-size: 13px; color: rgba(255,255,255,.5); }
.svc-section:not(.svc-section--dark) .svc-paket-card__head p { color: var(--gray-400); }
.svc-paket-card__body { padding: 24px 28px 28px; }
.svc-paket-card__body ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; list-style: none; padding: 0; }
.svc-paket-card__body ul li { font-size: 13.5px; padding-left: 24px; position: relative; color: rgba(255,255,255,.75); line-height: 1.4; }
.svc-section:not(.svc-section--dark) .svc-paket-card__body ul li { color: var(--gray-700); }
.svc-paket-card__body ul li.yes::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-weight: 900; }
.svc-paket-card__body ul li.no  { opacity: .4; }
.svc-paket-card__body ul li.no::before { content: '✕'; position: absolute; left: 0; color: rgba(255,255,255,.4); }
.svc-section:not(.svc-section--dark) .svc-paket-card__body ul li.no::before { color: var(--gray-400); }

.svc-paket-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    background: rgba(255,255,255,.1);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.2);
    transition: all .2s;
    text-decoration: none;
    cursor: pointer;
}
.svc-paket-btn:hover { background: rgba(255,255,255,.2); color: #fff !important; }
.svc-paket-btn--featured { background: var(--red); border-color: var(--red); }
.svc-paket-btn--featured:hover { background: var(--red-dark); }
.svc-section:not(.svc-section--dark) .svc-paket-btn { background: var(--navy); border-color: var(--navy); }
.svc-section:not(.svc-section--dark) .svc-paket-btn:hover { background: var(--red); border-color: var(--red); }
.svc-section:not(.svc-section--dark) .svc-paket-btn--featured { background: var(--red); border-color: var(--red); }

/* ── EQUIPMENT ── */
.svc-equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.svc-equip-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    border-left: 4px solid var(--red);
    transition: transform .2s, box-shadow .2s;
}
.svc-equip-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.svc-equip-card__icon { font-size: 28px; margin-bottom: 10px; display: block; }
.svc-equip-card h4   { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.svc-equip-card p    { font-size: 12px; color: var(--gray-400); line-height: 1.5; }

/* ── CTA SECTION ── */
.svc-cta { background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%); padding: 72px 0; }
.svc-cta--brand { background: linear-gradient(135deg, #1a0533 0%, #3b0f6e 100%); }
.svc-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.svc-cta__content h2 { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 10px; letter-spacing: -.02em; }
.svc-cta__content p  { font-size: 15px; color: rgba(255,255,255,.65); max-width: 480px; line-height: 1.6; }
.svc-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── RESPONSIVE LAYANAN ── */
@media (max-width: 1024px) {
    .svc-service-grid  { grid-template-columns: repeat(3, 1fr); }
    .svc-equipment-grid{ grid-template-columns: repeat(3, 1fr); }
    .svc-stats__grid   { grid-template-columns: repeat(2, 1fr); }
    .svc-hero__inner   { grid-template-columns: 1fr; }
    .svc-hero__visual  { display: none; }
    .svc-hero__title   { font-size: 40px; }
}
@media (max-width: 768px) {
    .svc-hero          { padding: 52px 0 48px; }
    .svc-hero__title   { font-size: 32px; }
    .svc-hero__bg-text { display: none; }
    .svc-section       { padding: 48px 0; }
    .svc-section-head__title { font-size: 26px; }
    .svc-service-grid  { grid-template-columns: repeat(2, 1fr); }
    .svc-process-grid  { grid-template-columns: 1fr 1fr; }
    .svc-paket-grid    { grid-template-columns: 1fr; }
    .svc-equipment-grid{ grid-template-columns: repeat(2, 1fr); }
    .svc-stats__grid   { grid-template-columns: repeat(2, 1fr); }
    .svc-cta__inner    { flex-direction: column; text-align: center; }
    .svc-cta__content h2 { font-size: 24px; }
    .svc-cta__actions  { justify-content: center; }
}
@media (max-width: 480px) {
    .svc-service-grid  { grid-template-columns: 1fr; }
    .svc-process-grid  { grid-template-columns: 1fr; }
    .svc-equipment-grid{ grid-template-columns: 1fr; }
    .svc-stats__grid   { grid-template-columns: 1fr 1fr; }
    .svc-hero__title   { font-size: 28px; }
}
