@charset "UTF-8";
:root {
  --color-primary: #EE0000;
  --color-primary-light: color-mix(in oklab, var(--color-primary), white 10%);
  --color-primary-dark: color-mix(in oklab, var(--color-primary), black 10%);
  --color-primary-darker: color-mix(in oklab, var(--color-primary), black 20%);
  --color-primary-rgb: 254, 0, 0;
  --color-secondary: #ffba08;
  --color-secondary-light: color-mix(in oklab, var(--color-secondary), white 10%);
  --color-secondary-dark: color-mix(in oklab, var(--color-secondary), black 10%);
  --color-secondary-darker: color-mix(in oklab, var(--color-secondary), black 20%);
  --color-secondary-rgb: 254, 186, 5;
  --color-grey-light-1: #faf9f9;
  --color-grey-light-2: #f4f2f2;
  --color-grey-light-3: #f0eeee;
  --color-grey-light-4: #ccc;
  --color-grey-dark-1: #333;
  --color-grey-dark-2: #777;
  --color-grey-dark-3: #999;
  --color-white: #fff;
  --color-black: #000;
  --font-primary: "Roboto", sans-serif;
  --font-display: "Lato", sans-serif;
  --radius-nav: .5rem;
  --shadow-dark: 0 2rem 6rem rgba(0,0,0, .3);
  --shadow-light:0 2rem 5rem rgba(0,0,0,.6);
  --line: 1px solid var(--color-grey-light-3);
  --line-secondary: 1px solid var(--color-secondary);
  --gradient-red: linear-gradient(to right bottom, var(--color-primary-light), var(--color-primary-dark));
  --gradient-white: linear-gradient(to bottom, #ffffff, #f0f0f0);
  --gradient-bluelight: linear-gradient(to right, #56ccf2, #2f80ed);
  /* Section Gradient Backgrounds */
  --gradient-hero: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  --gradient-intro: linear-gradient(120deg, var(--color-secondary-light), var(--color-secondary-dark));
  --gradient-timeline: linear-gradient(90deg, #f4f2f2, #feba05 60%);
  --gradient-products: linear-gradient(135deg, #fffbe6, #ffe0b2 80%);
  --gradient-visimisi: linear-gradient(120deg, #faf9f9, #fe0000 80%);
  --gradient-footer: linear-gradient(135deg, var(--color-grey-dark-2), var(--color-black));
  /* Example for other sections */
  --gradient-contact: linear-gradient(135deg, #feba05 0%, #fe0000 100%);
  --gradient-blog: linear-gradient(135deg, #f0eeee 0%, #df0123 100%);
  --gradient-maps: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  --hero-zoom-duration: 10s;
}

/*
0 - 600px:      phone
600 - 900px:    Tablet potrait
900 - 1200px:   Tablet lanscape
[1200 - 1800px] is where our normal style apply
1800px + :      Big desktop


$breakpoint argunment choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER : Base + Typhography > General layout + Grid > Page Layout > Component

1em = 16px
*/
@keyframes tonext {
  75% {
    left: 0;
  }
  95% {
    left: 100%;
  }
  98% {
    left: 100%;
  }
  99% {
    left: 0;
  }
}
@keyframes tostart {
  75% {
    left: 0;
  }
  95% {
    left: -300%;
  }
  98% {
    left: -300%;
  }
  99% {
    left: 0;
  }
}
@keyframes snap {
  96% {
    scroll-snap-align: center;
  }
  97% {
    scroll-snap-align: none;
  }
  99% {
    scroll-snap-align: none;
  }
  100% {
    scroll-snap-align: center;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.5);
  }
}
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-200deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
    transform: rotate(0);
  }
  to {
    opacity: 0;
    transform: rotate(200deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes wobble {
  0% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  to {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipOutX {
  from {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  to {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipOutY {
  from {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes lightSpeedIn {
  from {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  to {
    transform: translateX(0) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedOut {
  from {
    transform: translateX(0) skewX(0deg);
    opacity: 1;
  }
  to {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
  to {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
@keyframes hero-zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 43.75%;
  }
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--color-grey-light-2);
}

.heading-4, .heading-3, .heading-2, .heading-1 {
  font-family: var(--font-display);
  font-weight: 400;
}

.heading-1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
}
.heading-1--primary {
  color: var(--color-primary);
}
.heading-1--secondary {
  color: var(--color-secondary);
}
.heading-1--light {
  color: var(--color-grey-light-1);
}
.heading-1--dark {
  color: var(--color-grey-dark-1);
}

.heading-2 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}
.heading-2--primary {
  color: var(--color-primary);
}
.heading-2--secondary {
  color: var(--color-secondary);
}
.heading-2--light {
  color: var(--color-grey-light-1);
}
.heading-2--dark {
  color: var(--color-grey-dark-1);
}

.heading-3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
}
.heading-3--primary {
  color: var(--color-primary);
}
.heading-3--secondary {
  color: var(--color-secondary);
}
.heading-3--light {
  color: var(--color-grey-light-1);
}
.heading-3--dark {
  color: var(--color-grey-dark-1);
}

.heading-4 {
  font-size: 2rem;
}
.heading-4--primary {
  color: var(--color-primary);
}
.heading-4--secondary {
  color: var(--color-secondary);
}
.heading-4--light {
  color: var(--color-grey-light-1);
}
.heading-4--dark {
  color: var(--color-grey-dark-1);
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-none {
  display: none !important;
}

.m {
  margin: 0 !important;
}

.mt-sm {
  margin-top: 2rem !important;
}

.mt-md {
  margin-top: 3rem !important;
}

.mt-lg {
  margin-top: 4rem !important;
}

.mt-hg {
  margin-top: 8rem !important;
}

.mb-sm {
  margin-bottom: 2rem !important;
}

.mb-md {
  margin-bottom: 3rem !important;
}

.mb-lg {
  margin-bottom: 4rem !important;
}

.mb-hg {
  margin-bottom: 8rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-sm {
  padding-top: 0.25rem !important;
}

.pt-md {
  padding-top: 0.5rem !important;
}

.pt-lg {
  padding-top: 1rem !important;
}

.pt-hg {
  padding-top: 1.5rem !important;
}

.pb-sm {
  padding-bottom: 0.25rem !important;
}

.pb-md {
  padding-bottom: 0.5rem !important;
}

.pb-lg {
  padding-bottom: 1rem !important;
}

.pb-hg {
  padding-bottom: 1.5rem !important;
}

.primary-gradient {
  background-image: var(--gradient-red);
}

.white-gradient {
  background: linear-gradient(154.66deg, #f9fcff 5.89%, var(--color-grey-light-4) 143.86%) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--color-grey-light-4);
}

.hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1rem 0;
}

.hr-light {
  border-color: #f1f1f1;
}

.hr-dark {
  border-color: #333;
}

.hr-primary {
  border-color: var(--color-primary);
}

.hr-secondary {
  border-color: var(--color-secondary);
}

.hr-sm {
  border-top-width: 1px;
}

.hr-md {
  border-top-width: 3px;
}

.hr-lg {
  border-top-width: 5px;
}

.hr-hg {
  border-top-width: 6px;
}

.hr-dashed {
  border-top-style: dashed;
}

.hr-dotted {
  border-top-style: dotted;
}

.hr-double {
  border-top-style: double;
}

hr {
  border: 0;
  height: 2px;
  width: 100%;
  background: #e0e0e0;
  margin: 2rem 0;
}
hr-primary {
  background-color: var(--color-primary);
}
hr-secondary {
  background-color: var(--color-secondary);
}
hr-dashed {
  border-top: 2px dashed #ccc;
  background: none;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 2rem 0;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}
.divider:not(:empty)::before {
  margin-right: 1rem;
}
.divider:not(:empty)::after {
  margin-left: 1rem;
}

.rounded-sm {
  border-radius: 0.25rem;
}

.rounded {
  border-radius: 0.5rem;
}

.rounded-lg {
  border-radius: 1rem;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.breadcrumb-wrap {
  grid-column: col-start 1/col-end 9;
}

.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0.75rem 1rem;
  margin: 0 0 1rem 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.25rem;
  justify-content: center;
  align-items: center;
}
.breadcrumb .breadcrumb-item {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-grey-light-4);
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  padding: 0 0.5rem;
  color: var(--color-grey-light-4);
}
.breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: var(--color-grey-light-2);
}
.breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
  color: var(--color-primary-dark);
}
.breadcrumb .breadcrumb-item.active {
  color: var(--color-grey-light-4);
  font-weight: 600;
  cursor: default;
  pointer-events: none;
}

.breadcrumb-light {
  background-color: var(--color-grey-light-2);
}

.breadcrumb-dark {
  background-color: #343a40;
}
.breadcrumb-dark .breadcrumb-item {
  color: #ccc;
}
.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before {
  color: #999;
}
.breadcrumb-dark .breadcrumb-item a {
  color: var(--color-primary-light);
}
.breadcrumb-dark .breadcrumb-item a:hover {
  color: var(--color-primary);
}
.breadcrumb-dark .breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-sm .breadcrumb-item {
  font-size: 0.75rem;
}

.breadcrumb-lg .breadcrumb-item {
  font-size: 1.5rem;
}

.breadcrumb-hg .breadcrumb-item {
  font-size: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.25);
}
.btn:disabled, .btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.btn--primary {
  background: linear-gradient(135deg, #EE0000, #bb0000);
  color: #ffffff;
  border-color: #EE0000;
  transition: all 0.3s ease;
}
.btn--primary:hover {
  background: linear-gradient(135deg, #bb0000, #880000);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
}

.btn--secondary {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark, #5a6268));
  color: #ffffff;
  border-color: var(--color-secondary);
}
.btn--secondary:hover {
  background: linear-gradient(135deg, var(--color-secondary-dark, #5a6268), var(--color-secondary-darker, #495057));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--color-secondary-rgb), 0.3);
}

.btn--success {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: #ffffff;
  border-color: #28a745;
}
.btn--success:hover {
  background: linear-gradient(135deg, #1e7e34, #155724);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn--danger {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: #ffffff;
  border-color: #dc3545;
}
.btn--danger:hover {
  background: linear-gradient(135deg, #c82333, #a71e2a);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn--warning {
  background: linear-gradient(135deg, #ffc107, #e0a800);
  color: #212529;
  border-color: #ffc107;
}
.btn--warning:hover {
  background: linear-gradient(135deg, #e0a800, #d39e00);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn--info {
  background: linear-gradient(135deg, #17a2b8, #138496);
  color: #ffffff;
  border-color: #17a2b8;
}
.btn--info:hover {
  background: linear-gradient(135deg, #138496, #117a8b);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.btn--outline-primary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline-primary:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.2);
}

.btn--outline-secondary {
  background: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.btn--outline-secondary:hover {
  background: var(--color-secondary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn--outline-success {
  background: transparent;
  color: #28a745;
  border-color: #28a745;
}
.btn--outline-success:hover {
  background: #28a745;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn--outline-danger {
  background: transparent;
  color: #dc3545;
  border-color: #dc3545;
}
.btn--outline-danger:hover {
  background: #dc3545;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border: none;
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(var(--color-primary-rgb), 0.1);
  color: var(--color-primary-dark, #0056b3);
}

.btn--link {
  background: none;
  color: var(--color-primary);
  border: none;
  text-decoration: underline;
  box-shadow: none;
}
.btn--link:hover {
  color: var(--color-primary-dark, #0056b3);
  text-decoration: none;
  transform: none;
}

.btn--xs {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 4px;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 6px;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 10px;
}
.btn--lg svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn--xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  letter-spacing: 1pt;
  border-radius: 12px;
}
.btn--xl svg {
  width: 1.5rem;
  height: 1.5rem;
}

.btn--rounded {
  border-radius: 50px;
}

.btn--square {
  border-radius: 0;
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn--loading {
  position: relative;
  color: transparent;
}
.btn--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: btn-spin 1s linear infinite;
}

@keyframes btn-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn-group {
  display: inline-flex;
  vertical-align: middle;
}
.btn-group .btn {
  border-radius: 0;
}
.btn-group .btn:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.btn-group .btn:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.btn-group .btn:not(:first-child) {
  margin-left: -2px;
}

.btn--fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}
.btn--fab:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.btn--fab svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }
  .btn--lg {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .btn--xl {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  .btn--fab {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }
  .btn--fab svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .btn--block {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media (prefers-color-scheme: dark) {
  .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .btn--link:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}
.section-hero {
  grid-column: full-start/full-end;
  margin-bottom: calc(100vh - 6rem);
}

.hero__slider {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero__slider .slide {
  position: relative;
  height: calc(100vh - 6rem); /* Full viewport height minus navbar height */
  background-size: cover;
  background-position: center;
  display: flex !important; /* slick needs this */
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero__slider .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit; /* inherit inline background-image */
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform-origin: center center;
  will-change: transform;
  animation: hero-zoom var(--hero-zoom-duration, 15s) ease-in-out infinite;
}
.hero__slider .slide .hero__content {
  position: relative;
  z-index: 2;
}
.hero__content {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 40px;
  border-radius: 10px;
  color: #fff;
}
.hero__content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero__content p {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Container utama */
.marquee-container {
  grid-column: col-start 2/col-end 9;
  width: 100%; /* full lebar layar */
  height: 20rem; /* full tinggi layar */
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Right Main Slider */
.marquee-slider {
  position: absolute;
  width: 100%; /* isi penuh container */
  height: 100%;
  overflow: hidden;
}

/* Slide */
.marquee-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f5f5f5; /* background supaya tidak kosong */
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* gambar di dalam slide */
.marquee-slide img {
  position: relative; /* cukup relative, tidak absolute */
  width: 25rem;
  height: 25rem;
  margin: 2rem; /* tinggi fleksibel, tidak melebihi slide */
  object-fit: contain; /* jaga proporsi logo */
  object-position: center;
  z-index: 2;
}

/* overlay untuk efek gelap */
.marquee-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Slick overrides for nav arrows */
.slick-prev:before,
.slick-next:before {
  color: #fff;
}

.marquee-container {
  width: 100%;
  padding: 1.5rem 0;
  box-sizing: border-box;
  overflow: hidden;
}

.marquee-slider {
  display: block;
}
.marquee-slider .marquee-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  box-sizing: border-box;
}

.marquee-img {
  max-width: 8rem;
  max-height: 8rem;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(0.1);
  opacity: 0.95;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.marquee-item:hover .marquee-img {
  transform: scale(1.05);
  filter: grayscale(0);
}

/* prevent horizontal scroll from slick clones */
.section-marquee, .marquee-container {
  overflow-x: hidden;
}

.notification-container {
  position: fixed;
  top: 80px;
  right: 30px;
  z-index: 9999;
}

.notification {
  padding: 16px 24px;
  margin-bottom: 10px;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.5s;
}

.notification-info {
  background: #2196f3;
}

.notification-success {
  background: #4caf50;
}

.notification-warning {
  background: #ff9800;
}

.notification-error {
  background: #f44336;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-header {
  grid-column: full-start/full-end;
  overflow: hidden;
}

.header {
  width: 100vw;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.header__content {
  font-size: 2rem;
}

/**-----------------------

 scrollCue.js - ver.2.0.0
 URL : https://prjct-samwest.github.io/scrollCue/

 created by SamWest.
 Copyright (c) 2020 SamWest.
 This plugin is released under the MIT License.

 -----------------------**/
/**  ---------------
     fadeIn
*/
[data-cue=fadeIn], [data-cues=fadeIn] > * {
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**  ---------------
     slideInLeft
*/
[data-cue=slideInLeft], [data-cues=slideInLeft] > * {
  opacity: 0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/**  ---------------
     slideInRight
*/
[data-cue=slideInRight], [data-cues=slideInRight] > * {
  opacity: 0;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/**  ---------------
     slideInDown
*/
[data-cue=slideInDown], [data-cues=slideInDown] > * {
  opacity: 0;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/**  ---------------
     slideInUp
*/
[data-cue=slideInUp], [data-cues=slideInUp] > * {
  opacity: 0;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/**  ---------------
     zoomIn
*/
[data-cue=zoomIn], [data-cues=zoomIn] > * {
  opacity: 0;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/**  ---------------
     zoomOut
*/
[data-cue=zoomOut], [data-cues=zoomOut] > * {
  opacity: 0;
}

@keyframes zoomOut {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/**  ---------------
     rotateIn
*/
[data-cue=rotateIn], [data-cues=rotateIn] > * {
  opacity: 0;
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotateZ(-15deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}
/**  ---------------
     bounceIn
*/
[data-cue=bounceIn], [data-cues=bounceIn] > * {
  opacity: 0;
}

@keyframes bounceIn {
  0% {
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
/**  ---------------
     bounceInLeft
*/
[data-cue=bounceInLeft], [data-cues=bounceInLeft] > * {
  opacity: 0;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/**  ---------------
     bounceInRight
*/
[data-cue=bounceInRight], [data-cues=bounceInRight] > * {
  opacity: 0;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/**  ---------------
     bounceInDown
*/
[data-cue=bounceInDown], [data-cues=bounceInDown] > * {
  opacity: 0;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/**  ---------------
     bounceInUp
*/
[data-cue=bounceInUp], [data-cues=bounceInUp] > * {
  opacity: 0;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/**  ---------------
     flipInX
*/
[data-cue=flipInX], [data-cues=flipInX] > * {
  opacity: 0;
  backface-visibility: visible;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px);
  }
}
/**  ---------------
     flipInY
*/
[data-cue=flipInY], [data-cues=flipInY] > * {
  opacity: 0;
  backface-visibility: visible;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px);
  }
}
.container {
  display: grid !important;
  grid-template-columns: [full-start] minmax(6rem, 1fr) [content-start] repeat(10, [col-start] minmax(min-content, 14rem) [col-end]) [content-end] minmax(6rem, 1fr) [full-end];
  justify-content: center;
  align-items: center;
}

.section-content {
  grid-column: full-start/full-end;
}

.wrapper-5 {
  grid-row: 5;
  grid-column: full-start/full-end;
}
.wrapper-4 {
  grid-row: 4;
  grid-column: full-start/full-end;
}
.wrapper-3 {
  grid-row: 3;
  grid-column: full-start/full-end;
}
.wrapper-2 {
  grid-row: 2;
  grid-column: full-start/full-end;
}
.wrapper-1 {
  grid-row: 1;
  grid-column: full-start/full-end;
}

.section-copyright {
  grid-column: full-start/full-end;
  background-color: var(--color-primary-dark);
  font-size: 1.4rem;
  color: var(--color-white);
}

.copyright {
  grid-column: col-start 1/col-end 4;
  padding: 1rem 0;
}

.sosmed {
  grid-column: col-start 5/col-end 10;
  justify-self: end;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-items: center;
}
.sosmed__icon {
  width: 2rem;
  height: 2rem;
  fill: var(--color-secondary);
  transition: fill 0.3s ease;
}
.sosmed__icon:hover {
  fill: var(--color-primary);
}
.sosmed__title {
  font-size: 1.4rem;
  color: var(--color-white);
}

.section-header {
  grid-row: 1;
  grid-column: full-start/full-end;
  padding: 1rem 0rem;
  margin: 0rem;
  background-color: var(--color-white);
  justify-self: center;
  justify-content: center;
  z-index: 10000;
  border-bottom: var(--line);
  position: sticky;
  width: 100%;
  height: 6rem;
  top: 0;
  left: 0;
  right: 0;
}

.section-footer {
  grid-column: full-start/full-end;
  font-size: 1.4rem;
}

.footer {
  grid-column: content-start/content-end;
  padding-top: 7rem;
  padding-bottom: 7rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  column-gap: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .footer {
    grid-template-columns: 1fr;
    row-gap: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    justify-items: center;
  }
}

.logo {
  grid-column: 1/2;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 2rem;
  align-items: center;
}
.logo__img {
  width: 4rem;
  height: 4rem;
}

.address {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 3rem;
  align-items: stretch;
}

.address__item {
  display: grid;
  grid-template-columns: min-content minmax(10rem, 1fr);
  grid-template-rows: repeat(auto-fit, max-content);
  gap: 1rem;
  align-content: start;
}
.address__item-name {
  grid-column: 1/-1;
  grid-row: 1/2;
  justify-self: center;
  color: var(--color-primary);
  font-size: 2rem;
}
.address__item-icon-pin {
  grid-column: 1/2;
  grid-row: 2/3;
  fill: var(--color-secondary);
  width: 3rem;
  height: 3rem;
}
.address__item-icon-phone {
  grid-column: 1/2;
  grid-row: 3/4;
  fill: var(--color-secondary);
  width: 2.5rem;
  height: 2.5rem;
}

.gallery-storage {
  grid-column: col-start 2/col-end 9;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 5vw);
  grid-gap: 1.5rem;
  padding: 1.5rem;
}
.gallery-storage__item {
  transition: all 0.2s;
}
.gallery-storage__item--1 {
  grid-row: 1/span 2;
  grid-column: 1/span 2;
}
.gallery-storage__item--2 {
  grid-row: 1/4;
  grid-column: 3/-1;
}
.gallery-storage__item--3 {
  grid-row: 3/-1;
  grid-column: 1/3;
}
.gallery-storage__item--4 {
  grid-row: 4/-1;
  grid-column: 3/5;
}
.gallery-storage__item--5 {
  grid-row: 4/-1;
  grid-column: 5/-1;
}
.gallery-storage__item:hover {
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(var(--color-black), 0.5);
  z-index: 20;
}
.gallery-storage:hover .gallery-storage__photo:not(:hover) {
  transform: scale(0.95);
}
.gallery-storage__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-fleet {
  grid-column: col-start 2/col-end 9;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 5vw);
  grid-gap: 1.5rem;
  padding: 1.5rem;
}
.gallery-fleet__item {
  transition: all 0.2s;
}
.gallery-fleet__item--1 {
  grid-row: 1/span 3;
  grid-column: 1/span 3;
}
.gallery-fleet__item--2 {
  grid-row: 1/4;
  grid-column: 4/-1;
}
.gallery-fleet__item--3 {
  grid-row: 4/-1;
  grid-column: 1/3;
}
.gallery-fleet__item--4 {
  grid-row: 4/-1;
  grid-column: 3/4;
}
.gallery-fleet__item--5 {
  grid-row: 4/-1;
  grid-column: 4/-1;
}
.gallery-fleet__item:hover {
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(var(--color-black), 0.5);
  z-index: 20;
}
.gallery-fleet:hover .gallery-fleet__photo:not(:hover) {
  transform: scale(0.95);
}
.gallery-fleet__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-lightbox.show {
  display: flex;
  opacity: 1;
}
.gallery-lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.gallery-lightbox.show .gallery-lightbox__img {
  transform: scale(1);
}
.gallery-lightbox__close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
}
.gallery-lightbox__close:hover {
  color: #ff4444;
}
.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  transform: translateY(-50%);
  pointer-events: none;
}
.gallery-lightbox__prev, .gallery-lightbox__next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  pointer-events: all;
}
.gallery-lightbox__prev:hover, .gallery-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.gallery-storage__item,
.gallery-fleet__item {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-storage__item:hover,
.gallery-fleet__item:hover {
  transform: scale(1.02);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-white);
  padding: 0px 20px;
  color: var(--color-grey-dark-1);
  position: relative;
}
.navbar__brand {
  text-decoration: none;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 2rem;
  justify-content: start;
  align-items: center;
  margin-right: 5rem;
}
.navbar__brand-img {
  height: 4rem;
  width: 4rem;
  margin: 0;
}
.navbar__brand-name {
  color: var(--color-primary);
  font-size: 2rem;
  text-decoration: none;
}
.navbar {
  /* Menu Links */
}
.navbar__nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  transition: max-height 0.4s ease;
}
.navbar__nav-links li {
  position: relative;
}
.navbar__nav-links li a {
  color: var(--color-grey-dark-1);
  text-decoration: none;
  font-size: 1.5rem;
  padding: 8px 12px;
  display: block;
}
.navbar .nav-links li.active > a {
  text-decoration: underline;
}
.navbar {
  /* Dropdown (Desktop) */
}
.navbar__nav-item-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 0 10px var(--color-grey-dark-3);
  border-radius: var(--radius-nav);
  background: var(--color-white);
  list-style: none;
  min-width: 200px;
  padding: 10px 0;
  z-index: 10;
}
.navbar__nav-item:hover .navbar__nav-item-drop {
  display: block;
}
.navbar__nav-item-drop li a {
  padding: 8px 15px;
  color: var(--color-grey-dark-1);
}
.navbar {
  /* Hamburger Button */
}
.navbar__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.navbar__menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-primary);
  transition: all 0.4s ease;
}
.navbar {
  /* Toggle active: X animation */
}
.navbar__menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.navbar {
  /* Responsive (Mobile) */
}
@media (max-width: 1000px) {
  .navbar__menu-toggle {
    display: flex;
  }
  .navbar__nav-links {
    flex-direction: column;
    position: absolute;
    top: 5rem;
    right: 0;
    width: 250px;
    background-color: var(--color-grey-light-1);
    overflow: hidden;
    max-height: 0; /* Hidden by default */
    border-radius: 0 0 8px 8px;
  }
  .navbar__nav-links.show {
    max-height: 600px; /* Expand with animation */
  }
  .navbar {
    /* Disable hover dropdown on mobile */
  }
  .navbar__nav-item:hover .navbar__nav-item-drop {
    display: none;
  }
  .navbar__nav-item-drop {
    position: static;
    background: none;
    padding-left: 15px;
    display: none; /* Hidden by default */
    flex-direction: column;
  }
  .navbar__nav-item.open .navbar__nav-item-drop {
    display: flex; /* Show when parent has .open */
  }
}

/* Dropdown indicator */
.dropdown-toggle::after {
  content: " ▾";
  font-size: 12px;
}

.section_404 {
  grid-column: full-start/full-end;
}

.wrap-404 {
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}

.error-container {
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.error-code {
  font-size: 10rem;
  font-weight: 700;
  color: #dc3545;
  animation: bounce 1.5s infinite;
}

.error-message {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.section-about {
  grid-row: 2;
  grid-column: col-start 1/col-end 10;
  width: 100%;
  padding: 3rem 3rem;
  max-width: 100%;
  overflow: hidden;
}

.section-timeline {
  grid-row: 3;
  grid-column: full-start/full-end;
  height: 65rem;
}
@media only screen and (max-width: 37.5em) {
  .section-timeline {
    margin-bottom: 10rem;
  }
}

.about__header {
  grid-column: col-start 2/col-end 3;
  justify-self: start;
  align-self: start;
}
.about__content {
  grid-column: col-start 5/col-end 9;
  font-size: 1.5rem;
}
@media only screen and (max-width: 75em) {
  .about__header {
    grid-column: col-start 1/col-end 3;
    justify-self: center;
    text-align: center;
    margin-bottom: 2rem;
  }
  .about__content {
    grid-column: col-start 5/col-end 10;
    font-size: 1.5rem;
    text-align: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .about__header {
    grid-column: col-start 1/col-end 10;
    justify-self: center;
    text-align: center;
    margin-bottom: 2rem;
  }
  .about__content {
    grid-column: full-start/full-end;
    font-size: 1.5rem;
    text-align: center;
  }
}

.about-visimisi {
  grid-row: 4;
  grid-column: col-start 2/col-end 9;
  font-size: 1.5rem;
}

.about__vision {
  grid-column: col-start 1/col-end 4;
  align-self: start;
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-template-rows: min-content min-content;
  gap: 1rem;
}
.about__vision-icon {
  grid-column: 1/2;
  grid-row: 1/2;
  fill: var(--color-secondary);
  width: 2.5rem;
  height: 2.5rem;
  justify-self: center;
  align-self: center;
}
.about__vision-header {
  grid-column: 2/-1;
  grid-row: 1/2;
}
.about__vision-text {
  grid-column: 2/-1;
  font-size: 1.5rem;
}
@media only screen and (max-width: 37.5em) {
  .about__vision {
    grid-column: full-start/full-end;
    margin-bottom: 4rem;
  }
  .about__vision-text {
    font-size: 1.5rem;
  }
}
.about__mision {
  grid-column: col-start 6/col-end 10;
  align-self: start;
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-template-rows: min-content min-content;
  gap: 1rem;
}
.about__mision-icon {
  grid-column: 1/2;
  grid-row: 1/2;
  fill: var(--color-secondary);
  width: 2.5rem;
  height: 2.5rem;
  justify-self: center;
  align-self: center;
}
.about__mision-header {
  grid-column: 2/-1;
  grid-row: 1/2;
}
.about__mision-list {
  grid-column: 2/-1;
  grid-row: 2/3;
  list-style: none;
  font-size: 1.5rem;
  display: grid;
  grid-template-columns: min-content 1fr;
  gap: 0.5rem;
}
.about__mision-list-icon {
  grid-column: 1/2;
  fill: var(--color-secondary);
  width: 2.5rem;
  height: 2.5rem;
  justify-self: start;
  align-self: center;
}
.about__mision-list-item {
  grid-column: 2/-1;
}
@media only screen and (max-width: 37.5em) {
  .about__mision {
    grid-column: full-start/full-end;
    margin-bottom: 4rem;
  }
  .about__mision-list {
    font-size: 1.5rem;
  }
}

.section-value {
  grid-row: 6;
  grid-column: full-start/full-end;
}

.value {
  grid-column: col-start 2/col-end 9;
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .value {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .value {
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
  }
}
.value__header {
  grid-column: 1/-1;
  justify-self: center;
  font-weight: 600;
}
.value__poin {
  background-color: var(--color-grey-light-1);
  border-radius: 1rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: repeat(1, max-content);
  gap: 1rem;
  /* Animate only transform and box-shadow for better performance and smoother motion */
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px var(--color-grey-dark-3);
  backface-visibility: hidden;
}
.value__poin:hover {
  transform: translateX(-8px);
}
.value__poin-icon {
  grid-column: 1/1;
  grid-row: 1/3;
  align-self: stretch !important;
  font-size: 9rem;
  font-weight: 800;
  line-height: 8rem;
  -webkit-text-stroke: 2px var(--color-primary);
  color: rgba(255, 255, 255, 0);
}
.value__poin-header {
  grid-column: 2/-1;
  grid-row: 1/2;
  font-size: 2rem;
  line-height: 3rem;
}
.value__poin-text {
  grid-column: 2/-1;
  grid-row: 2/-1;
  align-self: start;
  font-size: 1.5rem;
}

.timeline-container {
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.timeline {
  width: 100%;
  position: relative;
  margin: 5rem;
}
.timeline__nav {
  position: relative;
}
.timeline__nav::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fafafa;
  bottom: 6px;
  z-index: 1;
}
.timeline__nav-item {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 0.5;
  background: transparent;
  color: var(--color-grey-light-1);
  margin: 15px 25px !important;
  position: relative;
  font-size: 2rem;
  line-height: 28px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}
@media only screen and (max-width: 37.5em) {
  .timeline__nav-item {
    font-size: 1.5rem;
    margin: 14px 10px !important;
  }
}
.timeline__nav-item::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--color-grey-light-1);
  transition: 0.2s;
}
.timeline__nav-item.slick-current {
  color: var(--color-secondary);
  opacity: 1;
  z-index: 1000;
}
.timeline__nav-item.slick-current::before {
  background-color: var(--color-secondary);
}
.timeline-wrapper {
  position: absolute;
  width: 100%;
  height: 100vh;
}
@media (max-width: 500px) {
  .timeline-wrapper {
    height: 1000px;
    max-height: 900px;
  }
}
.timeline-slider {
  height: 100%;
}
.timeline .slick-list {
  height: 100%;
}
@media (min-width: 1080px) {
  .timeline .slick-list {
    padding: 0 180px !important;
  }
}
.timeline .slick-track {
  height: 100%;
}
.timeline-slide {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  outline: none;
  background-size: 1200px 400px, contain;
  height: 400px;
  background-position: top;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 24px;
  overflow: hidden;
  width: 80%;
  z-index: 1;
}
.timeline-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-primary), 0.8);
  z-index: 2;
}
.timeline-slide__content {
  z-index: 5;
  position: absolute;
  top: 220px;
  background: rgba(0, 0, 0, 0.4);
  width: 80%;
  left: 50%;
  transform: translate(-50%, 0px);
  padding: 40px;
  opacity: 0;
  transition: opacity 1s;
}
@media (max-width: 500px) {
  .timeline-slide__content {
    width: 100%;
  }
}
.timeline-year {
  z-index: 5;
  font-size: 35px;
  color: #ffffff;
  background: var(--color-secondary);
  padding: 15px 26px;
  transition: opacity 1.2s;
  position: absolute;
  right: 0;
  opacity: 0;
}
.timeline-title {
  color: var(--color-secondary);
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.timeline-text {
  font-size: 2.5rem;
  line-height: 3rem;
  color: var(--color-grey-light-1);
}
.timeline .slick-current:after {
  background-color: rgba(var(--color-primary), 0);
}
.timeline .slick-current .timeline-year {
  opacity: 1;
}
.timeline .slick-current .timeline-slide__content {
  opacity: 1;
}

.slick-center .slick-slide,
.timeline-slide {
  transform: scale(0.7);
}

.slick-center .slick-active,
.timeline-slide .sl {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.section-management {
  grid-row: 7;
  grid-column: full-start/full-end;
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.05), rgba(var(--color-secondary-rgb), 0.05));
}

.management {
  grid-column: col-start 2/col-end 9;
}
.management__header {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .management__header {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}
.management__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 56.25em) {
  .management__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
.management__quote {
  position: relative;
  padding: 3rem 2rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.management__quote .quote-mark {
  content: "“";
  position: absolute;
  top: -2.75rem;
  left: -1rem;
  line-height: 1;
  font-size: 6rem;
  color: var(--color-grey-dark-2);
  font-family: sans-serif;
  z-index: 1;
}
.management__quote .quote-mark:first-child {
  top: 1rem;
  left: 1rem;
}
.management__quote .quote-mark--end {
  bottom: 1rem;
  right: 1rem;
  transform: rotate(180deg);
}
.management__quote-text {
  font-size: 1.8rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--color-grey-dark-2);
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 37.5em) {
  .management__quote-text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.management__profile {
  text-align: center;
}
.management__profile .profile__image {
  width: 15rem;
  height: 15rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 37.5em) {
  .management__profile .profile__image {
    width: 12rem;
    height: 12rem;
  }
}
.management__profile .profile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.management__profile .profile__name {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 37.5em) {
  .management__profile .profile__name {
    font-size: 2rem;
  }
}
.management__profile .profile__title {
  font-size: 1.6rem;
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
@media only screen and (max-width: 37.5em) {
  .management__profile .profile__title {
    font-size: 1.4rem;
  }
}
.management__profile .profile__company {
  font-size: 1.4rem;
  color: var(--color-grey-dark-1);
}
@media only screen and (max-width: 37.5em) {
  .management__profile .profile__company {
    font-size: 1.3rem;
  }
}
.management__vision-statement {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--color-secondary);
}
.management__vision-statement .statement__title {
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
@media only screen and (max-width: 37.5em) {
  .management__vision-statement .statement__title {
    font-size: 1.8rem;
    text-align: center;
  }
}
.management__vision-statement .statement__text {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-grey-dark-2);
}
@media only screen and (max-width: 37.5em) {
  .management__vision-statement .statement__text {
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: justify;
  }
}
.management__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}
.management__item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 300px;
}
.management__quote {
  flex: 1;
  margin-bottom: 2rem;
}
.management__profile {
  margin-top: auto;
}
.management .profile__info {
  text-align: center;
}
.management .profile__company {
  font-size: 1.2rem;
  color: #666;
}
.management {
  /* Responsive */
}
@media (max-width: 768px) {
  .management .management__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.section__applyjob {
  grid-column: full-start/full-end;
  padding: 8rem 0;
}

.applyjob {
  grid-column: col-start 2/col-end 9;
  background-color: var(--color-grey-light-2);
}

.applyjob__form {
  background: #fff;
  padding: 4rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  max-width: 600px;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.applyjob__field {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.applyjob__field label {
  font-size: 1.3rem;
  color: #888;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.applyjob__input {
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--color-grey-light-3);
  border-radius: 0.5rem;
  font-size: 1.6rem;
  background: var(--color-grey-light-1);
  transition: border-color 0.2s;
}

.applyjob__input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
}

.applyjob__btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.7rem;
  border-radius: 0.5rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 1.5rem;
}

.applyjob__btn:hover {
  background: var(--color-secondary);
}

.applyjob__field input[type=radio] {
  accent-color: var(--color-primary);
  margin-right: 0.5rem;
}

.applyjob__field label {
  margin-right: 2rem;
  font-size: 1.4rem;
  color: #444;
}

.applyjob__field .text-danger {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.applyjob__field .text-muted {
  color: #6c757d;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.section-application-success {
  grid-column: full-start/full-end;
  padding: 8rem 0;
  background-color: var(--color-grey-light-2);
}

.application-success {
  grid-column: col-start 2/col-end 9;
  background: #fff;
  text-align: center;
  padding: 4rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  max-width: 600px;
  margin: 3rem auto;
  font-size: 2rem;
}

.alert {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
}
.alert-danger {
  background-color: #fff5f5;
  color: #dc3545;
  border: 1px solid #f5c2c7;
}
.alert-danger p {
  margin: 0;
  margin-bottom: 0.5rem;
}
.alert-danger ul {
  margin: 0;
  padding-left: 2rem;
}
.alert-danger ul li {
  margin-bottom: 0.3rem;
}

.section-blog {
  grid-column: full-start/full-end;
  padding: 4rem 0;
  min-height: 70vh;
}

.blog-wrapper {
  grid-column: col-start 2/col-end 9;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
}
@media only screen and (max-width: 75em) {
  .blog-wrapper {
    grid-template-columns: 250px 1fr;
    gap: 2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .blog-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.blog-main .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 2.5rem;
}
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.blog-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card__image:hover img {
  transform: scale(1.05);
}
.blog-card__content {
  padding: 2rem;
}
@media (max-width: 480px) {
  .blog-card__content {
    padding: 1.5rem;
  }
}
.blog-card__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
}
.blog-card__meta .blog-date {
  color: #6c757d;
  display: flex;
  align-items: center;
}
.blog-card__meta .blog-date::before {
  content: "📅";
  margin-right: 0.5rem;
}
.blog-card__meta .blog-category {
  color: var(--color-primary-dark);
  font-weight: 600;
  background: var(--color-grey-light-3);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card__title {
  margin-bottom: 1rem;
  line-height: 1.4;
}
.blog-card__title a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.blog-card__title a:hover {
  color: var(--color-primary);
}
.blog-card__excerpt {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.blog-card .btn {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.blog-card .btn:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(var(--color-grey-dark-1), 0.3);
}

.no-posts {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  color: #6c757d;
}
.no-posts h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #495057;
}
.no-posts p {
  font-size: 1.1rem;
}

.pagination {
  text-align: center;
  margin-top: 4rem;
}
.pagination .page-links {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination .page-links a, .pagination .page-links .current {
  padding: 0.7rem 1.2rem;
  border: 1px solid #dee2e6;
  text-decoration: none;
  color: #495057;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 44px;
  text-align: center;
}
.pagination .page-links a:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
}
.pagination .page-links .current {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary-dark);
}
@media (max-width: 480px) {
  .pagination .page-links {
    gap: 0.3rem;
  }
  .pagination .page-links a, .pagination .page-links .current {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
}

.section-blog-detail {
  grid-column: full-start/full-end;
  padding: 4rem 0;
  background: #f8f9fa;
}

.blog-detail-wrapper {
  grid-column: col-start 2/col-end 9;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .blog-detail-wrapper {
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  .blog-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.blog-detail-main .blog-post {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border: 1px solid #e9ecef;
}
@media (max-width: 768px) {
  .blog-detail-main .blog-post {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .blog-detail-main .blog-post {
    padding: 1.5rem 1rem;
  }
}
.blog-detail-main .blog-post__header {
  margin-bottom: 3rem;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 2rem;
}
.blog-detail-main .blog-post__meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #6c757d;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .blog-detail-main .blog-post__meta {
    gap: 1rem;
    font-size: 0.85rem;
  }
}
.blog-detail-main .blog-post__meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.blog-detail-main .blog-post__meta span::after {
  content: "•";
  position: absolute;
  right: -1rem;
  color: #dee2e6;
}
.blog-detail-main .blog-post__meta span:last-child::after {
  display: none;
}
.blog-detail-main .blog-post__meta .blog-date {
  font-weight: 500;
}
.blog-detail-main .blog-post__meta .blog-date::before {
  content: "📅";
  font-size: 0.8rem;
}
.blog-detail-main .blog-post__meta .blog-author {
  font-weight: 500;
}
.blog-detail-main .blog-post__meta .blog-author::before {
  content: "👤";
  font-size: 0.8rem;
}
.blog-detail-main .blog-post__meta .blog-category a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  background: #e3f2fd;
  border-radius: 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.blog-detail-main .blog-post__meta .blog-category a:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-1px);
}
.blog-detail-main .blog-post__meta .blog-category a::before {
  content: "🏷️";
  margin-right: 0.3rem;
}
.blog-detail-main .blog-post__image {
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.blog-detail-main .blog-post__image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-detail-main .blog-post__image img:hover {
  transform: scale(1.02);
}
.blog-detail-main .blog-post__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 123, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.blog-detail-main .blog-post__content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}
@media (max-width: 640px) {
  .blog-detail-main .blog-post__content {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.blog-detail-main .blog-post__content p {
  margin-bottom: 1.8rem;
  text-align: justify;
}
.blog-detail-main .blog-post__content h2, .blog-detail-main .blog-post__content h3, .blog-detail-main .blog-post__content h4, .blog-detail-main .blog-post__content h5, .blog-detail-main .blog-post__content h6 {
  margin: 2.5rem 0 1.5rem 0;
  color: #2c3e50;
  font-weight: 700;
  line-height: 1.3;
}
.blog-detail-main .blog-post__content h2 {
  font-size: 1.6rem;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.5rem;
}
.blog-detail-main .blog-post__content h3 {
  font-size: 1.4rem;
  color: #495057;
}
.blog-detail-main .blog-post__content h4 {
  font-size: 1.2rem;
  color: #6c757d;
}
.blog-detail-main .blog-post__content ul, .blog-detail-main .blog-post__content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.blog-detail-main .blog-post__content ul li, .blog-detail-main .blog-post__content ol li {
  margin-bottom: 0.8rem;
}
.blog-detail-main .blog-post__content ul li::marker, .blog-detail-main .blog-post__content ol li::marker {
  color: var(--color-primary);
}
.blog-detail-main .blog-post__content blockquote {
  border-left: 4px solid var(--color-primary-dark);
  background: #f8f9fa;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: #495057;
  border-radius: 0 8px 8px 0;
  position: relative;
}
.blog-detail-main .blog-post__content blockquote::before {
  content: "";
  font-size: 3rem;
  color: #007bff;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: serif;
}
.blog-detail-main .blog-post__content blockquote p:last-child {
  margin-bottom: 0;
}
.blog-detail-main .blog-post__content code {
  background: #f1f3f4;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: "Monaco", "Menlo", monospace;
  font-size: 0.9rem;
  color: #e83e8c;
}
.blog-detail-main .blog-post__content pre {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid #e9ecef;
}
.blog-detail-main .blog-post__content pre code {
  background: none;
  padding: 0;
  color: #2c3e50;
}
.blog-detail-main .blog-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.blog-detail-main .blog-post__content a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.blog-detail-main .blog-post__content a:hover {
  color: #0056b3;
  text-decoration: underline;
}
.blog-detail-main .blog-post__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.blog-detail-main .blog-post__content table th, .blog-detail-main .blog-post__content table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
.blog-detail-main .blog-post__content table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #495057;
}
.blog-detail-main .blog-post__content table tr:hover {
  background: #f8f9fa;
}
.blog-detail-main .blog-post__footer {
  border-top: 2px solid #e9ecef;
  padding-top: 2rem;
  margin-top: 2rem;
}
.blog-detail-main .blog-post__footer .blog-tags {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-detail-main .blog-post__footer .blog-tags > span {
  font-weight: 600;
  color: #495057;
  font-size: 0.95rem;
}
.blog-detail-main .blog-post__footer .blog-tags .tag {
  background: linear-gradient(135deg, #e3f2fd, var(--color-secondary-light));
  color: var(--color-primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid var(--color-secondary-dark);
}
.blog-detail-main .blog-post__footer .blog-tags .tag:hover {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.blog-navigation {
  text-align: center;
  align-items: center;
  margin-top: 1rem;
}
.blog-navigation .btn {
  background: linear-gradient(135deg, #6c757d, #495057);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 10px rgba(108, 117, 125, 0.3);
}
.blog-navigation .btn:hover {
  background: linear-gradient(135deg, #495057, #343a40);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}
.blog-navigation .btn::before {
  content: "←";
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  transform: translateY(-2px);
}
.blog-navigation .btn:hover::before {
  transform: translateX(-3px);
}

.blog-sidebar .sidebar-widget {
  background: white;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}
.blog-sidebar .sidebar-widget .widget-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: 0.5rem;
  position: relative;
}
.blog-sidebar .sidebar-widget .widget-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--color-secondary);
}
.blog-sidebar .sidebar-widget .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-sidebar .sidebar-widget .category-list li {
  margin-bottom: 0.5rem;
}
.blog-sidebar .sidebar-widget .category-list .category-link {
  display: block;
  padding: 0.8rem 1rem;
  color: #6c757d;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  margin-bottom: 0.3rem;
}
.blog-sidebar .sidebar-widget .category-list .category-link:hover {
  background: #f8f9fa;
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  transform: translateX(5px);
}
.blog-sidebar .sidebar-widget .category-list .category-link.active {
  background: var(--color-primary);
  color: white;
  font-weight: 600;
  border-left-color: var(--color-primary-dark);
}
@media (max-width: 768px) {
  .blog-sidebar {
    order: -1;
    margin-bottom: 2rem;
  }
  .blog-sidebar .sidebar-widget {
    padding: 1.5rem;
  }
}

.recent-posts .recent-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.recent-posts .recent-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.recent-posts .recent-post:hover {
  transform: translateX(3px);
}
.recent-posts .recent-post__thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.recent-posts .recent-post__thumb:hover {
  transform: scale(1.05);
}
.recent-posts .recent-post__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recent-posts .recent-post__title {
  margin-bottom: 0.5rem;
}
.recent-posts .recent-post__title a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recent-posts .recent-post__title a:hover {
  color: var(--color-primary);
}
.recent-posts .recent-post__date {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}
.recent-posts .recent-post__date::before {
  content: "📅";
  margin-right: 0.3rem;
  font-size: 0.7rem;
}

@media (max-width: 480px) {
  .section-blog-detail {
    padding: 2rem 0;
  }
  .blog-navigation .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  .recent-posts .recent-post__thumb {
    width: 60px;
    height: 60px;
  }
}
.section-joblist-intro {
  grid-column: full-start/full-end;
}

.joblist-intro {
  grid-column: col-start 3/col-end 8;
}

.section-joblist {
  grid-column: full-start/full-end;
}

.joblist {
  grid-column: col-start 2/col-end 9;
}

.list-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  list-style: none;
}
.list-group__item {
  background-color: var(--color-grey-light-2);
  padding: 1rem;
  border: 1px solid;
  border-radius: 0.5rem;
  display: flex;
  gap: 3rem;
  font-size: 2rem;
  align-items: center;
}
.list-group__item-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--color-gray-dark-1);
}
.list-group__item-link :hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}
.list-group__item-pfx {
  background-color: var(--color-secondary);
  border: 2px solid var(--color-black);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-job-detail {
  grid-column: full-start/full-end;
}

.job-detail {
  grid-column: col-start 2/col-end 9;
  background-color: var(--color-grey-light-2);
  padding: 8rem;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.section-contact {
  grid-column: full-start/full-end;
  padding: 4rem 0;
}

.section-messages {
  grid-column: col-start 3/col-end 8;
  padding: 2rem 0 0;
}

.alert {
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  position: relative;
}
.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.alert-close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
}
.alert-close:hover {
  opacity: 1;
}

.contact-wrapper {
  grid-column: col-start 3/col-end 8;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: 0.5rem;
}

.contact-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-group label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.contact-form .form-group .form-input,
.contact-form .form-group .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.contact-form .form-group .form-input:focus,
.contact-form .form-group .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.contact-form .form-group .form-input:invalid,
.contact-form .form-group .form-textarea:invalid {
  border-color: #dc3545;
}
.contact-form .form-group .form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn--contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--contact:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 25, 0, 0.3);
}
.btn--contact svg {
  width: 20px;
  height: 20px;
}

.section-map {
  grid-column: full-start/full-end;
  margin-bottom: 4rem;
}

.contact-map {
  grid-column: full-start/full-end;
  margin-top: 2rem;
}
.contact-map .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
}
.contact-map .map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.contact-map .map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (max-width: 768px) {
  .contact-info .contact-item {
    padding: 1rem;
  }
  .contact-info .contact-item .contact-icon {
    width: 40px;
    height: 40px;
  }
  .contact-info .contact-item .contact-icon svg {
    width: 20px;
    height: 20px;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  .contact-map .map-container iframe {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .section-contact {
    padding: 2rem 0;
  }
  .contact-wrapper {
    gap: 2rem;
  }
  .contact-title {
    font-size: 1.5rem;
  }
}
.branch-item {
  position: relative;
}
.branch-item .contact-details .btn-map {
  margin-top: 0.8rem;
  padding: 0.4rem 1rem;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.branch-item .contact-details .btn-map:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
}

.contact-map {
  grid-column: col-start 2/col-end 9;
  margin-top: 2rem;
}
.contact-map .map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .contact-map .map-header {
    flex-direction: column;
    align-items: stretch;
  }
}
.contact-map .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}
.contact-map .branch-tabs {
  display: flex;
  gap: 0.5rem;
  background: #f8f9fa;
  padding: 0.3rem;
  border-radius: 8px;
}
.contact-map .branch-tabs .tab-btn {
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-map .branch-tabs .tab-btn:hover {
  background: var(--color-grey-light-3);
  color: var(--color-primary-light);
}
.contact-map .branch-tabs .tab-btn.active {
  background: var(--color-primary);
  color: white;
}
.contact-map .map-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.contact-map .map-container .map-frame {
  position: relative;
  display: none;
}
.contact-map .map-container .map-frame.active {
  display: block;
}
.contact-map .map-container .map-frame iframe {
  width: 100%;
  height: 400px;
  border: none;
}
.contact-map .map-container .map-frame .map-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}
.contact-map .map-container .map-frame .map-info h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
}
.contact-map .map-container .map-frame .map-info p {
  margin: 0;
  color: #6c757d;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .branch-tabs {
    justify-content: center;
  }
  .branch-tabs .tab-btn {
    flex: 1;
    min-width: auto;
  }
  .map-container .map-frame .map-info {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }
  .map-container .map-frame iframe {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .branch-tabs {
    flex-direction: column;
  }
  .branch-tabs .tab-btn {
    width: 100%;
  }
}
.section-intro-content {
  grid-column: col-start 1/col-end 5;
  grid-row: 2;
  padding: 5rem 0;
  background: var(--gradient-white);
  padding: 1rem 3rem;
  z-index: 1;
}
@media only screen and (max-width: 56.25em) {
  .section-intro-content {
    grid-column: col-start 3/col-end 8;
    text-align: center;
    padding: 2rem 1rem;
  }
}
.section-intro-picture {
  grid-row: 2;
  grid-column: col-start 5/col-end 10;
  padding: 5rem 0;
  overflow: hidden;
  height: 45rem;
  width: 100%;
  max-width: 100rem;
  background: url(../../core/img/img-1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media only screen and (max-width: 56.25em) {
  .section-intro-picture {
    grid-column: col-start 2/col-end 9;
    height: 35rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-intro-picture {
    grid-column: full-start/full-end;
    height: 25rem;
  }
}
.section-competitive {
  grid-row: 4;
  grid-column: col-start 2/col-end 9;
}
@media only screen and (max-width: 56.25em) {
  .section-competitive {
    margin-top: 10rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-competitive {
    margin-top: 15rem;
  }
}
.section-statistics {
  grid-row: 6;
  grid-column: col-start 2/col-end 9;
  padding: 4rem 2rem;
  background: var(--gradient-red);
  margin: 2rem 0;
}
.section-commitment {
  grid-row: 7;
  grid-column: col-start 2/col-end 9;
}
.section-brand {
  grid-row: 8;
  grid-column: col-start 2/col-end 9;
}
.section-latest-blog {
  grid-row: 10;
  grid-column: col-start 2/col-end 9;
  padding: 10rem 0;
}

.intro {
  margin-top: 2rem;
}
.intro__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--color-primary-light);
}
.intro__description {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-grey-dark-2);
}

.statistics {
  text-align: center;
  color: white;
  padding: 2rem 1rem;
}
.statistics-number {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  color: white;
}
.statistics-label {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}
.statistics-description {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.4;
  color: white;
}
.statistics-container {
  max-width: 1200px;
  margin: 0 auto;
}
.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Container utama */
.brand-marquee-container {
  grid-column: col-start 2/col-end 9;
  width: 100%; /* full lebar layar */
  height: 40vh; /* full tinggi layar */
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  margin-top: 0rem;
}
.brand-marquee-slider {
  display: block;
  position: absolute;
  width: 100%; /* isi penuh container */
  height: 100%;
  overflow: hidden;
}
.brand-marquee-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: center;
  background: #f5f5f5; /* background supaya tidak kosong */
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.brand-marquee-slide img {
  position: relative; /* cukup relative, tidak absolute */
  width: 25rem;
  height: 25rem;
  margin: 2rem; /* tinggi fleksibel, tidak melebihi slide */
  object-fit: contain; /* jaga proporsi logo */
  object-position: center;
  z-index: 2;
}
.brand-marquee-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.brand-marquee-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  box-sizing: border-box;
}
.brand-marquee-logo {
  width: 12rem;
  height: 12rem;
  padding: 1rem;
  box-sizing: border-box;
  background-color: var(--color-grey-light-1);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-marquee-img {
  max-width: 8rem;
  max-height: 8rem;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(0.1);
  opacity: 0.95;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.maps {
  justify-content: center;
  width: 80%;
  height: 40rem;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.latest-blog {
  grid-column: 1/-1;
}
.latest-blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(30rem, 35rem));
  gap: 3rem;
  margin-top: 3rem;
  justify-content: space-around;
  place-items: center;
}
@media only screen and (max-width: 56.25em) {
  .latest-blog-list {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .latest-blog-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.latest-blog-item {
  background: white;
  border-radius: 1.2rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.latest-blog-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.latest-blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.latest-blog-img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 37.5em) {
  .latest-blog-img {
    height: 18rem;
  }
}
.latest-blog-item:hover .latest-blog-img {
  transform: scale(1.05);
}
.latest-blog-content {
  padding: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .latest-blog-content {
    padding: 1.5rem;
  }
}
.latest-blog-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media only screen and (max-width: 37.5em) {
  .latest-blog-title {
    font-size: 1.6rem;
  }
}
.latest-blog-excerpt {
  font-size: 1.4rem;
  color: var(--color-grey-dark-2);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
  .latest-blog-excerpt {
    font-size: 1.3rem;
  }
}
.latest-blog-date {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 37.5em) {
  .latest-blog-date {
    font-size: 1.1rem;
  }
}
.latest-blog-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-grey-dark-1);
  font-size: 1.6rem;
}

.section-infrastructure {
  grid-column: full-start/full-end;
}

.infrastructure {
  grid-column: col-start 2/col-end 9;
  font-size: 2rem;
}

.section-gallery {
  grid-column: full-start/full-end;
}

.section-sertification {
  grid-column: full-start/full-end;
}

.sertification {
  grid-column: col-start 2/col-end 9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
  justify-content: space-around;
  justify-self: center;
  align-content: center;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .sertification {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.sertification__item {
  height: 35rem;
  width: 30rem;
  padding: 2rem;
  text-align: center;
  background-color: var(--color-grey-light-1);
}
@media only screen and (max-width: 56.25em) {
  .sertification__item {
    width: 25rem;
    height: 35rem;
  }
}
.sertification__item-logo {
  height: 25rem;
}
@media only screen and (max-width: 56.25em) {
  .sertification__item-logo {
    height: 20rem;
  }
}
.sertification__item-text {
  font-size: 2rem;
}

.section-marquee {
  grid-row: 2;
  grid-column: col-start 2/col-end 9;
  height: 20rem;
}
.section-products {
  grid-row: 3;
  grid-column: col-start 2/col-end 9;
}

.products-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .products-wrapper {
    grid-template-columns: 1fr;
  }
}

.products-sidebar .sidebar-widget {
  background: #f8f9fa;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.products-sidebar .sidebar-widget .widget-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .products-sidebar {
    order: -1;
    margin-bottom: 2rem;
  }
}

.search-form {
  display: flex;
  gap: 0.5rem;
}
.search-form .search-input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
}
.search-form .search-input:focus {
  outline: none;
  border-color: var(--color-primary);
}
.search-form .search-btn {
  padding: 0.8rem 1.5rem;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-form .search-btn:hover {
  background: var(--color-primary-dark);
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.filter-list li {
  margin-bottom: 0.5rem;
}
.filter-list .filter-link {
  display: block;
  padding: 0.8rem 1rem;
  color: #6c757d;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
.filter-list .filter-link:hover {
  background: var(--color-grey-light-2);
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  transform: translateX(5px);
}
.filter-list .filter-link.active {
  background: var(--color-primary);
  color: white;
  font-weight: 600;
  border-left-color: var(--color-primary-dark);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.products-header .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
}
.products-header .products-count {
  color: #6c757d;
  font-size: 0.9rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 25rem));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.product-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card__image:hover img {
  transform: scale(1.05);
}
.product-card__content {
  padding: 1.5rem;
}
.product-card__brand {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.product-card__title {
  margin-bottom: 0.5rem;
}
.product-card__title a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.product-card__title a:hover {
  color: var(--color-primary-dark);
}
.product-card__category {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.product-card__excerpt {
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.product-card .btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.product-card .btn:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  transform: translateY(-2px);
}

.product-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #6c757d;
  font-weight: 500;
}

.section-product-detail {
  padding: 4rem 0;
}

.product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.product-detail__image .main-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.product-detail__image .image-placeholder {
  height: 400px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #6c757d;
  font-weight: 500;
}

.product-detail__info .product-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.product-detail__info .product-meta .product-brand {
  background: var(--color-primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.product-detail__info .product-meta .product-category {
  background: #28a745;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}
.product-detail__info .product-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.product-detail__info .product-description {
  color: #495057;
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.product-detail__info .product-actions {
  display: flex;
  gap: 1rem;
}
.product-detail__info .product-actions .btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-detail__info .product-actions .btn--secondary {
  background: #6c757d;
  color: white;
}
.product-detail__info .product-actions .btn--secondary:hover {
  background: #545b62;
}
.product-detail__info .product-actions .btn--primary {
  background: var(--color-primary);
  color: white;
  border: none;
  cursor: pointer;
}
.product-detail__info .product-actions .btn--primary:hover {
  background: var(--color-primary-dark);
}

.related-products {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e9ecef;
}
.related-products .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
}

.no-products {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  color: #6c757d;
}
.no-products h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #495057;
}

/* Brand filter collapse + search */
.brand-filter .widget-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.brand-filter .widget-title button.toggle-btn {
  background: transparent;
  border: 1px solid #dfe6ee;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2c3e50;
  transition: background 0.15s, transform 0.15s;
}
.brand-filter .widget-title button.toggle-btn:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}
.brand-filter .brand-filter-body {
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden; /* hapus scroll horizontal */
}
.brand-filter .brand-filter-body.collapsed {
  max-height: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
}
.brand-filter .brand-filter-body .brand-search-input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #e6eef6;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  outline: none;
}
.brand-filter .brand-filter-body .brand-search-input:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 4px 18px rgba(25, 118, 210, 0.08);
}
.brand-filter .brand-filter-body .brand-list {
  max-height: 28vh;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  list-style: none;
}
.brand-filter .brand-filter-body .brand-list li {
  margin-bottom: 0.35rem;
  padding-right: 0.25rem;
  min-width: 0; /* agar elemen bisa mengecil sesuai kontainer */
  overflow: hidden; /* <-- cegah konten hover keluar dan memicu scroll */
}
.brand-filter .brand-filter-body .brand-list li a.filter-link {
  display: block;
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  color: #6c757d;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  /* pastikan teks panjang tidak memaksa lebar */
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.brand-filter .brand-filter-body .brand-list li a.filter-link:hover {
  background: var(--color-grey-light-2);
  color: var(--color-primary-dark);
}
.brand-filter .brand-filter-body .brand-list li a.filter-link.active {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
}

/* make sure collapsed default is open (no class) - if you want closed by default add .collapsed to .brand-filter-body in template */
/* =========================
   Product Detail Styles
   ========================= */
.section-product-detail {
  grid-column: full-start/full-end;
  padding: 4rem 0;
  background: transparent;
  box-sizing: border-box;
}

.product-detail-wrapper {
  grid-column: col-start 2/col-end 9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* image column */
.product-detail__image .main-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(8, 30, 60, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: block;
}
.product-detail__image .image-placeholder {
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #6c757d;
  border-radius: 12px;
  border: 1px dashed #e9ecef;
  font-weight: 600;
}
@media (max-width: 480px) {
  .product-detail__image .image-placeholder {
    height: 320px;
  }
}

/* info column */
.product-detail__info .product-meta {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.product-detail__info .product-meta span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  display: inline-block;
}
.product-detail__info .product-meta .product-brand {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}
.product-detail__info .product-meta .product-category {
  background: linear-gradient(135deg, #28a745, #1e7e34);
}
.product-detail__info .product-title {
  font-size: 2.3rem;
  line-height: 1.15;
  color: #1f2d3d;
  font-weight: 800;
  margin: 0 0 1rem 0;
}
.product-detail__info .product-description {
  color: #495057;
  line-height: 1.75;
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
}
.product-detail__info .product-description p {
  margin-bottom: 1rem;
}
.product-detail__info .product-description ul, .product-detail__info .product-description ol {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}
.product-detail__info .product-description strong {
  color: #2c3e50;
}
.product-detail__info .product-description a {
  color: #007bff;
  text-decoration: underline;
}
.product-detail__info .product-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.product-detail__info .product-actions .btn {
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-detail__info .product-actions .btn--secondary {
  background: #6c757d;
  color: #fff;
}
.product-detail__info .product-actions .btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
}
.product-detail__info .product-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* related products */
.related-products {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eef2f6;
}
.related-products .section-title {
  text-align: center;
  margin-bottom: 1.6rem;
}
.related-products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.related-products .product-card .product-card__image {
  height: 140px;
}
.related-products .product-card .product-card__content {
  padding: 1rem;
}

/* small screens tweaks */
@media (max-width: 640px) {
  .product-detail__info .product-title {
    font-size: 1.5rem;
  }
  .product-detail-wrapper {
    gap: 1.25rem;
    padding: 0 1rem;
  }
  .related-products .products-grid {
    gap: 1rem;
  }
}
/* ensure no horizontal scroll from large shadows or transforms */
.section-product-detail,
.product-detail-wrapper,
.product-detail__image,
.product-detail__info {
  overflow-x: hidden;
}

/*# sourceMappingURL=style.css.map */
