/* ===== HERO CAROUSEL STYLES ===== */
.hero-carousel {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(12, 74, 110, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
}

.carousel-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  background: #fff;
}

.carousel-track {
  position: relative;
  height: 500px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: none;
}

.carousel-slide.active {
  opacity: 1;
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  padding: 3rem 2rem 2rem;
}

.carousel-caption h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #fff;
}

.carousel-caption p {
  font-size: 1rem;
  opacity: 0.9;
  color: #fff;
}

.carousel-btn-hero {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #0c4a6e;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-btn-hero:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  color: #14b8a6;
}

.carousel-btn-hero.prev-btn {
  left: 20px;
}

.carousel-btn-hero.next-btn {
  right: 20px;
}

.carousel-dots-hero {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dots-hero .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.carousel-dots-hero .dot.active {
  background: #14b8a6;
  width: 30px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-track {
    height: 300px;
  }
  
  .carousel-caption h3 {
    font-size: 1.3rem;
  }
  
  .carousel-btn-hero {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .carousel-btn-hero.prev-btn {
    left: 10px;
  }
  
  .carousel-btn-hero.next-btn {
    right: 10px;
  }
}

/* ===== PERBAIKAN LAYOUT PROFIL SEKOLAH ===== */
.about-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important; /* Perbandingan 45% gambar, 55% teks */
    gap: 3rem !important;
    align-items: center !important;
}

.about-image {
    position: relative;
}

.ai-main {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
}

.ai-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ai-main:hover img {
    transform: scale(1.03);
}

.ai-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #14b8a6, #0c4a6e);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 10;
}

.ai-card i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.ai-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.ai-card p {
    font-size: 0.85rem;
    margin: 0.3rem 0 0 0;
    opacity: 0.9;
}

.about-content {
    padding: 1rem 0;
}

.about-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-visi, .about-misi {
    background: rgba(167, 139, 250, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #a78bfa;
}

.about-visi strong, .about-misi strong {
    display: block;
    color: #a78bfa;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.about-visi p, .about-misi p {
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive untuk Tablet */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .ai-card {
        right: 10px;
        bottom: 10px;
        padding: 1rem 1.5rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
}

/* Responsive untuk HP */
@media (max-width: 768px) {
    .about-grid {
        gap: 1.5rem !important;
    }
    
    .ai-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .about-content h3 {
        font-size: 1.3rem;
    }
}
/* ===== PERBAIKI LAYOUT PROFIL SEKOLAH - ALIGNMENT ===== */
#profile .about-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: start !important;
    margin-top: 3rem !important;
}

#profile .about-image {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
}

#profile .ai-main {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
    max-width: 100% !important;
}

#profile .ai-main img {
    width: 100% !important;
    height: auto !important;
    max-height: 500px !important;
    object-fit: contain !important;
    background: rgba(255,255,255,0.05);
    border-radius: 20px !important;
}

#profile .ai-card {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    background: linear-gradient(135deg, #14b8a6, #0c4a6e) !important;
    color: #fff !important;
    padding: 1rem 1.5rem !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3) !important;
    text-align: center !important;
    z-index: 10 !important;
}

#profile .ai-card i {
    font-size: 1.8rem !important;
    margin-bottom: 0.3rem !important;
    display: block !important;
}

#profile .ai-card h4 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

#profile .ai-card p {
    font-size: 0.75rem !important;
    margin: 0.2rem 0 0 0 !important;
    opacity: 0.9 !important;
}

#profile .about-content {
    padding: 0 !important;
    text-align: left !important;
}

#profile .about-content h3 {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #a78bfa !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.3 !important;
    text-align: left !important;
}

#profile .about-visi, 
#profile .about-misi {
    background: rgba(167, 139, 250, 0.1) !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    margin-bottom: 1.5rem !important;
    border-left: 4px solid #a78bfa !important;
    text-align: left !important;
}

#profile .about-visi strong, 
#profile .about-misi strong {
    display: block !important;
    color: #a78bfa !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.8rem !important;
}

#profile .about-visi p, 
#profile .about-misi p {
    color: #cbd5e1 !important;
    line-height: 1.8 !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    text-align: left !important;
}

/* Responsive Tablet */
@media (max-width: 991px) {
    #profile .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    #profile .about-content h3 {
        font-size: 1.5rem !important;
    }
}

