/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* ================= GLOBAL ================= */

body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  background-color: #fff;
}

/* ================= TITLE EDITORIAL ================= */
.title-prima {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #ffffff; /* PUTIH */
}

.cek-status-title {
  font-family: 'Manrope', serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #0fa3b1; /* CYAN */
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #ffffff;
}

.subtitle-prima {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: #5f7387; /* SESUAI PERMINTAAN */
}

.cek-point li {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  color: #3f5568;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #428bca;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #629fd3;
  color: #fff;
}

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

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  height: 30px;
  padding: 5;
}

/*--------------------------------------------------------------
# HEADER SIDEBAR
--------------------------------------------------------------*/
/* ===============================
   SIDEBAR HIDDEN DEFAULT
================================= */
#header{
  position:fixed;
  top:0;
  left:-280px;
  width:280px;
  height:100vh;
  z-index:1100;

  background:linear-gradient(
    180deg,
    rgba(242,200,76,.6),
    rgba(221,150,18,.5)
  );

  backdrop-filter:blur(14px);
  transition:.35s ease;
}

/* ACTIVE */
#header.active{
  left:0;
  background:#e2e3e5;
  box-shadow:8px 0 28px rgba(0,0,0,.35);
}

/* ===============================
   MENU TOGGLE
================================ */
.menu-toggle{
  position:fixed;
  top:18px;
  left:18px;
  z-index:1200;

  display:flex;
  align-items:center;
  gap:8px;

  background:#0d3b66;
  color:#fff;
  padding:10px 14px;
  border-radius:30px;
  cursor:pointer;
  font-weight:700;
  font-size:14px;

  box-shadow:0 6px 18px rgba(0,0,0,.25);
}

.menu-toggle i{
  font-size:20px;
}

/* ===============================
   SIDEBAR (ASIDE)
================================ */
#sidebar{
  position:fixed;
  top:0;
  left:-300px;
  width:300px;
  height:100vh;
  z-index:1100;

  background:#ffffff;
  transition:all .35s ease;
  box-shadow:8px 0 28px rgba(0,0,0,.25);
}

/* Aktif */
#sidebar.active{
  left:0;
}

/* ===============================
   OVERLAY
================================ */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:1050;
  opacity:0;
  pointer-events:none;
  transition:.3s ease;
}

.overlay.active{
  opacity:1;
  pointer-events:auto;
}

/* ===============================
   BODY LOCK
================================ */
body.sidebar-open{
  overflow:hidden;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #5c768d;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #428bca;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #428bca;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: #1f3548;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(31, 53, 72, 0.9);
  transition: 0.3s;
  z-index: 998;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1f3548;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #428bca;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #428bca;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f9fc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #5c768d;
}

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f5f9fc;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  padding-bottom: 30px;
}

.about .container {
  box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
}

.about .video-box img {
  padding: 15px 0;
}

.about .section-title p {
  text-align: left;
  font-style: italic;
  color: #666;
}

.about .about-content {
  padding: 40px;
}

.about .icon-box+.icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f1f7fb;
  border-radius: 6px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #428bca;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #428bca;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #428bca;
}

.about .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#428bca 50%, rgba(66, 139, 202, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(66, 139, 202, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #428bca;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# About Lists
--------------------------------------------------------------*/
.about-lists {
  padding: 40px;
}

.about-lists .row {
  overflow: hidden;
}

.about-lists .content-item {
  padding: 40px;
  border-left: 1px solid #d9e8f4;
  border-bottom: 1px solid #d9e8f4;
  margin: -1px;
}

.about-lists .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #9eccf4;
}

.about-lists .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
}

.about-lists .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .about-lists .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Card
--------------------------------------------------------------*/
.news-card {
  height: 100%;
}

.card {
  height: 100%;
  border: none; /* Menghapus batas kartu */
  box-shadow: 0px 0 16px rgba(0, 0, 0, 0.1); /* Menambahkan bayangan */
  border-radius: 0; /* Menghapus sudut bulat */
}

.card-img-top {
  max-width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.card-title {
  font-size: bold;
}

.card-text {
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 30px;
}

.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #428bca;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.services .icon i {
  font-size: 36px;
  line-height: 0;
}

.services .icon-box:hover .icon {
  box-shadow: 0px 0 30px rgba(66, 139, 202, 0.5);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444;
  transition: 0.3s;
}

.services .title a:hover {
  color: #428bca;
}

.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #428bca;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
 .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
 .member .pic {
  border-radius: 4px;
  overflow: hidden;
}
 .member img {
  transition: all ease-in-out 0.4s;
}
 .member:hover img {
  transform: scale(1.1);
}
 .member .member-info {
  position: absolute;
  bottom: -48px;
  left: 20px;
  right: 20px;
  background: linear-gradient(360deg, rgb(92, 118, 141) 0%, rgba(92, 118, 141, 0.9) 35%, rgba(140, 167, 191, 0.8) 100%);
  padding: 15px 0;
  border-radius: 4px;
}
 .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}
 .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: calc(50% - 25px);
}
 .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}
 .member .social {
  margin-top: 15px;
}
 .member .social a {
  transition: color 0.3s;
  color: #fff;
}
 .member .social a:hover {
  color: #9eccf4;
}
 .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
 .member {
    margin-bottom: 100px;
  }
}

/*--------------------------------------------------------------
# Our Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #444;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #428bca;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

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

.portfolio .portfolio-wrap .portfolio-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  text-align: center;
  background: rgba(31, 53, 72, 0.6);
  padding-bottom: 30px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-info a {
  color: #428bca;
  margin: 0 4px;
  line-height: 0;
  background-color: #fff;
  border-radius: 50px;
  text-align: center;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info a i {
  font-size: 22px;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-info a:hover {
  background: #428bca;
  color: #fff;
}

.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

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

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

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #428bca;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #428bca;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(31, 53, 72, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding-bottom: 30px;
}

.faq .faq-item {
  margin-bottom: 40px;
}

.faq .faq-item h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f3548;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
  width: 100%;
}

.contact .info-box i {
  font-size: 32px;
  color: #428bca;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #9eccf4;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #666;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #428bca;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #428bca;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #629fd3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Footer 
--------------------------------------------------------------*/
/* =====================================
   FOOTER FUTURISTIC – IMIGRASI KENDARI
===================================== */

