/**
* Template Name: Passion
* Template URL: https://bootstrapmade.com/passion-bootstrap-template/
* Updated: Jul 21 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Barlow",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #14201c; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0a3223; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #12a16b; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #12a16b; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #14201c; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #12a16b; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f9f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000704;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 0. RESET GLOBAL
--------------------------------------------------------------*/
ul, li { list-style: none !important; margin: 0; padding: 0; }
a { text-decoration: none !important; }

/*--------------------------------------------------------------
# 1. HEADER UTAMA (GLOBAL & DESKTOP) - TIDAK DIUBAH
--------------------------------------------------------------*/
.header {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 15px 0; z-index: 1000;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: transparent;
}
.header .logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.header .logo img { max-height: 45px; width: auto; transition: 0.3s; }
.header .logo h4 { 
    font-size: 18px; font-weight: 700; color: #fff; 
    margin: 0; text-transform: uppercase; line-height: 1.2;
    transition: color 0.3s;
}

/* HEADER SCROLLED (KAPSUL) */
.header.scrolled {
    top: 15px; width: 95%; left: 50%; transform: translateX(-50%);
    border-radius: 50px; padding: 10px 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.header.scrolled .logo h4 { color: #333 !important; text-shadow: none; }
.header.scrolled .mobile-nav-toggle { color: #333 !important; }

/*--------------------------------------------------------------
# 2. NAVIGASI DESKTOP (HANYA UNTUK LAPTOP/PC)
--------------------------------------------------------------*/
#navmenu-desktop { display: none; }

@media (min-width: 1200px) {
    #navmenu-desktop { display: block; margin-left: auto; }
    #navmenu-desktop > ul { display: flex; gap: 5px; align-items: center; }
    #navmenu-desktop a {
        color: #fff; padding: 8px 18px; border-radius: 30px;
        font-size: 14px; font-weight: 500; transition: 0.3s;
        display: flex; align-items: center; gap: 5px;
    }
    #navmenu-desktop a:hover, #navmenu-desktop .active { background: #fff; color: var(--accent-color, #12A168); }
    .header.scrolled #navmenu-desktop a { color: #555; }
    .header.scrolled #navmenu-desktop a:hover,
    .header.scrolled #navmenu-desktop .active { background: var(--accent-color, #12A168); color: #fff !important; }
    
    /* DROPDOWN DESKTOP */
    .dropdown { position: relative; }
    .dropdown ul {
        position: absolute; top: 100%; left: 0; margin-top: 20px;
        background: #fff; padding: 10px 0; border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15); border-top: 3px solid var(--accent-color, #12A168);
        min-width: 240px; display: block; opacity: 0; visibility: hidden;
        transform: translateY(15px); transition: 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }
    .dropdown:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown ul li { display: block; width: 100%; }
    .dropdown ul a { color: #444 !important; display: block; padding: 10px 20px; border-radius: 0; }
    .dropdown ul a:hover { background: #f0fdf4; color: var(--accent-color, #12A168) !important; padding-left: 25px; }
    .toggle-dropdown { font-size: 12px; }
}

/*--------------------------------------------------------------
# 3. MENU MOBILE (ROMBAK TOTAL: RATA KIRI & DROPDOWN BOX)
--------------------------------------------------------------*/
.mobile-nav-toggle { font-size: 32px; color: #fff; cursor: pointer; display: block; transition: 0.3s; }
@media (min-width: 1200px) { .mobile-nav-toggle { display: none; } }
@media (max-width: 1199px) { .header .logo img { max-height: 35px; } .header .logo h4 { display: none; } }

/* OVERLAY GELAP */
.mobile-nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px);
    z-index: 99998; opacity: 0; visibility: hidden; transition: 0.4s ease;
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

/* PANEL SAMPING (Drawer) */
.mobile-nav-content {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 280px; 
    background: #151515; /* Background Gelap Solid */
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    padding: 80px 25px 30px 25px;
    transform: translateX(100%); transition: transform 0.4s ease;
    z-index: 99999; overflow-y: auto;
}
.mobile-nav-overlay.active .mobile-nav-content { transform: translateX(0); }

/* TOMBOL CLOSE (X) */
.mobile-nav-close {
    position: absolute; top: 25px; right: 25px;
    font-size: 30px; color: #fff; cursor: pointer;
}

/* --- A. LIST MENU UTAMA (RATA KIRI, GAK PAKAI GESER) --- */
.mobile-nav-content ul { padding: 0; margin: 0; }
.mobile-nav-content li { 
    margin-bottom: 0; 
    border-bottom: 1px solid rgba(255,255,255,0.08); /* Garis halus */
}

.mobile-nav-content a {
    font-size: 16px; 
    color: #e0e0e0; /* Putih agak abu biar mata enak */
    display: flex; 
    justify-content: flex-start; /* PAKSA RATA KIRI */
    align-items: center;
    padding: 15px 0; /* Padding atas bawah saja */
    font-weight: 500;
    transition: color 0.3s ease; /* Cuma warna yang berubah, posisi TIDAK */
    width: 100%;
}

/* Hover & Active hanya ganti warna, TIDAK GESER */
.mobile-nav-content a:hover, 
.mobile-nav-content .active {
    color: var(--accent-color, #12A168); 
    background: transparent;
    padding-left: 0 !important; /* Mencegah geser */
    transform: none !important; /* Mencegah geser */
}

/* Ikon Panah Dropdown di Menu Induk */
.mobile-nav-content .bi-chevron-down,
.mobile-nav-content .bi-chevron-up {
    margin-left: auto; /* Ikon panah otomatis mentok kanan */
    font-size: 14px;
}

/* --- B. DROPDOWN MOBILE (KONSEP BARU: BOXED CARD) --- */
.dropdown-menu-mobile {
    display: none;
    
    /* IDE BARU: KOTAK TERPISAH */
    background: #252525; /* Warna lebih terang dari background utama */
    border-radius: 8px; 
    margin: 10px 0 20px 0; /* Jarak atas bawah */
    padding: 10px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2); /* Shadow kedalam */
}

/* Animasi Buka Dropdown */
.dropdown-menu-mobile.active { 
    display: block; 
    animation: simpleFade 0.3s ease; 
}

/* Item di dalam Dropdown */
.dropdown-menu-mobile li {
    border-bottom: 1px dashed rgba(255,255,255,0.1); /* Garis putus-putus tipis */
    margin: 0;
}
.dropdown-menu-mobile li:last-child { border-bottom: none; }

.dropdown-menu-mobile a {
    font-size: 14px; /* Font lebih kecil */
    color: #bbb;
    padding: 12px 10px; /* Padding dalam kotak */
}

/* Hover item dropdown */
.dropdown-menu-mobile a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05); /* Highlight tipis */
    border-radius: 5px;
}

/* Animasi Simpel */
@keyframes simpleFade {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
/*--------------------------------------------------------------
# 1.5 KONDISI KHUSUS: HEADER TEKS GELAP (Untuk Halaman Detail)
--------------------------------------------------------------*/
/* Biarkan background transparan alami di awal */
.header.header-dark-text:not(.scrolled) {
    background: transparent; 
    box-shadow: none; 
}

/* Teks Logo */
.header.header-dark-text .logo h4 {
    color: #333333 !important; /* Hitam / Abu-abu Gelap */
}

/* Menu Navigasi Desktop */
@media (min-width: 1200px) {
    /* Warna teks menu yang belum dipilih (Abu-abu gelap) */
    .header.header-dark-text #navmenu-desktop a {
        color: #555555 !important; 
    }
    
    /* MENU SAAT DI-HOVER & AKTIF (Sesuai Gambar Bapak) */
    .header.header-dark-text #navmenu-desktop a:hover,
    .header.header-dark-text #navmenu-desktop .active {
        color: #ffffff !important; /* Teks harus Putih */
        background-color: #12A168 !important; /* Background jadi Hijau Solid */
    }
}

/* Icon Toggle Mobile (Garis Tiga) - Super Spesifik Anti Putih */
header.header-dark-text i.mobile-nav-toggle,
.header.header-dark-text .mobile-nav-toggle {
    color: #000000 !important; /* Warna Hijau Dinsos agar mencolok dan elegan */
}

/* Pastikan saat di-scroll di HP, ikon hamburger juga tetap berwarna */
.header.scrolled i.mobile-nav-toggle,
.header.scrolled .mobile-nav-toggle {
    color: #12A168 !important; 
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section - CINEMATIC EMERALD (FIXED BUTTON MOBILE)
--------------------------------------------------------------*/

/* --- 1. KEYFRAMES (ANIMASI) --- */
@keyframes panAndZoom {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(-2%, 1%); }
  100% { transform: scale(1) translate(0, 0); }
}

@keyframes focusIn {
  0% { filter: blur(12px); opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes springUp {
  0% { opacity: 0; transform: translateY(40px); }
  60% { transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes buttonShimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

/* --- 2. LAYOUT UTAMA --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px 0;
  background-color: #0f5132;
}

/* --- 3. BACKGROUND & OVERLAY --- */
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: panAndZoom 40s ease-in-out infinite;
}

.hero .hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    120deg, 
    rgba(12, 68, 43, 0.9) 0%, 
    rgba(18, 161, 104, 0.75) 60%, 
    rgba(52, 211, 153, 0.2) 100%
  );
  backdrop-filter: blur(3px);
}

.hero .container {
  position: relative;
  z-index: 3;
  padding: 40px 15px;
}

/* --- 4. BADGE KABUPATEN --- */
.hero .hero-badge {
  display: inline-flex;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  animation: focusIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* --- 5. TYPOGRAPHY --- */
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: focusIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.2s;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 580px;
  font-weight: 500;
  animation: focusIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.4s;
}

/* --- 6. TOMBOL (DESKTOP) --- */
.hero .hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 60px;
  animation: focusIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.6s;
}

.hero .hero-actions .btn-primary {
  background: linear-gradient(90deg, #12A168, #34d399, #12A168);
  background-size: 200% 100%;
  color: #ffffff;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  box-shadow: 0 5px 20px rgba(18, 161, 104, 0.4);
  transition: all 0.3s ease;
  animation: buttonShimmer 3s infinite linear;
}

.hero .hero-actions .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(18, 161, 104, 0.6);
}

/* --- 7. FEATURE CARDS --- */
.hero .hero-visual {
  position: relative;
}

.hero .feature-card {
  background: rgba(255, 255, 255, 0.1); 
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  height: calc(50% - 10px);
  animation: springUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero .feature-card:nth-child(1) { animation-delay: 0.6s; }
.hero .feature-card:nth-child(2) { animation-delay: 0.8s; }
.hero .feature-card:nth-child(3) { animation-delay: 1.0s; }
.hero .feature-card:nth-child(4) { animation-delay: 1.2s; }

.hero .feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero .feature-card i {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.4));
}