/* Responsive HP */
@media (max-width: 768px) {
    #profile .about-grid {
        gap: 1.5rem !important;
    }
    
    #profile .about-content h3 {
        font-size: 1.3rem !important;
    }
    
    #profile .ai-card {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin-top: 1rem !important;
    }
}
/* ===== GOOGLE MAPS DI KONTAK ===== */
.contact-map {
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--border);
    min-height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .contact-map {
        min-height: 300px;
    }
    .contact-map iframe {
        min-height: 300px;
    }
}
/* Spasi untuk menu Carousel */
.menu-carousel {
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    padding-bottom: 15px;
}
/* ===== FIX FOTO TIDAK TERPOTONG ===== */
.ks-photo img, .tcg-photo img, .staff-photo img {
    object-fit: contain !important;
    max-height: 100% !important;
    width: 100% !important;
    height: auto !important;
}

.ks-photo, .tcg-photo, .staff-photo {
    overflow: visible !important;
    height: auto !important;
    min-height: 250px !important;
}
/* ===== FINAL FIX (premium) ===== */
.hero-shape { display: none !important; }
.hsu-dots, .hsu-caption, .hsu-btn, .hsu-live { display: none !important; }
.hero { position: relative !important; padding-bottom: 150px !important; }
.hero-wave { position: absolute !important; bottom: -1px !important; left: 0 !important; right: 0 !important; z-index: 2 !important; line-height: 0 !important; pointer-events: none !important; }
.hero-wave svg { display: block !important; width: 100% !important; height: 70px !important; }
.qa-card { color: #fff !important; }

/* ===== PREMIUM v8: EDITORIAL POLISH ===== */
.programs-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; grid-auto-rows: minmax(220px, auto); grid-auto-flow: dense; gap: 1.4rem !important; }
.programs-card:nth-child(1) { grid-column: span 2 !important; grid-row: span 2 !important; }
.programs-card:nth-child(2), .programs-card:nth-child(5), .programs-card:nth-child(6) { grid-column: span 2 !important; }
.programs-card:nth-child(1) h3 { font-size: 1.5rem !important; }
@media (max-width: 991px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr) !important; grid-auto-rows: auto !important; }
  .programs-card:nth-child(n) { grid-column: auto !important; grid-row: auto !important; }
  .programs-card:nth-child(1) { grid-column: span 2 !important; }
}
@media (max-width: 576px) {
  .programs-grid { grid-template-columns: 1fr !important; }
  .programs-card:nth-child(1) { grid-column: auto !important; }
}
.news-grid { grid-auto-flow: dense; }
.news-card:first-child { grid-column: span 2 !important; grid-row: span 2 !important; }
.news-card:first-child .bc-img img { height: 100%; min-height: 300px; object-fit: cover; }
@media (max-width: 991px) { .news-card:first-child { grid-column: auto !important; grid-row: auto !important; } }
.counter-grid { position: relative; }
.counter-grid::before { content: ''; position: absolute; inset: -1px; border-radius: 22px; padding: 1px; background: linear-gradient(120deg, transparent 30%, var(--accent) 50%, transparent 70%); background-size: 200% 100%; animation: borderFlow 5s linear infinite; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
@keyframes borderFlow { to { background-position: 200% 0; } }
.testimonial-grid .testimonial-card:nth-child(odd) { transform: rotate(-1.2deg); }
.testimonial-grid .testimonial-card:nth-child(even) { transform: rotate(1.2deg); }
.testimonial-grid .testimonial-card:hover { transform: rotate(0deg) translateY(-8px) !important; }
.gallery-item img { transition: transform .8s cubic-bezier(.16,1,.3,1), filter .5s; }
.gallery-item:hover img { transform: scale(1.1); }

/* ===== PREMIUM v9: INNER PAGES ===== */

/* BANNER */
.page-banner { position: relative; padding: 120px 0 110px !important; overflow: hidden; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%); background-size: 200% auto; animation: pageBannerGrad 10s linear infinite; }
@keyframes pageBannerGrad { to { background-position: 200% center; } }
.page-banner::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 70px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path d='M0,64 C240,96 480,112 720,96 C960,80 1200,48 1440,64 L1440,120 L0,120 Z' fill='%23f8fafc'/></svg>") no-repeat bottom / 100% 100%; pointer-events: none; z-index: 2; }
[data-theme="dark"] .page-banner::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path d='M0,64 C240,96 480,112 720,96 C960,80 1200,48 1440,64 L1440,120 L0,120 Z' fill='%230b1220'/></svg>"); }
.page-banner-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1.1rem; background: rgba(255,255,255,.18); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: .8rem; font-weight: 600; border-radius: 50px; margin-bottom: 1.2rem; letter-spacing: .5px; }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; margin-bottom: .8rem; text-shadow: 0 4px 24px rgba(0,0,0,.25); }
.page-banner h1 .text-gradient { background-image: linear-gradient(90deg, #fff 0%, var(--accent-glow) 50%, #fff 100%) !important; background-size: 200% auto; animation: ppText 5s linear infinite; }
.page-banner p { color: rgba(255,255,255,.88); font-size: 1.05rem; max-width: 680px; }

/* BREADCRUMB */
.sp-breadcrumb { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1.1rem; background: var(--surface); border: 1px solid var(--border); border-radius: 50px; font-size: .82rem; margin-bottom: 1.5rem; box-shadow: 0 4px 18px rgba(0,0,0,.06); }
.sp-breadcrumb a { color: var(--text-soft); text-decoration: none; transition: color .2s; }
.sp-breadcrumb a:hover { color: var(--primary); }
.sp-breadcrumb i { color: var(--text-muted); font-size: .65rem; }
.sp-breadcrumb span { color: var(--text); font-weight: 600; }

/* ARTICLE */
.sp-article { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 2.5rem; box-shadow: 0 20px 50px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s; }
.sp-article:hover { box-shadow: 0 28px 70px rgba(0,0,0,.12); }
.sp-top h1 { font-size: 2.1rem; font-weight: 800; color: var(--text); line-height: 1.25; margin-bottom: 1rem; }
.sp-top .lead { color: var(--text-soft); font-size: 1.1rem; font-style: italic; border-left: 4px solid var(--accent); padding-left: 1rem; margin-top: 1rem !important; }
.sp-meta { display: flex; gap: 1.2rem; color: var(--text-muted); font-size: .85rem; margin-top: .5rem; }
.sp-meta i { color: var(--accent); margin-right: .35rem; }
.sp-cover { margin: 2rem 0; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.15); position: relative; }
.sp-cover img { width: 100%; display: block; transition: transform .8s; }
.sp-cover:hover img { transform: scale(1.03); }
.sp-body { color: var(--text); font-size: 1.02rem; line-height: 1.85; }
.sp-body h2, .sp-body h3, .sp-body h4 { color: var(--primary); margin-top: 1.8rem; margin-bottom: .8rem; font-weight: 700; }
.sp-body p { margin-bottom: 1.1rem; }
.sp-body ul, .sp-body ol { padding-left: 1.2rem; margin-bottom: 1.2rem; }
.sp-body ul li { position: relative; list-style: none; padding-left: 1.6rem; margin-bottom: .5rem; }
.sp-body ul li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 1.3rem; height: 1.3rem; background: var(--accent); color: #fff; border-radius: 50%; font-size: .7rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.sp-body img { max-width: 100%; border-radius: 12px; margin: 1rem 0; }
.sp-body blockquote { background: var(--accent-glow); border-left: 4px solid var(--accent); padding: 1.2rem 1.5rem; border-radius: 8px; font-style: italic; margin: 1.5rem 0; color: var(--text); }

/* SHARE BUTTONS */
.sp-share { display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.sp-share > span { color: var(--text-soft); font-weight: 600; font-size: .9rem; }
.sp-share a { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--text-soft); text-decoration: none; transition: all .3s; }
.sp-share a:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,.15); }
.sp-share a:nth-child(2):hover { background: #1877f2; border-color: #1877f2; }
.sp-share a:nth-child(3):hover { background: #1da1f2; border-color: #1da1f2; }
.sp-share a:nth-child(4):hover { background: #25d366; border-color: #25d366; }
.sp-share a:nth-child(5):hover { background: #0088cc; border-color: #0088cc; }
.sp-share a:nth-child(6):hover { background: var(--primary); border-color: var(--primary); }

/* SIDEBAR WIDGET */
.ns-widget { background: color-mix(in srgb, var(--surface) 70%, transparent); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: 18px; padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,.05); }
.ns-widget h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; padding-bottom: .7rem; border-bottom: 2px solid var(--border); position: relative; }
.ns-widget h3::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 40%; height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.ns-search { position: relative; }
.ns-search input { width: 100%; padding: .85rem 3rem .85rem 1rem; border-radius: 50px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: .9rem; transition: .3s; }
.ns-search input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--accent-glow); }
.ns-search button { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: var(--primary); border: 0; color: #fff; cursor: pointer; transition: .3s; }
.ns-search button:hover { background: var(--primary-dark); }

/* CATEGORIES */
.ns-categories a { display: flex; justify-content: space-between; align-items: center; padding: .7rem .9rem; border-radius: 10px; color: var(--text); text-decoration: none; margin-bottom: .35rem; transition: .25s; font-size: .92rem; }
.ns-categories a:hover, .ns-categories a.active { background: var(--accent-glow); color: var(--primary); transform: translateX(4px); }
.ns-categories a span { background: var(--surface); color: var(--text-soft); font-size: .75rem; padding: .2rem .6rem; border-radius: 50px; border: 1px solid var(--border); font-weight: 600; }

/* RECENT NEWS */
.nsr-item { display: flex; gap: .9rem; padding: .85rem 0; border-bottom: 1px dashed var(--border); }
.nsr-item:last-child { border-bottom: 0; padding-bottom: 0; }
.nsr-item img { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.nsr-item h4 { font-size: .88rem; font-weight: 600; margin: 0 0 .3rem; line-height: 1.35; }
.nsr-item h4 a { color: var(--text); text-decoration: none; transition: color .2s; }
.nsr-item h4 a:hover { color: var(--primary); }
.nsr-item span { font-size: .75rem; color: var(--text-muted); }

/* TAGS */
.ns-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.ns-tags a { padding: .35rem .85rem; background: var(--surface); border: 1px solid var(--border); border-radius: 50px; color: var(--text-soft); font-size: .78rem; text-decoration: none; transition: .25s; }
.ns-tags a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ARCHIVE */
.ns-archive a { display: flex; justify-content: space-between; padding: .55rem 0; color: var(--text); text-decoration: none; border-bottom: 1px dashed var(--border); font-size: .9rem; transition: color .2s; }
.ns-archive a:last-child { border-bottom: 0; }
.ns-archive a:hover, .ns-archive a.active { color: var(--primary); }
.ns-archive a span { color: var(--text-muted); font-size: .8rem; }

/* SOCIAL */
.ns-social { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.ns-social a { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); color: var(--text-soft); text-decoration: none; font-size: 1.1rem; transition: .3s; }
.ns-social a:hover { transform: translateY(-3px); color: #fff; }
.ns-social a:nth-child(1):hover { background: #1877f2; }
.ns-social a:nth-child(2):hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ns-social a:nth-child(3):hover { background: #ff0000; }
.ns-social a:nth-child(4):hover { background: #000; }

/* NEWS FILTER */
.news-filter { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2rem; padding: .5rem; background: color-mix(in srgb, var(--surface) 60%, transparent); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: 18px; }
.nf-btn { padding: .55rem 1.2rem; background: transparent; border: 1px solid transparent; border-radius: 50px; color: var(--text-soft); text-decoration: none; font-size: .85rem; font-weight: 600; transition: .25s; }
.nf-btn:hover { color: var(--primary); background: var(--accent-glow); }
.nf-btn.active { background: var(--primary); color: #fff; box-shadow: 0 6px 18px var(--accent-glow); }

/* NEWS GRID */
.news-grid { gap: 1.6rem !important; }
.news-card { border-radius: 18px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,.08); transition: .4s cubic-bezier(.16,1,.3,1); }
.news-card:hover { transform: translateY(-10px); box-shadow: 0 28px 70px rgba(0,0,0,.15); border-color: var(--primary-light); }
.news-card .bc-img { overflow: hidden; }
.news-card .bc-img img { transition: transform .6s; }
.news-card:hover .bc-img img { transform: scale(1.08); }
.news-card .bc-cat { background: var(--primary); color: #fff; padding: .3rem .85rem; border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .5px; }
.news-card .bc-link { color: var(--primary); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; transition: gap .25s; }
.news-card .bc-link:hover { gap: .8rem; }

/* PAGINATION */
.news-pagination { margin-top: 2.5rem; }
.news-pagination nav ul { display: flex; justify-content: center; gap: .4rem; list-style: none; padding: 0; flex-wrap: wrap; }
.news-pagination nav ul li a, .news-pagination nav ul li span { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 1rem; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); color: var(--text); text-decoration: none; font-weight: 600; font-size: .9rem; transition: .25s; }
.news-pagination nav ul li a:hover { background: var(--accent-glow); color: var(--primary); border-color: var(--primary-light); transform: translateY(-2px); }
.news-pagination nav ul li.active span, .news-pagination nav ul li.active a { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 6px 18px var(--accent-glow); }

/* RESPONSIVE */
@media (max-width: 991px) {
  .page-banner { padding: 90px 0 80px !important; }
  .sp-article { padding: 1.5rem; }
  .sp-top h1 { font-size: 1.6rem; }
}
@media (max-width: 576px) {
  .news-filter { padding: .4rem; }
  .nf-btn { font-size: .78rem; padding: .45rem .9rem; }
}


/* ===== PREMIUM v10: PHOTO BANNER + WATERMARK ===== */
.pb-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: .30; animation: pbZoom 20s ease-in-out infinite alternate; }
[data-theme="dark"] .pb-bg { opacity: .22; }
@keyframes pbZoom { to { transform: scale(1.15); } }
.pb-ghost { position: absolute; right: 2rem; bottom: -1.2rem; z-index: 1; font-size: clamp(4rem, 12vw, 9rem); font-weight: 800; letter-spacing: .05em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.18); pointer-events: none; text-transform: uppercase; white-space: nowrap; }
.page-banner-shape { z-index: 1; }
.page-banner-content { position: relative; z-index: 2; }

/* ===== v10b: BANNER LEBIH TERANG ===== */
.pb-bg { opacity: .55 !important; filter: saturate(1.15) brightness(1.08); }
[data-theme="dark"] .pb-bg { opacity: .45 !important; filter: saturate(1.1) brightness(.95); }

/* ===== PREMIUM v11: DOWNLOADS, CONTACT, SINGLE_POST ===== */

/* ===== DOWNLOADS ===== */
.download-group { margin-bottom: 3rem; }
.download-group-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--border); }
.download-group-header i { font-size: 1.8rem; color: var(--primary); }
.download-group-header h2 { font-size: 1.4rem; font-weight: 700; color: var(--text); margin: 0; flex: 1; }
.download-group-count { background: var(--accent-glow); color: var(--primary); padding: .4rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 600; }
.download-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.2rem; }
.download-card { display: flex; align-items: center; gap: 1rem; padding: 1.3rem; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; text-decoration: none; color: var(--text); transition: all .35s cubic-bezier(.16,1,.3,1); box-shadow: 0 6px 20px rgba(0,0,0,.05); }
.download-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px var(--accent-glow); border-color: var(--primary-light); }
.dc-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; font-size: 1.4rem; box-shadow: 0 8px 20px var(--accent-glow); }
.dc-body { flex: 1; min-width: 0; }
.dc-body h3 { font-size: 1rem; font-weight: 700; margin: 0 0 .3rem; color: var(--text); line-height: 1.35; }
.dc-body p { font-size: .82rem; color: var(--text-soft); margin: 0; line-height: 1.5; }
.dc-meta { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; flex-shrink: 0; }
.dc-size { font-size: .72rem; color: var(--text-muted); }
.dc-size i { margin-right: .2rem; color: var(--primary); }
.dc-download { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85rem; transition: .3s; }
.download-card:hover .dc-download { background: var(--accent); transform: scale(1.15) rotate(-10deg); }
@media (max-width: 576px) {
  .download-list { grid-template-columns: 1fr; }
  .download-card { flex-wrap: wrap; }
  .dc-meta { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info { display: grid; gap: 1.1rem; }
.ki-card { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.5rem; background: color-mix(in srgb, var(--surface) 75%, transparent); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: 18px; transition: all .35s; box-shadow: 0 6px 20px rgba(0,0,0,.05); }
.ki-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px var(--accent-glow); border-color: var(--primary-light); }
.ki-card > i { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; font-size: 1.2rem; box-shadow: 0 6px 16px var(--accent-glow); }
.ki-card h4 { font-size: .95rem; font-weight: 700; color: var(--text); margin: 0 0 .3rem; }
.ki-card p { font-size: .88rem; color: var(--text-soft); margin: 0; line-height: 1.55; }
.contact-form { padding: 2rem; background: color-mix(in srgb, var(--surface) 85%, transparent); backdrop-filter: blur(14px); border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,.08); position: relative; }
.contact-form::before { content: ''; position: absolute; inset: -1px; border-radius: 20px; padding: 1px; background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-light)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .4; pointer-events: none; }
.form-row { margin-bottom: 1rem; }
.form-row input, .form-row textarea { width: 100%; padding: .95rem 1.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; color: var(--text); font-size: .92rem; font-family: inherit; transition: .3s; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--accent-glow); transform: translateY(-1px); }
.form-row textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-primary { width: 100%; padding: 1rem; font-size: 1rem; font-weight: 700; border-radius: 12px; }
@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== SINGLE POST (Detail Berita) ===== */
.sp-related { margin: 3rem 0; padding: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 12px 35px rgba(0,0,0,.08); }
.sp-related h3 { display: flex; align-items: center; gap: .6rem; font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 0 0 1.3rem; padding-bottom: .9rem; border-bottom: 1px solid var(--border); position: relative; }
.sp-related h3::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 60px; height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.sp-related h3 i { color: var(--primary); }
.sp-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; }
.sp-related-card { display: flex; gap: 1rem; padding: 1rem; background: color-mix(in srgb, var(--surface) 90%, var(--accent-glow)); border: 1px solid var(--border); border-radius: 14px; text-decoration: none; color: var(--text); transition: all .3s; }
.sp-related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px var(--accent-glow); border-color: var(--primary-light); }
.sp-related-card img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.sp-related-card h4 { font-size: .92rem; font-weight: 600; margin: 0 0 .3rem; line-height: 1.35; color: var(--text); }
.sp-related-card span { font-size: .75rem; color: var(--text-muted); }
.sp-related-card span i { margin-right: .25rem; color: var(--primary); }