#footer-futuristic{
  position: relative;
  padding: 80px 0 30px;
  color: rgba(255,255,255,.95);
  overflow: hidden;

  background:
    /* overlay agar teks kontras */
    linear-gradient(
      rgb(101 143 147 / 88%),
      rgba(15,163,177,.88)
    ),

    /* BATIK (TETAP ADA) */
    url("/storage/img-bg/batik.jpg");

  background-size: cover;
  background-position: center;
}

/* glow lembut */
#footer-futuristic::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(246,195,67,.12), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(15,163,177,.15), transparent 45%);
  pointer-events:none;
}

/* container di atas layer */
#footer-futuristic .container{
  position: relative;
  z-index: 2;
}

/* ================= LOGO ================= */

.footer-logo img{
  margin-right: 10px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
  transition: transform .4s ease;
}

.footer-logo img:hover{
  transform: translateY(-4px) scale(1.05);
}

/* ================= INFO ================= */

.footer-info{
  font-size: .9rem;
  line-height: 1.6;
  max-width: 420px;
}

.footer-info h5{
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: .5px;
}

/* ================= MENU ================= */

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

.footer-links li{
  margin-bottom: 8px;
}

.footer-links a{
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: all .3s ease;
}

.footer-links a:hover{
  color: #f6c343;
  padding-left: 6px;
}

/* ================= SOCIAL ================= */

.social-links{
  margin-top: 30px;
}

.social-links a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.3rem;
  transition: all .35s ease;
}

.social-links a:hover{
  background: #f6c343;
  color: #052c5e;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
}

/* ================= COPYRIGHT ================= */

.copyright{
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 768px){
  #footer-futuristic{
    padding: 60px 0 25px;
  }

  .footer-top{
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-links{
    justify-content: center;
  }
}
/*--------------------------------------------------------------
# Aplikasi Pelayanan
--------------------------------------------------------------*/
.aplikasi-title {
    display: inline-block;  
    background-color: #DAA520; 
    color: #003366; 
    padding: 5px 15px;
    border-radius: 5px; 
    margin-top: 100px;    
    font-weight: bold; 
}

.layanan-box {
  background: #003366;
  color: #FFD700;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.layanan-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.layanan-box .icon {
  background: #FFD700;
  color: #003366;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  font-size: 28px;
}

.layanan-box h4 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s;
}

.layanan-box h4 a:hover {
  color: #ffffff;
}

.layanan-box p {
  color: #ffffff;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Running Text
--------------------------------------------------------------*/
.running-text {
  background-color: #DAA520;
  color: #003366;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
}

.running-text a {
  color: #003366;
  text-decoration: none;
  margin: 0 15px;
}

.running-text a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/*--------------------------------------------------------------
# cek-permohonan-title
--------------------------------------------------------------*/
.cek-permohonan-title {
  color: #003366; /* biru mewah */
  cursor: pointer;
  padding: 8px 12px;
  display: inline-block;
  transition: 0.3s;
}

.cek-permohonan-title.active {
  background-color: #DAA520; /* emas kalem */
  color: #003366;            /* tetap biru */
  font-weight: bold;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# slider ruang video
--------------------------------------------------------------*/
.video-slider {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-slider .swiper-slide {
  opacity: 0.5;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.video-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1.05);
  z-index: 2;
}

/*--------------------------------------------------------------
# Ruang video
--------------------------------------------------------------*/
.video-title {
    display: inline-block;  
    background-color: #DAA520; 
    color: #003366; 
    padding: 5px 15px;
    border-radius: 5px; 
    margin-top: 150px;    
    font-weight: bold; 
}

/*--------------------------------------------------------------
# Ruang berita
--------------------------------------------------------------*/
.berita-title {
    display: inline-block;  
    background-color: #e9f0f8;        
    color: rgb(34, 58, 93);           
    padding: 6px 18px;
    border-radius: 6px; 
    margin-top: 100px;    
    font-weight: 700; 
}



/*--------------------------------------------------------------
# Berita layout
--------------------------------------------------------------*/
/* =================================
   BERITA – ELITE EDITION
================================= */
#berita{
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: #ffffff;
}


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


/* ===============================
   JUDUL KIRI (EDITORIAL)
================================ */

#berita h4{
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}

#berita h4::after{
  content:"";
  display:block;
  width: 70px;
  height: 3px;
  margin-top: 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f6c343, #0fa3b1);
}

#berita p{
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  max-width: 260px;
}

/* tombol */
#berita .btn-outline-primary{
  margin-top: 12px;
  border-radius: 30px;
  border-color: rgba(255,255,255,.6);
  color: #fff;
  font-weight: 600;
  padding: 9px 20px;
  transition: all .4s ease;
}

#berita .btn-outline-primary:hover{
  background: #f6c343;
  border-color: #f6c343;
  color: #000;
  transform: translateY(-3px);
}

/* ===============================
   CARD BERITA (CINEMATIC)
================================ */

#berita .card{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.96);
  box-shadow: 0 25px 55px rgba(0,0,0,.35);
  border: none;

  opacity: 0;
  transform: translateY(60px) scale(.95);
  animation: cardReveal .9s cubic-bezier(.4,0,.2,1) forwards;
}

/* delay otomatis */
#berita .col-md-4:nth-child(1) .card{ animation-delay: .15s; }
#berita .col-md-4:nth-child(2) .card{ animation-delay: .3s; }
#berita .col-md-4:nth-child(3) .card{ animation-delay: .45s; }

/* hover cinematic */
#berita .card:hover{
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,.45);
}

/* gambar */
#berita .card-img-top{
  height: 200px;
  object-fit: cover;
  transition: transform 1.2s ease;
}

#berita .card:hover .card-img-top{
  transform: scale(1.12);
}

/* light sweep */
#berita .card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.25),
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform .9s ease;
}

#berita .card:hover::after{
  transform: translateX(100%);
}

/* badge */
#berita .badge{
  background: linear-gradient(135deg, #0fa3b1, #052c5e);
  border-radius: 8px;
}

/* body */
#berita .card-body{
  padding: 18px 18px 12px;
}

#berita .card-body h6{
  font-size: .95rem;
  line-height: 1.4;
  color: #052c5e;
}

/* footer */
#berita .card-footer{
  background: transparent;
  padding: 14px 18px 20px;
}

#berita .card-footer .btn{
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  padding: 9px 14px;
  background: linear-gradient(135deg, #0fa3b1, #052c5e);
  border: none;
  transition: all .35s ease;
}

#berita .card-footer .btn:hover{
  transform: translateY(-2px);
}

/* ===============================
   ANIMASI
================================ */

