/* =========== GOOGLE FONTS ========= */
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700;800;900&family=Heebo:wght@300;400;500;600;700;800;900&display=swap");
/* ============================= 
    COMMON CSS
================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Heebo", sans-serif;
  color: #585978;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-out 0s;
}

a:hover {
  text-decoration: none;
}

button {
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .container {
    padding: 0 30px;
  }
}

/* ============ scroll-top =============== */
.scroll-top {
  width: 45px;
  height: 45px;
  background: #2F80ED;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #ffffff;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
}

.scroll-top:hover {
  color: #ffffff;
  background: rgba(47, 128, 237, 0.8);
}

/* ============================= 
    PRELOADER CSS
================================ */
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #ffffff;
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.preloader .loader .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}

.preloader .loader .spinner .spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  animation: spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .spinner .spinner-container .spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}

.preloader .loader .spinner-circle {
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  /* Spinner Color */
  border-color: #2F80ED #2F80ED #E9E9E9;
  border-radius: 50%;
  border-width: 6px;
}

.preloader .loader .spinner-left .spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: #E9E9E9;
  animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .spinner-right .spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: #E9E9E9;
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */

@keyframes spinner-linspin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-easespin {
  12.5% {
    transform: rotate(135deg);
  }
  25% {
    transform: rotate(270deg);
  }
  37.5% {
    transform: rotate(405deg);
  }
  50% {
    transform: rotate(540deg);
  }
  62.5% {
    transform: rotate(675deg);
  }
  75% {
    transform: rotate(810deg);
  }
  87.5% {
    transform: rotate(945deg);
  }
  to {
    transform: rotate(1080deg);
  }
}

@keyframes spinner-left-spin {
  0% {
    transform: rotate(130deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(130deg);
  }
}

@keyframes right-spin {
  0% {
    transform: rotate(-130deg);
  }
  50% {
    transform: rotate(5deg);
  }
  to {
    transform: rotate(-130deg);
  }
}

/* ============================= 
    TYPOGRAPHY CSS
================================ */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700;
  color: #323450;
  margin-bottom: 0;
  font-family: "Fira Sans", sans-serif;
}

h1, .h1 {
  font-size: 80px;
  letter-spacing: .7px;
}

h2, .h2 {
  font-size: 60px;
  letter-spacing: .7px;
}

h3, .h3 {
  font-size: 40px;
  letter-spacing: .4px;
}

h4, .h4 {
  font-size: 30px;
  letter-spacing: .35px;
}

h5, .h5 {
  font-size: 24px;
}

h6, .h6 {
  font-size: 20px;
}

.font-weight-bold {
  font-weight: 700;
}

.font-weight-semi-bold {
  font-weight: 600;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-regular {
  font-weight: 400;
}

.font-weight-light {
  font-weight: 300;
}

.body-font-size {
  font-size: 16px;
}

.font-size-sm {
  font-size: 14px;
}

.font-size-xs {
  font-size: 12px;
}

.caption-font-size {
  font-size: 14px;
}

p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
}

/* ============================= 
    BUTTONS CSS
================================ */
.button {
  height: 44px;
  font-size: 18px;
  font-weight: 500;
  box-sizing: border-box;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #2F80ED;
  color: #ffffff;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
  padding: 0 25px;
  overflow: hidden;
}

.button i {
  padding-left: 20px;
}

.button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  padding: 50%;
  border-radius: 50%;
  margin: auto;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
  transition: all .4s linear;
  transform: translate3d(-50%, -50%, 0) scale(0);
}

.button:hover {
  color: #ffffff;
}

.button:hover::before {
  transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.button.border-button {
  background: transparent;
  color: #2F80ED;
  border-color: #2F80ED;
}

.button.border-button::before {
  background: rgba(47, 128, 237, 0.16);
}

.button-lg {
  height: 64px;
}

.button-sm {
  height: 34px;
  font-size: 16px;
  font-weight: 400;
}

/* ============================= 
    HEADER-4 CSS
================================ */
/* class active navbar */
.header.header-4 .navbar-nav .nav-item > a.active {
  color: #2F80ED;
}

.header.header-4 .navbar-nav .nav-item > a.active::before,
.header.header-4 .navbar-nav .nav-item > a.active::after {
  width: 30%;
}

.header.header-4 .navbar-nav .nav-item .sub-menu li a.active {
  color: #2F80ED;
  font-weight: 600;
}
/* Kalau parent nav-item punya class active */
.header.header-4 .navbar-nav .nav-item.active > a {
  color: #2F80ED;
  font-weight: 600;
}



/* Atur posisi panah dropdown */
.header.header-4 .navbar-nav .nav-item .dropdown-arrow {
  font-size: 12px;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
  color: #585978;
}

/* Saat hover atau dropdown terbuka */
.header.header-4 .navbar-nav .nav-item.has-sub:hover .dropdown-arrow,
.header.header-4 .navbar-nav .nav-item.has-sub > a[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
  color: #2F80ED;
}


.header {
  background: #ffffff;
}

.header.header-4 .header-search {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-4 .header-search {
    position: absolute;
    right: 60px;
  }
}

@media (max-width: 767px) {
  .header.header-4 .header-search {
    position: absolute;
    right: 60px;
  }
}

.header.header-4 .header-search:hover form {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.header.header-4 .header-search a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  font-size: 16px;
  color: #585978;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
}

.header.header-4 .header-search form {
  position: absolute;
  top: 120%;
  right: 0;
  width: 290px;
  background: #ffffff;
  box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}

.header.header-4 .header-search form input {
  width: 100%;
  border: 1px solid #E9E9E9;
  padding: 5px 10px;
}

.header.header-4 .navbar {
  padding: 0px;
  border-radius: 0px;
  position: relative;
  transition: all 0.3s ease-out 0s;
}



@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-4 .navbar {
    padding: 17px 0;
  }
}

@media (max-width: 767px) {
  .header.header-4 .navbar {
    padding: 17px 0;
  }
}

.header.header-4 .navbar-brand {
  padding: 0;
}

.header.header-4 .navbar-brand img {
  max-width: 180px;
}

.header.header-4 .navbar-toggler {
  padding: 0;
}

.header.header-4 .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.header.header-4 .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #323450;
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.header.header-4 .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}

.header.header-4 .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.header.header-4 .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header.header-4 .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
    max-height: 350px;
    overflow-y: scroll;
  }
}

.header.header-4 .navbar-nav .nav-item {
  position: relative;
  margin-right: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header.header-4 .navbar-nav .nav-item {
    margin-right: 0px;
  }
}

.header.header-4 .navbar-nav .nav-item > a {
  font-size: 16px;
  font-weight: 500;
  color: #585978;
  transition: all 0.3s ease-out 0s;
  padding: 20px 0px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.header.header-4 .navbar-nav .nav-item > a > ::after,
.header.header-4 .navbar-nav .nav-item > a > ::before {
  content: '';
  position: absolute;
  width: 0px;
  height: 2px;
  background: #2F80ED;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-4 .navbar-nav .nav-item > a > ::after,
  .header.header-4 .navbar-nav .nav-item > a > ::before {
    top: auto;
    bottom: 5px;
  }
}

@media (max-width: 767px) {
  .header.header-4 .navbar-nav .nav-item > a > ::after,
  .header.header-4 .navbar-nav .nav-item > a > ::before {
    top: auto;
    bottom: 5px;
  }
}

.header.header-4 .navbar-nav .nav-item > a::after {
  top: 0;
  left: 0;
}

.header.header-4 .navbar-nav .nav-item > a::before {
  right: 0;
  bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header.header-4 .navbar-nav .nav-item > a {
    display: block;
    padding: 10px 0px;
    color: #323450;
  }
}

.header.header-4 .navbar-nav .nav-item > a:hover, .header.header-4 .navbar-nav .nav-item > a.active {
  color: #2F80ED;
}

.header.header-4 .navbar-nav .nav-item > a:hover::before, .header.header-4 .navbar-nav .nav-item > a:hover::after, .header.header-4 .navbar-nav .nav-item > a.active::before, .header.header-4 .navbar-nav .nav-item > a.active::after {
  width: 30%;
}

.header.header-4 .navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-4 .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .header.header-4 .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
    opacity: 0;
  }
}