/* Comments */
.sp-comments { margin-top: 3rem; padding: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 12px 35px rgba(0,0,0,.08); }
.sp-comments-header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.8rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.sp-comments-header h3 { display: flex; align-items: center; gap: .5rem; font-size: 1.2rem; font-weight: 700; margin: 0; color: var(--text); }
.sp-comments-header h3 i { color: var(--primary); }
.sp-comments-header span { font-size: .85rem; color: var(--text-soft); }
.sp-comment-list { margin-bottom: 2rem; }
.spc-item { display: flex; gap: 1rem; padding: 1.3rem; margin-bottom: .8rem; background: color-mix(in srgb, var(--surface) 95%, var(--accent-glow)); border: 1px solid var(--border); border-radius: 14px; transition: .3s; }
.spc-item:hover { box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.spc-reply-item { margin-left: 3rem; }
.spc-item > img { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.spc-item > div { flex: 1; }
.spc-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .4rem; flex-wrap: wrap; }
.spc-head strong { font-size: .95rem; color: var(--text); }
.spc-head span { font-size: .75rem; color: var(--text-muted); }
.spc-item > div > p { font-size: .9rem; color: var(--text-soft); margin: 0 0 .6rem; line-height: 1.6; }
.spc-reply { background: transparent; border: 1px solid var(--border); color: var(--primary); padding: .35rem .85rem; border-radius: 50px; font-size: .75rem; font-weight: 600; cursor: pointer; transition: .25s; }
.spc-reply:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.sp-comment-form h3 { display: flex; align-items: center; gap: .5rem; font-size: 1.15rem; font-weight: 700; margin: 0 0 1.3rem; color: var(--text); }
.sp-comment-form h3 i { color: var(--primary); }
.spcf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.spcf-row input, .sp-comment-form textarea { width: 100%; padding: .85rem 1.1rem; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: .9rem; font-family: inherit; transition: .3s; }
.spcf-row input:focus, .sp-comment-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--accent-glow); }
.sp-comment-form textarea { min-height: 120px; resize: vertical; margin-bottom: 1rem; }
.spcf-check { margin-bottom: 1.2rem; }
.spcf-check label { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--text-soft); cursor: pointer; }
.spcf-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary); }
@media (max-width: 576px) {
  .sp-related-grid { grid-template-columns: 1fr; }
  .spc-reply-item { margin-left: 1.5rem; }
  .spcf-row { grid-template-columns: 1fr; }
  .sp-comments, .sp-related { padding: 1.3rem; }
}