@keyframes cardReveal{
  to{
    opacity:1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width: 991px){
  #berita{
    padding: 110px 0;
  }
}

/*--------------------------------------------------------------
# Sambutan profil
--------------------------------------------------------------*/
.sambutan-container {
  background: linear-gradient(
    135deg,
    #f9fbfa,
    #eef4f1,
    #e6efea
  );
  padding: 50px 30px;
  border-radius: 14px;
  color: #1f2d2a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  position: relative;
  overflow: hidden;
}

/* Overlay hijau paspor lembut */
.sambutan-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(19, 95, 64, 0.12),
    rgba(19, 95, 64, 0.08),
    rgba(255,255,255,0.15)
  );
  pointer-events: none;
}

/* Judul */
.sambutan-container .section-title h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  color: #0f5132; /* hijau paspor */
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* Garis bawah emas resmi */
.sambutan-container .section-title h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  background: linear-gradient(
    to right,
    #c9a227,
    #e6c76a
  );
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Box teks */
.sambutan-text {
  background: rgba(255,255,255,0.92);
  padding: 30px;
  border-radius: 12px;
  font-size: 18px;
  line-height: 1.9;
  text-align: justify;
  color: #2f3e37;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

/* Dropcap */
.sambutan-text p:first-letter {
  font-size: 260%;
  font-weight: 700;
  color: #a8871e;
  float: left;
  margin-right: 10px;
  line-height: 1;
}

/* Nama & jabatan */
.sambutan-text .nama {
  font-size: 20px;
  font-weight: 700;
  margin-top: 24px;
  color: #0f5132;
}

.sambutan-text .jabatan {
  font-size: 15px;
  font-style: italic;
  color: #5f6f68;
}
/*--------------------------------------------------------------
# Sejarah Profil
--------------------------------------------------------------*/
.sejarah-container {
  background: linear-gradient(
    135deg,
    #f9fbfa,
    #eef4f1,
    #e6efea
  );
  padding: 50px 30px;
  border-radius: 14px;
  color: #1f2d2a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  position: relative;
  overflow: hidden;
}

/* Overlay hijau paspor lembut */
.sejarah-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(19, 95, 64, 0.12),
    rgba(19, 95, 64, 0.08),
    rgba(255,255,255,0.15)
  );
  pointer-events: none;
}

/* Judul */
.sejarah-container .section-title h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  color: #0f5132; /* hijau paspor */
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* Garis bawah emas resmi (tanpa animasi) */
.sejarah-container .section-title h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  background: linear-gradient(
    to right,
    #c9a227,
    #e6c76a
  );
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Teks sejarah */
.sejarah-text {
  background: rgba(255,255,255,0.92);
  padding: 30px;
  border-radius: 12px;
  font-size: 18px;
  line-height: 1.9;
  text-align: justify;
  color: #2f3e37;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

/* Dropcap */
.sejarah-text p:first-letter {
  font-size: 260%;
  font-weight: 700;
  color: #a8871e;
  float: left;
  margin-right: 10px;
  line-height: 1;
}

/* Nama & jabatan (jika ada) */
.sejarah-text .nama {
  font-size: 20px;
  font-weight: 700;
  margin-top: 24px;
  color: #0f5132;
}

.sejarah-text .jabatan {
  font-size: 15px;
  font-style: italic;
  color: #5f6f68;
}

/*--------------------------------------------------------------
# Visi Misi
--------------------------------------------------------------*/
.visimisi-container {
  background: linear-gradient(
    135deg,
    #f9fbfa,
    #eef4f1,
    #e6efea
  );
  padding: 50px 30px;
  border-radius: 14px;
  color: #1f2d2a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  position: relative;
  overflow: hidden;
}

/* Overlay hijau paspor lembut */
.visimisi-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(19, 95, 64, 0.14),
    rgba(19, 95, 64, 0.08),
    rgba(255,255,255,0.15)
  );
  pointer-events: none;
}

/* Judul */
.visimisi-container .section-title h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  color: #0f5132; /* hijau paspor */
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* Garis bawah emas resmi (statis) */
.visimisi-container .section-title h2::after {
  content: "";
  display: block;
  width: 48%;
  height: 4px;
  background: linear-gradient(
    to right,
    #c9a227,
    #e6c76a
  );
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Box teks visi misi */
.visimisi-text {
  background: rgba(255,255,255,0.93);
  padding: 32px;
  border-radius: 12px;
  font-size: 18px;
  line-height: 1.9;
  text-align: justify;
  color: #2f3e37;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

/* Dropcap */
.visimisi-text p:first-letter {
  font-size: 260%;
  font-weight: 700;
  color: #a8871e;
  float: left;
  margin-right: 10px;
  line-height: 1;
}

/* Nama & jabatan (jika dipakai) */
.visimisi-text .nama {
  font-size: 20px;
  font-weight: 700;
  margin-top: 24px;
  color: #0f5132;
}

.visimisi-text .jabatan {
  font-size: 15px;
  font-style: italic;
  color: #5f6f68;
}

/*--------------------------------------------------------------
# Struktur Organisasi
--------------------------------------------------------------*/
/* =========================================================
   ORGANISASI / STRUKTUR – PUTIH ABU + AKSEN IMIGRASI
========================================================= */

.orgx-section{
  padding: 50px 10px 60px;
  background: linear-gradient(
    180deg,
    #ffffff,
    #f3f5f7,
    #eceff2
  );
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
  color: #1f2d2a;
  position: relative;
  overflow: hidden;
}

/* overlay lembut (abu glossy) */
.orgx-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,.8),
    rgba(0,0,0,.03),
    rgba(255,255,255,.6)
  );
  pointer-events:none;
}

/* ===== Judul ===== */
.orgx-section .section-title h2{
  font-weight: 800;
  color: #0f5132; /* hijau paspor */
  position: relative;
}

.orgx-section .section-title h2::after{
  content:"";
  display:block;
  width:110px;
  height:4px;
  border-radius:3px;
  background: linear-gradient(to right, #c9a227, #f3d87a);
  margin:12px auto 0;
}

/* ===== Header pill ===== */
.orgx-sec-header{
  display:flex;
  justify-content:center;
  margin: 20px 0 16px;
}

.orgx-pill{
  background:#ffffff;
  color:#0f5132;
  border:1px solid #d6e2dc;
  border-radius:999px;
  padding:10px 20px;
  font-weight:700;
  letter-spacing:.3px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  position:relative;
}

.orgx-pill::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-10px;
  transform:translateX(-50%);
  width:70px;
  height:3px;
  background:#c9a227;
  border-radius:2px;
}

