/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
  background-color: #f0f2f5;
}


a {
  color: #428bca;
  text-decoration: none;
}

a:hover {
  color: #9eccf4;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@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
--------------------------------------------------------------*/
/* Header default: transparan + blur */
#header {
    background: rgba(255, 255, 255, 0.2); /* transparan tipis */
    backdrop-filter: blur(10px);          /* efek blur */
    -webkit-backdrop-filter: blur(10px);  /* untuk Safari */
    color: #ffffff;
    padding: 15px 0;
    transition: all 0.5s;
    position: fixed;
    width: 100%;
    z-index: 1000;
    cursor: pointer;
}

/* Hover → biru solid */
#header:hover {
    background: #003366;  /* biru solid */
    backdrop-filter: none; /* hilangkan blur saat hover */
}

/* Navbar & dropdown tetap normal */
#header .navbar a {
    color: #ffffff;
    padding: 10px 15px;
    text-decoration: none;
    transition: 0.3s;
}

#header .navbar a:hover,
#header .navbar .active {
    color: #ffcc00;
    background: transparent; 
}

#header .navbar .dropdown ul {
    background: rgba(0, 51, 102, 0.9); /* semi transparan */
    border: none;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    display: none;
}

#header .navbar .dropdown:hover ul {
    display: block;
}

#header .navbar .dropdown ul li a {
    color: #ffffff;
    padding: 10px 20px;
    display: block;
    transition: 0.3s;
}

#header .navbar .dropdown ul li a:hover {
    background: #00264d;
    color: #ffcc00;  
}

/* Scroll effect → biru solid saat keluar slider */
#header.scrolled {
    background: #003366;
    backdrop-filter: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.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 Navigation 
*/
.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;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 110px);
  padding: 0;
  overflow: hidden;
  background: #000;
}

#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 110px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero .carousel-item::before {
  content: "";
  background: none !important;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

#hero .carousel-content {
  text-align: left;
}

@media (max-width: 992px) {

  #hero,
  #hero .carousel-item {
    height: calc(100vh - 70px);
  }

  #hero .carousel-content.container {
    padding: 0 50px;
  }
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 900;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 0;
  background: #428bca;
}

#hero .btn-get-started:hover {
  background: #1c5c93;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (max-height: 500px) {

  #hero,
  #hero .carousel-item {
    height: 120vh;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# 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 {
    background: linear-gradient(135deg, #003366, #ffcc00); /* gradasi biru ke emas */
    color: #fff;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

#footer-futuristic h5 {
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: #fff;
}

/* Logo hover efek */
#footer-futuristic .footer-logo img {
    margin-right: 10px;
    transition: transform 0.3s;
}
#footer-futuristic .footer-logo img:hover {
    transform: scale(1.2) rotate(-5deg);
}

/* Menu Links */
#footer-futuristic .footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 0;
    transition: all 0.3s;
}

/* Hover underline animasi */
#footer-futuristic .footer-links ul li a::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: #003366; /* underline biru tua */
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
}

#footer-futuristic .footer-links ul li a:hover::after {
    width: 100%;
}

/* Hover text effect */
#footer-futuristic .footer-links ul li a:hover {
    color: #003366; /* teks berubah biru tua saat hover */
}

/* Social Media */
#footer-futuristic .social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #003366; /* biru dasar */
    color: #fff;
    font-size: 1.8rem;
    margin: 0 5px;
    transition: all 0.4s;
}

#footer-futuristic .social-links a:hover {
    transform: scale(1.3) rotate(15deg);
    background: #ffcc00; /* hover jadi emas */
    color: #003366; /* ikon biru tua saat hover */
    box-shadow: 0 0 15px #ffcc00;
}

/* Copyright */
#footer-futuristic .copyright {
    font-size: 0.9rem;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 15px;
}

/* Responsif */
@media (max-width: 768px) {
    #footer-futuristic .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    #footer-futuristic .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}
/*--------------------------------------------------------------
# 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: #DAA520; 
    color: #003366; 
    padding: 5px 15px;
    border-radius: 5px; 
    margin-top: 100px;    
    font-weight: bold; 
}

/*--------------------------------------------------------------
# Berita layout
--------------------------------------------------------------*/
.berita-title {
    font-size: 2rem;
    font-weight: bold;
    color: #003366; /* biru gelap */
    margin-bottom: 30px;
}

.section-bg {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.news-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

.card-title {
    color: #003366;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
}

.news-date {
    font-size: 0.85rem;
    color: #999;
    margin-top: 10px;
}

.card-footer {
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.card-footer .btn-link {
    color: #DAA520; /* emas */
    text-decoration: none;
}

.card-footer .btn-link:hover {
    text-decoration: underline;
}

.button .btn-primary {
    background-color: #003366;
    border: none;
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.3s;
}

.button .btn-primary:hover {
    background-color: #00509e;
}

/*--------------------------------------------------------------
# Sambutan profil
--------------------------------------------------------------*/
.sambutan-container {
  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;
}

/* Efek overlay elegan */
.sambutan-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;
}

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

/* Garis bawah animasi */
.sambutan-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%; }
}