/* Nav Post */
.sp-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.sp-nav a { padding: 1.2rem 1.4rem; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; text-decoration: none; color: var(--text); transition: .3s; display: flex; align-items: center; gap: 1rem; }
.sp-nav a:hover { transform: translateY(-4px); box-shadow: 0 15px 35px var(--accent-glow); border-color: var(--primary-light); }
.sp-nav a > i { font-size: 1.1rem; color: var(--primary); flex-shrink: 0; }
.sp-nav a > div { flex: 1; }
.sp-nav a span { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: .25rem; }
.sp-nav a h4 { font-size: .95rem; font-weight: 600; margin: 0; color: var(--text); line-height: 1.35; }
.sp-nav-prev { justify-content: flex-start; }
.sp-nav-next { justify-content: flex-end; text-align: right; }
@media (max-width: 768px) {
  .sp-nav { grid-template-columns: 1fr; }
}

/* Photo Banner untuk 3 halaman */
.pb-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: .55; filter: saturate(1.15) brightness(1.08); animation: pbZoom 20s ease-in-out infinite alternate; }
[data-theme="dark"] .pb-bg { opacity: .45 !important; filter: saturate(1.1) brightness(.95); }
.pb-ghost { position: absolute; right: 2rem; bottom: -1.2rem; z-index: 1; font-size: clamp(4rem, 12vw, 9rem); font-weight: 800; letter-spacing: .05em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.18); pointer-events: none; text-transform: uppercase; white-space: nowrap; }
.page-banner-shape { z-index: 1; }
.page-banner-content { position: relative; z-index: 2; }