.header.header-4 .navbar-nav .nav-item .sub-menu {
  width: 250px;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}

.header.header-4 .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-4 .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    display: none;
  }
}

@media (max-width: 767px) {
  .header.header-4 .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header.header-4 .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    height: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-4 .navbar-nav .nav-item .sub-menu.show {
    height: auto;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .header.header-4 .navbar-nav .nav-item .sub-menu.show {
    height: auto;
    visibility: visible;
  }
}

.header.header-4 .navbar-nav .nav-item .sub-menu li {
  display: block;
}

.header.header-4 .navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #585978;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-4 .navbar-nav .nav-item .sub-menu li a {
    padding: 8px 0;
  }
}

@media (max-width: 767px) {
  .header.header-4 .navbar-nav .nav-item .sub-menu li a {
    padding: 8px 0;
  }
}

.header.header-4 .navbar-nav .nav-item .sub-menu li a.active, .header.header-4 .navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #2F80ED;
}

.header.header-4 .navbar-nav .nav-item .sub-menu li a.active::after, .header.header-4 .navbar-nav .nav-item .sub-menu li a:hover::after {
  width: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-4 .navbar-nav .nav-item .sub-menu li a.active, .header.header-4 .navbar-nav .nav-item .sub-menu li a:hover {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .header.header-4 .navbar-nav .nav-item .sub-menu li a.active, .header.header-4 .navbar-nav .nav-item .sub-menu li a:hover {
    padding-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-4 .navbar-nav .nav-item .sub-menu.show {
    display: block;
    height: auto;
    opacity: 1;
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  .header.header-4 .navbar-nav .nav-item .sub-menu.show {
    display: block;
    height: auto;
    opacity: 1;
    box-shadow: none;
  }
}

.header.header-4 .navbar-nav .sub-nav-toggler {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header.header-4 .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 15px;
    background: none;
    color: #000000;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.header.header-4 .navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  position: relative;
  top: -5px;
}
/* Desktop: tetap pakai hover */
@media (min-width: 992px){
  .header.header-4 .navbar-nav .nav-item:hover > .sub-menu{
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}

/* Mobile: submenu tampil jadi blok, tidak absolute, tidak kepotong */
@media (max-width: 991.98px){
  .header.header-4 .navbar-collapse{ overflow: visible; }           /* cegah terpotong */
  .header.header-4 .navbar-nav .nav-item .sub-menu{
    position: static;        /* <-- penting: jangan absolute/relative */
    width: 100%;
    box-shadow: none;
    top: auto;
    left: auto;
    opacity: 1;              /* biar tidak ketergantung opacity */
    visibility: visible;     /* default visible */
    display: none;           /* disembunyikan dulu */
    height: auto;            /* reset */
  }
  .header.header-4 .navbar-nav .nav-item .sub-menu.show{
    display: block;          /* ditampilkan saat .show */
  }
  /* Matikan efek hover di mobile */
  .header.header-4 .navbar-nav .nav-item:hover .sub-menu{ opacity:1; visibility:visible; }
}

.header.header-4 .navbar-nav .nav-item.has-sub > a .dropdown-arrow{ transition: transform .3s; }
.header.header-4 .nav-item.has-sub > a[aria-expanded="true"] .dropdown-arrow{ transform: rotate(180deg); }


/* ============================= 
    HERO-1 CSS
================================ */
.hero-section-wrapper-1 {
  background: #ffffff;
  position: relative;
}

.hero-section-wrapper-1 .header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: transparent;
}

.hero-section-wrapper-1 .header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.hero-section-wrapper-1 .hero-style-1 {
  position: relative;
  z-index: 1;
}

.hero-section-wrapper-1 .hero-style-1 .hero-content-wrapper {
  padding: 300px 0;
}

@media (min-width: 1200px) {
  .hero-section-wrapper-1 .hero-style-1 .hero-content-wrapper {
    padding: 180px 0; /* desktop besar */
    min-height: 92vh;
  }
}

@media (max-width: 1199px) {
  .hero-section-wrapper-1 .hero-style-1 .hero-content-wrapper {
    padding: 150px 0;
    min-height: 90vh;
  }
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section-wrapper-1 .hero-style-1 .hero-content-wrapper {
    padding: 200px 0 50px;
  }
}

@media (max-width: 767px) {
  .hero-section-wrapper-1 .hero-style-1 .hero-content-wrapper {
    padding: 150px 0 50px;
  }
}

.hero-section-wrapper-1 .hero-style-1 .hero-content-wrapper h2 {
  margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-wrapper-1 .hero-style-1 .hero-content-wrapper h2 {
    font-size: 55px;
    line-height: 65px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section-wrapper-1 .hero-style-1 .hero-content-wrapper h2 {
    font-size: 47px;
    line-height: 58px;
  }
}

@media (max-width: 767px) {
  .hero-section-wrapper-1 .hero-style-1 .hero-content-wrapper h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media only screen and (min-width: 575px) and (max-width: 767px) {
  .hero-section-wrapper-1 .hero-style-1 .hero-content-wrapper h2 {
    font-size: 47px;
    line-height: 58px;
  }
}

.hero-section-wrapper-1 .hero-style-1 .hero-content-wrapper p {
  font-weight: 500;
  margin-bottom: 50px;
}

.hero-section-wrapper-1 .hero-style-1 .hero-image {
  margin-bottom: 100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-wrapper-1 .hero-style-1 .hero-image img {
    max-width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section-wrapper-1 .hero-style-1 .hero-image img {
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section-wrapper-1 .hero-style-1 .hero-image img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-section-wrapper-1 .hero-style-1 .hero-image img {
    max-width: 100%;
  }
}



.hero-section-wrapper-1 .hero-style-1 .shapes .shape {
  position: absolute;
  z-index: -1;
}

.hero-section-wrapper-1 .hero-style-1 .shapes .shape.shape-1 {
  right: 0;
  bottom: 0;
  height: 100%;
}

.hero-section-wrapper-1 .hero-style-1 .shapes .shape.shape-2 {
  top: 200px;
  left: 49%;
}

.hero-section-wrapper-1 .hero-style-1 .shapes .shape.shape-3 {
  left: 15%;
  bottom: 120px;
}

.hero-section-wrapper-1 .hero-style-1 .shapes .shape.shape-4 {
  left: 0;
  bottom: 5%;
}


/*tambahan hero*/
/* ========== HERO PNG TRANSPARAN ========== */
.hero-image, .hero-image * { background: transparent !important; }
.hero-png { display:block; background:transparent !important; box-shadow:none !important; border:0; }

/* ========== SEKILAS PRODUK (CAROUSEL) ========== */
#sekilas-produk h2{font-size:40px;}
#sekilas-produk .carousel-item{padding:6px;}
#sekilas-produk .card{border-radius:14px;}

/* tinggi sisi foto konsisten */
#sekilas-produk .img-box{height:380px;}
@media (min-width:1200px){ #sekilas-produk .img-box{height:420px;} }
.object-cover{object-fit:cover;}

/* --- HILANGKAN TITIK INDIKATOR --- */
#sekilas-produk .carousel-indicators{display:none!important;}

/* biarkan tombol bisa “keluar” dari card */
#sekilas-produk .carousel,
#sekilas-produk .card{overflow:visible;}

/* --- PANAH OFFSIDE --- */
#sekilas-produk .carousel-control-prev,
#sekilas-produk .carousel-control-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;height:48px;border-radius:50%;
  background:rgba(47,128,237,.92);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 18px rgba(47,128,237,.25);
  z-index:5;opacity:1;pointer-events:auto;
}

/* geser sedikit ke luar container/card */
#sekilas-produk .carousel-control-prev{left:-26px;}
#sekilas-produk .carousel-control-next{right:-26px;}

/* ikon panah putih (pakai default bootstrap) */
#sekilas-produk .carousel-control-prev-icon,
#sekilas-produk .carousel-control-next-icon{
  width:22px;height:22px;
  background-color:transparent; /* jangan timpa lagi */
  filter:invert(1);              /* jadi putih */
}

/* di layar kecil, kembalikan ke dalam supaya tidak kepotong */
@media (max-width:991.98px){
  #sekilas-produk .carousel-control-prev{left:8px;}
  #sekilas-produk .carousel-control-next{right:8px;}
}


/* ===================== SECTION TITLE (garis kecil biru) ===================== */
.section-title { position: relative; }
.section-title span { display:inline-block; position:relative; }
.section-title span::after{
  content:""; display:block; height:4px; width:90px; margin:.5rem auto 0;
  border-radius:6px; background:#2F80ED;
}
/* ===================== MOTTO DIVIDER (FINAL) ===================== */
/* Section full-bleed biru lembut + motif titik */
.motto-divider{
  position: relative;
  overflow: hidden;
  padding: 84px 0 88px;                     /* ruang atas-bawah lega */
  /* layer 1: motif titik, layer 2: wash biru transparan */
  background:
    radial-gradient(circle at 1px 1px, rgba(47,128,237,.18) 1px, transparent 1px) 0 0/28px 28px,
    linear-gradient(0deg, rgba(47,128,237,.08), rgba(47,128,237,.08));
}

/* aksen shape lembut di kiri-bawah & kanan-atas */
.motto-divider::before,
.motto-divider::after{
  content:"";
  position:absolute;
  width:260px; height:260px; border-radius:50%;
  background: radial-gradient(circle, rgba(47,128,237,.15), rgba(47,128,237,0));
  pointer-events:none;
  z-index:0;                                  /* di belakang konten */
  transform: translateZ(0);
}
.motto-divider::before{ left:-80px; bottom:-80px; }
.motto-divider::after{  right:-90px; top:-90px;  }

/* Judul area (pakai #motto sebagai id section) */
#motto .section-title{ text-align:center; margin-bottom:18px; }
#motto .section-title span{ color:#323450; }
#motto .section-title span::before{ display:none !important; }     /* buang garis bawaan */
#motto .section-title span::after{
  content:"";
  display:block;
  width:85px; height:4px; border-radius:6px;
  background:#2F80ED; margin:.55rem auto 0;
}

/* Kartu kutipan motto di atas background */
.motto-card{
  position: relative;
  z-index:1;                                  /* di atas shape */
  max-width: 920px;
  margin: 28px auto 16px;
  padding: 30px 26px;
  background:#fff;
  color:#323450;
  text-align:center;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* Responsif */
@media (max-width: 575.98px){
  .motto-divider{ padding:68px 0 72px; }
  .motto-card{ margin:22px auto 10px; padding:22px 18px; }
  #motto .section-title span::after{ width:72px; height:3px; }
}

/* ========== MOTTO DIVIDER – TWEAK ========== */

/* padding setengah dari sebelumnya */
.motto-divider{
  padding: 42px 0 44px;             /* sebelumnya 84/88 */
}

/* hilangkan semua garis bawaan pada span judul */
#motto .section-title span::before,
#motto .section-title span::after{
  display:none !important;
}

/* pasang satu garis dari parent judul */
#motto .section-title{
  text-align:center;
  margin-bottom: 14px;               /* jarak judul ke motto */
  position: relative;
}
#motto .section-title::after{
  content:"";
  display:block;
  width:85px; height:4px;
  margin:.55rem auto 0;
  border-radius:6px;
  background:#2F80ED;
}

/* motto tanpa kartu putih: biru, tebal, sedikit lebih besar */
.motto-card{
  max-width:none;
  margin: 10px auto 8px;
  padding: 0;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color:#2F80ED;                     /* biru */
  font-weight: 800;                  /* tebal */
  font-size: clamp(18px, 2.1vw, 22px);
  text-align: center;
}

/* responsif kecil */
@media (max-width:575.98px){
  .motto-divider{ padding: 34px 0 36px; }
  #motto .section-title{ margin-bottom: 12px; }
  #motto .section-title::after{ width:72px; height:3px; }
  .motto-card{ font-size: 18px; }
}



/* ============================= 
    FEATURE-3 CSS
================================ */
.feature-style-3 {
  background: #ffffff;
  padding: 100px 0;
}

.feature-style-3 .single-feature {
  padding: 30px 35px;
  border-radius: 10px;
  margin-bottom: 40px;
  margin-top: 30px;
  box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
}

.feature-style-3 .single-feature .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #2F80ED;
  color: #ffffff;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-top: -60px;
}

.feature-style-3 .single-feature .content h5 {
  font-weight: 600;
  margin-bottom: 25px;
}



/* ============================= 
    ABOUT-5 CSS
================================ */
.about-style-5 {
  position: relative;
  z-index: 1;
  padding-bottom: 130px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-style-5::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, #4B4848, #4B4848), #F3F3F3;
  opacity: 0.4;
  z-index: -1;
}

.about-style-5 .about-content-wrapper {
  padding: 50px;
  background: #ffffff;
}

@media (max-width: 767px) {
  .about-style-5 .about-content-wrapper {
    padding: 50px 30px;
  }
}

@media (max-width: 767px) {
  .about-style-5 .about-content-wrapper .section-title h3 {
    font-size: 33px;
  }
}


/* ============================= 
    CONTACT-3 CSS
================================ */
.contact-style-3 {
  background: #F3F3F3;
  padding: 100px 0 70px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-style-3 .contact-form-wrapper form .single-input {
  position: relative;
  margin-bottom: 20px;
}

.contact-style-3 .contact-form-wrapper form .single-input label {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.contact-style-3 .contact-form-wrapper form .single-input textarea,
.contact-style-3 .contact-form-wrapper form .single-input input {
  background: #ffffff;
  border-radius: 5px;
  position: relative;
  padding-right: 20px;
  padding-left: 50px;
  width: 100%;
  border: 1px solid transparent;
  box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
  transition: all 0.3s ease-out 0s;
}

.contact-style-3 .contact-form-wrapper form .single-input textarea::placeholder,
.contact-style-3 .contact-form-wrapper form .single-input input::placeholder {
  font-weight: 300;
  opacity: 1;
  color: 585978;
}

.contact-style-3 .contact-form-wrapper form .single-input textarea:focus,
.contact-style-3 .contact-form-wrapper form .single-input input:focus {
  border-color: #2F80ED;
}

.contact-style-3 .contact-form-wrapper form .single-input input {
  height: 56px;
}

.contact-style-3 .contact-form-wrapper form .single-input textarea {
  padding: 15px 20px;
  padding-left: 50px;
  resize: none;
}

.contact-style-3 .contact-form-wrapper form .single-input i {
  position: absolute;
  left: 21px;
  top: 20px;
}

.contact-style-3 .contact-form-wrapper form .form-button {
  padding-top: 10px;
}

.contact-style-3 .contact-form-wrapper form .form-button button {
  height: 56px;
  border-radius: 5px;
}

.contact-style-3 .contact-form-wrapper form .form-button button i {
  padding-left: 0;
  padding-right: 20px;
}

@media only screen and (min-width: 1400px) {
  .contact-style-3 .left-wrapper {
    margin-left: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-style-3 .left-wrapper {
    margin-left: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .contact-style-3 .left-wrapper {
    margin-top: 50px;
  }
}

.contact-style-3 .left-wrapper .single-item {
  padding: 25px 20px;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-out 0s;
}

.contact-style-3 .left-wrapper .single-item:hover {
  box-shadow: 0px 5px 25px rgba(47, 128, 237, 0.3);
}

.contact-style-3 .left-wrapper .single-item .icon {
  max-width: 54px;
  width: 100%;
  height: 54px;
  border-radius: 50%;
  background: #2F80ED;
  color: #ffffff;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

/* ============================= 
    FOOTER-4 CSS
================================ */
.footer-style-4 {
  background: #F3F3F3;
  padding-top: 80px;
}

.footer-style-4 .widget-wrapper .footer-widget {
  margin-bottom: 50px;
}

.footer-style-4 .widget-wrapper .footer-widget .logo {
  margin-bottom: 30px;
}

.footer-style-4 .widget-wrapper .footer-widget p.desc {
  margin-bottom: 30px;
}

.footer-style-4 .widget-wrapper .footer-widget .socials {
  justify-content: flex-start;
}

.footer-style-4 .widget-wrapper .footer-widget .socials li a {
  background: rgba(47, 128, 237, 0.4);
  margin: 0;
  margin-right: 10px;
  width: 44px;
  height: 44px;
  font-size: 20px;
}

.footer-style-4 .widget-wrapper .footer-widget .socials li a:hover {
  background: #2F80ED;
}

.footer-style-4 .widget-wrapper .footer-widget h6 {
  font-weight: 600;
  color: #585978;
  margin-bottom: 35px;
  margin-top: 10px;
}

.footer-style-4 .widget-wrapper .footer-widget .links li a {
  font-size: 16px;
  line-height: 32px;
  color: #585978;
}

.footer-style-4 .widget-wrapper .footer-widget .links li a:hover {
  color: #2F80ED;
}

.footer-style-4 .widget-wrapper .footer-widget .download-app li a {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 5px;
  background: #ffffff;
  max-width: 200px;
  width: 100%;
  margin-bottom: 12px;
}

.footer-style-4 .widget-wrapper .footer-widget .download-app li a .icon {
  font-size: 35px;
  color: #323450;
  margin-right: 12px;
}

.footer-style-4 .widget-wrapper .footer-widget .download-app li a .text {
  font-size: 14px;
  font-weight: 500;
  color: #585978;
}

.footer-style-4 .widget-wrapper .footer-widget .download-app li a .text b {
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Fira Sans", sans-serif;
  color: #323450;
}

.footer-style-4 .copyright-wrapper {
  border-top: 1px solid rgba(88, 89, 120, 0.4);
  padding: 20px 0;
}

.footer-style-4 .copyright-wrapper p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: rgba(88, 89, 120, 0.6);
}

.footer-style-4 .copyright-wrapper p a {
  color: inherit;
}

.footer-style-4 .copyright-wrapper p a:hover {
  color: #2F80ED;
}

.footer-style-4.footer-dark {
  background: #323450;
}

.footer-style-4.footer-dark .widget-wrapper .footer-widget p {
  color: #ffffff;
}

.footer-style-4.footer-dark .widget-wrapper .footer-widget h6 {
  color: #ffffff;
}

.footer-style-4.footer-dark .widget-wrapper .footer-widget .socials li a {
  background: rgba(255, 255, 255, 0.1);
}

.footer-style-4.footer-dark .widget-wrapper .footer-widget .socials li a:hover {
  background: #2F80ED;
}

.footer-style-4.footer-dark .widget-wrapper .footer-widget .links li a {
  color: #ffffff;
}

.footer-style-4.footer-dark .widget-wrapper .footer-widget .links li a:hover {
  color: #2F80ED;
}

.footer-style-4.footer-dark .copyright-wrapper p {
  color: rgba(255, 255, 255, 0.8);
}

/*CSS FOLLOW US FB*/
/* kartu FB yang rapi di footer */
.fb-card{
  max-width: 340px;              /* biar tidak melebar */
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
  padding:0;                     /* nol supaya pas */
}

/* rapikan heading kolom */
/* Kartu kecil untuk FB Page Plugin di footer */
.footer .fb-likebox{
  width: 320px;                 /* samakan dengan data-width di atas */
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

/* Paksa iframe FB mengikuti lebar kontainer agar tidak “ngecil”/terpotong */
.footer .fb-page,
.footer .fb-page > span,
.footer .fb-page iframe{
  width: 100% !important;
}

/* Hilangkan margin/padding bawaan yang bikin tampak seperti kapsul */
.footer .fb-likebox .fb-page{ margin:0 !important; }

.footer .socials li a {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); color: #ffffff;
  transition: .2s ease;
}
.footer .socials li a:hover { background: #2F80ED; color:#fff; }

.footer .socials .icon-x { display:block; width:20px; height:20px; }
/* ====== Baris alamat + sosmed sejajar ====== */
.footer-style-4 .addr-social{
  display:flex;
  align-items:center;          /* sejajarkan vertikal */
  justify-content:space-between;
  gap:16px;
}
.footer-style-4 .addr-social .desc{
  margin:0;                    /* hilangkan jarak bawah */
  max-width: 520px;            /* biar teks tidak terlalu panjang, opsional */
}
.footer-style-4 .socials-inline{
  display:flex;
  align-items:center;
  margin:0; padding:0; list-style:none;
}
.footer-style-4 .socials-inline li{ margin:0 4px; }
.footer-style-4 .socials-inline li a{
  width:44px; height:44px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.1); color:#fff; transition:.2s;
}
.footer-style-4 .socials-inline li a:hover{ background:#2F80ED; color:#fff; }

/* Responsif: di layar kecil, stack ke bawah */
@media (max-width: 575.98px){
  .footer-style-4 .addr-social{
    flex-direction:column; align-items:flex-start; gap:10px;
  }
}

/* ====== List Link rata kiri sejajar judul ====== */
.footer-style-4 .footer-widget .links{
  list-style:none;
  margin:0;
  padding-left:0;        /* hapus indented bawaan ul */
}
.footer-style-4 .footer-widget .links li{ margin:0; }
.footer-style-4 .footer-widget .links li a{
  display:inline-block;
  font-size:16px; line-height:32px; color:#585978;
}
.footer-style-4.footer-dark .footer-widget .links li a{ color:#fff; }
.footer-style-4 .footer-widget h6{ margin-bottom:12px; } /* rapikan jarak judul */

/* ============================= 
    DEFAULT CSS
================================ */
.img-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
}

.socials li a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2F80ED;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 8px;
}

input, textarea, button {
  transition: all 0.3s ease-out 0s;
}

input:focus, textarea:focus, button:focus {
  outline: none;
  box-shadow: none;
}

.radius-3 {
  border-radius: 3px;
}

.radius-10 {
  border-radius: 10px;
}

.radius-30 {
  border-radius: 30px;
}

.radius-50 {
  border-radius: 50px;
}

.radius-full {
  border-radius: 50%;
}

.radius-10-0 {
  border-radius: 10px 0px;
}

/* ====== MARGIN PADDING ======= */
.mt-6 {
  margin-top: 6px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mb-6 {
  margin-bottom: 6px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.ml-6 {
  margin-left: 6px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-6 {
  margin-right: 6px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.pt-6 {
  padding-top: 6px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-6 {
  padding-bottom: 6px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.pl-6 {
  padding-left: 6px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-6 {
  padding-right: 6px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}


/*tambahan kolom deskripsi produk*/
/* Spasi antar kolom saat desktop */
@media (min-width: 992px){
  .row.g-4 > [class*="col-"] { display: flex; }
  .row.g-4 .h-100 { width: 100%; }
}

/* Ukuran font tabel sedikit ringkas */
.table td, .table th { font-size: 15px; }


/*SUB NAV ABOUT*/
#about-subnav .nav-link { border-radius:30px; }
#about-subnav .nav-link.active { background:#2F80ED; }
blockquote h4 { color:#323450; }

/*simbol produk*/
/* ikon bulat */
  .produk-icon{
    width:36px;height:36px;border-radius:50%;
    display:inline-flex;align-items:center;justify-content:center;
    background:#eaf3ed;margin-right:.5rem;flex:0 0 auto;
  }
  .produk-icon svg{width:22px;height:22px}
  .ikon-road path,.ikon-lpg path,.ikon-cng path{stroke:#0a6a2f}
  .ikon-cng .fill{fill:#0a6a2f;stroke:none}

  /* judul & layout header kartu */
  .produk-header{
    display:flex;align-items:center;gap:.5rem;margin-bottom:.35rem
  }
  .produk-title{
    font-size:16px;           /* lebih kecil supaya 1 baris */
    line-height:1.2;font-weight:700;margin:0;white-space:nowrap
  }

  /* rapikan kartu */
  .produk-card{padding:18px 18px 14px}
  @media (max-width: 575.98px){
    .produk-title{font-size:15px}
    .produk-icon{width:34px;height:34px}
    .produk-icon svg{width:20px;height:20px}
  }
  


/* ==== Hard reset: jangan pernah garis-bawahi link ==== */
a,
a:hover,
a:focus,
a:active,
.nav-link,
.nav-link:hover,
.nav-link:focus,
.dropdown-item,
.dropdown-item:hover,
.dropdown-item:focus,
.button {
  text-decoration: none !important;
}

/* khusus tombol anchor bergaya button */
.button:hover,
.button:focus {
  text-decoration: none !important;
}



/* jarak atas–bawah untuk blok carousel di section Produk Kami */
#sekilas-produk .carousel{
  margin-top: 14px;
  margin-bottom: 18px;
}

/* kalau masih terasa dempet dengan judul "Produk Kami", boleh tambah sedikit */
#sekilas-produk h3{
  margin-bottom: 14px;  /* default mb-3 kadang kecil */
}

/* sedikit ruang di luar kartu (opsional) */
#sekilas-produk .card{
  margin: 6px 0;
}

#sekilas-produk{
  margin-top: 28px;       /* bikin jarak dari divider */
}

/* ================== FIX: batasi underline judul ================== */

/* 1) Matikan underline global pada semua .section-title */
.section-title::after,
.section-title span::after { 
  content: none !important;
}

/* 2) Tampilkan underline HANYA di section Motto (homepage) */
#motto .section-title::after{
  content:"";
  display:block;
  width:85px; height:4px;
  margin:.55rem auto 0;
  border-radius:6px;
  background:#2F80ED;
}



/* 4) Helper opsional: kalau suatu hari butuh underline di tempat lain,
      cukup tambah class .has-underline ke elemen judul */
.has-underline{ position:relative; }
.has-underline::after{
  content:"";
  display:block;
  width:84px; height:4px;
  margin:12px auto 0;
  background:#2F80ED; border-radius:2px;
}

/* 5) Pastikan paragraf/konten di halaman produk tidak ikut tebal/bergaris */
.about-section .section-title::after,
.about-section .section-title span::after{
  content:none !important;
}

/* ====== Kartu produk unggulan ====== */
.produk-card{ padding:14px 14px 16px; background:#fff; }

/* baris judul + ikon */
.produk-card .produk-header{
  display:flex;
  align-items:center;          /* <-- bikin ikon & judul sejajar vertikal */
  gap:10px;
  margin-bottom:8px;
}

/* kapsul ikon – ukuran seragam */
.produk-card .produk-icon{
  flex:0 0 40px;               /* selalu 40x40 */
  width:40px; height:40px;
  border-radius:9999px;
  background:#eaf5ea;          /* hijau muda, bisa ganti */
  display:flex; align-items:center; justify-content:center;
}

/* SVG di dalam ikon */
.produk-card .produk-icon svg{
  width:22px; height:22px;
  display:block;               /* hilangkan baseline gap */
  stroke:#2f7d32;              /* warna garis ikon */
  fill:none;
}

/* kalau ada elemen yang perlu fill */
.produk-card .produk-icon svg .fill{ fill:#2f7d32; }

/* judul kartu */
.produk-card .produk-title{
  margin:0;                    /* hilangkan margin default h6 */
  line-height:1.2;
}
/* contoh warna khusus per ikon */
.ikon-road{ stroke:#2f7d32; }
.ikon-lpg{  stroke:#2f7d32; }
.ikon-cng{  stroke:#2f7d32; }


/* ==========================================================
   PRODUK ASPAL ESSO (namespace: .page-esso …)
   ========================================================== */

.page-esso .esso-banner{
  background: linear-gradient(0deg, rgba(47,128,237,.08), rgba(47,128,237,.08));
  padding: 48px 0;
}
.page-esso .esso-bc a{ color:#2F80ED; }
.page-esso .esso-about p{ font-weight:400; color:#585978; }

.page-esso .esso-h5{ font-size:20px; font-weight:700; color:#323450; }

/* Kotak alamat hijau */
.page-esso .esso-address{
  background:#014421; color:#fff; border-radius:6px; padding:16px 18px;
}

/* Tabel ESSO (header hijau) */
.page-esso .esso-table thead th{
  background:#014421; color:#fff; border-color:#014421;
}
.page-esso .esso-table td, 
.page-esso .esso-table th{ font-size:15px; }

/* Pastikan tidak ada underline otomatis di judul esekusi */
.page-esso .section-title::after,
.page-esso .section-title span::after{ content:none !important; }

/* ==========================================================
   RESPONSIVE MINOR
   ========================================================== */
@media (max-width:575.98px){
  .produk-title{ font-size:15px }
  .produk-icon{ width:34px;height:34px }
  .produk-icon svg{ width:20px;height:20px }
  .home-page .home-hero__content{ padding:120px 0 40px; }
}

/* ==========================================================
   PRODUK LPG BULK DAN TABUNG
   ========================================================== */
   
/* ========= LPG page scoped styles ========= */
/* ===== Posisi & spasi heading + tabel ===== */
.page-lpg .table-wrap{ display:block; width:100%; }
.page-lpg .table-wrap .section-head{
  display:block; width:100%;
  margin-bottom:.5rem;
}
.page-lpg .table-responsive{ display:block; width:100%; margin-top:.25rem; }

/* ===== Kartu Keunggulan/Varian: nomor besar & rapi ===== */
.page-lpg .gb-list-number{
  list-style: none;            /* pakai custom counter */
  margin: 0;
  padding-left: 0;
  counter-reset: gbnum;
}
.page-lpg .gb-list-number li{
  position: relative;
  margin: .35rem 0;
  padding-left: 30px;          /* ruang untuk nomor */
  line-height: 1.35;
}
.page-lpg .gb-list-number li::before{
  counter-increment: gbnum;
  content: counter(gbnum) ".";
  position: absolute;
  left: 0; top: 0;
  font-weight: 700;
  color: #2F80ED;
}

/* ===== Checklist wilayah: lebih tegas ===== */
.page-lpg .gb-checklist li{
  position: relative;
  padding-left: 28px;
  margin: .35rem 0;
}
.page-lpg .gb-checklist li::before{
  content: "✔";
  position: absolute;
  left: 0; top: 0;
  font-weight: 800;
  color: #2fb36d;
  font-size: 16px;
  line-height: 1.1;
}

/* ===== Kartu umum ===== */
.page-lpg .feature-card{
  border:1px solid #e6ebf1;
  padding:16px 14px;
  border-radius:10px;
  background:#fff;
  box-shadow:0 3px 14px rgba(9,30,66,.04);
}


/* ================= CNG page (scoped) ================ */
.page-cng .banner-area{
  background:#f4fbff;
  padding:28px 0 24px;
  border-bottom:1px solid #e8f0f7;
}
.page-cng .breadcrumb{ background:transparent; padding:0; }

/* Kartu info */
.page-cng .feature-card{
  border:1px solid #e6ebf1;
  padding:16px 14px;
  border-radius:10px;
  background:#fff;
  box-shadow:0 3px 14px rgba(9,30,66,.04);
}

/* Numbered list */
.page-cng .gb-list-number{
  list-style:none;
  margin:0; padding-left:0;
  counter-reset: cngnum;
}
.page-cng .gb-list-number li{
  position:relative;
  margin:.35rem 0; padding-left:30px;
  line-height:1.35;
}
.page-cng .gb-list-number li::before{
  counter-increment:cngnum;
  content: counter(cngnum) ".";
  position:absolute; left:0; top:0;
  font-weight:700; color:#2F80ED;
}

/* Checklist */
.page-cng .gb-checklist{ list-style:none; margin:0; padding:0; }
.page-cng .gb-checklist li{
  position:relative; padding-left:28px; margin:.35rem 0;
}
.page-cng .gb-checklist li::before{
  content:"✔"; position:absolute; left:0; top:0;
  font-weight:800; color:#2fb36d; font-size:16px; line-height:1.1;
}

/* Tabel rapi */
.page-cng .table-wrap{ display:block; width:100%; }
.page-cng .table-wrap .section-head{ display:block; width:100%; margin-bottom:.5rem; }
.page-cng .table-responsive{ border-radius:10px; overflow:hidden; }
.page-cng table.table{ background:#fff; border-color:#eef1f6; }
.page-cng table.table th{ background:#f8fafc; font-weight:600; white-space:nowrap; }

/* ================= Contact page (scoped) ================= */
.page-contact .banner-area{
  background:#f7f9ff;
  padding:28px 0 24px;
  border-bottom:1px solid #eef1f6;
}

.page-contact .loc-card{
  position:relative;
  border:1px solid #e6ebf1;
  background:#fff;
  border-radius:10px;
  padding:16px 16px 12px 16px;
  box-shadow:0 6px 16px rgba(9,30,66,.06);
}

.page-contact .loc-badge{
  position:absolute;
  left:-10px; top:-12px;
  background:#2fb36d;
  color:#fff;
  font-weight:700;
  width:36px; height:36px;
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 10px rgba(47,179,109,.4);
}

.page-contact .loc-list{
  list-style:none; margin:0; padding:0;
}
.page-contact .loc-list li{
  display:flex; gap:10px; align-items:flex-start;
  margin:.35rem 0;
}
.page-contact .loc-list .ico{
  width:28px; height:28px; border-radius:50%;
  background:#eaf7ef; color:#2fb36d;
  display:flex; align-items:center; justify-content:center;
  flex:0 0 28px;
}
.page-contact .loc-list .txt{ line-height:1.4; }

/* Map box */
.page-contact .mapbox{ background:#eef2f7; }

/* Form overrides */
.page-contact .contact-form-wrapper .single-input{
  position:relative;
}
.page-contact .contact-form-wrapper .single-input i{
  position:absolute; right:10px; top:50%; transform:translateY(-50%);
  color:#98a2b3; pointer-events:none;
}

.gbu-contact-form .hp-field, .hp-field{ position:absolute; left:-5000px; opacity:0; height:0; width:0; }


/* Keunggulan index page */
.fitur-card .fitur-head{display:flex;align-items:center;gap:.75rem;margin-bottom:.25rem}
  .fitur-icon{
    --s:44px;width:var(--s);height:var(--s);
    display:grid;place-items:center;border-radius:50%;
    background:var(--bg,linear-gradient(135deg,#e9f2ff,#eef6ff));
    color:var(--fg,#0d6efd);
    box-shadow:inset 0 0 0 1px rgba(13,110,253,.12);
    flex:0 0 var(--s)
  }
  .fitur-icon i{font-size:1.15rem;line-height:1}

  /* Varian warna */
  .fi-blue   {--bg:linear-gradient(135deg,#e9f2ff,#eef6ff);--fg:#0d6efd}
  .fi-indigo {--bg:linear-gradient(135deg,#eceafe,#f2efff);--fg:#4f46e5}
  .fi-teal   {--bg:linear-gradient(135deg,#e6f7f4,#e9fbf8);--fg:#0ea5a5}
  .fi-purple {--bg:linear-gradient(135deg,#efe5ff,#f4edff);--fg:#8250df}
  .fi-pink   {--bg:linear-gradient(135deg,#ffe6f1,#fff0f6);--fg:#d63384}
  .fi-amber  {--bg:linear-gradient(135deg,#fff2df,#fff6e6);--fg:#f59f00}

/* ==== PRODUK CNG ====== */
/* ===== Utilities (card & shadow) ===== */
.page-cng .feature-card{
  background:#fff; border:1px solid #eef1f4; border-radius:14px; padding:16px;
}
.page-cng .shadow-sm{ box-shadow:0 6px 18px rgba(0,0,0,.08); }

/* ===== Numbered list (pakai bawaan browser) ===== */
.page-cng ol.gb-list-number{
  list-style: decimal outside !important;
  padding-left: 1.25rem;
}
.page-cng ol.gb-list-number > li{
  margin:.35rem 0;
}
/* Matikan gaya nomor buatan dari tema */
.page-cng ol.gb-list-number > li::before{ content:none !important; }
/* Styling ringan untuk angka */
.page-cng ol.gb-list-number > li::marker{
  color:#0d6efd; font-weight:800;
}

/* ===== Checklist & arrow list ===== */
.page-cng .gb-checklist,
.page-cng .check{ list-style:none; padding-left:0; }
.page-cng .gb-checklist li,
.page-cng .check li{
  position:relative; padding-left:22px; margin:6px 0;
}
.page-cng .gb-checklist li::before,
.page-cng .check li::before{
  content:"✓"; position:absolute; left:0; top:0; color:#198754; font-weight:800;
}
.page-cng .arrow{ list-style:none; padding-left:0; }
.page-cng .arrow li{ position:relative; padding-left:18px; margin:6px 0; }
.page-cng .arrow li::before{ content:"›"; position:absolute; left:0; top:0; color:#6c757d; font-weight:800; }

/* ===== Fasilitas 01–03 (pilih satu versi konsisten) ===== */
.page-cng .facility-card{
  background:#fff; border:1px solid #eef1f4; border-radius:14px;
  padding:14px; display:flex; flex-direction:column; box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.page-cng .facility-no{
  width:48px; height:48px; border-radius:12px;
  background:linear-gradient(135deg,#111827,#374151); /* versi gelap konsisten */
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-weight:800; margin-bottom:10px;
}
.page-cng .facility-no.color-2{ background:linear-gradient(135deg,#2563eb,#2b6cb0); }
.page-cng .facility-no.color-3{ background:linear-gradient(135deg,#ef4444,#dc2626); }

/* ===== Tabel ===== */
.page-cng .table-wrap .section-head{ font-weight:800; }
.page-cng table th{ background:#f8f9fa; }

/* ===== Chips & helpers ===== */
.page-cng .chips{ display:flex; flex-wrap:wrap; gap:6px; }
.page-cng .chip{
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(17,24,39,.06); border:1px solid rgba(17,24,39,.12);
  padding:6px 10px; border-radius:999px; font-weight:700; font-size:.9rem;
}
.page-cng .volume-note{
  display:grid; gap:6px; border:1px dashed #e5e7eb; border-radius:12px; padding:10px; background:#fcfcfd;
}

/* ===== CTA & WhatsApp button (spesifik + paksa hijau) ===== */
.page-cng .cta{
  display:flex; gap:16px; align-items:center; justify-content:space-between;
  border:1px solid #eef1f4; background:#fff; border-radius:16px; padding:14px 16px;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
}
.page-cng .cta .btn{ border-radius:999px; padding:8px 16px; font-weight:700; }

.page-cng .btn.btn-whatsapp{
  background:#25D366 !important; border-color:#25D366 !important; color:#fff !important;
}
.page-cng .btn.btn-whatsapp:hover{
  background:#1EBE5D !important; border-color:#1EBE5D !important; color:#fff !important;
}
.page-cng .btn.btn-whatsapp:focus{
  box-shadow:0 0 0 .2rem rgba(37,211,102,.25) !important; outline:0 !important;
}
.page-cng .btn.btn-whatsapp i{ margin-right:.4rem; }

/* ==== RINGKASAN: rapatkan chip & samakan tinggi kolom dengan foto ==== */

/* 1) Chips dipaksa 1 baris (desktop), kecilkan padding/teks */
.page-cng #ringkasan .chips{ display:flex; flex-wrap:nowrap; gap:6px; }
.page-cng #ringkasan .chip{ font-size:.78rem; padding:4px 8px; line-height:1.15; white-space:nowrap; }
.page-cng #ringkasan .chip i{ font-size:.9em; }

/* 2) Kompakkan jarak heading & paragraf agar muat */
.page-cng #ringkasan h4{ margin-bottom:.5rem; }
.page-cng #ringkasan p{ margin-bottom:.6rem; }

/* 3) Desktop: samakan tinggi kolom teks dengan tinggi foto */
@media (min-width: 992px){
  .page-cng #ringkasan{ --ringkasan-h: 380px; } /* atur tinggi target di sini (360–420px ok) */

  /* jadikan kedua kolom flex agar bisa stretch sama tinggi */
  .page-cng #ringkasan .row.align-items-start > [class*="col-"]{ display:flex; }
  .page-cng #ringkasan .about-img,
  .page-cng #ringkasan .about-content-wrapper{ display:flex; flex-direction:column; width:100%; }

  /* foto fix tinggi; isi kolom teks ikut tinggi yang sama */
  .page-cng #ringkasan .about-img img{
    height:var(--ringkasan-h); width:100%; object-fit:cover; border-radius:.25rem;
  }
  .page-cng #ringkasan .about-content-wrapper{
    height:var(--ringkasan-h); overflow:auto; padding-right:6px; /* scroll internal kalau narasi lebih panjang */
  }
}

/* 4) Mobile/tablet: kembali normal (tinggi auto & chips boleh turun baris) */
@media (max-width: 991.98px){
  .page-cng #ringkasan .chips{ flex-wrap:wrap; }
  .page-cng #ringkasan .about-img img,
  .page-cng #ringkasan .about-content-wrapper{ height:auto; overflow:visible; }
}

/* ====== Page LPG – kartu utilitas & chips (ringan) ====== */
.page-lpg .feature-card{
  background:#fff; border:1px solid #eef1f4; border-radius:14px; padding:16px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.page-lpg .chips{display:flex;flex-wrap:wrap;gap:8px}
.page-lpg .chip{display:inline-flex;align-items:center;gap:8px;background:rgba(17,24,39,.06);
  border:1px solid rgba(17,24,39,.12);padding:6px 10px;border-radius:999px;font-weight:700;font-size:.9rem}

/* ====== CTA block (match CNG) ====== */
.page-lpg .cta{
  display:flex;gap:16px;align-items:center;justify-content:space-between;
  border:1px solid #eef1f4;background:#fff;border-radius:16px;padding:14px 16px;
  box-shadow:0 8px 22px rgba(0,0,0,.08)
}
.page-lpg .cta .btn{border-radius:999px;padding:8px 16px;font-weight:700}

/* Tombol WhatsApp hijau */
.page-lpg .btn.btn-whatsapp{
  background:#25D366 !important; border-color:#25D366 !important; color:#fff !important;
}
.page-lpg .btn.btn-whatsapp:hover{
  background:#1EBE5D !important; border-color:#1EBE5D !important; color:#fff !important;
}
.page-lpg .btn.btn-whatsapp:focus{
  box-shadow:0 0 0 .2rem rgba(37,211,102,.25) !important; outline:0 !important;
}

/* Responsif CTA */
@media (max-width: 575.98px){
  .page-lpg .cta{flex-direction:column;align-items:flex-start;gap:10px}
}

/* ====== Aspal Esso senada dengan LPG/CNG ====== */
/* Kartu & chips senada dengan LPG/CNG */
.page-esso .feature-card{background:#fff;border:1px solid #eef1f4;border-radius:14px;padding:16px;box-shadow:0 6px 18px rgba(0,0,0,.06)}
.page-esso .chips{display:flex;flex-wrap:wrap;gap:8px}
.page-esso .chip{display:inline-flex;align-items:center;gap:8px;background:rgba(17,24,39,.06);border:1px solid rgba(17,24,39,.12);padding:6px 10px;border-radius:999px;font-weight:700;font-size:.9rem}

/* Tabel header hijau (Esso) + compact */
.page-esso .esso-table thead th{background:#014421;color:#fff;border-color:#014421}

/* CTA block + tombol WhatsApp hijau brand */
.page-esso .cta{display:flex;gap:16px;align-items:center;justify-content:space-between;border:1px solid #eef1f4;background:#fff;border-radius:16px;padding:14px 16px;box-shadow:0 8px 22px rgba(0,0,0,.08)}
.page-esso .cta .btn{border-radius:999px;padding:8px 16px;font-weight:700}
.page-esso .btn.btn-whatsapp{background:#25D366!important;border-color:#25D366!important;color:#fff!important}
.page-esso .btn.btn-whatsapp:hover{background:#1EBE5D!important;border-color:#1EBE5D!important;color:#fff!important}
.page-esso .btn.btn-whatsapp:focus{box-shadow:0 0 0 .2rem rgba(37,211,102,.25)!important;outline:0!important}
@media (max-width:575.98px){.page-esso .cta{flex-direction:column;align-items:flex-start;gap:10px}}


/* ===== Contact cards (dipakai di semua page produk) ===== */
.page-cng .contact-card, .page-lpg .contact-card, .page-esso .contact-card{
  background:#fff; border:1px solid #eef1f4; border-radius:14px; padding:14px;
}
.contact-top{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.contact-avatar{
  width:44px; height:44px; border-radius:50%;
  display:grid; place-items:center; font-weight:800; color:#fff;
  background:linear-gradient(135deg,#2563eb,#2b6cb0);
  box-shadow:0 6px 16px rgba(37,99,235,.18);
}
.contact-name{ font-weight:700; line-height:1.1; }
.contact-lines{ display:grid; gap:6px; margin:8px 0 10px; }
.contact-lines .line{ display:flex; gap:8px; align-items:center; color:#374151; }
.contact-actions{ display:flex; gap:8px; }

/* Pastikan warna WA hijau brand */
.btn.btn-whatsapp{ background:#25D366 !important; border-color:#25D366 !important; color:#fff !important; }
.btn.btn-whatsapp:hover{ background:#1EBE5D !important; border-color:#1EBE5D !important; }
.btn.btn-whatsapp:focus{ box-shadow:0 0 0 .2rem rgba(37,211,102,.25) !important; }

/* ===== Armada section (Esso) ===== */
.page-esso .armada-section{
  background:#f7f9ff;                 /* lembut, senada banner */
  border-top:1px solid #eef1f6;
  border-bottom:1px solid #eef1f6;
}
.armada-figure{
  position:relative; overflow:hidden; border-radius:14px;
  background:#fff; box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.armada-img{
  display:block; width:100%; height:320px; object-fit:cover;
}
@media (min-width:1200px){ .armada-img{ height:360px; } }

.armada-badge{
  position:absolute; left:12px; top:12px;
  background:rgba(50,52,80,.92); color:#fff;
  padding:6px 10px; border-radius:999px;
  font-weight:700; font-size:.85rem;
  box-shadow:0 6px 14px rgba(0,0,0,.18);
}
.armada-figure figcaption{
  padding:10px 12px; font-size:.9rem; color:#374151;
  background:#fff; border-top:1px solid #eef1f4;
}

/* ================= ARMADA KAMI – LPG BULK ================= */
.page-lpg.armada-section h4{font-weight:700;color:#323450}
.page-lpg .armada-card{
  position:relative; background:#fff; border:1px solid #eef1f4; border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.08); overflow:hidden;
}


.page-lpg .armada-badge{
  position:absolute; top:14px; left:14px; display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px; background:#0f172a; color:#fff; font-weight:700;
  box-shadow:0 8px 18px rgba(0,0,0,.22); z-index:2; font-size:.95rem;
}
.page-lpg .armada-badge i{font-size:1rem; line-height:1}

.page-lpg .armada-caption{
  padding:12px 14px; border-top:1px solid #eef1f4; color:#475569; font-size:.95rem;
}

/* ===== Pelanggan / Logo grid ===== */
.client-section .section-title { margin-bottom: 10px; }
.client-section .section-sub { color:#6b7280; font-size:.95rem; margin-bottom: 16px; }

.logo-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap:12px;
}
.logo-card{
  background:#fff;
  border:1px solid #eef1f4;
  border-radius:12px;
  padding:12px;
  height:96px;                 /* seragam */
  display:grid; place-items:center;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}
.logo-card img{
  max-width:100%;
  max-height:64px;             /* kontrol tinggi logo */
  width:auto; height:auto;
  object-fit:contain;
  filter: grayscale(1);
  transition: .2s ease;
}
.logo-card:hover img{ filter:none; }

/* Judul kecil per grup */
.client-group h6{
  font-weight:700; color:#111827; margin:14px 0 8px;
}

/* Strip mini untuk halaman produk */
.trusted-strip{
  display:flex; align-items:center; gap:12px; flex-wrap:wrap;
  padding:10px 12px; background:#fff; border:1px solid #eef1f4; border-radius:14px;
}
.trusted-strip .logo-box{
  width:96px; height:44px; border:1px solid #eef1f4; border-radius:10px;
  display:grid; place-items:center; background:#fff;
}
.trusted-strip .logo-box img{ max-width:86px; max-height:30px; object-fit:contain; filter:grayscale(1); }
.trusted-strip .logo-box:hover img{ filter:none; }
.trusted-strip .more-link{ margin-left:auto; font-weight:700; }


/* ======= FIX: Media responsif untuk halaman LPG Bulk ======= */

/* Pastikan SEMUA <img> di page-lpg nurut lebar container */
.page-lpg img,
.page-lpg .armada-img,
.page-lpg .facility-img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;              /* kunci agar tidak “ketarik” melebar */
}

/* Kartu armada & fasilitas tidak boleh overflow */
.page-lpg .armada-card,
.page-lpg .facility-card {
  position: relative;
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  overflow: hidden;          /* stop gambar keluar sisi kartu */
}

/* -- Ganti tinggi fix jadi rasio fleksibel (desktop/tablet) -- */
.page-lpg .armada-img,
.page-lpg .facility-img {
  /* Kalau mau pakai rasio cantik tanpa fixed px: */
  aspect-ratio: 16 / 9;      /* tampil proporsional di layar besar */
  object-fit: cover;         /* isi ruang tanpa distorsi */
}

/* -- Di HP: biar tinggi ikut gambar, tidak dipaksa aspect ratio -- */
@media (max-width: 575.98px) {
  .page-lpg .armada-img,
  .page-lpg .facility-img {
    aspect-ratio: auto;      /* matikan rasio */
    height: auto;            /* biarkan alami */
  }
}

/* Grid responsif rapi (opsional, tapi bagus buat kerapian) */
.page-lpg .armada-caption,
.page-lpg .facility-caption {
  padding: 12px 14px;
  border-top: 1px solid #eef1f4;
  color: #475569;
  font-size: .95rem;
}

/* Badge kecil di foto (kalau dipakai) */
.page-lpg .armada-badge,
.page-lpg .facility-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
  z-index: 2;
}

/* ===== Contact form: field + icon alignment ===== */
.contact-form-wrapper .single-input{
  position:relative;
  margin-bottom:14px;
}

.contact-form-wrapper .single-input .form-input{
  display:block;
  width:100%;
  border:1px solid #e9eef6;
  background:#fff;
  border-radius:12px;
  font-size:14px;
  line-height:1.4;
  box-shadow:0 2px 8px rgba(20,20,43,.04);
}
.contact-form-wrapper .single-input .form-input::placeholder{
  color:#6b7280; opacity:1;
}

/* input (single-line) */
.contact-form-wrapper .single-input input.form-input{
  height:56px;
  padding:14px 16px 14px 48px;   /* ruang kiri utk ikon */
}
/* textarea */
.contact-form-wrapper .single-input textarea.form-input{
  min-height:180px;
  padding:14px 16px 14px 48px;
  resize:vertical;
}

/* ikon */
.contact-form-wrapper .single-input .form-input + i{
  position:absolute;
  left:16px;
  font-size:18px;
  color:#5b6b83;
  pointer-events:none;
}
.contact-form-wrapper .single-input input.form-input + i{
  top:50%;
  transform:translateY(-46%);    /* sejajarkan placeholder */
}
.contact-form-wrapper .single-input textarea.form-input + i{
  top:18px;                       /* pojok kiri atas */
  transform:none;
}

/* focus */
.contact-form-wrapper .single-input .form-input:focus{
  outline:0;
  border-color:#cfe4ff;
  box-shadow:0 0 0 3px rgba(56,132,255,.15);
}