.hero .feature-card span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* --- 8. RESPONSIVE MOBILE FIX (BUTTON FIX) --- */

@media (max-width: 992px) {
  .hero .feature-card {
    height: auto !important;
    min-height: 0 !important;
  }
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 50px 0; }
  
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; }

  .hero .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  /* FIX: TOMBOL TIDAK FULL WIDTH */
  .hero .hero-actions .btn-primary {
    width: auto !important; /* Jangan full 100% */
    display: inline-flex; /* Ikuti lebar konten */
    padding: 12px 24px;
    font-size: 16px;
  }

  /* KARTU MINI MOBILE */
  .hero .feature-card {
    padding: 12px 10px !important;
    margin-bottom: 10px !important;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: focusIn 0.8s ease-out both; 
    animation-delay: 0.2s !important; 
  }

  .hero .feature-card i {
    font-size: 20px !important;
    margin-bottom: 6px !important;
  }

  .hero .feature-card span {
    font-size: 11px !important;
    line-height: 1.2;
    font-weight: 600;
  }
}
/* =======================================================
   STYLE CEK BANSOS (FINAL VERSION - WHITE TEXT HEADER)
   ======================================================= */

/* 1. SECTION WRAPPER */
.cek-bansos-section-wide {
    position: relative;
    margin-top: -70px; /* Melayang di atas Hero */
    z-index: 20;
    padding-bottom: 30px;
}

/* 2. CARD UTAMA */
.bansos-wide-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.02);
}

.border-end-lg {
    border-right: 1px solid #f0f0f0;
}