/* ===== PREMIUM v11: DOWNLOADS, CONTACT, SINGLE_POST ===== */

/* ===== DOWNLOADS ===== */
.download-group { margin-bottom: 3rem; }
.download-group-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--border); }
.download-group-header i { font-size: 1.8rem; color: var(--primary); }
.download-group-header h2 { font-size: 1.4rem; font-weight: 700; color: var(--text); margin: 0; flex: 1; }
.download-group-count { background: var(--accent-glow); color: var(--primary); padding: .4rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 600; }
.download-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.2rem; }
.download-card { display: flex; align-items: center; gap: 1rem; padding: 1.3rem; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; text-decoration: none; color: var(--text); transition: all .35s cubic-bezier(.16,1,.3,1); box-shadow: 0 6px 20px rgba(0,0,0,.05); }
.download-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px var(--accent-glow); border-color: var(--primary-light); }
.dc-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; font-size: 1.4rem; box-shadow: 0 8px 20px var(--accent-glow); }
.dc-body { flex: 1; min-width: 0; }
.dc-body h3 { font-size: 1rem; font-weight: 700; margin: 0 0 .3rem; color: var(--text); line-height: 1.35; }
.dc-body p { font-size: .82rem; color: var(--text-soft); margin: 0; line-height: 1.5; }
.dc-meta { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; flex-shrink: 0; }
.dc-size { font-size: .72rem; color: var(--text-muted); }
.dc-size i { margin-right: .2rem; color: var(--primary); }
.dc-download { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85rem; transition: .3s; }
.download-card:hover .dc-download { background: var(--accent); transform: scale(1.15) rotate(-10deg); }
@media (max-width: 576px) {
  .download-list { grid-template-columns: 1fr; }
  .download-card { flex-wrap: wrap; }
  .dc-meta { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info { display: grid; gap: 1.1rem; }
.ki-card { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.5rem; background: color-mix(in srgb, var(--surface) 75%, transparent); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: 18px; transition: all .35s; box-shadow: 0 6px 20px rgba(0,0,0,.05); }
.ki-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px var(--accent-glow); border-color: var(--primary-light); }
.ki-card > i { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; font-size: 1.2rem; box-shadow: 0 6px 16px var(--accent-glow); }
.ki-card h4 { font-size: .95rem; font-weight: 700; color: var(--text); margin: 0 0 .3rem; }
.ki-card p { font-size: .88rem; color: var(--text-soft); margin: 0; line-height: 1.55; }
.contact-form { padding: 2rem; background: color-mix(in srgb, var(--surface) 85%, transparent); backdrop-filter: blur(14px); border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,.08); position: relative; }
.contact-form::before { content: ''; position: absolute; inset: -1px; border-radius: 20px; padding: 1px; background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-light)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .4; pointer-events: none; }
.form-row { margin-bottom: 1rem; }
.form-row input, .form-row textarea { width: 100%; padding: .95rem 1.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; color: var(--text); font-size: .92rem; font-family: inherit; transition: .3s; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--accent-glow); transform: translateY(-1px); }
.form-row textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-primary { width: 100%; padding: 1rem; font-size: 1rem; font-weight: 700; border-radius: 12px; }
@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== SINGLE POST (Detail Berita) ===== */
.sp-related { margin: 3rem 0; padding: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 12px 35px rgba(0,0,0,.08); }
.sp-related h3 { display: flex; align-items: center; gap: .6rem; font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 0 0 1.3rem; padding-bottom: .9rem; border-bottom: 1px solid var(--border); position: relative; }
.sp-related h3::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 60px; height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.sp-related h3 i { color: var(--primary); }
.sp-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; }
.sp-related-card { display: flex; gap: 1rem; padding: 1rem; background: color-mix(in srgb, var(--surface) 90%, var(--accent-glow)); border: 1px solid var(--border); border-radius: 14px; text-decoration: none; color: var(--text); transition: all .3s; }
.sp-related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px var(--accent-glow); border-color: var(--primary-light); }
.sp-related-card img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.sp-related-card h4 { font-size: .92rem; font-weight: 600; margin: 0 0 .3rem; line-height: 1.35; color: var(--text); }
.sp-related-card span { font-size: .75rem; color: var(--text-muted); }
.sp-related-card span i { margin-right: .25rem; color: var(--primary); }

