/* ============================================
   BOLARADAR PILLAR SYSTEM - Dark Navy Pro
   Warna sama dengan https://bolaradar.id/blog/
   ============================================ */
:root {
    --bg: #0f0f1a;
    --bg-hero: #1a1a2e;
    --bg-card: #151528;
    --bg-hover: #22223d;
    --bg-footer: #0a0a12;
    --text: #e2e2e8;
    --text-bright: #f5f5f9;
    --text-muted: #8b8b9b;
    --text-dim: #6b6b7b;
    --accent-gold: #f5c842;
    --accent-gold-light: #fce285;
    --accent-gold-dark: #d4a017;
    --accent-pink: #ff7a7a;
    --accent-pink-light: #ffa0a0;
    --accent-red: #ef4444;
    --accent-red-dark: #dc2626;
    --border: #2a2a3e;
    --border-light: #3a3a4e;
    --border-red: #ef4444;
    --radius: 16px;
    --shadow: 0 10px 40px rgba(0,0,0,0.6);
    --shadow-gold: 0 8px 32px rgba(245,200,66,0.25);
    --shadow-pink: 0 8px 32px rgba(255,122,122,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: var(--accent-gold); transition: all .25s ease; }
a:hover { color: var(--accent-gold-light); transform: translateY(-1px); }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border-red);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    color: var(--accent-red);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--accent-red);
}
.main-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.main-nav a {
    padding: 10px 18px;
    border-radius: 8px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all .25s ease;
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.main-nav a:hover {
    border-color: var(--accent-red);
    color: var(--text-bright);
    background: var(--bg-hover);
}
.main-nav a[href*="blog"] {
    background: var(--accent-red) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-color: var(--accent-red) !important;
}
.main-nav a[href*="blog"]:hover {
    background: var(--accent-red-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239,68,68,0.4);
}

/* ===== HERO ===== */
.hero-section {
    background: var(--bg-hero);
    padding: 70px 0 50px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.hero-title {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.15;
    color: var(--accent-pink);
    text-shadow: 0 2px 20px rgba(255,122,122,0.2);
}
.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.cta-button {
    display: inline-block;
    background: var(--accent-gold);
    color: #1a1a2e !important;
    padding: 16px 40px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    transition: all .25s ease;
    box-shadow: 0 4px 20px rgba(245,200,66,0.35);
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245,200,66,0.5);
    filter: brightness(1.1);
    color: #1a1a2e !important;
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-size: 38px;
    font-weight: 900;
    color: var(--accent-gold);
}
.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== BLOG CTA SECTION ===== */
.blog-cta-section {
    margin: 50px 0;
    padding: 55px 45px;
    background: linear-gradient(135deg, var(--bg-hero), var(--bg-card));
    border-radius: 24px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
}
.blog-cta-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent-gold);
}
.blog-cta-section .icon {
    font-size: 52px;
    margin-bottom: 18px;
    display: block;
}
.blog-cta-section h2 {
    font-size: 34px;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 14px;
}
.blog-cta-section p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 50px 0;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition: all .3s ease;
    display: block;
    color: var(--text);
}
.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.service-card .service-icon {
    font-size: 40px;
    margin-bottom: 14px;
    display: block;
}
.service-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}
.service-card.featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(245,200,66,0.08), var(--bg-card));
    grid-column: span 1;
}

/* ===== PILLAR SECTION ===== */
.pillar-section {
    padding: 45px 0;
    text-align: center;
}
.pillar-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 10px;
}
.pillar-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
}
.pill-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.pill-link {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    transition: all .25s ease;
}
.pill-link:hover {
    background: rgba(245,200,66,0.12);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* ===== FEATURES ===== */
.features-section {
    padding: 45px 0 60px;
    text-align: center;
}
.section-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 35px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: all .25s ease;
}
.feature-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}
.feature-icon {
    font-size: 36px;
    margin-bottom: 14px;
    display: block;
}
.feature-item h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 8px;
}
.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== SEO CONTENT SECTION ===== */
.seo-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(21,21,40,0.8));
    border-radius: 20px;
    border: 1px solid var(--border);
}
.seo-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-red);
}
.seo-content p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 15px;
}
.seo-content p strong {
    color: var(--text-bright);
}
.seo-content a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===== ARTICLE / PILLAR PAGE CONTENT ===== */
.article-header {
    padding: 50px 0 30px;
    text-align: center;
}
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
    color: var(--text-muted);
    justify-content: center;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-gold); }
.article-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--accent-pink);
    margin-bottom: 14px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(255,122,122,0.2);
}
.article-subhead {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 20px;
}
.article-meta {
    display: flex;
    gap: 15px;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    margin-bottom: 35px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all .25s ease;
}
.content-section:hover {
    border-color: rgba(245,200,66,0.3);
}
.content-section h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-red);
}
.content-section h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--accent-pink-light);
    margin: 20px 0 12px;
}
.content-section p {
    margin-bottom: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
}
.content-section ul, .content-section ol {
    margin: 12px 0 12px 24px;
    color: var(--text-muted);
    line-height: 1.8;
}
.content-section li { margin-bottom: 6px; }

/* ===== CTA ===== */
.cta-section {
    text-align: center;
    padding: 45px 40px;
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(10,10,18,0.8));
    border-radius: 20px;
    border: 1px solid var(--border);
}
.cta-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 14px;
}
.cta-section p {
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
}

/* ===== FAQ ===== */
.faq-section { margin-top: 40px; }
.faq-item {
    margin-bottom: 18px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all .25s ease;
}
.faq-item:hover { border-color: rgba(245,200,66,0.25); }
.faq-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 10px;
    cursor: pointer;
}
.faq-item p { color: var(--text-muted); line-height: 1.75; font-size: 14px; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border-red);
    padding: 55px 0 20px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 45px;
}
.footer-brand h3 {
    font-size: 22px;
    color: var(--accent-red);
    margin-bottom: 12px;
    font-weight: 900;
}
.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}
.footer-brand .footer-logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-bottom: 14px;
    border: 2px solid var(--accent-red);
}
.footer-links h4 {
    font-size: 13px;
    color: var(--accent-gold);
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    padding: 5px 0;
    transition: all .2s ease;
}
.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-light); }
::selection { background: var(--accent-gold); color: var(--bg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .hero-title { font-size: 30px; }
    .hero-stats { gap: 25px; }
    .stat-number { font-size: 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
    .footer-brand { grid-column: 1 / -1; }
    .article-title { font-size: 28px; }
    .blog-cta-section { padding: 40px 25px; }
    .blog-cta-section h2 { font-size: 26px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 26px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