/* ===== Card ===== */
.orgx-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  background:#ffffff;
  border:1px solid #e3e6ea;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.15);
  transition: transform .3s ease, box-shadow .3s ease;
  position:relative;
}

.orgx-card:hover{
  transform: translateY(-8px);
  box-shadow:0 20px 36px rgba(0,0,0,.22);
}

/* ===== Foto ===== */
.orgx-photo{
  position:relative;
  width:100%;
  background:#f1f3f5;
  overflow:hidden;
}
.orgx-photo::before{
  content:"";
  display:block;
  padding-top:133.333%;
}
.orgx-photo img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ===== Meta ===== */
.orgx-meta{
  width:100%;
  text-align:center;
  padding:16px 12px 20px;
}

/* ===== Jabatan ===== */
.orgx-jabatan{
  font-size:19px;
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:600;
  color:#0f5132;
}

/* ===== Nama & NIP ===== */
.orgx-nama{
  margin-top:6px;
  font-size:18px;
  font-weight:800;
  color:#b08d17; /* emas */
}
.orgx-nip{
  margin-top:4px;
  font-size:12px;
  color:#6c757d;
}

/* strip bawah */
.orgx-strip{
  position:absolute;
  left:0; right:0; bottom:0;
  height:6px;
  background: linear-gradient(to right, #c9a227, #f3d87a);
}

/* ===== PLT Highlight ===== */
.plt-card > .orgx-card,
.orgx-card.plt-card{
  transform: scale(1.06);
  z-index:2;
}

/* ===== Responsive ===== */
@media(max-width:576px){
  .orgx-section{ padding:36px 10px 44px; }
  .orgx-nama{ font-size:16px; }
}

/*--------------------------------------------------------------
# Kontak
--------------------------------------------------------------*/
.kontak-container {
  background: linear-gradient(180deg, #ffffff, #f2f4f6);
  padding: 60px 30px;
  border-radius: 18px;
  color: #1f2d2a;
  box-shadow: 0 16px 36px rgba(0,0,0,0.14);
  position: relative;
  overflow: hidden;
}

/* overlay lembut */
.kontak-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,.9),
    rgba(0,0,0,.04),
    rgba(255,255,255,.7)
  );
  pointer-events: none;
}

.kontak-container .section-title h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 34px;
  color: #0f5132; /* hijau paspor */
  position: relative;
}

.kontak-container .section-title h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #c9a227, #f3d87a);
  margin: 14px auto 0;
  border-radius: 999px;
  animation: underlineGlow 2.5s ease-in-out infinite;
}

@keyframes underlineGlow {
  0% { width: 50px; opacity: .6; }
  50% { width: 100px; opacity: 1; }
  100% { width: 50px; opacity: .6; }
}

.kontak-text {
  background: #ffffff;
  padding: 26px 24px;
  border-radius: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: #5f6f68;
  margin-bottom: 36px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.kontak-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  color: #2f3e37;
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}

.kontak-card::after {
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:5px;
  background: linear-gradient(to right, #c9a227, #f3d87a);
}

.kontak-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(0,0,0,0.22);
}

.kontak-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f5132;
}

.kontak-card a {
  color: #2f3e37;
  text-decoration: none;
  font-weight: 600;
}

.kontak-card a:hover {
  color: #c9a227;
}

.cta-wrapper {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-cta {
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #1f2d2a;
  background: linear-gradient(135deg, #c9a227, #f3d87a); /* emas resmi */
  box-shadow: 0 8px 18px rgba(0,0,0,0.22);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* hover elegan */
.btn-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
  filter: brightness(1.08);
}

/* icon ikut rapi */
.btn-cta i {
  font-size: 18px;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media(max-width:576px){
  .kontak-container{
    padding: 40px 20px;
  }
}
/*--------------------------------------------------------------
# Layanan Publik
--------------------------------------------------------------*/
/* ===================== */
/* SECTION LAYANAN */
/* ===================== */
.layanan-container {
  background: #e6efea; /* hijau abu lembut */
  padding: 60px 30px;
  border-radius: 14px;
  color: #0f5132; /* font utama */
  box-shadow: 0 8px 22px rgba(0,0,0,.10);
}

/* Judul */
.layanan-container .section-title h2 {
  font-weight: 800;
  color: #0f5132;
  margin-bottom: 45px;
  position: relative;
  display: inline-block;
}
.layanan-container .section-title h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #c9a227, #e6c76a);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Judul kategori */
.kategori-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f5132;
  margin-bottom: 18px;
  letter-spacing: .6px;
  text-transform: uppercase;
  position: relative;
}
.kategori-title::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #c9a227;
  border-radius: 50%;
  margin-right: 8px;
}

/* ===================== */
/* CARD LAYANAN */
/* ===================== */
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  height: 100%;

  padding: 26px 18px;
  border-radius: 18px;

  background: #0f5132; /* hijau paspor solid */
  color: #ffffff;

  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  overflow: hidden;

  transition: transform .35s ease, box-shadow .35s ease;
}

/* highlight lembut */
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,.18),
    rgba(255,255,255,.05),
    rgba(0,0,0,.08)
  );
  pointer-events: none;
}

/* Hover */
.svc-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 20px 36px rgba(0,0,0,.30);
}

/* Nama layanan */
.svc-name {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.4;
  z-index: 1;
}

/* CTA */
.svc-cta {
  font-size: 14px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 999px;
  background: #c9a227; /* emas resmi */
  color: #1f2d2a;
  z-index: 1;

  box-shadow: inset 0 1px 0 rgba(255,255,255,.35),
              0 6px 14px rgba(0,0,0,.25);
  transition: transform .25s ease, filter .25s ease;
}

.svc-card:hover .svc-cta {
  transform: translateY(-2px) scale(1.06);
  filter: brightness(1.08);
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media (max-width:576px) {
  .layanan-container {
    padding: 45px 20px;
  }
  .svc-name {
    font-size: 15px;
  }
}
/*--------------------------------------------------------------
# Pengaduan
--------------------------------------------------------------*/
.pengaduan-container {
  background: linear-gradient(
    180deg,
    #ffffff,
    #f3f5f7
  );
  padding: 60px 30px;
  border-radius: 16px;
  color: #1f2d2a;
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
  position: relative;
  overflow: hidden;
}

/* overlay lembut */
.pengaduan-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,.9),
    rgba(0,0,0,.03),
    rgba(255,255,255,.7)
  );
  pointer-events: none;
}