/* Comments */
.sp-comments { margin-top: 3rem; padding: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 12px 35px rgba(0,0,0,.08); }
.sp-comments-header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.8rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.sp-comments-header h3 { display: flex; align-items: center; gap: .5rem; font-size: 1.2rem; font-weight: 700; margin: 0; color: var(--text); }
.sp-comments-header h3 i { color: var(--primary); }
.sp-comments-header span { font-size: .85rem; color: var(--text-soft); }
.sp-comment-list { margin-bottom: 2rem; }
.spc-item { display: flex; gap: 1rem; padding: 1.3rem; margin-bottom: .8rem; background: color-mix(in srgb, var(--surface) 95%, var(--accent-glow)); border: 1px solid var(--border); border-radius: 14px; transition: .3s; }
.spc-item:hover { box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.spc-reply-item { margin-left: 3rem; }
.spc-item > img { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.spc-item > div { flex: 1; }
.spc-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .4rem; flex-wrap: wrap; }
.spc-head strong { font-size: .95rem; color: var(--text); }
.spc-head span { font-size: .75rem; color: var(--text-muted); }
.spc-item > div > p { font-size: .9rem; color: var(--text-soft); margin: 0 0 .6rem; line-height: 1.6; }
.spc-reply { background: transparent; border: 1px solid var(--border); color: var(--primary); padding: .35rem .85rem; border-radius: 50px; font-size: .75rem; font-weight: 600; cursor: pointer; transition: .25s; }
.spc-reply:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.sp-comment-form h3 { display: flex; align-items: center; gap: .5rem; font-size: 1.15rem; font-weight: 700; margin: 0 0 1.3rem; color: var(--text); }
.sp-comment-form h3 i { color: var(--primary); }
.spcf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.spcf-row input, .sp-comment-form textarea { width: 100%; padding: .85rem 1.1rem; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: .9rem; font-family: inherit; transition: .3s; }
.spcf-row input:focus, .sp-comment-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--accent-glow); }
.sp-comment-form textarea { min-height: 120px; resize: vertical; margin-bottom: 1rem; }
.spcf-check { margin-bottom: 1.2rem; }
.spcf-check label { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--text-soft); cursor: pointer; }
.spcf-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary); }
@media (max-width: 576px) {
  .sp-related-grid { grid-template-columns: 1fr; }
  .spc-reply-item { margin-left: 1.5rem; }
  .spcf-row { grid-template-columns: 1fr; }
  .sp-comments, .sp-related { padding: 1.3rem; }
}