/* Teks sambutan */
.sambutan-text {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 1.9;
  text-align: justify;
  color: #f1f1f1;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.15);
}

/* Dropcap */
.sambutan-text p:first-letter {
  font-size: 250%;
  font-weight: bold;
  color: #FFD700;
  float: left;
  margin-right: 10px;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Nama & jabatan */
.sambutan-text .nama {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  color: #FFD700;
}

.sambutan-text .jabatan {
  font-size: 15px;
  font-style: italic;
  color: #ddd;
}

/*--------------------------------------------------------------
# Sejarah Profil
--------------------------------------------------------------*/
.sejarah-container {
  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;
}

/* Efek overlay elegan */
.sejarah-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;
}

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

/* Garis bawah animasi */
.sejarah-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%; }
}

/* Teks sambutan */
.sejarah-text {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 1.9;
  text-align: justify;
  color: #f1f1f1;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.15);
}

/* Dropcap */
.sejarah-text p:first-letter {
  font-size: 250%;
  font-weight: bold;
  color: #FFD700;
  float: left;
  margin-right: 10px;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Nama & jabatan */
.sejarah-text .nama {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  color: #FFD700;
}

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

/*--------------------------------------------------------------
# Visi Misi
--------------------------------------------------------------*/
.visimisi-container {
  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;
}

/* Efek overlay elegan */
.visimisi-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;
}

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

/* Garis bawah animasi */
.visimisi-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%; }
}

/* Teks sambutan */
.visimisi-text {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 1.9;
  text-align: justify;
  color: #f1f1f1;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.15);
}