/* ===================== */
/* JUDUL */
/* ===================== */
.pengaduan-container .section-title h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f5132; /* hijau paspor */
}

.pengaduan-container .section-title .subtitle {
  font-size: 16px;
  color: #5f6f68;
  margin-bottom: 34px;
}

/* ===================== */
/* CARD */
/* ===================== */
.pengaduan-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  color: #2f3e37;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  transition: transform .35s ease, box-shadow .35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* garis emas bawah */
.pengaduan-card::after {
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:5px;
  background: linear-gradient(to right, #c9a227, #f3d87a);
}

.pengaduan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 38px rgba(0,0,0,0.22);
}

/* ===================== */
/* ICON */
/* ===================== */
.pengaduan-card i {
  font-size: 42px;
  margin-bottom: 14px;
  color: #c9a227;
  animation: iconFloat 4s ease-in-out infinite;
}

/* ===================== */
/* TEXT */
/* ===================== */
.pengaduan-card h5 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f5132;
}

.pengaduan-card p {
  font-size: 15px;
  color: #5f6f68;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* ===================== */
/* BUTTON */
/* ===================== */
.btn-cta {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #c9a227,
    #f3d87a
  );
  color: #1f2d2a;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.22);
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 26px rgba(0,0,0,0.28);
  filter: brightness(1.08);
}

/* ===================== */
/* ANIMATIONS */
/* ===================== */
@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media(max-width:576px){
  .pengaduan-container{
    padding: 40px 20px;
  }
}

/*--------------------------------------------------------------
# pocket
--------------------------------------------------------------*/
/* =========== GRID ===========
   Pakai .theme-grid di dalam .container
   Otomatis responsif: 1–5 kolom tergantung lebar */