/* Nav Post */
.sp-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.sp-nav a { padding: 1.2rem 1.4rem; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; text-decoration: none; color: var(--text); transition: .3s; display: flex; align-items: center; gap: 1rem; }
.sp-nav a:hover { transform: translateY(-4px); box-shadow: 0 15px 35px var(--accent-glow); border-color: var(--primary-light); }
.sp-nav a > i { font-size: 1.1rem; color: var(--primary); flex-shrink: 0; }
.sp-nav a > div { flex: 1; }
.sp-nav a span { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: .25rem; }
.sp-nav a h4 { font-size: .95rem; font-weight: 600; margin: 0; color: var(--text); line-height: 1.35; }
.sp-nav-prev { justify-content: flex-start; }
.sp-nav-next { justify-content: flex-end; text-align: right; }
@media (max-width: 768px) {
  .sp-nav { grid-template-columns: 1fr; }
}

/* Photo Banner untuk 3 halaman */
.pb-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: .55; filter: saturate(1.15) brightness(1.08); animation: pbZoom 20s ease-in-out infinite alternate; }
[data-theme="dark"] .pb-bg { opacity: .45 !important; filter: saturate(1.1) brightness(.95); }
.pb-ghost { position: absolute; right: 2rem; bottom: -1.2rem; z-index: 1; font-size: clamp(4rem, 12vw, 9rem); font-weight: 800; letter-spacing: .05em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.18); pointer-events: none; text-transform: uppercase; white-space: nowrap; }
.page-banner-shape { z-index: 1; }
.page-banner-content { position: relative; z-index: 2; }

/* ===== v11b: BANNER BERSIH + FOTO TERANG ===== */
.page-banner-shape { display: none !important; }
.pb-bg { opacity: .8 !important; filter: saturate(1.2) brightness(1.12); }
[data-theme="dark"] .pb-bg { opacity: .7 !important; filter: saturate(1.1) brightness(1); }
.page-banner::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.35)); pointer-events: none; }

/* ===== v11c: FOTO FULL TERANG ===== */
.pb-bg { opacity: 1 !important; filter: saturate(1.25) brightness(1.15) contrast(1.02); }
[data-theme="dark"] .pb-bg { opacity: 1 !important; filter: saturate(1.15) brightness(.95); }
.page-banner::before { background: linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.32)) !important; }

/* ===== v12: HERO BERANDA LEBIH TERANG ===== */
.hero-bg-slide { opacity: 1 !important; filter: saturate(1.2) brightness(1.1); }
.hero-bg-slide.active { opacity: 1 !important; }
.hero-bg::after { background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.30) 55%, var(--bg) 100%) !important; }