/* Dropcap */
.visimisi-text p:first-letter {
  font-size: 250%;
  font-weight: bold;
  color: #FFD700;
  float: left;
  margin-right: 10px;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Nama & jabatan */
.visimisi-text .nama {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  color: #FFD700;
}

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

/*--------------------------------------------------------------
# Struktur Organisasi
--------------------------------------------------------------*/
.orgx-section{
  padding: 50px 10px 60px;
  background: linear-gradient(135deg, #0a4d94, #003366);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  color: #fff;
}
.orgx-section .section-title h2{
  font-weight: 800; color: #fff;
}
.orgx-section .section-title h2::after{
  content:""; display:block; width:120px; height:4px; border-radius:3px;
  background:#DAA520; margin:12px auto 0;
}

.orgx-sec-header{
  display:flex; justify-content:center; margin: 20px 0 14px;
}
.orgx-pill{
  background:#0b5ea8;
  color:#fff; border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  padding:10px 18px;
  font-weight:700; letter-spacing:.2px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 6px 16px rgba(0,0,0,.22);
  position:relative;
}
.orgx-pill::after{
  content:""; position:absolute; left:50%; bottom:-10px; transform:translateX(-50%);
  width:80px; height:3px; background:#DAA520; border-radius:2px;
}

.orgx-card{
  display:flex; flex-direction:column; align-items:center;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 20px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  position:relative;
  will-change: transform, box-shadow, background;
}
.orgx-card:hover{
  transform: translateY(-6px);
  background: rgba(255,255,255,.16);
  box-shadow:0 18px 32px rgba(0,0,0,.30);
}

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

.orgx-meta{ width:100%; text-align:center; padding:14px 12px 18px; }

/* --- orgx-jabatan dengan animasi glint + breathe --- */
.orgx-jabatan{
  font-size:20px;
  letter-spacing:.5px;
  color:#e7f0ff;
  opacity:.95;
  position:relative;
  overflow:hidden;
  animation: orgxBreathe 4.5s ease-in-out infinite;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .orgx-jabatan{
    background-image: linear-gradient(
      90deg,
      rgba(231,240,255,.85) 0%,
      #DAA520 45%,
      #ffffff 50%,
      #DAA520 55%,
      rgba(231,240,255,.85) 100%
    );
    background-size:200% 100%;
    background-clip:text;
    -webkit-background-clip:text;
    color:transparent;
    -webkit-text-fill-color:transparent;
    animation: orgxShimmer 3s linear infinite, orgxBreathe 4.5s ease-in-out infinite;
  }
}
.orgx-card:hover .orgx-jabatan{
  animation-duration:3.2s, 3.8s;
}
@keyframes orgxShimmer {
  0%   { background-position:0% 50%; }
  100% { background-position:200% 50%; }
}
@keyframes orgxBreathe {
  0%,100% { transform:translateY(0); letter-spacing:.5px; }
  50%     { transform:translateY(-1px); letter-spacing:1.1px; }
}

.orgx-nama{
  margin:6px 0 0; font-size:17px; font-weight:800; color:#FFD700;
}
.orgx-nip{
  margin-top:4px; font-size:12px; color:#e9eef6;
}

.orgx-strip{
  position:absolute; left:0; right:0; bottom:0; height:8px;
  background:linear-gradient(90deg, #0b6bbd, #0a4d94);
}

.orgx-hero{
  background:rgba(255,255,255,.12);
}
.orgx-hero .orgx-nama{ font-size:20px; }

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

/* jika class ditempel langsung di kartu */
.orgx-card.plt-card {
  transform: scale(1.06);
  transform-origin: center bottom; /* membesar ke atas */
  z-index: 2;
}

/* jika class ditempel di kolom wrapper (col-*) */
.plt-card > .orgx-card {
  transform: scale(1.06);
  transform-origin: center bottom; /* membesar ke atas */
  z-index: 2;
}

/* samakan tinggi area jabatan agar sejajar */
.orgx-jabatan {
  min-height: 40px;                 /* kira-kira 2 baris */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}/* Khusus PLT (pejabat utama di sebelah kiri) */
.plt-card {
  transform: scale(1.06);     /* sedikit lebih besar */
  transform-origin: left top; /* biar membesar ke arah kanan/bawah */
  z-index: 2;                 /* supaya tidak ketindih */
}

/*--------------------------------------------------------------
# Peta Kantor
--------------------------------------------------------------*/
/* === Tema Peta: selaras dengan "Sejarah" (biru–emas) === */
.peta-container{
  position: relative; z-index: 1;
  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.25);
  overflow: hidden;
  scroll-margin-top: 100px; /* jika navbar fixed */
}
.peta-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;
}

/* Judul */
.peta-container .section-title{ position: relative; z-index: 5; }
.peta-container .section-title h2{
  font-size:32px; font-weight:800; color:#fff;
  display:inline-block; padding-bottom:10px; margin-bottom:12px;
}
.peta-container .section-title h2::after{
  content:""; display:block; width:90px; height:4px; background:#DAA520;
  margin:10px auto 0; border-radius:2px; animation: petaExpand 2s infinite alternate;
}
@keyframes petaExpand { from{width:30%;} to{width:70%;} }

/* Bingkai peta */
.map-frame{
  position:relative; z-index:2; margin-top:16px;
  border-radius:12px; overflow:hidden; border:3px solid #DAA520;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  background:#0a4d94; /* fallback saat iframe loading */
}
.map-frame iframe{
  display:block; width:100%; height:450px; border:0;
}

/* Info alamat & tombol */
.map-info .addr{ color:#f1f1f1; font-size:16px; }
.btn-map{
  display:inline-block; padding:10px 16px; border-radius:999px; font-weight:700;
  background:#0b5ea8; color:#fff; text-decoration:none;
  border:1px solid rgba(255,255,255,.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 6px 16px rgba(0,0,0,.22);
}
.btn-map:hover{ filter:brightness(1.08); }
.btn-map.outline{ background:transparent; border:2px solid #DAA520; }

@media (max-width:576px){
  .map-frame iframe{ height:360px; }
}

/*--------------------------------------------------------------
# Kontak
--------------------------------------------------------------*/
.kontak-container {
  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.25);
  position: relative;
  overflow: hidden;
}
.kontak-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;
}

.kontak-container .section-title h2 {
  font-size: 32px; font-weight: 800; text-align: center;
  margin-bottom: 30px; color: #fff;
  display: inline-block; padding-bottom: 10px;
}
.kontak-container .section-title h2::after {
  content: ""; display: block; width: 80px; height: 4px;
  background: #DAA520; margin: 10px auto 0;
  border-radius: 2px; animation: expand 2s infinite alternate;
}
@keyframes expand { from{width:30%;} to{width:70%;} }

.kontak-text {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 10px;
  font-size: 17px;
  line-height: 1.8;
  color: #f1f1f1;
  margin-bottom: 30px;
}

.kontak-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #fff;
  transition: all .25s ease;
}
.kontak-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-5px);
}
.kontak-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: #FFD700; }
.kontak-card a { color: #fff; text-decoration: none; }
.kontak-card a:hover { color: #FFD700; }

/* CTA */
.cta-wrapper { display:flex; gap:15px; justify-content:center; flex-wrap:wrap; }
.btn-cta {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: all .3s ease;
}
.btn-cta.wa { background: #25D366; }
.btn-cta.mail { background: #0b5ea8; }
.btn-cta.telp { background: #DAA520; color: #003366; }
.btn-cta:hover { filter: brightness(1.1); transform: translateY(-3px); }

/*--------------------------------------------------------------
# Layanan Publik
--------------------------------------------------------------*/
.layanan-container {
  background: #fff; /* putih polos */
  padding: 50px 30px;
  border-radius: 12px;
  color: #003366;
}

.layanan-container .section-title h2 {
  font-weight: 800; 
  color: #003366;
  margin-bottom: 40px;
}

.kategori-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a4d94;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Kotak layanan */
.svc-card {
  display: flex; 
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #003366, #0a4d94, #DAA520); /* gradasi biru → emas */
  border-radius: 14px;
  padding: 24px 16px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.25);
}

.svc-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.svc-cta {
  font-size: 14px;
  font-weight: 600;
  background: #FFD700;
  color: #003366;
  padding: 8px 16px;
  border-radius: 30px;
  transition: background .25s ease;
}

.svc-card:hover .svc-cta {
  background: #ffdb4d;
}

/*--------------------------------------------------------------
# Pengaduan
--------------------------------------------------------------*/
.pengaduan-container {
  background: linear-gradient(135deg, #003366, #0a4d94, #DAA520);
  padding: 60px 30px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

/* overlay */
.pengaduan-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.05);
  transform: rotate(25deg);
}

/* Judul */
.pengaduan-container .section-title h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.pengaduan-container .section-title .subtitle {
  font-size: 16px;
  color: #f1f1f1;
  margin-bottom: 30px;
}

/* Card pengaduan */
.pengaduan-card {
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: transform .3s ease, background .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pengaduan-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-6px);
}

.pengaduan-card i {
  font-size: 40px;
  margin-bottom: 12px;
  color: #FFD700;
  animation: bounce 2s infinite;
}

.pengaduan-card h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #fff;
}

.pengaduan-card p {
  font-size: 15px;
  color: #eaeaea;
  margin-bottom: 15px;
}

/* Tombol CTA */
.btn-cta {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  background: #FFD700;
  color: #003366;
  font-weight: bold;
  text-decoration: none;
  transition: all .3s ease;
}
.btn-cta:hover {
  background: #fff;
  color: #0a4d94;
}

/* Animasi icon */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/*--------------------------------------------------------------
# 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; /* pojok kiri bawah */
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: transform 0.2s ease, background 0.3s ease;
  z-index: 9999;

  /* Animasi pulse */
  animation: pulse 2s infinite, floatY 4s ease-in-out infinite;
}

.wa-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

/* Efek berdenyut */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

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


/*--------------------------------------------------------------
# survei ipk-ikm
--------------------------------------------------------------*/
/* Section IPKIKM */
.ipkikm-section {
  font-family: Arial, Helvetica, sans-serif; /* hanya untuk IPKIKM */
}

/* Bungkus kartu */
.card.ipkikm-card {
  border: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  overflow: hidden;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card.ipkikm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

/* Foto sampul full rasio 4:5 */
.card.ipkikm-card .card-img-top {
  width: 100%;
  aspect-ratio: 4 / 5;     /* 1080 x 1350 px */
  object-fit: contain;     /* tidak terpotong */
  background: linear-gradient(135deg,#003366,#0a4d94);
  border-radius: 12px 12px 0 0;
  padding: 8px;
  display: block;
}

/* Isi kartu */
.card.ipkikm-card .card-body {
  padding: 18px 16px 20px;
}
.card.ipkikm-card .card-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #062a52;
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Tombol tema emas */
.btn.btn-gold {
  background: linear-gradient(135deg,#DAA520,#FFD700);
  color: #062a52;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: .6rem 1.2rem;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
  font-family: Arial, Helvetica, sans-serif;
}
.btn.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

/* Responsif */
@media (max-width: 768px) {
  .card.ipkikm-card .card-img-top {
    padding: 6px;
  }
  .card.ipkikm-card .card-title {
    font-size: 1rem;
  }
}

/* ===================== IPKIKM DETAIL ===================== */
.ipkikm-detail {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg,#003366 0%,#0a4d94 55%,#DAA520 100%);
  border-radius: 12px;
  padding: 28px 20px;
  color:#fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
  position: relative;
  overflow: hidden;
}

/* overlay halus */
.ipkikm-detail::before{
  content:""; position:absolute; inset:-60% -60% auto auto;
  width:200%; height:200%; transform:rotate(25deg);
  background: rgba(255,255,255,.06);
  pointer-events:none;
}

/* judul */
.ipkikm-detail .section-title{
  text-align:center; margin-bottom:18px;
}
.ipkikm-detail .section-title h2{
  font-weight:800; color:#fff; margin:0;
}
.ipkikm-detail .section-title h2::after{
  content:""; display:block; width:120px; height:4px; margin:10px auto 0;
  background:#FFD24D; border-radius:3px;
}

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

/* kartu gambar */
.survey-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 20px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.survey-card:hover{
  transform: translateY(-4px);
  box-shadow:0 16px 28px rgba(0,0,0,.3);
  background:rgba(255,255,255,.18);
}

/* bungkus rasio 4:5 */
.survey-figure{
  position:relative; overflow:hidden; background:#072d58;
}
.survey-figure::before{ content:""; display:block; padding-top:125%; } /* 4:5 */
.survey-figure img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:contain; /* jaga poster utuh */
  transition: transform .35s ease;
  background:linear-gradient(135deg,#003366,#0a4d94);
}
.survey-card:hover .survey-figure img{ transform:scale(1.04); }

/* caption bulan */
.survey-caption{
  text-align:center; color:#fff; padding:10px 12px 14px;
  font-weight:700; letter-spacing:.2px;
  background:linear-gradient(90deg,rgba(255,255,255,.06),rgba(255,255,255,0));
}

/* tombol kembali */
.btn-outline-gold{
  display:inline-flex; align-items:center; gap:8px;
  border:2px solid #FFD24D; color:#FFD24D; background:transparent;
  padding:.55rem 1rem; border-radius:999px; font-weight:700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  text-decoration:none;
}
.btn-outline-gold:hover{
  background:#FFD24D; color:#062a52; transform:translateY(-2px);
}

/* ========== Lightbox sederhana ========== */
.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;
  box-shadow:0 20px 40px rgba(0,0,0,.5); background:#fff;
}
.lightbox-close{
  position:fixed; top:14px; right:18px; color:#fff; font-size:28px;
  line-height:1; cursor:pointer; user-select:none;
}

/*--------------------------------------------------------------
# dipa
--------------------------------------------------------------*/
/* Section DIPA */
.dipa-section {
  font-family: Arial, Helvetica, sans-serif;
}
.dipa-viewer {
  border: 3px solid #DAA520;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.dipa-section .btn-gold {
  background: linear-gradient(135deg,#DAA520,#FFD700);
  border: none;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 25px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.dipa-section .btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

/*--------------------------------------------------------------
# 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 wbkwbbm
--------------------------------------------------------------*/
.wbk-section{
  background: linear-gradient(135deg,#003366,#0a4d94 65%,#DAA520);
  border-radius: 12px;
  color:#fff;
  padding: 46px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.20);
  position:relative; 
  overflow:hidden;
}
.wbk-section::before{
  content:""; 
  position:absolute; 
  top:-55%; 
  left:-45%;
  width:190%; 
  height:190%; 
  transform:rotate(24deg);
  background: rgba(255,255,255,.06); 
  pointer-events:none;
}
.wbk-section .section-title h2{
  color:#fff; 
  font-weight:800; 
  margin-bottom:16px;
}
.wbk-section .section-title h2::after{
  content:""; 
  display:block; 
  width:120px; 
  height:4px; 
  border-radius:3px;
  background:#FFD65A; 
  margin:10px auto 0;
}

/* ===== Card gambar ===== */
.wbk-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.18);
  border-radius:14px;
  padding:10px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  height:100%;
}
.wbk-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0,0,0,.28);
  background:#fff;
}

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

/* keterangan */
.wbk-caption{
  margin:10px 4px 2px;
  color:#082a52; 
  font-weight:700;
  line-height:1.45; 
  min-height:2.2em;      /* dua baris rapi */
  text-align:center;
}
.wbk-meta{
  font-size:.85rem; 
  color:#5b7197;
  text-align:center;
}

/* ===== Pagination ===== */
.paginate nav .pagination{
  gap:.35rem;
}
.paginate .page-link{
  border-radius:999px; 
  border:none;
  background:#0b5ea8; 
  color:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
}
.paginate .page-item.active .page-link,
.paginate .page-link:hover{
  background: linear-gradient(135deg,#DAA520,#FFD700);
  color:#062a52;
}

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