/* FILE: assets/css/index.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --color-primary: #6B9BD1;
    --color-secondary: #5BB3A0;
    --color-accent-warm: #F4A583;
    --color-light-cream: #F5F3FF;
    --color-white: #FFFFFF;
    --color-text-dark: #2C3E50;
    --color-text-muted: #6B7280;
    --shadow-soft-sm: 0 4px 15px rgba(107, 155, 209, 0.08);
    --shadow-soft-md: 0 8px 28px rgba(107, 155, 209, 0.12);
    --shadow-soft-lg: 0 12px 45px rgba(107, 155, 209, 0.15);
    --shadow-inset: inset 0 2px 8px rgba(255, 255, 255, 0.5), inset 0 -2px 8px rgba(107, 155, 209, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-ease: all 0.3s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'DM Sans', sans-serif; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { background: linear-gradient(135deg, var(--color-light-cream) 0%, #FBF8FF 100%); color: var(--color-text-dark); line-height: 1.6; overflow-x: hidden; min-height: 100vh; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, .font-heading { font-family: 'Outfit', sans-serif; font-weight: 700; letter-spacing: -0.01em; }
a { text-decoration: none; transition: var(--transition-smooth); color: inherit; }

.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(245, 243, 255, 0.85); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); padding: 14px 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(107, 155, 209, 0.1); box-shadow: var(--shadow-soft-sm); }
.nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-brand img { height: 48px; width: auto; max-width: 150px; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(107, 155, 209, 0.15)); }
.nav-brand-text { display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.nav-brand-title { font-size: 25px; font-weight: 800; color: var(--color-text-dark); letter-spacing: 1.2px; line-height: 1; font-family: 'Outfit', sans-serif; }
.nav-brand-title span { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-brand-tagline { font-size: 11px; font-weight: 700; color: #64748B; letter-spacing: 1.8px; text-transform: uppercase; line-height: 1; }

.btn-navbar-ppid { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: var(--color-white); padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 15px rgba(91, 179, 160, 0.25); transition: var(--transition-smooth); border: 1px solid rgba(255,255,255,0.4); text-decoration: none; }
.btn-navbar-ppid:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(91, 179, 160, 0.4); color: var(--color-white); }

.hero { padding: 110px 5% 30px; min-height: auto; background: transparent; display: flex; flex-direction: column; align-items: center; gap: 0; position: relative; overflow: hidden; max-width: 900px; margin: 0 auto; }
.hero::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(107, 155, 209, 0.08) 0%, transparent 70%); border-radius: 45% 55% 52% 48% / 48% 45% 55% 52%; top: -100px; right: 10%; animation: float-shape-1 8s ease-in-out infinite; z-index: 0; }
.hero::after { content: ''; position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(91, 179, 160, 0.06) 0%, transparent 70%); border-radius: 52% 48% 45% 55% / 55% 52% 48% 45%; bottom: -80px; left: 5%; animation: float-shape-2 10s ease-in-out infinite; z-index: 0; }

.hero-image { order: 1; width: 100%; text-align: center; position: relative; z-index: 2; animation: slide-in-right 0.8s ease-out 0.2s both; }
.hero-image-wrapper { position: relative; width: 100%; max-width: 680px; height: 310px; margin: 0 auto; border-radius: 0 0 28px 28px; box-shadow: var(--shadow-soft-md); overflow: hidden; }
.hero-media { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 0 0 28px 28px; object-fit: cover; opacity: 0; visibility: hidden; transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out; z-index: 1; }
.hero-media.active { opacity: 1; visibility: visible; z-index: 2; }

.hero-text { order: 2; margin-top: -28px; position: relative; z-index: 10; width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; animation: slide-in-left 0.8s ease-out; }
.badge, .hero-desc, .desktop-br { display: none; }
.hero-title { background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(16px); padding: 14px 36px; border-radius: 50px; box-shadow: 0 8px 24px rgba(107, 155, 209, 0.18); border: 1px solid rgba(255, 255, 255, 0.9); font-size: 21px; margin-bottom: 10px; text-align: center; line-height: 1.3; color: var(--color-text-dark); font-weight: 700; letter-spacing: 0.2px; }
.hero-title span { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.section { padding: 40px 5% 80px; position: relative; max-width: 1280px; margin: 0 auto; }

.grid-menu-app { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; width: 100%; margin: 0 auto; }
.menu-box { background: var(--color-white); padding: 26px 12px; border-radius: 22px; box-shadow: var(--shadow-soft-sm); transition: var(--transition-smooth); border: 1px solid rgba(107, 155, 209, 0.08); position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer; height: 100%; justify-content: flex-start; }
.menu-box::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(107, 155, 209, 0.03), rgba(91, 179, 160, 0.03)); opacity: 0; transition: var(--transition-smooth); z-index: 0; }
.menu-box:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft-lg); border-color: rgba(107, 155, 209, 0.25); }
.menu-box:hover::before { opacity: 1; }
.menu-icon { width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; transition: var(--transition-smooth); position: relative; z-index: 1; box-shadow: 0 6px 18px rgba(0,0,0,0.04); flex-shrink: 0; }
.menu-box:hover .menu-icon { transform: scale(1.12) rotate(-5deg); }

.premium-layanan { border: 2px solid transparent; background-image: linear-gradient(var(--color-white), var(--color-white)), linear-gradient(135deg, var(--color-primary), var(--color-secondary)); background-origin: border-box; background-clip: padding-box, border-box; box-shadow: 0 8px 30px rgba(107, 155, 209, 0.35); transform: translateY(-2px); animation: pulse-glow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite; z-index: 2; }
.premium-layanan::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(107, 155, 209, 0.05), rgba(91, 179, 160, 0.05)); z-index: 0; }
.premium-layanan .menu-icon { transform: scale(1.1); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.premium-layanan:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 15px 40px rgba(91, 179, 160, 0.4); animation: none; border: 2px solid transparent; }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 8px 30px rgba(107, 155, 209, 0.25); } 50% { box-shadow: 0 12px 40px rgba(91, 179, 160, 0.5); } }
.ribbon-utama { position: absolute; top: 16px; right: -32px; background: linear-gradient(135deg, #F4A583, #E11D48); color: var(--color-white); font-size: 10px; font-weight: 800; text-transform: uppercase; padding: 4px 35px; transform: rotate(45deg); box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3); letter-spacing: 1px; z-index: 10; }

.icon-blue { background: linear-gradient(135deg, rgba(107, 155, 209, 0.18), rgba(107, 155, 209, 0.08)); color: var(--color-primary); }
.icon-green { background: linear-gradient(135deg, rgba(91, 179, 160, 0.18), rgba(91, 179, 160, 0.08)); color: var(--color-secondary); }
.icon-warm { background: linear-gradient(135deg, rgba(244, 165, 131, 0.2), rgba(244, 165, 131, 0.08)); color: #E27D56; }
.icon-purple { background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(99, 102, 241, 0.06)); color: #6366F1; }
.icon-rose { background: linear-gradient(135deg, rgba(225, 29, 72, 0.15), rgba(225, 29, 72, 0.06)); color: #E11D48; }
.icon-amber { background: linear-gradient(135deg, rgba(217, 119, 6, 0.18), rgba(217, 119, 6, 0.06)); color: #D97706; }

.menu-box h3 { font-size: 14.5px; font-weight: 700; margin-bottom: 10px; color: var(--color-text-dark); position: relative; z-index: 1; line-height: 1.3; }
.menu-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-text-muted); background: rgba(107, 155, 209, 0.08); padding: 4px 12px; border-radius: 50px; position: relative; z-index: 1; transition: var(--transition-ease); margin-top: auto; }
.menu-box:hover .menu-tag { background: var(--color-primary); color: var(--color-white); }
.saera-identity { margin-top: 8px; background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: var(--color-white); font-size: 10px; font-weight: 800; font-family: 'Outfit', sans-serif; letter-spacing: 1.5px; padding: 4px 14px; border-radius: 50px; box-shadow: 0 4px 12px rgba(91, 179, 160, 0.25); text-transform: uppercase; position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 5px; border: 1px solid rgba(255, 255, 255, 0.5); transition: var(--transition-smooth); }
.menu-box:hover .saera-identity { transform: scale(1.05) translateY(-2px); box-shadow: 0 6px 16px rgba(91, 179, 160, 0.4); }

.row-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; align-items: stretch; }
.row-full { margin-bottom: 24px; width: 100%; }
.profil-teks-box p { font-size: 14.5px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 12px; text-align: justify; }

.html-content { font-size: 14.5px; line-height: 1.8; color: var(--color-text-muted); text-align: justify; }
.html-content p { margin-bottom: 12px; }
.html-content h1, .html-content h2, .html-content h3, .html-content h4, .html-content h5, .html-content h6 { color: var(--color-text-dark); margin-top: 20px; margin-bottom: 10px; font-family: 'Outfit', sans-serif; }
.html-content ul, .html-content ol { margin-left: 25px; margin-bottom: 15px; }
.html-content li { margin-bottom: 6px; padding-left: 5px; }
.html-content blockquote { border-left: 4px solid var(--color-primary); padding-left: 15px; font-style: italic; color: #64748B; background: #F8FAFC; padding: 15px; border-radius: 0 8px 8px 0; margin-bottom: 20px;}
.html-content a { color: var(--color-primary); text-decoration: underline; }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.65); backdrop-filter: blur(6px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.3s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box { background: var(--color-white); width: 90%; max-width: 700px; max-height: 85vh; border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); transform: translateY(30px) scale(0.95); transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(107, 155, 209, 0.15); }
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }
.modal-header { padding: 20px 24px; border-bottom: 1px solid rgba(107, 155, 209, 0.1); display: flex; justify-content: space-between; align-items: center; background: #F8FAFC; }
.modal-header h3 { font-size: 18px; font-weight: 700; color: var(--color-text-dark); display: flex; align-items: center; gap: 10px; margin: 0; font-family: 'Outfit', sans-serif;}
.modal-close { background: #FEE2E2; color: #E11D48; border: none; width: 32px; height: 32px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s; font-size: 16px; outline: none; }
.modal-close:hover { background: #E11D48; color: var(--color-white); }
.modal-body { padding: 24px; overflow-y: auto; }
.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-thumb { background: rgba(107, 155, 209, 0.3); border-radius: 10px; }

.yt-facade { position: relative; width: 100%; height: auto; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; background: #000;}
.yt-facade img { width: 100%; aspect-ratio: 16 / 9; max-height: none !important; object-fit: cover; border-radius: 18px; flex-shrink: 0; opacity: 0.85; transition: 0.4s ease;}
.yt-facade:hover img { opacity: 1; transform: scale(1.02); }
.yt-play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #E11D48; font-size: 65px; z-index: 2; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); transition: 0.3s; pointer-events: none;}
.yt-facade:hover .yt-play-icon { color: #FF0000; transform: translate(-50%, -50%) scale(1.15); filter: drop-shadow(0 4px 15px rgba(255,0,0,0.6)); }

.info-utama-section { padding: 0 5% 80px; max-width: 1280px; margin: 0 auto; }
.info-utama-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.info-col { background: var(--color-white); border-radius: 22px; padding: 28px 24px; box-shadow: var(--shadow-soft-sm); border: 1px solid rgba(107, 155, 209, 0.08); transition: var(--transition-smooth); display: flex; flex-direction: column; }
.info-col:hover { box-shadow: var(--shadow-soft-lg); border-color: rgba(107, 155, 209, 0.25); transform: translateY(-5px); }
.info-col-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: var(--color-text-dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid rgba(107, 155, 209, 0.15); display: flex; align-items: center; gap: 10px; }
.info-col-title i { color: var(--color-primary); }

.kades-profile { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.kades-profile img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 3px solid var(--color-light-cream); box-shadow: var(--shadow-soft-sm); }
.kades-info h4 { font-size: 15px; color: var(--color-text-dark); margin-bottom: 2px; line-height: 1.3; }
.kades-info span { font-size: 11px; font-weight: 700; color: var(--color-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
.kades-sambutan { font-size: 13.5px; color: var(--color-text-muted); line-height: 1.7; text-align: justify; margin-bottom: 12px; }
.kades-motto-box { margin-top: auto; padding-top: 10px; }
.kades-motto { background: linear-gradient(135deg, rgba(91, 179, 160, 0.12), rgba(107, 155, 209, 0.08)); border: 1px dashed rgba(91, 179, 160, 0.4); padding: 14px 16px; border-radius: 14px; display: flex; align-items: center; gap: 12px; }
.kades-motto i { font-size: 24px; color: var(--color-secondary); flex-shrink: 0; }
.kades-motto-text h5 { font-size: 13px; color: var(--color-text-dark); font-weight: 700; margin-bottom: 2px; }
.kades-motto-text p { font-size: 11.5px; color: var(--color-text-muted); line-height: 1.4; margin: 0; }

.stat-chart-box { background: var(--color-light-cream); padding: 16px; border-radius: 16px; margin-bottom: 16px; border: 1px solid rgba(107, 155, 209, 0.1); }
.stat-chart-title { font-size: 13px; font-weight: 700; color: var(--color-text-dark); margin-bottom: 10px; display: flex; justify-content: space-between; }
.stat-progress-bg { width: 100%; height: 14px; background: rgba(225, 29, 72, 0.25); border-radius: 50px; overflow: hidden; display: flex; box-shadow: inset 0 2px 4px rgba(0,0,0,0.06); }
.stat-progress-fill { height: 100%; background: linear-gradient(90deg, var(--color-primary), #4D83C4); border-radius: 50px 0 0 50px; transition: width 1s ease-in-out; }
.stat-chart-legend { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11.5px; font-weight: 600; }
.legend-lk { color: var(--color-primary); }
.legend-pr { color: #E11D48; }

.stats-list { display: flex; flex-direction: column; gap: 12px; justify-content: center; flex-grow: 1; }
.stat-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: var(--color-light-cream); border-radius: 14px; transition: var(--transition-ease); }
.stat-item:hover { background: rgba(107, 155, 209, 0.1); }
.stat-label { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--color-text-dark); }
.stat-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.stat-value { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: var(--color-primary); }

.map-wrapper { width: 100%; height: 200px; border-radius: 14px; overflow: hidden; margin-bottom: 16px; box-shadow: inset 0 0 10px rgba(0,0,0,0.05); border: 1px solid rgba(107, 155, 209, 0.1); position: relative; }
.map-wrapper iframe { width: 100%; height: calc(100% + 50px); border: none; position: absolute; top: 0; left: 0; }
.contact-details { font-size: 13.5px; color: var(--color-text-muted); margin-bottom: 16px; line-height: 1.6; }
.contact-details div { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 6px; }
.contact-details i { color: var(--color-secondary); margin-top: 4px; width: 16px; }
.jadwal-list { list-style: none; font-size: 13px; color: var(--color-text-dark); border-top: 1px dashed rgba(107, 155, 209, 0.2); padding-top: 12px; }
.jadwal-list li { display: flex; justify-content: space-between; padding: 4px 0; }
.jadwal-list li span.hari { font-weight: 600; }
.jadwal-list li span.tutup { color: #E11D48; font-weight: 600; }
.jadwal-list li.jadwal-online { margin-top: 10px; padding: 10px 12px; background: linear-gradient(135deg, rgba(91, 179, 160, 0.15), rgba(107, 155, 209, 0.1)); border-radius: 10px; border: 1px solid rgba(91, 179, 160, 0.3); display: block; text-align: center; }
.jadwal-list li.jadwal-online span { display: block; font-size: 13px; color: var(--color-text-dark); }

/* ========================================================================== */
/* STYLING SWIPER PERANGKAT DESA (MANUAL SWIPE/DRAG - RINGAN)                 */
/* ========================================================================== */
.swiperPerangkat {
    width: 100%;
    padding: 40px 0; 
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
/* Transisi wrapper dikembalikan ke normal agar scroll mulus & responsif */
.swiperPerangkat .swiper-wrapper {
    will-change: transform;
}
.swiperPerangkat .perangkat-card {
    width: 180px;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
    opacity: 0.4;
    transform: scale(0.85);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
    background: var(--color-white);
    border: 3px solid transparent;
    box-shadow: var(--shadow-soft-md);
    will-change: transform, opacity;
    cursor: pointer; /* Menambahkan cursor pointer untuk UX klik */
}
.swiperPerangkat .perangkat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.swiperPerangkat .swiper-slide-active {
    opacity: 1;
    transform: scale(1.15);
    border-color: var(--color-primary);
    box-shadow: 0 12px 45px rgba(107, 155, 209, 0.35);
    z-index: 10;
}
@media (max-width: 768px) {
    .swiperPerangkat .perangkat-card { width: 140px; height: 190px; }
}
@media (max-width: 480px) {
    .swiperPerangkat .perangkat-card { width: 120px; height: 160px; }
    .swiperPerangkat { mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
}
/* ========================================================================== */

.konten-tengah-section { padding: 0 5% 80px; max-width: 1280px; margin: 0 auto; }
.top-grid-konten { display: block; width: 100%; margin-bottom: 40px; }

.slider-wrapper-box { background: var(--color-white); border-radius: 22px; padding: 20px; box-shadow: var(--shadow-soft-sm); border: 1px solid rgba(107, 155, 209, 0.08); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.slider-header-title { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: var(--color-text-dark); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.slider-header-title i { color: var(--color-primary); }

.slider-container { position: relative; width: 100%; height: auto; border-radius: 18px; overflow: hidden; flex-grow: 1; box-shadow: var(--shadow-inset); }
.slider-track { display: flex; height: 100%; align-items: stretch; transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.slide-item { min-width: 100%; height: auto; position: relative; display: flex; flex-direction: column; }
.slide-item img { width: 100%; aspect-ratio: 16 / 9; max-height: 400px; object-fit: cover; border-radius: 18px 18px 0 0; flex-shrink: 0; }

.slide-caption { position: relative; width: 100%; padding: 24px; background: linear-gradient(135deg, #1F2937 0%, #2C3E50 100%); color: var(--color-white); border-radius: 0 0 18px 18px; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.slide-caption h4 { font-size: 19px; font-weight: 700; margin-bottom: 6px; color: var(--color-white); }
.slide-caption p { font-size: 13.5px; opacity: 0.9; max-width: 900px; line-height: 1.6; margin: 0; }

.slider-nav-btn { position: absolute; top: 200px; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.9); color: var(--color-text-dark); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-soft-md); transition: var(--transition-ease); z-index: 10; font-size: 16px; }
.slider-nav-btn:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(107, 155, 209, 0.25); cursor: pointer; transition: var(--transition-smooth); }
.slider-dot.active { width: 32px; border-radius: 50px; background: var(--color-primary); }

.berita-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.berita-title { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: var(--color-text-dark); display: flex; align-items: center; gap: 12px; }
.berita-title i { color: var(--color-primary); }

.btn-lihat-semua { font-size: 13.5px; font-weight: 700; color: var(--color-primary); background: rgba(107, 155, 209, 0.12); padding: 8px 18px; border-radius: 50px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(107, 155, 209, 0.25); transition: var(--transition-smooth); text-decoration: none; cursor: pointer; outline: none; }
.btn-lihat-semua i { transition: transform 0.3s ease; }
.btn-lihat-semua:hover { background: linear-gradient(135deg, var(--color-primary), #4D83C4); color: var(--color-white); border-color: transparent; box-shadow: 0 4px 15px rgba(107, 155, 209, 0.35); transform: translateY(-2px); }
.btn-lihat-semua:hover i { transform: translateX(4px); }

.berita-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 24px; margin-bottom: 36px; padding-bottom: 10px; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.berita-grid::-webkit-scrollbar { display: none; }

.berita-card { min-width: calc((100% - 48px) / 3); scroll-snap-align: start; background: var(--color-white); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-soft-sm); border: 1px solid rgba(107, 155, 209, 0.08); transition: var(--transition-smooth); display: flex; flex-direction: column; }
.berita-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft-lg); border-color: rgba(107, 155, 209, 0.25); }

.berita-thumb { width: 100%; aspect-ratio: 16 / 9; height: auto; position: relative; overflow: hidden; background: linear-gradient(135deg, #F5F3FF, #EAEFF6); display: flex; align-items: center; justify-content: center; }
.berita-thumb img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform 0.6s ease; }
.berita-card:hover .berita-thumb img { transform: scale(1.05); }

.berita-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.berita-meta { display: flex; align-items: center; gap: 14px; font-size: 11.5px; color: var(--color-text-muted); margin-bottom: 10px; font-weight: 500; }
.berita-meta span { display: flex; align-items: center; gap: 6px; }
.berita-meta i { color: var(--color-secondary); }
.berita-body h4 { font-size: 17px; color: var(--color-text-dark); margin-bottom: 10px; line-height: 1.4; font-weight: 700; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.berita-body p { font-size: 13.5px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1; }
.berita-link { font-size: 13.5px; font-weight: 700; color: var(--color-primary); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; transition: var(--transition-ease); }
.berita-card:hover .berita-link { color: var(--color-secondary); gap: 10px; }

.pagination-box { display: flex; justify-content: center; align-items: center; gap: 12px; }
.page-btn { min-width: 44px; height: 44px; padding: 0 16px; border-radius: 12px; background: var(--color-white); border: 1px solid rgba(107, 155, 209, 0.15); color: var(--color-text-dark); font-size: 15px; font-weight: 600; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-soft-sm); transition: var(--transition-ease); }
.page-btn:hover { background: rgba(107, 155, 209, 0.1); border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }
.page-btn.active { background: linear-gradient(135deg, var(--color-primary), #4D83C4); color: var(--color-white); border-color: transparent; box-shadow: 0 4px 12px rgba(107, 155, 209, 0.3); pointer-events: none; }

/* ========================================================================== */
/* STYLING MEGA FOOTER 4 KOLOM MODERN (MEWAH, ELEGAN, GOVTECH READY)          */
/* ========================================================================== */
footer { background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0f172a 100%); color: #94a3b8; padding: 70px 5% 25px; border-top: 1px solid rgba(107, 155, 209, 0.2); position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(107, 155, 209, 0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }

.footer-wrapper { display: grid; grid-template-columns: 1.3fr 1fr 1.1fr 1.2fr; gap: 36px; max-width: 1280px; margin: 0 auto 50px; text-align: left; }
.footer-col { display: flex; flex-direction: column; }

.footer-brand { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 800; color: #ffffff; margin-bottom: 16px; font-family: 'Outfit', sans-serif; }
.footer-brand img { height: 44px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.footer-brand span { background: linear-gradient(135deg, #6B9BD1, #5BB3A0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-desc { font-size: 13.5px; line-height: 1.7; color: #94a3b8; margin-bottom: 20px; }

.footer-trust-badges { display: flex; flex-direction: column; gap: 8px; }
.trust-badge-item { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 6px 12px; border-radius: 8px; font-size: 11.5px; color: #cbd5e1; font-weight: 600; }
.trust-badge-item i { color: #5BB3A0; }

.live-dot { width: 8px; height: 8px; background-color: #10B981; border-radius: 50%; display: inline-block; box-shadow: 0 0 0 rgba(16, 185, 129, 0.7); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

.footer-col h4 { color: #ffffff; font-size: 16px; font-weight: 700; margin-bottom: 18px; letter-spacing: 0.3px; position: relative; padding-bottom: 8px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2.5px; background: linear-gradient(90deg, #6B9BD1, #5BB3A0); border-radius: 2px; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; }
.footer-col ul li i { color: #6B9BD1; margin-top: 4px; font-size: 12px; flex-shrink: 0; }
.footer-col ul li a { color: #94a3b8; transition: var(--transition-ease); }
.footer-col ul li a:hover { color: #ffffff; transform: translateX(4px); }

.footer-hotline-box { background: linear-gradient(135deg, rgba(107, 155, 209, 0.12), rgba(91, 179, 160, 0.1)); border: 1px solid rgba(107, 155, 209, 0.25); border-radius: 14px; padding: 14px 16px; margin-top: 14px; display: flex; align-items: center; gap: 12px; }
.footer-hotline-box i { font-size: 24px; color: #5BB3A0; }
.hotline-text span { display: block; font-size: 11px; color: #94a3b8; text-transform: uppercase; font-weight: 700; }
.hotline-text strong { font-size: 14px; color: #ffffff; font-family: 'Outfit', sans-serif; }

.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: #64748b; max-width: 1280px; margin: 0 auto; }
.footer-bottom-links { display: flex; align-items: center; gap: 18px; }
.footer-bottom-links a { color: #94a3b8; transition: 0.2s; }
.footer-bottom-links a:hover { color: #ffffff; }

.btn-scroll-top { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); color: #ffffff; width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition-ease); }
.btn-scroll-top:hover { background: #6B9BD1; transform: translateY(-2px); }

@media (max-width: 1024px) {
    .grid-menu-app { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .row-2-col { grid-template-columns: 1fr; gap: 24px; }
    .berita-card { min-width: 100%; scroll-snap-align: center; }
    .berita-thumb { height: auto; aspect-ratio: 16 / 9; }
    .footer-wrapper { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    .navbar { padding: 14px 5%; }
    .btn-navbar-ppid { padding: 8px 16px; font-size: 12px; gap: 6px; }
    .hero { padding: 68px 0 0 0; }
    .hero-image-wrapper { height: 200px; border-radius: 0 0 24px 24px; box-shadow: var(--shadow-soft-md); }
    .hero-media { border-radius: 0 0 24px 24px; }
    .hero-text { margin-top: -24px; padding: 0 5%; }
    .hero-title { padding: 10px 22px; font-size: 14.5px; margin-bottom: 0; }
    .section, .info-utama-section { padding: 22px 4% 70px; min-height: calc(100vh - 280px); display: flex; flex-direction: column; justify-content: flex-start; }
    
    .grid-menu-app { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; width: 100%;}
    .menu-box { padding: 16px 8px 14px; border-radius: 18px; }
    .menu-icon { width: 48px; height: 48px; font-size: 22px; margin-bottom: 10px; border-radius: 14px; }
    .menu-box h3 { font-size: 12.5px; margin-bottom: 6px; line-height: 1.25; }
    .menu-tag { font-size: 8.5px; padding: 3px 8px; }
    .saera-identity { font-size: 7.5px; padding: 3px 8px; margin-top: 6px; }
    .ribbon-utama { font-size: 8px; padding: 3px 25px; top: 10px; right: -25px; }
    
    .info-col { padding: 22px 18px; border-radius: 20px; }
    .info-col-title { font-size: 16px; margin-bottom: 16px; }
    
    .slider-container { height: auto; }
    .slide-item img { aspect-ratio: 16 / 9; max-height: 220px; }
    .slide-caption { padding: 18px 16px; }
    .slide-caption h4 { font-size: 16px; margin-bottom: 4px; }
    .slide-caption p { font-size: 12.5px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .slider-nav-btn { top: 95px; width: 36px; height: 36px; font-size: 14px; }
    
    .berita-thumb { height: auto; aspect-ratio: 16 / 9; }
    .berita-body { padding: 18px 18px 20px; }
    .berita-body h4 { font-size: 17px; }
    .berita-title { font-size: 18px; }

    .footer-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .footer-col h4::after { left: 0; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
    .footer-bottom-links { justify-content: center; }

    .swiperPerangkat .perangkat-card { width: 140px; height: 190px; }
}

@media (max-width: 480px) {
    .btn-navbar-ppid { padding: 6px 10px; font-size: 11px; gap: 4px; }
    .btn-navbar-ppid i { display: none; } 
    .grid-menu-app { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .menu-box { padding: 14px 4px 12px; border-radius: 16px; }
    .menu-icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 8px; border-radius: 12px; }
    .menu-box h3 { font-size: 11px; margin-bottom: 4px; line-height: 1.2; }
    .menu-tag { font-size: 7.5px; padding: 2px 6px; letter-spacing: 0.3px; }
    .saera-identity { font-size: 7px; padding: 2px 6px; margin-top: 4px; letter-spacing: 0.5px; }
    .btn-lihat-semua { font-size: 11.5px; padding: 6px 12px; gap: 6px; }
    .nav-brand { gap: 10px; }
    .nav-brand img { height: 40px; }
    .nav-brand-text { gap: 2px; }
    .nav-brand-title { font-size: 20px; letter-spacing: 0.8px; }
    .nav-brand-tagline { font-size: 8.5px; letter-spacing: 0.8px; }
    
    .swiperPerangkat .perangkat-card { width: 120px; height: 160px; }
    .swiperPerangkat { mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
}

.yt-facade { position: relative; width: 100%; aspect-ratio: 16 / 9; cursor: pointer; background: #000; display: block; flex-shrink: 0; }
.yt-facade img { width: 100%; height: 100%; max-height: none !important; object-fit: cover; opacity: 0.85; transition: 0.4s ease; display: block; }
.yt-facade:hover img { opacity: 1; transform: scale(1.02); }
.yt-play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #E11D48; font-size: 65px; z-index: 2; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); transition: 0.3s; pointer-events: none;}
.yt-facade:hover .yt-play-icon { color: #FF0000; transform: translate(-50%, -50%) scale(1.15); filter: drop-shadow(0 4px 15px rgba(255,0,0,0.6)); }
@media (max-width: 768px) {
    .yt-play-icon { font-size: 50px; }
}