/* Badge Label */
.badge-pill-soft {
    background: #e6f6ee;
    color: #0e8a5a;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* 3. FORM ELEMENTS */
.form-label-modern {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input NIK */
.input-group-modern {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0 15px;
    height: 52px;
    transition: all 0.3s;
}
.input-group-modern:focus-within {
    border-color: #12A168;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(18, 161, 104, 0.1);
}
.input-group-modern .icon-part {
    color: #adb5bd;
    font-size: 1.2rem;
    margin-right: 12px;
}
.form-control-modern {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    outline: none;
}

/* 4. CAPTCHA GROUP (ANTI NUMPUK) */
.captcha-group-modern {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0;
    height: 52px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
}
.captcha-group-modern:focus-within {
    border-color: #12A168;
    box-shadow: 0 0 0 4px rgba(18, 161, 104, 0.1);
}

/* Area Gambar (Kiri) - Diisolasi */
.captcha-visual {
    background-color: #f1f5f9;
    border-right: 1px solid #e9ecef;
    height: 100%;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 110px; /* Lebar fix agar tidak gepeng */
    max-width: 110px;
}
.captcha-visual img {
    height: 34px;
    width: auto;
    max-width: 100%;
    mix-blend-mode: multiply;
}
#captchaLoader { color: #12A168; }

/* Area Input (Tengah) */
.form-control-captcha {
    border: none;
    background: transparent;
    flex-grow: 1;
    height: 100%;
    padding: 0 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    outline: none;
    min-width: 0;
    text-align: center;
}
.form-control-captcha::placeholder {
    font-weight: 400; color: #adb5bd; font-size: 0.85rem;
}

/* Tombol Refresh (Kanan) */
.btn-refresh-modern {
    width: 48px;
    height: 100%;
    border: none;
    background: #ffffff;
    border-left: 1px solid #e9ecef;
    color: #12A168;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.btn-refresh-modern:hover {
    background: #e6f6ee;
    color: #0b7a4f;
}
.btn-refresh-modern i { font-size: 1.2rem; }

/* 5. TOMBOL CEK */
.btn-check-modern {
    background: #12A168;
    color: white;
    border: none;
    height: 52px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(18, 161, 104, 0.25);
}
.btn-check-modern:hover {
    background: #0d8a56;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(18, 161, 104, 0.35);
}
.btn-check-modern:disabled {
    background: #a0d4be;
    cursor: not-allowed;
    transform: none;
}

/* 6. HASIL PENCARIAN (HEADER PUTIH & MODERN) */
.result-container-modern {
    margin-top: 30px;
    animation: fadeInResult 0.5s ease;
}

/* Header Gradient Hijau */
.result-header {
    background: linear-gradient(135deg, #12A168 0%, #0b7a4f 100%);
    color: #ffffff !important; /* TEXT PUTIH */
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(18, 161, 104, 0.25);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

/* Label Kecil Header */
.res-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    display: block;
}

/* Nama Penerima Besar Putih */
.res-name {
    margin: 0;
    font-weight: 800;
    color: #ffffff !important;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Badge Status Header */
.res-status-badge {
    background: #ffffff;
    color: #12A168;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 8px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: inline-block;
}

.res-divider {
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 20px 0;
}

.res-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #fff;
}
.res-desil {
    font-weight: 700; color: #fff; background: rgba(255,255,255,0.2); padding: 2px 8px; border-radius: 4px;
}

/* Grid Kartu Bansos (Item Bawah) */
.bansos-item-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.bansos-item-card:hover {
    border-color: #12A168;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.bansos-type {
    font-weight: 800; font-size: 1.2rem; color: #1e293b; margin-bottom: 5px;
}
.bansos-meta span { display: block; color: #333; font-weight: 600; font-size: 0.9rem; }

/* Alert Error */
.alert-modern {
    background: #fff5f5; color: #c0392b; border: 1px solid #ffe3e3;
    padding: 15px; border-radius: 10px; font-weight: 600; text-align: center; font-size: 0.9rem;
}

@keyframes fadeInResult {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 7. RESPONSIVE MOBILE */
@media (max-width: 991px) {
    .cek-bansos-section-wide { margin-top: 0; padding-top: 40px; }
    .bansos-wide-card { padding: 25px; }
    .border-end-lg { border-right: none; border-bottom: 1px solid #f0f0f0; padding-bottom: 20px; margin-bottom: 20px !important; }
}

@media (max-width: 768px) {
    /* Tombol Slim di HP */
    .btn-check-modern {
        height: 45px !important; 
        font-size: 0.95rem; margin-top: 15px; border-radius: 50px; 
        width: 100%; box-shadow: 0 4px 10px rgba(18, 161, 104, 0.2);
    }
    .input-group-modern, .captcha-group-modern { height: 48px; }
    .captcha-visual { min-width: 90px; }
    .btn-refresh-modern { width: 50px; }

    /* Result Mobile Layout (List View) */
    .result-header { padding: 20px; text-align: left; }
    .res-name { font-size: 1.4rem; margin-bottom: 10px; }
    
    .bansos-col-mobile { width: 100%; flex: 0 0 100%; }
    .bansos-item-card {
        display: flex; flex-direction: row; align-items: center; justify-content: space-between;
        text-align: left; padding: 15px; margin-bottom: 8px;
        border-left: 5px solid #12A168;
    }
    .bansos-card-right { text-align: right; }
    .label-periode { display: none; } /* Sembunyikan label kecil di HP */
}
/* --- STATUS SERVER BADGE --- */

/* Default / Loading */
.badge-server-loading {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

/* Status Online (Hijau) */
.badge-server-online {
    background: #e6f6ee;
    color: #0e8a5a;
    border: 1px solid #c3e6d6;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    animation: pulse-green 2s infinite;
}

/* Status Maintenance / Offline (Merah) */
.badge-server-offline {
    background: #fde8e8;
    color: #c53030;
    border: 1px solid #fbd5d5;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

/* Animasi Kedip Halus untuk Online */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(14, 138, 90, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(14, 138, 90, 0); }
    100% { box-shadow: 0 0 0 0 rgba(14, 138, 90, 0); }
}
/*--------------------------------------------------------------
# EXECUTIVE ABOUT SECTION - PROFESSIONAL & AESTHETIC
# (Final Version: Compact Mobile Card & Fixed Buttons)
--------------------------------------------------------------*/

/* --- 1. CONFIG & LAYOUT --- */
.exec-about-section {
    padding: 100px 0;
    background-color: #fdfdfd;
    overflow: hidden;
    position: relative;
}

/* --- 2. IMAGE CONTAINER (KIRI) --- */
.exec-image-container {
    position: relative;
    padding: 20px;
    z-index: 1;
}

/* Kotak Solid Belakang */
.exec-image-container .solid-backdrop {
    position: absolute;
    top: 0;
    left: 40px;
    width: 90%;
    height: 95%;
    background-color: #12A168;
    border-radius: 30px;
    z-index: -1;
    opacity: 0.1; 
    transform: rotate(-3deg); 
    transition: all 0.5s ease;
}

.exec-image-container:hover .solid-backdrop {
    transform: rotate(0deg); 
    opacity: 0.2;
}

/* Pola Titik */
.exec-image-container .pattern-dots {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#12A168 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -2;
}

/* Frame Foto */
.exec-image-container .image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
    transform: translateZ(0); 
}

.exec-image-container .kadis-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.exec-image-container:hover .kadis-photo {
    transform: scale(1.05);
}

/* --- 3. BADGE CARD MODERN (DESKTOP) --- */
.exec-badge-card {
    position: absolute;
    bottom: 40px;
    right: -20px; 
    
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-left: 5px solid #12A168; 
    
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 260px; /* Lebar standar desktop */
    
    animation: floatVertical 6s ease-in-out infinite;
}

@keyframes floatVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.exec-badge-card .badge-icon {
    width: 45px;
    height: 45px;
    background: #e6f7ef; 
    color: #12A168;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.exec-badge-card .badge-info .name {
    font-size: 16px;
    font-weight: 800;
    color: #0f3d28;
    margin: 0;
    line-height: 1.2;
}

.exec-badge-card .badge-info .role {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* --- 4. CONTENT AREA --- */
.exec-content .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #12A168;
    background: rgba(18, 161, 104, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.exec-content .main-heading {
    font-size: 36px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.25;
    margin-bottom: 25px;
}

.exec-content .highlight-text {
    color: #12A168;
    position: relative;
    display: inline-block;
}

.exec-content .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(18, 161, 104, 0.15);
    z-index: -1;
}

.exec-content .greeting-box {
    border-left: 4px solid #12A168;
    padding-left: 20px;
    margin-bottom: 20px;
}

.exec-content .greeting-text {
    font-size: 18px;
    font-family: serif; 
    font-style: italic;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.exec-content .text-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

/* --- 5. STATS WIDGETS --- */
.exec-content .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 35px 0;
    padding: 25px 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.stat-widget {
    text-align: center;
}

.stat-widget .counter {
    font-size: 32px;
    font-weight: 800;
    color: #12A168;
    margin: 0;
    line-height: 1;
}

.stat-widget .label {
    font-size: 13px;
    color: #718096;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

/* --- 6. ACTION BUTTONS --- */
.action-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-exec-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0f3d28; 
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-exec-primary:hover {
    background-color: #12A168; 
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 10px 20px rgba(18, 161, 104, 0.25);
}

.btn-exec-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: #0f3d28;
    border: 1px solid #cbd5e0;
    transition: all 0.3s ease;
}

.btn-exec-outline:hover {
    border-color: #0f3d28;
    background-color: #f7fafc;
    color: #0f3d28;
}

/* --- 7. RESPONSIVE FIX (MOBILE) --- */
@media (max-width: 992px) {
    .exec-about-section { padding: 60px 0; }
    
    .exec-image-container {
        margin-bottom: 50px;
        padding: 0;
    }
    
    .exec-image-container .solid-backdrop {
        left: 10px;
        width: 100%;
        transform: rotate(0deg);
    }
    
    /* === KARTU NAMA MOBILE (VERSI KECIL/MINI) === */
    .exec-badge-card {
        right: 50%;
        transform: translateX(50%);
        bottom: -25px; /* Nempel sedikit di bawah foto */
        width: auto; /* Jangan full width, ikut konten saja */
        min-width: 0; /* Reset min-width desktop */
        padding: 10px 15px; /* Padding kecil */
        gap: 10px;
        
        /* Agar rata tengah dan rapi */
        justify-content: center;
        text-align: left;
        white-space: nowrap; /* Agar teks tidak turun baris */
        animation: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
    
    /* Kecilkan Ikon di HP */
    .exec-badge-card .badge-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    /* Kecilkan Nama di HP */
    .exec-badge-card .badge-info .name {
        font-size: 13px; /* Ukuran pas untuk HP */
    }
    
    /* Kecilkan Jabatan di HP */
    .exec-badge-card .badge-info .role {
        font-size: 10px;
    }
    
    .exec-content .main-heading { font-size: 28px; }
    
    .exec-content .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* === TOMBOL SEJAJAR DI HP === */
    .action-buttons {
        display: flex;
        flex-direction: row !important;
        gap: 10px; 
        width: 100%;
        margin-top: 20px;
    }
    
    .btn-exec-primary, .btn-exec-outline {
        flex: 1;
        width: auto !important;
        padding: 12px 5px !important;
        font-size: 13px;
        display: flex;
        justify-content: center; 
        align-items: center; 
        text-align: center;
    }

    .btn-exec-primary { gap: 6px; }
    .btn-exec-primary i { font-size: 14px; }
}
/* Atur jarak atas Section Sambutan agar lebih dekat ke Bansos */
.exec-about-section {
    padding-top: 60px !important; /* Standarnya biasanya 60px/80px, kita kurangi */
    padding-bottom: 60px;
}

/* Jika masih terasa jauh di Mobile, bisa dirapatkan lagi */
@media (max-width: 991px) {
    .exec-about-section {
        padding-top: 30px !important;
    }
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding-top: 0px;
  padding-bottom: 20px;
}

.clients .clients-slider {
  overflow: hidden;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.clients .swiper-wrapper {
  height: auto !important;
  align-items: stretch;
  transition-timing-function: linear;
}

.clients .swiper-slide {
  height: auto;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.clients .swiper-slide:last-child {
  border-right: none;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  height: 100%;
}

.clients .client-logo img {
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(0);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# NEWS SECTION - MODERN CLEAN LIGHT
--------------------------------------------------------------*/
.news-editorial-section {
    padding: 80px 0;
    background-color: #f9fafb; /* Abu-abu sangat muda (clean) */
    position: relative;
    overflow: hidden;
}

/* Background Shape Dekorasi (Lingkaran halus di belakang) */
.news-editorial-section .bg-shape-light {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(18, 161, 104, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* --- Header --- */
.badge-sub-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #12A168;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: #e6f7ef;
    padding: 6px 12px;
    border-radius: 4px;
}

.section-heading {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
}

/* Tombol Navigasi Bulat */
.nav-btn-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: white;
    color: #1f2937;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-btn-circle:hover {
    background: #12A168;
    border-color: #12A168;
    color: white;
    transform: scale(1.1);
}

/* --- A. FEATURED NEWS CARD (SPLIT LAYOUT) --- */
.featured-editorial-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06); /* Bayangan sangat lembut */
    border: 1px solid rgba(0,0,0,0.02);
}

.featured-img-holder {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-img-holder:hover img {
    transform: scale(1.05); /* Zoom halus */
}

.featured-img-holder .category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #12A168;
    color: white;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.featured-content-body {
    padding: 40px;
}

.featured-content-body .meta-data {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-content-body .featured-title a {
    font-size: 30px;
    font-weight: 800;
    color: #111827;
    text-decoration: none;
    line-height: 1.3;
    display: block;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.featured-content-body .featured-title a:hover {
    color: #12A168;
}

.featured-content-body .featured-excerpt {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 30px;
}

.link-arrow {
    font-weight: 700;
    color: #12A168;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: gap 0.3s;
}

.link-arrow:hover {
    gap: 12px; /* Panah bergerak menjauh */
    color: #0d8a56;
}

/* --- B. SMALL NEWS CARDS (CLEAN) --- */
.news-card-clean {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.news-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

.news-card-clean .card-thumb {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-card-clean .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card-clean:hover .card-thumb img {
    transform: scale(1.1);
}

.news-card-clean .card-details {
    padding: 24px;
}

.news-card-clean .date-small {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.news-card-clean .card-title a {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.news-card-clean .card-title a:hover {
    color: #12A168;
}

.news-card-clean .read-more-btn {
    display: inline-block;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
    color: #12A168;
    text-decoration: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .featured-img-holder {
        height: 300px; /* Gambar lebih pendek di tablet */
    }
    .featured-content-body {
        padding: 30px;
    }
    .featured-content-body .featured-title a {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .news-editorial-section {
        padding: 50px 0;
    }
    .section-heading {
        font-size: 28px;
    }
    
    /* Reset Featured Card jadi tumpuk di HP */
    .featured-editorial-card .row {
        flex-direction: column;
    }
    .featured-img-holder {
        height: 250px;
    }
    .featured-content-body {
        padding: 20px;
    }
    .featured-content-body .featured-title a {
        font-size: 20px;
    }
    
    /* Tombol Navigasi Center di HP */
    .editorial-nav { display: none; } /* Hide desktop nav */
}

/* ==============================================================
   BIDANG SECTION (SLIDER DINAS SOSIAL) - FULL FIXED
   ============================================================== */

/* 1. SETUP CONTAINER SLIDE
   ----------------------------------------------------------- */
.bidang-section .swiper-slide {
  height: auto;       /* Wajib auto agar flexbox berfungsi */
  display: flex;      /* Agar semua card tingginya rata */
  justify-content: center;
  padding: 15px;      /* Memberi ruang untuk bayangan (shadow) */
}

/* 2. STYLING KARTU (CARD)
   ----------------------------------------------------------- */
.bidang-section .step-card {
  background: var(--surface-color, #fff); /* Menggunakan variabel warna template atau putih */
  padding: 25px 20px;                     /* Padding compact */
  border-radius: 15px;                    /* Sudut melengkung */
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;                           /* Memenuhi tinggi slide */
  display: flex;
  flex-direction: column;                 /* Susunan konten vertikal (atas ke bawah) */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--accent-color, #ea5460), transparent 90%);
  transition: all 0.3s ease;
}

/* Efek saat mouse diarahkan ke kartu */
.bidang-section .step-card:hover {
  transform: translateY(-5px); /* Naik sedikit */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color, #ea5460);
}

/* 3. ICON LINGKARAN
   ----------------------------------------------------------- */
.bidang-section .step-card .step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* Fallback warna jika variabel tidak terbaca */
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color, #ea5460), transparent 80%) 0%, color-mix(in srgb, var(--accent-color, #ea5460), transparent 90%) 100%);
  color: var(--accent-color, #ea5460);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.bidang-section .step-card:hover .step-icon {
  transform: scale(1.1);
  background-color: var(--accent-color, #ea5460);
  color: #fff;
}

/* 4. LABEL NOMOR (Bidang 1, 2, dll)
   ----------------------------------------------------------- */
.bidang-section .step-card .step-number {
  background: linear-gradient(135deg, var(--accent-color, #ea5460) 0%, color-mix(in srgb, var(--accent-color, #ea5460), #000 20%) 100%);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.8rem;
  align-self: center;
}

/* 5. JUDUL & DESKRIPSI
   ----------------------------------------------------------- */
.bidang-section .step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color, #333);
}

.bidang-section .step-card p {
  font-size: 0.9rem;
  color: var(--default-color, #666);
  line-height: 1.5;
  margin-bottom: 1.5rem; /* Jarak ke tombol bawah */
}

/* 6. TOMBOL "LIHAT DETAIL"
   ----------------------------------------------------------- */
.bidang-section .btn-detail {
  margin-top: auto; /* Memaksa tombol turun ke dasar kartu */
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color, #ea5460);
  border: 1px solid var(--accent-color, #ea5460);
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  background: transparent;
}

.bidang-section .step-card:hover .btn-detail {
  background: var(--accent-color, #ea5460);
  color: #fff;
}

/* 7. TOMBOL NAVIGASI (NEXT / PREV) - FIX UKURAN
   ----------------------------------------------------------- */
.bidang-section .swiper-button-prev,
.bidang-section .swiper-button-next {
  width: 40px !important;      /* Lebar tombol fix */
  height: 40px !important;     /* Tinggi tombol fix */
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: #2ecc71;              /* WARNA HIJAU */
  
  /* Flexbox agar icon benar-benar di tengah */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* Hover Effect Tombol */
.bidang-section .swiper-button-prev:hover,
.bidang-section .swiper-button-next:hover {
  background-color: #2ecc71;   /* Background jadi HIJAU */
  color: #fff;                 /* Panah jadi PUTIH */
}

/* --- PERBAIKAN UKURAN PANAH --- */
/* Menggunakan !important untuk mengalahkan style bawaan Swiper */
.bidang-section .swiper-button-prev::after,
.bidang-section .swiper-button-next::after {
  font-size: 16px !important;  /* Ukuran icon kecil & manis */
  font-weight: 800;
}

/* Posisi Tombol */
.bidang-section .swiper-button-prev { left: 0; }
.bidang-section .swiper-button-next { right: 0; }

/* 8. PAGINATION (TITIK-TITIK)
   ----------------------------------------------------------- */
.bidang-section .swiper-pagination {
  position: relative !important;
  margin-top: 30px !important;
  bottom: auto !important;
}

.bidang-section .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2ecc71; /* Warna titik aktif HIJAU */
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: none;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.features .nav-tabs .nav-item {
  margin-bottom: 15px;
}

.features .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-tabs .nav-link {
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: var(--surface-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.features .nav-tabs .nav-link .d-flex {
  position: relative;
  z-index: 1;
}

.features .nav-tabs .nav-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
}

.features .nav-tabs .nav-link .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.features .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
  transition: all 0.4s ease;
}

.features .nav-tabs .nav-link p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.4s ease;
}

.features .nav-tabs .nav-link:hover {
  transform: translateY(-2px);
}

.features .nav-tabs .nav-link:hover::before {
  opacity: 1;
}

.features .nav-tabs .nav-link:hover .icon-box {
  background: var(--accent-color);
}

.features .nav-tabs .nav-link:hover .icon-box i {
  color: var(--contrast-color);
}

.features .nav-tabs .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-tabs .nav-link:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.features .nav-tabs .nav-link.active::before {
  opacity: 0;
}

.features .nav-tabs .nav-link.active .icon-box {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.features .nav-tabs .nav-link.active .icon-box i {
  color: var(--contrast-color);
}

.features .nav-tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .nav-tabs .nav-link.active p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.features .tab-content .content-box {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.features .tab-content .content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.features .tab-content .content-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.features .tab-content .content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.features .tab-content .content-box p.highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 95%));
  padding: 20px;
  border-radius: 12px;
  position: relative;
}

.features .tab-content .content-box .features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.features .tab-content .content-box .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.features .tab-content .content-box .features-list li:last-child {
  margin-bottom: 0;
}

.features .tab-content .content-box .features-list li i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 12px;
}

.features .tab-content .content-box .features-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .tab-content .content-box .features-list li:hover {
  transform: translateX(5px);
}

.features .tab-content .content-box .features-list li:hover span {
  color: var(--default-color);
}

.features .tab-content .content-box .image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features .tab-content .content-box .image-box img {
  transition: all 0.6s ease;
}

.features .tab-content .content-box .image-box:hover img {
  transform: scale(1.05);
}

.features .tab-content .content-box .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.features .tab-pane {
  transition: all 0.4s ease;
}

.features .tab-pane.fade {
  transform: translateY(10px);
  opacity: 0;
}

.features .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .features .nav-tabs {
    margin-bottom: 30px;
  }

  .features .nav-tabs .nav-link {
    padding: 15px;
  }

  .features .nav-tabs .nav-link .icon-box {
    width: 40px;
    height: 40px;
  }

  .features .nav-tabs .nav-link .icon-box i {
    font-size: 20px;
  }

  .features .tab-content .content-box {
    padding: 30px;
  }

  .features .tab-content .content-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .features .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .features .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .features .nav-tabs .nav-link p {
    font-size: 13px;
  }

  .features .tab-content .content-box {
    padding: 25px;
  }

  .features .tab-content .content-box h3 {
    font-size: 22px;
  }

  .features .tab-content .content-box p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/abstract-bg-3.webp") center/cover;
  opacity: 0.03;
  z-index: 1;
}

.services .container {
  position: relative;
  z-index: 2;
}

.services .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  box-shadow: 0 10px 40px color-mix(in srgb, var(--heading-color), transparent 90%);
}

.services .service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .service-card:hover .service-bg {
  opacity: 1;
  transform: scale(1.2) rotate(15deg);
}

.services .service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
}

.services .service-card:hover .btn-cta {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
  transform: translateX(5px);
}

.services .service-card.featured {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
  border: 2px solid var(--accent-color);
  transform: scale(1.02);
}

.services .service-card.featured .service-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  width: 80px;
  height: 80px;
}

.services .service-card.featured .service-icon i {
  font-size: 40px;
}

.services .service-card.featured .service-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.services .service-card.featured .service-meta {
  margin: 25px 0;
}

.services .service-card.compact {
  padding: 30px 25px;
}

.services .service-card.compact .service-icon {
  width: 60px;
  height: 60px;
}

.services .service-card.compact .service-icon i {
  font-size: 28px;
}

.services .service-card .service-bg {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.services .service-card .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-card .service-icon i {
  font-size: 32px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.services .service-card .service-content {
  position: relative;
  z-index: 2;
}

.services .service-card .service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.services .service-card .service-content h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .service-card .service-content h3 a:hover {
  color: var(--accent-color);
}

.services .service-card .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

.services .service-card .service-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0 25px;
  flex-wrap: wrap;
}

.services .service-card .service-meta .badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services .service-card .service-meta .badge.popular {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.services .service-card .service-meta .price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
}

.services .service-card .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-card .btn-cta:hover {
  color: var(--contrast-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .service-card .btn-cta i {
  transition: all 0.3s ease;
}

.services .stats-highlight {
  background: var(--accent-color);
  border-radius: 25px;
  padding: 50px 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.services .stats-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 1;
}

.services .stats-highlight .row {
  position: relative;
  z-index: 2;
}

.services .stats-highlight .stat-item {
  text-align: center;
  color: var(--contrast-color);
}

.services .stats-highlight .stat-item .stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--contrast-color);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--contrast-color), color-mix(in srgb, var(--accent-color), var(--contrast-color) 70%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .services .stats-highlight .stat-item .stat-number {
    font-size: 36px;
  }
}

.services .stats-highlight .stat-item .stat-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .services .stats-highlight .stat-item .stat-label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .services .service-card.featured {
    transform: none;
    margin-bottom: 30px;
  }

  .services .service-card.featured .service-content h3 {
    font-size: 24px;
  }

  .services .service-card .service-icon {
    width: 60px;
    height: 60px;
  }

  .services .service-card .service-icon i {
    font-size: 28px;
  }

  .services .service-card .service-content h3 {
    font-size: 20px;
  }

  .services .stats-highlight {
    padding: 40px 20px;
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 40px;
  background-color: var(--surface-color);
  border-radius: 16px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.pricing .pricing-item:hover {
  transform: translateY(-5px);
}

.pricing .pricing-item .pricing-icon {
  width: 56px;
  height: 56px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.pricing .pricing-item .pricing-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.pricing .pricing-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing .pricing-item .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.pricing .pricing-item .price .currency {
  font-size: 24px;
  font-weight: 500;
  vertical-align: super;
}

.pricing .pricing-item .price .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.pricing .pricing-item .description {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.pricing .pricing-item .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing .pricing-item .features-list li {
  padding: 12px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.pricing .pricing-item .features-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.pricing .pricing-item .btn-pricing {
  display: inline-block;
  padding: 12px 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pricing .pricing-item .btn-pricing:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-item.featured {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: linear-gradient(to bottom right, color-mix(in srgb, var(--accent-color), transparent 97%), var(--surface-color));
}

.pricing .pricing-item.featured .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .pricing-item.featured .btn-pricing {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-item.featured .btn-pricing:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .pricing .pricing-item {
    padding: 30px 20px;
  }

  .pricing .pricing-item .price {
    font-size: 40px;
  }

  .pricing .pricing-item .price .currency {
    font-size: 20px;
  }

  .pricing .pricing-item .price .period {
    font-size: 14px;
  }

  .pricing .pricing-item .features-list li {
    font-size: 14px;
  }

  .pricing .pricing-item .btn-pricing {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.faq .section-header .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.faq .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq-item {
  border-left: 4px solid transparent;
  border-radius: 10px;
  background: var(--surface-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.faq .faq-item.faq-active {
  border-left-color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  display: none;
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  display: block;
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  display: block;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  display: none;
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  gap: 20px;
}

.faq .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 25px 25px 25px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 0.95rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px;
    gap: 15px;
  }

  .faq .faq-item .faq-header .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-item.faq-active .faq-content .content-inner {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(170deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color), var(--accent-color) 5%) 100%);
}

.call-to-action .cta-wrapper {
  position: relative;
  border-radius: 20px;
  background-color: var(--surface-color);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--accent-color), transparent 92%);
  overflow: hidden;
}

.call-to-action .cta-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.call-to-action .cta-shapes .shape {
  position: absolute;
  border-radius: 50%;
}

.call-to-action .cta-shapes .shape.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  top: -150px;
  right: -100px;
}

.call-to-action .cta-shapes .shape.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 95%) 100%);
  bottom: -100px;
  left: 20%;
}

.call-to-action .cta-shapes .shape.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, color-mix(in srgb, var(--heading-color), transparent 92%) 100%);
  top: 30%;
  left: -75px;
}

.call-to-action .cta-content {
  position: relative;
  z-index: 2;
}

.call-to-action .cta-content .badge-custom {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.call-to-action .cta-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.05rem;
  line-height: 1.6;
}

.call-to-action .benefits-row {
  margin-top: 2rem;
}

.call-to-action .benefits-row .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.call-to-action .benefits-row .benefit-item .icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 20%) 100%);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.call-to-action .benefits-row .benefit-item .benefit-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

.call-to-action .benefits-row .benefit-item .benefit-content p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
}

.call-to-action .action-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.call-to-action .action-buttons .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: none;
}

.call-to-action .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action .action-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  color: var(--accent-color);
}

.call-to-action .action-buttons .btn.btn-outline:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.call-to-action .action-buttons .guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  color: var(--heading-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.call-to-action .action-buttons .guarantee-badge i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .cta-image-container {
  position: relative;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  z-index: 2;
}

.call-to-action .cta-image-container .main-image {
  position: relative;
  z-index: 2;
  max-height: 400px;
  object-fit: contain;
}

.call-to-action .cta-image-container .floating-element {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.call-to-action .cta-image-container .floating-element i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.call-to-action .cta-image-container .floating-element span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.call-to-action .cta-image-container .floating-element.element-1 {
  top: 20%;
  left: 0;
  animation: float1 4s ease-in-out infinite;
}

.call-to-action .cta-image-container .floating-element.element-2 {
  bottom: 25%;
  right: 0;
  animation: float2 5s ease-in-out infinite;
}

.call-to-action .cta-image-container .pattern-dots {
  position: absolute;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(color-mix(in srgb, var(--accent-color), transparent 40%) 2px, transparent 2px);
  background-size: 15px 15px;
  bottom: 10%;
  left: 10%;
  z-index: 1;
  border-radius: 20px;
  opacity: 0.6;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 70px 0;
  }

  .call-to-action .row {
    flex-direction: column-reverse;
  }

  .call-to-action .cta-image-container {
    padding: 2rem;
    min-height: 350px;
  }

  .call-to-action .cta-image-container .floating-element.element-1 {
    top: 15%;
    left: 10%;
  }

  .call-to-action .cta-image-container .floating-element.element-2 {
    bottom: 15%;
    right: 10%;
  }

  .call-to-action .cta-content {
    padding: 2rem !important;
  }

  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }

  .call-to-action .action-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .call-to-action .action-buttons .btn {
    width: 100%;
  }

  .call-to-action .action-buttons .guarantee-badge {
    margin-left: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .call-to-action {
    padding: 50px 0;
  }

  .call-to-action .cta-content {
    padding: 1.5rem !important;
  }

  .call-to-action .cta-content h2 {
    font-size: 1.75rem;
  }

  .call-to-action .benefits-row .col-md-6 {
    margin-bottom: 1rem;
  }

  .call-to-action .cta-image-container {
    min-height: 300px;
  }

  .call-to-action .cta-image-container .floating-element {
    padding: 0.5rem 0.75rem;
  }

  .call-to-action .cta-image-container .floating-element span {
    font-size: 0.8rem;
  }

  .call-to-action .shape {
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid color-mix(in srgb, var(--default-color), transparent 97%);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-container {
  position: relative;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--heading-color);
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  background: color-mix(in srgb, var(--surface-color), var(--heading-color) 5%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  width: 100%;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--contrast-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: var(--contrast-color);
  font-size: 14px;
  margin: 0 0 15px 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links {
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a {
  color: var(--contrast-color);
  font-size: 20px;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a:hover {
  background: var(--accent-color);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Team Section (Improved + Kabid Staff Toggle)
--------------------------------------------------------------*/
/* --- VARIABLES & BASE --- */
    :root {
      --primary-dark: #1e293b;
      --gold-accent: #d97706;  /* Warna Kadis */
      --silver-accent: #64748b; /* Warna Sekdis */
      --green-theme: #10b981;   /* HIJAU MUDA (Untuk Staf Sekretariat) */
      --green-soft: #ecfdf5;    /* Background lembut hijau */
      --bg-soft: #f8fafc;
      --white: #ffffff;
    }

    .org-section {
      padding: 60px 0;
      background-color: var(--bg-soft);
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
    }

    /* --- LEADERSHIP (KADIS & SEKDIS) --- */
    .leadership-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
      margin-bottom: 50px;
    }

    /* Kartu Pejabat (Kadis & Sekdis) */
    .executive-card {
      background: var(--white);
      border-radius: 100px; /* Bentuk Kapsul */
      padding: 10px 35px 10px 10px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 10px 30px -5px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
      width: auto;
      min-width: 380px;
      max-width: 600px;
      border: 1px solid rgba(0,0,0,0.02);
      position: relative;
      z-index: 2;
    }

    .executive-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px -5px rgba(0,0,0,0.12);
    }

    .card-kadis { border-left: 6px solid var(--gold-accent); }
    .card-sekdis { border-left: 6px solid var(--silver-accent); }

    /* Foto Bulat */
    .exec-img {
      width: 90px; height: 90px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid var(--white);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      flex-shrink: 0;
    }

    .exec-info { text-align: left; }
    .exec-name { font-size: 18px; font-weight: 800; color: var(--primary-dark); margin: 0; line-height: 1.2; }
    .exec-role { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: 4px; display: block; }
    
    .role-kadis { color: var(--gold-accent); }
    .role-sekdis { color: var(--silver-accent); }

    /* --- TOMBOL TOGGLE SEKRETARIAT (HIJAU) --- */
    .btn-toggle-sekret {
      background: transparent;
      border: 1px solid var(--green-theme);
      color: var(--green-theme);
      font-size: 11px; font-weight: 600;
      padding: 6px 18px;
      border-radius: 20px;
      margin-top: 8px;
      cursor: pointer;
      transition: 0.2s;
      display: inline-flex; align-items: center; gap: 6px;
    }

    .btn-toggle-sekret:hover, .btn-toggle-sekret.active {
      background: var(--green-theme);
      color: white;
    }

    /* --- WRAPPER STAF SEKRETARIAT (MODIFIKASI: LEBAR & TUMPUK) --- */
    .sekretariat-wrapper {
      background: var(--white);
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 15px 40px -10px rgba(16, 185, 129, 0.15); /* Bayangan kehijauan */
      margin-top: -15px; 
      margin-bottom: 30px;
      display: none; /* Hidden default */
      width: 100%;
      max-width: 600px; /* DIBUAT LEBIH LEBAR */
      border: 1px solid var(--green-soft);
      border-top: none;
      animation: slideDown 0.4s ease;
    }

    .sekretariat-header {
      text-align: center;
      margin-bottom: 20px;
      color: var(--green-theme);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      border-bottom: 2px dashed var(--green-soft);
      padding-bottom: 10px;
    }

    /* List Menumpuk ke Bawah (Stack) */
    .staff-stack {
      display: flex;
      flex-direction: column; /* Menumpuk vertikal */
      gap: 15px;
    }

    /* Item Card Staf Sekretariat */
    .staff-wide-card {
      display: flex;
      align-items: center;
      padding: 15px;
      background: var(--green-soft); /* Background Hijau Muda Lembut */
      border-radius: 12px;
      transition: 0.2s;
      border-left: 4px solid var(--green-theme);
    }

    .staff-wide-card:hover {
      transform: translateX(5px);
      background: #dcfce7;
    }

    .staff-wide-img {
      width: 50px; height: 50px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
      border: 2px solid white;
    }

    /* --- NAVIGATION TABS (BIDANG) --- */
  .bidang-nav-container {
    max-width: 800px; margin: 0 auto 30px;
    background: #ffffff; padding: 8px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
  }
  
  .bidang-nav {
    display: flex; gap: 8px; overflow-x: auto;
    justify-content: center; padding: 2px;
    scrollbar-width: none;
  }
  .bidang-nav::-webkit-scrollbar { display: none; }

  .nav-btn {
    white-space: nowrap; 
    padding: 10px 25px; 
    border-radius: 30px;
    border: none; 
    background: transparent; 
    color: #64748b; /* Warna teks default abu-abu */
    font-weight: 600; 
    font-size: 14px; 
    cursor: pointer; 
    transition: all 0.3s ease;
  }
  
  /* SAAT DI-HOVER (HIJAU MUDA LEMBUT) */
  .nav-btn:hover { 
    background: #ecfdf5; /* Hijau sangat muda */
    color: #059669;      /* Teks jadi hijau */
  }
  
  /* SAAT AKTIF (TOMBOL JADI HIJAU SOLID) */
  .nav-btn.active { 
    background: #10b981; /* HIJAU UTAMA */
    color: white; 
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4); /* Bayangan hijau bersinar */
    transform: translateY(-1px);
  }

    /* --- CONTENT AREA (KABID + STAF) --- */
    .bidang-content { display: none; animation: fadeIn 0.4s ease; max-width: 900px; margin: 0 auto; }
    .bidang-content.active { display: block; }
    
    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

    .bidang-box {
      background: var(--white); border-radius: 20px;
      box-shadow: 0 10px 30px -5px rgba(0,0,0,0.06);
      display: flex; border: 1px solid #e2e8f0; overflow: hidden;
    }

    /* Kolom Kiri: Kabid */
    .kabid-column { 
      width: 35%; 
      background: linear-gradient(145deg, #f8fafc, #fff); 
      padding: 40px 20px; 
      display:flex; flex-direction:column; align-items:center; justify-content:center;
      text-align: center; 
      border-right: 1px dashed #cbd5e1; 
    }

    /* Kolom Kanan: Staf Grid */
    .staff-column { width: 65%; padding: 30px; }
    
    .staff-header {
      font-size: 12px; font-weight: 700; color: #94a3b8; letter-spacing: 1px;
      margin-bottom: 20px; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px;
    }

    .staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 15px; }
    
    .staff-mini-card { 
      display: flex; align-items: center; gap: 10px; padding: 10px; 
      background: #f8fafc; border-radius: 10px; border: 1px solid transparent; transition: 0.2s; 
    }
    .staff-mini-card:hover { background: white; border-color: var(--primary-dark); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
    .staff-mini-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

    /* --- RESPONSIVE MOBILE --- */
    @media (max-width: 768px) {
      .executive-card {
        border-radius: 20px; flex-direction: column; text-align: center;
        padding: 25px; min-width: auto; width: 100%; max-width: 320px;
      }
      .card-kadis, .card-sekdis { border-left: none; border-top: 5px solid; }
      
      .bidang-nav { justify-content: flex-start; padding-bottom: 10px; } /* Scrollable Nav */
      .bidang-box { flex-direction: column; }
      .kabid-column, .staff-column { width: 100%; border-right: none; }
      .kabid-column { border-bottom: 1px solid #e2e8f0; padding: 30px; }
      .staff-grid { grid-template-columns: 1fr; }
    }


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --card-border-radius: 12px;
  --content-spacing: 4rem;
}

.portfolio-details .project-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.portfolio-details .project-header .project-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.portfolio-details .project-header .project-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-header .project-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.portfolio-details .project-header .project-meta .meta-item {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.portfolio-details .project-header .project-meta .meta-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 8px;
}

.portfolio-details .project-header .project-meta .meta-item a {
  color: inherit;
  transition: all 0.3s;
}

.portfolio-details .project-header .project-meta .meta-item a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.portfolio-details .project-header .project-tags {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.portfolio-details .project-header .project-tags .tag {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .project-header .project-tags .tag:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  transform: translateY(-3px);
}

.portfolio-details .project-header .technologies .tech-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
  text-align: right;
}

.portfolio-details .project-header .technologies .tech-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.portfolio-details .project-header .technologies .tech-badges span {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .project-header .technologies .tech-badges span:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  transform: scale(1.05);
}

.portfolio-details .media-showcase {
  margin-bottom: var(--content-spacing);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .media-showcase .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .media-showcase .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.portfolio-details .media-showcase .swiper-pagination {
  position: absolute;
  bottom: 20px;
}

.portfolio-details .media-showcase .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--contrast-color);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.portfolio-details .media-showcase .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.portfolio-details .project-content .description-box {
  margin-bottom: 2rem;
}

.portfolio-details .project-content .description-box h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .description-box h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-content .description-box .lead {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 500;
}

.portfolio-details .project-content .description-box p {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.portfolio-details .project-content .project-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.portfolio-details .project-content .project-stats .stat-item {
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: var(--card-border-radius);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .project-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.portfolio-details .project-content .project-stats .stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.portfolio-details .project-content .project-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .project-content .info-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .project-content .info-card:hover .card-icon {
  background-color: var(--accent-color);
}

.portfolio-details .project-content .info-card:hover .card-icon i {
  color: var(--contrast-color);
}

.portfolio-details .project-content .info-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card .card-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.portfolio-details .project-content .info-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 0;
}

.portfolio-details .project-content .project-gallery {
  margin: 3rem 0;
}

.portfolio-details .project-content .project-gallery h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .project-gallery h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-content .project-gallery .gallery-item {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.portfolio-details .project-content .project-gallery .gallery-item img {
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-details .project-content .project-gallery .gallery-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .project-content .project-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.portfolio-details .project-content .key-features {
  margin-bottom: 3rem;
}

.portfolio-details .project-content .key-features h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .key-features h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-content .key-features .feature-item {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .key-features .feature-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .project-content .key-features .feature-item:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio-details .project-content .key-features .feature-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  transition: all 0.3s;
}

.portfolio-details .project-content .key-features .feature-item h5 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.portfolio-details .project-content .key-features .feature-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.portfolio-details .project-content .project-navigation {
  display: flex;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .project-content .project-navigation a {
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s;
}

.portfolio-details .project-content .project-navigation a i {
  font-size: 1.2rem;
  transition: all 0.3s;
}

.portfolio-details .project-content .project-navigation a.prev-project i {
  margin-right: 8px;
}

.portfolio-details .project-content .project-navigation a.prev-project:hover {
  color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.prev-project:hover i {
  transform: translateX(-5px);
}

.portfolio-details .project-content .project-navigation a.all-projects {
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
  padding: 8px 16px;
  border-radius: 30px;
}

.portfolio-details .project-content .project-navigation a.all-projects i {
  margin-right: 8px;
}

.portfolio-details .project-content .project-navigation a.all-projects:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.all-projects:hover i {
  transform: scale(1.1);
}

.portfolio-details .project-content .project-navigation a.next-project i {
  margin-left: 8px;
}

.portfolio-details .project-content .project-navigation a.next-project:hover {
  color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.next-project:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .portfolio-details .project-header .technologies {
    margin-top: 2rem;
  }

  .portfolio-details .project-header .technologies .tech-title,
  .portfolio-details .project-header .technologies .tech-badges {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .portfolio-details .project-header .project-title {
    font-size: 2.2rem;
  }

  .portfolio-details .project-navigation {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .portfolio-details .project-navigation a.all-projects {
    order: -1;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .portfolio-details .project-stats {
    grid-template-columns: 1fr !important;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.service-details .service-content .service-header {
  margin-bottom: 40px;
}

.service-details .service-content .service-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-content .service-header .service-intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-features {
  margin-bottom: 50px;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-features .feature-item:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.service-details .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-features .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-features .feature-item .feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-features .feature-item .feature-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-process {
  margin-bottom: 50px;
}

.service-details .service-process .process-steps .process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-process .process-steps .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 16px;
}

.service-details .service-process .process-steps .process-step .step-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.service-details .service-process .process-steps .process-step .step-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-gallery {
  margin-bottom: 30px;
}

.service-details .service-gallery img {
  transition: transform 0.3s ease;
}

.service-details .service-gallery img:hover {
  transform: scale(1.05);
}

.service-details .service-sidebar .service-menu {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-menu h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover i,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active i {
  color: var(--accent-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item i {
  margin-right: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item span {
  font-weight: 500;
}

.service-details .service-sidebar .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info .info-list .info-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info .info-list .info-item .info-label {
  font-weight: 500;
  color: var(--default-color);
}

.service-details .service-sidebar .service-info .info-list .info-item .info-value {
  font-weight: 600;
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  padding: 30px;
  border-radius: 10px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info {
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item i {
  margin-right: 10px;
  opacity: 0.8;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item span {
  font-size: 14px;
}

.service-details .service-sidebar .contact-card .contact-content .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-card .contact-content .btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 250px;
  }

  .service-details .service-hero .service-badge {
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }

  .service-details .service-content .service-header h2 {
    font-size: 24px;
  }

  .service-details .feature-item {
    padding: 15px !important;
  }

  .service-details .feature-item .feature-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }

  .service-details .feature-item .feature-icon i {
    font-size: 20px !important;
  }

  .service-details .service-sidebar {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}