.theme-grid{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width:576px){ .theme-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width:768px){ .theme-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (min-width:1200px){ .theme-grid{ grid-template-columns: repeat(4, 1fr); } }
@media (min-width:1400px){ .theme-grid{ grid-template-columns: repeat(5, 1fr); } }

/* =========== CARD DASAR ===========
   Struktur: .theme-card > .card-body > .card-title/.card-meta/.card-desc + .card-actions */
.theme-card{
  display:flex; flex-direction:column;
  border-radius:14px; overflow:hidden;
  text-decoration:none; height:100%;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.theme-card:hover{ transform: translateY(-6px); box-shadow:0 18px 32px rgba(0,0,0,.26); }

.card-body{ padding:18px; }
.card-title{ font-weight:800; margin:0 0 8px; }
.card-meta{ display:flex; gap:8px; flex-wrap:wrap; margin:0 0 10px; }
.card-desc{ margin:6px 0 0; line-height:1.6; }
.card-actions{ display:flex; gap:10px; padding:0 18px 16px; margin-top:auto; }

/* =========== VARIAN A: CARD GRADIENT (biru→emas) ========== */
.card-gradient{
  background: linear-gradient(135deg, #003366, #0a4d94, #DAA520);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
}
.card-gradient .card-title a{ color:#fff; text-decoration:none; }
.card-gradient .chip{ background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.28); color:#fff; }

/* =========== VARIAN B: CARD PUTIH (kontras) ========== */
.card-white{
  background:#fff; color:#003366;
  border:2px solid #0a4d94;
}
.card-white:hover{ border-color:#DAA520; }
.card-white .card-title a{ color:#003366; text-decoration:none; }
.card-white .chip{ background:#eef4ff; border:1px solid #cfe0ff; color:#0a4d94; }

/* =========== CHIP / BADGE KECIL ========== */
.chip{
  display:inline-block; padding:4px 10px;
  border-radius:999px; font-size:12px; font-weight:700;
}

/* =========== BUTTONS (reusable) ========== */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 14px; border-radius:10px; font-weight:800;
  text-decoration:none; white-space:nowrap; cursor:pointer;
  transition: filter .2s ease, transform .2s ease;
}
.btn:hover{ filter:brightness(1.06); transform: translateY(-2px); }

.btn-gold{ background:#DAA520; color:#003366; border:0; }
.btn-outline{ color:inherit; border:1px solid currentColor; background:transparent; }
.btn-blue{ background:#0a4d94; color:#fff; border:0; }

/* =========== COVER OPSIONAL (mis. Pocket Library) ========== */
.card-cover{ position:relative; background:#0c2d57; }
.card-cover::before{ content:""; display:block; padding-top:140%; } /* aspek rasio */
.card-cover img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.badge-corner{
  position:absolute; top:10px; left:10px;
  background:#DAA520; color:#003366; font-weight:800;
  padding:4px 8px; border-radius:999px; font-size:12px;
}

/* =========== UTILITIES ==========
   Container tema sama dengan sambutan */
.theme-container{ /* pakai CSS sambutan-container yang sudah kamu punya */
  background: linear-gradient(135deg, #003366, #0a4d94, #DAA520);
  padding: 50px 30px; border-radius: 12px; color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2); position: relative; overflow: hidden;
}
.theme-container::before{
  content:""; position:absolute; top:-50%; left:-50%;
  width:200%; height:200%; background:rgba(255,255,255,0.05);
  transform:rotate(25deg); pointer-events:none;
}
.theme-container .section-title h2{
  font-size:32px; font-weight:800; color:#fff; text-align:center; margin-bottom:30px;
  display:inline-block; padding-bottom:10px;
}
.theme-container .section-title h2::after{
  content:""; display:block; width:60%; height:4px; background:#DAA520;
  margin:8px auto 0; border-radius:2px; animation: expand 2s infinite alternate;
}
@keyframes expand { from{width:30%;} to{width:70%;} }

/* =========== THEME LIGHT (container putih dengan aksen biru-emas) ========== */
.theme-light {
  background: #fff;
  padding: 50px 30px;
  border-radius: 12px;
  color: #003366;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

/* Judul di theme-light */
.theme-light .section-title h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  color: #003366;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* Garis bawah emas */
.theme-light .section-title h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: #DAA520;
  margin: 8px auto 0;
  border-radius: 2px;
  animation: expand 2s infinite alternate;
}

/* Card di dalam theme-light → pakai varian gradient agar kontras */
.theme-light .theme-card.card-gradient {
  border: none;
  color: #fff;
}

/* Tombol di theme-light */
.theme-light .btn-gold {
  background: #DAA520;
  color: #003366;
}
.theme-light .btn-outline {
  color: #003366;
  border: 1px solid #003366;
}

/* Filter bar di Pocket */
.pocket-filters {
  display:flex; gap:12px; flex-wrap:wrap;
  justify-content:center;
}
.pocket-filters input,
.pocket-filters select {
  border:1px solid #dbe3f0;
  border-radius:8px;
  padding:8px 12px;
  min-width:180px;
}
.pocket-filters button {
  border:none;
  border-radius:8px;
  padding:9px 16px;
  font-weight:700;
  cursor:pointer;
}

/*--------------------------------------------------------------
# wa live
--------------------------------------------------------------*/
.wa-float {
  position: fixed;
  bottom: 20px;
  left: 20px; 
  width: 150px;           /* ukuran besar */
  height: auto;           /* proporsional */
  background: url('/storage/img-logo/mido.png') no-repeat center top;
  background-size: contain;  /* tampil penuh tapi proporsional */
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: transform 0.2s ease;
  z-index: 9999;

  /* Animasi melayang naik-turun */
  animation: floatY 4s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.05); /* hover sedikit membesar */
}

/* Efek melayang naik-turun */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
/*--------------------------------------------------------------
# survei ipk-ikm
--------------------------------------------------------------*/

/* warna dasar tema */
:root{
  --hijau-utama:#0f5132;
  --hijau-soft:#e6efea;
  --emas-aksen:#c9a227;
  --emas-soft:#e6c76a;
  --abu-teks:#2f3e37;
}

/* ===================== */
/* Section IPKIKM */
/* ===================== */
.ipkikm-section{
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg,#ffffff,#f3f6f4,#e6efea);
  padding: 50px 30px;
  border-radius: 14px;
}

/* ===================== */
/* Kartu Ringkas */
/* ===================== */
.card.ipkikm-card{
  border:none;
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
  overflow:hidden;
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease;
}
.card.ipkikm-card:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 32px rgba(0,0,0,.18);
}

/* gambar */
.card.ipkikm-card .card-img-top{
  width:100%;
  aspect-ratio:4/5;
  object-fit:contain;
  background:linear-gradient(135deg,#f7faf8,#e6efea);
  padding:10px;
}

/* isi */
.card.ipkikm-card .card-body{
  padding:18px 16px 22px;
}
.card.ipkikm-card .card-title{
  font-size:1.05rem;
  font-weight:700;
  color:var(--hijau-utama);
  margin-bottom:14px;
}

/* ===================== */
/* Tombol Utama */
/* ===================== */
.btn.btn-gold{
  background: linear-gradient(
    135deg,
    #0fa3b1,
    #0b3c5d
  );
  color:#ffffff;
  font-weight:700;
  border:none;
  border-radius:999px;
  padding:.55rem 1.25rem;
  box-shadow:0 6px 14px rgba(11,60,93,.35);
  transition:all .25s ease;
}

.btn.btn-gold:hover{
  background: linear-gradient(
    135deg,
    #14b6c8,
    #092f49
  );
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(11,60,93,.45);
}

/* ===================== */
/* Tombol Outline */
/* ===================== */
.btn-outline-gold{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:2px solid #0fa3b1;
  color:#0b3c5d;
  background:transparent;
  padding:.55rem 1.1rem;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  transition:all .25s ease;
}

.btn-outline-gold:hover{
  background:#0fa3b1;
  color:#ffffff;
  transform:translateY(-2px);
}
/* ===================== */
/* DETAIL IPKIKM */
/* ===================== */
.ipkikm-detail{
  font-family:Arial, Helvetica, sans-serif;
  background:linear-gradient(135deg,#ffffff,#f4f7f5,#e6efea);
  border-radius:14px;
  padding:32px 24px;
  color:var(--abu-teks);
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  position:relative;
  overflow:hidden;
}

/* overlay lembut */
.ipkikm-detail::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    rgba(15,81,50,.08),
    rgba(255,255,255,.15)
  );
  pointer-events:none;
}

/* judul */
.ipkikm-detail .section-title{
  text-align:center;
  margin-bottom:22px;
}
.ipkikm-detail .section-title h2{
  font-weight:800;
  color:var(--hijau-utama);
}
.ipkikm-detail .section-title h2::after{
  content:"";
  display:block;
  width:110px;
  height:4px;
  margin:12px auto 0;
  background:linear-gradient(to right,var(--emas-aksen),var(--emas-soft));
  border-radius:3px;
}

/* ===================== */
/* GRID SURVEY */
/* ===================== */
.survey-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
@media (max-width:767px){
  .survey-grid{ grid-template-columns:1fr; }
}

/* kartu survey */
.survey-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
  transition:transform .25s ease, box-shadow .25s ease;
}
.survey-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 30px rgba(0,0,0,.22);
}

/* rasio */
.survey-figure{
  position:relative;
  background:#f5f8f6;
}
.survey-figure::before{
  content:"";
  display:block;
  padding-top:125%;
}
.survey-figure img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  transition:transform .35s ease;
}
.survey-card:hover .survey-figure img{
  transform:scale(1.05);
}

/* caption */
.survey-caption{
  text-align:center;
  padding:12px 10px 14px;
  font-weight:700;
  color:var(--hijau-utama);
  background:#f1f6f3;
}

/* ===================== */
/* BUTTON KEMBALI */
/* ===================== */
.btn-outline-gold{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:2px solid var(--emas-aksen);
  color:var(--emas-aksen);
  background:transparent;
  padding:.55rem 1.1rem;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  transition:all .25s ease;
}
.btn-outline-gold:hover{
  background:var(--emas-aksen);
  color:#fff;
  transform:translateY(-2px);
}

/* ===================== */
/* LIGHTBOX */
/* ===================== */
.lightbox-backdrop{
  position:fixed;
  inset:0;
  display:none;
  background:rgba(0,0,0,.75);
  z-index:1050;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.lightbox-backdrop.open{ display:flex; }
.lightbox-img{
  max-width:min(1000px,92vw);
  max-height:88vh;
  border-radius:10px;
  background:#fff;
  box-shadow:0 20px 40px rgba(0,0,0,.5);
}
.lightbox-close{
  position:fixed;
  top:16px;
  right:20px;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

/*--------------------------------------------------------------
# dipa
--------------------------------------------------------------*/
.dipa-section {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: linear-gradient(
    180deg,
    #ffffff,
    #f4f6f8
  );
  padding: 50px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
  position: relative;
  overflow: hidden;
}

/* overlay lembut */
.dipa-section::before {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,.85),
    rgba(0,0,0,.03),
    rgba(255,255,255,.6)
  );
  pointer-events:none;
}

/* ===================== */
/* DIPA VIEWER */
/* ===================== */
.dipa-viewer {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 3px solid transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#c9a227,#f3d87a) border-box;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}

/* ===================== */
/* BUTTON */
/* ===================== */
.dipa-section .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0fa3b1, #0b3c5d);
    color: #ffffff;
  border: none;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 999px;
  letter-spacing: .3px;
  box-shadow: 0 6px 16px rgba(0,0,0,.22);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.dipa-section .btn-gold:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 26px rgba(0,0,0,.28);
  filter: brightness(1.08);
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media(max-width:576px){
  .dipa-section{
    padding: 36px 20px;
  }
}

/*--------------------------------------------------------------
# sop
--------------------------------------------------------------*/
/* ====== SOP: Wrapper & judul ====== */
.sop-container{
  background: linear-gradient(135deg,#003366,#0a4d94 60%,#DAA520);
  padding: 46px 22px;
  border-radius: 12px;
  color:#fff;
  position:relative;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,.20);
}
.sop-container::before{
  content:""; position:absolute; inset:-60% -40% auto auto;
  width:180%; height:180%; transform:rotate(24deg);
  background:rgba(255,255,255,.06); pointer-events:none;
}
.sop-container .section-title h2{
  font-weight:800; color:#fff; margin-bottom:22px;
}
.sop-container .section-title h2::after{
  content:""; display:block; width:120px; height:4px; border-radius:3px;
  background:#FFD65A; margin:10px auto 0;
}

/* ====== Grid ====== */
.sop-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:18px;
}

/* ====== Card ====== */
.sop-card{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.2);
  border-radius:14px;
  padding:18px 16px;
  color:#0b1f3a;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  text-align:center;
}
.sop-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 32px rgba(0,0,0,.28);
  background:#fff;
}

/* Icon besar */
.sop-icon{
  width:66px; height:66px; border-radius:14px;
  margin:0 auto 10px; display:grid; place-items:center;
  background:linear-gradient(135deg,#0a4d94,#003366);
  color:#fff; font-size:28px; box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}
.sop-format{ font-size:13px; color:#3f5778; opacity:.9; }

/* Title + meta */
.sop-title{
  font-weight:800; font-size:16px; margin:10px 0 6px; color:#062a52;
}
.sop-meta{
  font-size:12px; color:#55729c; margin-bottom:12px;
}

/* Tombol */
.btn-gold{
  background:linear-gradient(135deg,#DAA520,#FFD700);
  color:#062a52; border:none; border-radius:999px;
  padding:10px 16px; font-weight:700;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 10px 22px rgba(0,0,0,.25); }

.btn-outline-blue{
  border:2px solid #0a4d94; color:#0a4d94; background:transparent;
  border-radius:999px; padding:9px 14px; font-weight:700;
  transition:all .2s ease;
}
.btn-outline-blue:hover{ background:#0a4d94; color:#fff; }

/* ====== Halaman detail ====== */
.sop-viewer{
  background:#f7f9ff; border:1px solid #e9eef6; border-radius:12px;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  overflow:hidden;
}
.sop-viewer .sop-header{
  background:linear-gradient(135deg,#003366,#0a4d94);
  color:#fff; padding:14px 16px; display:flex; align-items:center; gap:10px;
}
.sop-viewer .sop-header .dot{
  width:10px; height:10px; border-radius:50%;
  background:#FFD65A; box-shadow:0 0 0 3px rgba(255,214,90,.25) inset;
}
.sop-viewer iframe{
  width:100%; height:70vh; border:0; display:block; background:#fff;
}

/* Responsif kecil */
@media (max-width:576px){
  .sop-container{ padding:34px 14px; }
  .sop-grid{ gap:14px; }
}

/*--------------------------------------------------------------
# inovasi wbk wbbm
--------------------------------------------------------------*/
.wbk-section{
  background: #e6efea;
  border-radius: 14px;
  color: #0f5132;
  padding: 50px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  position:relative; 
  overflow:hidden;
}

/* overlay halus elegan */
.wbk-section::before{
  content:""; 
  position:absolute; 
  inset:0;
  background: linear-gradient(
    120deg,
    rgba(15,81,50,.06),
    rgba(15,81,50,.02),
    rgba(255,255,255,.3)
  );
  pointer-events:none;
}

/* ===== Judul ===== */
.wbk-section .section-title h2{
  color:#0f5132; 
  font-weight:800; 
  margin-bottom:18px;
  position:relative;
  display:inline-block;
  padding-bottom:10px;
}

.wbk-section .section-title h2::after{
  content:""; 
  display:block; 
  width:110px; 
  height:4px; 
  border-radius:3px;
  background: linear-gradient(90deg,#c9a227,#e6c76a);
  margin:10px auto 0;
}

/* ===== Card gambar ===== */
.wbk-card{
  background: #ffffff;
  border: 1px solid rgba(15,81,50,.08);
  border-radius:16px;
  padding:12px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  height:100%;
}

.wbk-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0,0,0,.15);
}

/* gambar rasio 4:5 */
.wbk-img{
  width:100%; 
  aspect-ratio: 4 / 5;
  object-fit: cover; 
  border-radius:12px;
  display:block;
  box-shadow: 0 4px 12px rgba(0,0,0,.10);
  transition: transform .35s ease;
}

.wbk-card:hover .wbk-img{ 
  transform: scale(1.03); 
}

/* keterangan */
.wbk-caption{
  margin:12px 6px 4px;
  color:#0f5132; 
  font-weight:700;
  line-height:1.5; 
  min-height:2.4em;
  text-align:center;
}

.wbk-meta{
  font-size:.85rem; 
  color:#5f6f68;
  text-align:center;
}

/* ===== Pagination ===== */
.paginate nav .pagination{
  gap:.4rem;
}

.paginate .page-link{
  border-radius:999px; 
  border:none;
  background:#0f5132; 
  color:#fff;
  box-shadow:0 6px 14px rgba(0,0,0,.12);
  transition: all .2s ease;
}

.paginate .page-item.active .page-link,
.paginate .page-link:hover{
  background: linear-gradient(135deg,#c9a227,#e6c76a);
  color:#0f5132;
}

/* ===== Responsif ===== */
@media (max-width: 576px){
  .wbk-section{ padding:36px 16px; }
  .wbk-caption{ font-size:.95rem; }
}

/*--------------------------------------------------------------
# tugas pokok
--------------------------------------------------------------*/
/* Subjudul di dalam konten */
.visimisi-text .subttl{
  margin: 8px 0 10px;
  font-weight: 800;
  color:#FFD700;
  letter-spacing:.3px;
}

/* List rapi di tema gelap */
.visimisi-text .vm-list{
  margin: 0 0 8px 1.1rem;
  padding: 0;
}
.visimisi-text .vm-list li{
  margin: 8px 0;
  padding-left: .25rem;
  text-align: justify;
}

/* Responsif kecil */
@media (max-width:576px){
  .visimisi-text{ font-size:16.5px; }
  .visimisi-container .section-title h2{ font-size:28px; }
}

/*--------------------------------------------------------------
# core value
--------------------------------------------------------------*/
/* ===================== */
/* FONT */
/* ===================== */
body {
  font-family: 'Montserrat', sans-serif;
}

/* ===================== */
/* HEADER PROFIL */
/* ===================== */
.page-header {
  background: #ffffff;
  border-bottom: 4px solid #f2c84c;
}

.page-header h2 {
  font-weight: 900;
  color: #dd9612;
}

.page-header p {
  color: #6c757d;
}

/* ===================== */
/* CORE VALUE SECTION */
/* ===================== */
/* =========================================================
   CORE VALUE (PRIMA) – PUTIH ABU + HIJAU PASPOR
========================================================= */

.corevalue-section {
  background: linear-gradient(
    180deg,
    #ffffff,
    #f4f6f8
  );
  padding: 50px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}

/* overlay lembut */
.corevalue-section::before {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,.85),
    rgba(0,0,0,.03),
    rgba(255,255,255,.6)
  );
  pointer-events:none;
}

/* ===================== */
/* JUDUL */
/* ===================== */
.corevalue-section h3 {
  font-weight: 900;
  color: #0f5132; /* hijau paspor */
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.corevalue-section h3::after {
  content:"";
  display:block;
  width:70%;
  height:4px;
  margin:8px auto 0;
  border-radius:3px;
  background: linear-gradient(
    to right,
    #c9a227,
    #f3d87a
  );
}

/* ===================== */
/* \CORE PRIMA LIST */
/* ===================== */
.corevalue-list {
  margin-top: 20px;
}

.corevalue-list li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: #2f3e37;
  line-height: 1.7;
}

/* Highlight huruf PRIMA */
.corevalue-list strong {
  background: linear-gradient(
    to right,
    #c9a227,
    #f3d87a
  );
  color: #1f2d2a;
  padding: 4px 10px;
  border-radius: 6px;
  margin-right: 8px;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* ===================== */
/* IMAGE */
/* ===================== */
.corevalue-section img {
  border-radius: 14px;
  border: 4px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #c9a227, #f3d87a) border-box;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media(max-width:576px){
  .corevalue-section{
    padding: 36px 20px;
  }
  .corevalue-list li{
    font-size: 1rem;
  }
}


/*==================================================
=           CEK PERMOHONAN KEIMIGRASIAN             =
==================================================*/
#cek-status{
  position: relative;
  padding: 120px 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 10% 20%, rgba(15,163,177,.18), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(242,200,76,.14), transparent 42%),
    linear-gradient(180deg, #f7fbfd, #ffffff);

  animation: fadeUp 1s ease both;
}

#cek-status::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    135deg,
    rgba(11,60,93,.06),
    rgba(255,255,255,0)
  );
  pointer-events:none;
}

/* ==================================================
   WRAP
================================================== */

.cek-status-wrap{
  position: relative;
  z-index: 2;
}

/* ==================================================
   LEFT CONTENT (EDITORIAL)
================================================== */

.cek-left{
  padding-right: 60px;
  animation: slideFade 1s ease .15s both;
}

/* Title */
.cek-status-title{
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.25;
  letter-spacing: .8px;
  color: #0b3c5d;
  margin-bottom: 20px;
  position: relative;
}

/* underline kecil */
.cek-status-title::after{
  content:"";
  display:block;
  margin-top:14px;
  width:72px;
  height:3px;
  border-radius:10px;
  background: linear-gradient(90deg,#0fa3b1,#f2c84c);
}

/* Subtitle */
.subtitle-prima{
  font-family: 'Manrope', sans-serif;
  font-size: .95rem;
  line-height: 1.85;
  color: #5f7387;
  max-width: 520px;
  margin-bottom: 28px;
}

/* Points */
.cek-point{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.cek-point li{
  position: relative;
  padding-left: 28px;
  font-size: .9rem;
  color: #415a6b;
}

.cek-point li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight:700;
  color:#0fa3b1;
}

/* ==================================================
   RIGHT FORM (FOCAL CARD)
================================================== */

.cek-right{
  animation: slideFade 1s ease .35s both;
}

/* Card */
.cek-status-card{
  background: rgba(255,255,255,.96);
  border-radius: 20px;
  padding: 38px;

  box-shadow:
    0 30px 70px rgba(11,60,93,.18),
    inset 0 0 0 1px rgba(255,255,255,.8);

  backdrop-filter: blur(10px);
  animation: floatCard 6s ease-in-out infinite;
}

/* ==================================================
   FORM
================================================== */

#checkForm{
  padding: 0 !important;
}

#checkForm .form-label{
  font-size: .85rem;
  font-weight: 600;
  color: #415a6b;
}

#checkForm .form-control{
  border-radius: 14px;
  padding: 13px 15px;
  font-size: .95rem;
  border: 1px solid #d8e4ea;
  transition: all .3s ease;
}

#checkForm .form-control:focus{
  border-color: #0fa3b1;
  box-shadow: 0 0 0 .15rem rgba(15,163,177,.25);
}

/* Button */
#checkForm button{
  margin-top: 10px;
  background: linear-gradient(135deg,#0fa3b1,#0b3c5d);
  border: none;
  border-radius: 16px;
  padding: 14px;
  font-weight: 700;
  letter-spacing: .6px;
  transition: all .35s ease;
}

#checkForm button:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11,60,93,.35);
}

/* ==================================================
   NOTE
================================================== */

.cek-right small{
  font-size: .78rem;
  color: #7a8f9f;
  line-height: 1.6;
}

/* ==================================================
   ANIMATION
================================================== */

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

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

@keyframes floatCard{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

/* ==================================================
   RESPONSIVE
================================================== */

@media(max-width:992px){
  .cek-left{
    padding-right: 0;
    margin-bottom: 40px;
  }
  .cek-status-title{
    font-size: 1.9rem;
  }
}