*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #000;
  background: #fff;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0 0 1.1em 1.25em;
  padding: 0;
}

li {
  margin: 0.2em 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  transform: translateY(-140%);
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.navbar {
  width: min(1600px, calc(100% - 36px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.brand img {
  max-height: 64px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  margin: 0;
  list-style: none;
  color: #000;
  font-weight: 500;
}

.nav-menu a {
  display: block;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #00763a;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 27px;
  height: 3px;
  margin: 5px auto;
  background: #000;
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 650px;
  padding: 0 2em 69px;
  color: #fff;
  background: linear-gradient(173deg, #00abf5 0%, #0067d3 100%);
  overflow: hidden;
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 44px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.hero-copy p {
  margin: 0 0 8%;
  color: rgba(255, 255, 255, 0.89);
  font-size: 16px;
  line-height: 1.5;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: min(430px, 88%);
  height: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 26px;
  border-radius: 900px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.btn-yellow {
  background: #ffe072;
  color: #574b21;
}

.wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 69px;
  overflow: hidden;
  pointer-events: none;
}

.wave svg {
  width: calc(100% + 1.3px);
  height: 69px;
  transform: rotateY(180deg);
}

.wave path {
  fill: #edf7f1;
}

.section {
  padding: 64px 0;
}

.section-light {
  background: #edf7f1;
}

.section-green {
  color: #fff;
  background: linear-gradient(200deg, #54b94e 0%, #00763a 100%);
}

.section-white {
  background: #fff;
}

.section-title {
  margin: 0 0 2%;
  color: #d8031e;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.section-title-large {
  margin-bottom: 5%;
  font-size: 55px;
}

.section-title.white,
.section-subtitle.white {
  color: #fff;
}

.section-title.dark {
  color: #1c1e21;
}

.section-subtitle {
  margin: 26px 0 18px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.5;
}

.center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.justify {
  text-align: justify;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: flex-start;
}

.split-about {
  grid-template-columns: 67.455fr 32.5fr;
  align-items: start;
}

.text-block {
  font-weight: 400;
}

.image-frame,
.rounded-img {
  margin: 0;
}

.image-tall {
  display: flex;
  justify-content: center;
}

.image-tall img {
  width: min(330px, 100%);
  height: auto;
}

.logo-side {
  margin: 0;
  display: flex;
  justify-content: center;
}

.logo-side img {
  width: min(300px, 78%);
}

.white-copy {
  color: #fff;
}

.white-copy p {
  color: #fff;
}

.split-vision {
  align-items: center;
  margin-bottom: 2%;
}

.split-vision .section-title {
  margin-bottom: 0.4em;
}

.mission {
  width: min(100%, 1140px);
  margin: 0 auto;
}

.services > p {
  font-weight: 400;
}

.service {
  margin-top: 30px;
}

.service h3,
.service-heading,
.cpo-copy h3 {
  margin: 0 0 14px;
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
}

.light-text h3,
.light-text p,
.light-text li,
.light-text strong {
  color: #fff;
}

.split-service {
  grid-template-columns: 31.579fr 68.421fr;
  gap: 28px;
  align-items: flex-start;
  margin-top: 22px;
  margin-bottom: 18px;
}

.split-service.operator {
  grid-template-columns: 41.316fr 58.64fr;
}

.rounded-img img {
  border-radius: 10px;
}

.wide-img img {
  border-radius: 18px;
}

.small-img img {
  width: min(300px, 100%);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: flex-start;
  margin-top: 18px;
}

.split-cpo {
  grid-template-columns: 73.818fr 26.137fr;
  margin-bottom: 2%;
}

.cpo-copy .section-title {
  margin-bottom: 2%;
}

.cpo-copy p,
.cpo-copy h3 {
  color: #000;
}

.service-heading {
  margin-top: 22px;
  margin-bottom: 14px;
}

.accordion {
  width: 100%;
}

.accordion-item {
  overflow: hidden;
  background: #fff;
}

.accordion-title {
  width: 100%;
  min-height: 51px;
  border: 0;
  background: #fff;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 1em;
  font: 700 16px/1.5 "Open Sans", "Segoe UI", Arial, sans-serif;
  text-align: left;
}

.accordion-title span {
  position: relative;
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
}

.accordion-title span::before,
.accordion-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 2px;
  background: #f0ac87;
  transform: translateY(-50%);
}

.accordion-title span::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.accordion-item.open .accordion-title span::after {
  transform: translateY(-50%) rotate(0deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  color: #000;
  background: #fff;
  transition: max-height 0.25s ease;
}

.accordion-item.open .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  margin: 0;
  padding: 1em 1em 1em 2em;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 2;
}

.clean-accordion .accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.clean-accordion .accordion-title {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
}

.clean-accordion .accordion-content p {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 1.8;
}

.bordered-accordion .accordion-item,
.bordered-accordion .accordion-title,
.bordered-accordion .accordion-content {
  border: 1px solid rgba(0, 0, 0, 0.16);
}

.bordered-accordion .accordion-item + .accordion-item {
  border-top: 0;
}

.values-section {
  background: linear-gradient(180deg, #54b94e 0%, #00763a 100%);
}

.kicker {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
}

.values-section .section-title {
  margin-bottom: 5%;
}

.value-grid {
  display: grid;
  gap: 28px;
  margin-bottom: 2%;
}

.value-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.value-grid.two {
  width: min(733px, 100%);
  grid-template-columns: repeat(2, 1fr);
  margin-right: auto;
  margin-left: auto;
}

.value-card {
  color: #fff;
  text-align: center;
}

.value-card img {
  width: 50%;
  margin: 0 auto;
}

.value-card h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.value-card p {
  margin-top: 0.45em;
  color: #fff;
  font-weight: 400;
}

.why-grid {
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
}

.why-lead {
  color: #000;
}

.footer {
  padding: 3em 2em 0;
  color: rgba(255, 255, 255, 0.54);
  background: #004723;
}

.footer-grid {
  display: grid;
  grid-template-columns: 33.333fr 66.667fr;
  gap: 34px;
  align-items: start;
}

.map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  pointer-events: none;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.5;
}

.btn-whatsapp {
  margin-top: 12px;
  background: #25d366;
  color: #fff;
  border-radius: 6px;
}

.footer-line {
  height: 1px;
  margin-top: 1em;
  padding-bottom: 3em;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .container {
    width: min(1024px, calc(100% - 40px));
  }

  .hero {
    padding: 3em 2em;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .section-title,
  .section-title-large {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 26px;
  }

  .nav-menu {
    gap: 22px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(767px, calc(100% - 32px));
  }

  .navbar {
    min-height: 74px;
  }

  .brand img {
    max-height: 58px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu li + li {
    border-top: 1px solid #000;
  }

  .nav-menu a {
    padding: 14px 24px;
  }

  .hero {
    min-height: auto;
    padding: 3em 2em;
  }

  .hero-grid,
  .split,
  .split-about,
  .split-service,
  .split-service.operator,
  .split-cpo,
  .why-grid,
  .footer-grid,
  .two-col,
  .value-grid.three,
  .value-grid.two {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy p {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .wave {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    margin-bottom: 10%;
    font-size: 30px;
  }

  .section-title-large {
    font-size: 24px;
  }

  .section-subtitle {
    margin-bottom: 10%;
    font-size: 30px;
  }

  .align-left {
    text-align: center;
  }

  .split-about,
  .split-vision,
  .split-cpo {
    gap: 24px;
  }

  .logo-side img {
    width: min(300px, 72%);
  }

  .value-grid.two {
    width: 100%;
  }

  .value-card img {
    width: 50%;
  }

  .footer {
    padding: 3em 2em 0;
  }

  .footer-copy {
    text-align: center;
    font-size: 16px;
  }
}



/* Penyesuaian presisi agar tampilan desktop lebih mendekati halaman Elementor asli */
body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

.navbar {
  min-height: 78px;
}

.brand img {
  max-height: 62px;
}

.nav-menu {
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
}

.hero {
  min-height: 650px;
  padding-bottom: 0;
  background: linear-gradient(180deg, #05a8ee 0%, #047ed6 100%);
}

.hero-grid {
  min-height: 650px;
  grid-template-columns: 46% 54%;
  gap: 20px;
}

.hero-copy h1 {
  margin-bottom: 18px;
  max-width: 520px;
  font-size: 42px;
  line-height: 1.35;
  font-weight: 800;
}

.hero-copy p {
  margin-bottom: 54px;
  font-size: 16px;
  line-height: 1.5;
}

.hero-image {
  justify-content: flex-start;
}

.hero-image img {
  width: min(560px, 100%);
}

.btn {
  min-height: 56px;
  padding: 0 48px;
  font-size: 16px;
  font-weight: 500;
}

.wave {
  height: 92px;
}

.wave svg {
  height: 92px;
}

/* Tentang Kami */
#tentang {
  padding-top: 78px;
  padding-bottom: 108px;
}

#tentang .section-title-large {
  margin-bottom: 48px;
  font-size: 48px;
  line-height: 1.2;
}

.split-about {
  width: min(1080px, 100%);
  margin: 0 auto;
  grid-template-columns: 68fr 32fr;
  gap: 48px;
}

.split-about .text-block {
  font-size: 16px;
  line-height: 1.58;
}

.image-tall img {
  width: min(320px, 100%);
  border-radius: 20px;
}

/* Visi dan Misi */
.section-green:not(.values-section) {
  padding-top: 72px;
  padding-bottom: 96px;
  background: linear-gradient(200deg, #55bb4f 0%, #067e3e 100%);
}

.split-vision {
  width: min(900px, 100%);
  margin: 0 auto 46px;
  grid-template-columns: 42% 58%;
  gap: 72px;
  align-items: center;
}

.logo-side img {
  width: 300px;
  max-width: 100%;
}

.split-vision .section-title {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.2;
  text-align: center;
}

.white-copy p,
.mission-list li {
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.white-copy p {
  margin-bottom: 0;
}

.mission {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.mission-list {
  padding-left: 1.45em;
  list-style-position: outside;
}

.mission-list li {
  margin: 0 0 0.42em;
}

.section-subtitle.white.center {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.2;
}

/* Transportasi CPO */
#cpo {
  padding-top: 66px;
  padding-bottom: 78px;
}

.split-cpo {
  width: min(1080px, 100%);
  margin: 0 auto 42px;
  grid-template-columns: 68fr 32fr;
  gap: 46px;
  align-items: start;
}

.cpo-copy .section-title {
  margin: 0 0 34px;
  color: #d8031e !important;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  text-align: left;
}

.cpo-copy h3 {
  margin-top: 26px;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
}

.cpo-copy p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.cpo-img {
  justify-content: center;
}

.cpo-img img {
  width: min(250px, 100%);
  border-radius: 12px;
}

#cpo .service-heading {
  width: min(1080px, 100%);
  margin: 0 auto 14px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
}

.clean-accordion {
  width: min(1080px, 100%);
  margin: 0 auto;
  background: transparent;
}

.clean-accordion .accordion-item,
.clean-accordion .accordion-title,
.clean-accordion .accordion-content {
  background: transparent;
}

.clean-accordion .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-bottom: 0;
}

.clean-accordion .accordion-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.clean-accordion .accordion-title {
  justify-content: flex-start;
  min-height: 48px;
  gap: 12px;
  padding: 12px 14px;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.clean-accordion .accordion-title span {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
}

.clean-accordion .accordion-title span::before,
.clean-accordion .accordion-title span::after {
  width: 14px;
  height: 2px;
  background: #000;
}

.clean-accordion .accordion-content p {
  padding: 0 16px 20px 38px;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 110px;
  z-index: 999;
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 4px;
  background: rgba(83, 91, 91, 0.85);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 38px;
  cursor: pointer;
}

.back-to-top.show {
  display: block;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image img {
    width: min(430px, 100%);
  }

  #tentang .section-title-large {
    font-size: 36px;
  }

  .split-vision {
    width: 100%;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .hero-grid,
  .split-vision,
  .split-about,
  .split-cpo {
    grid-template-columns: 1fr;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .btn {
    min-height: 46px;
    padding: 0 32px;
  }

  #tentang,
  #cpo,
  .section-green:not(.values-section) {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .split-about,
  .split-cpo,
  .split-vision,
  .clean-accordion,
  #cpo .service-heading {
    width: 100%;
  }

  .split-vision .section-title {
    text-align: center;
  }

  .mission-list {
    padding-left: 1.25em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .accordion-content,
  .nav-toggle span {
    transition: none;
  }
}


/* =========================================================
   FINAL MATCH PATCH - WordPress Elementor reference
   Paste this block at the VERY BOTTOM of styles.css
   ========================================================= */

/* Hero bottom wave: fill must be at the bottom, not upside down */
.hero {
  min-height: 650px;
  padding-bottom: 69px;
}

.hero .wave {
  height: 69px !important;
  bottom: -1px;
}

.hero .wave svg {
  width: 100% !important;
  height: 69px !important;
  transform: none !important;
}

.hero .wave path {
  fill: #edf7f1 !important;
}

/* Tentang Kami image */
#tentang .image-frame,
#tentang .image-tall {
  overflow: hidden;
}

#tentang .image-frame img,
#tentang .image-tall img,
.split-about .image-frame img {
  width: min(330px, 100%);
  border-radius: 20px !important;
  overflow: hidden;
}

/* Visi Misi: mission must be numbered */
.section-green:not(.values-section) {
  padding-top: 72px;
  padding-bottom: 96px;
  background: linear-gradient(200deg, #54b94e 0%, #00763a 100%) !important;
}

.split-vision {
  width: min(900px, 100%);
  margin: 0 auto 46px;
  grid-template-columns: 42% 58%;
  gap: 72px;
  align-items: center;
}

.logo-side img {
  width: 300px;
  max-width: 100%;
}

.split-vision .section-title {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.2;
  text-align: center;
}

.mission,
.mission-list {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.mission-list {
  display: block !important;
  list-style-type: decimal !important;
  list-style-position: outside !important;
  padding-left: 1.45rem !important;
}

.mission-list li {
  display: list-item !important;
  margin: 0 0 0.42em;
  color: #fff !important;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.section-subtitle.white.center {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.2;
}

/* Transportasi CPO */
#cpo {
  padding-top: 66px;
  padding-bottom: 78px;
  background: #edf7f1 !important;
}

#cpo .split-cpo {
  width: min(1080px, 100%);
  margin: 0 auto 42px;
  grid-template-columns: 68fr 32fr;
  gap: 46px;
  align-items: start;
}

#cpo .cpo-title,
#cpo #cpo-title,
#cpo .cpo-copy .section-title {
  margin: 0 0 34px !important;
  color: #d8031e !important;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 36px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

#cpo .cpo-copy p {
  color: #000 !important;
  font-size: 16px;
  line-height: 1.6;
}

#cpo .cpo-copy h3 {
  margin-top: 26px;
  margin-bottom: 12px;
  color: #000 !important;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
}

#cpo .cpo-img {
  justify-content: center;
}

#cpo .cpo-img img {
  width: min(250px, 100%) !important;
  border-radius: 11px !important;
  overflow: hidden;
}

/* Keunggulan Layanan Kami accordion: icon left, transparent row, bordered like Elementor */
#cpo .service-heading {
  width: min(1080px, 100%);
  margin: 0 auto 14px !important;
  color: #000 !important;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
}

#cpo .clean-accordion {
  width: min(1080px, 100%);
  margin: 0 auto;
  background: transparent !important;
  border: 1px solid rgba(0, 0, 0, 0.16);
}

#cpo .clean-accordion .accordion-item {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16) !important;
}

#cpo .clean-accordion .accordion-item:last-child {
  border-bottom: 0 !important;
}

#cpo .clean-accordion .accordion-title {
  justify-content: flex-start !important;
  min-height: 48px;
  gap: 12px;
  padding: 12px 14px !important;
  background: transparent !important;
  color: #000 !important;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
  font-size: 16px;
  font-weight: 700 !important;
  line-height: 1.45;
}

/* supports both old markup: "Title <span></span>" and new markup with .accordion-icon */
#cpo .clean-accordion .accordion-title > span:not(.accordion-label),
#cpo .clean-accordion .accordion-title .accordion-icon {
  order: -1;
  position: relative !important;
  flex: 0 0 14px !important;
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#cpo .clean-accordion .accordion-title .accordion-label {
  position: static !important;
  flex: 1 1 auto !important;
  width: auto !important;
  height: auto !important;
}

#cpo .clean-accordion .accordion-title .accordion-label::before,
#cpo .clean-accordion .accordion-title .accordion-label::after {
  content: none !important;
  display: none !important;
}

#cpo .clean-accordion .accordion-title > span:not(.accordion-label)::before,
#cpo .clean-accordion .accordion-title > span:not(.accordion-label)::after,
#cpo .clean-accordion .accordion-title .accordion-icon::before,
#cpo .clean-accordion .accordion-title .accordion-icon::after {
  content: "" !important;
  position: absolute !important;
  top: 50%;
  left: 0;
  display: block !important;
  width: 14px !important;
  height: 2px !important;
  background: #000 !important;
  transform: translateY(-50%) !important;
}

#cpo .clean-accordion .accordion-title > span:not(.accordion-label)::after,
#cpo .clean-accordion .accordion-title .accordion-icon::after {
  transform: translateY(-50%) rotate(90deg) !important;
}

#cpo .clean-accordion .accordion-item.open .accordion-title > span:not(.accordion-label)::after,
#cpo .clean-accordion .accordion-item.open .accordion-title .accordion-icon::after {
  transform: translateY(-50%) rotate(0deg) !important;
}

#cpo .clean-accordion .accordion-content {
  background: transparent !important;
  color: #000 !important;
}

#cpo .clean-accordion .accordion-content p {
  padding: 0 16px 20px 38px !important;
  color: #000 !important;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
  font-size: 16px;
  line-height: 1.6 !important;
}

@media (max-width: 767px) {
  #cpo .split-cpo,
  .split-vision {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #cpo .cpo-title,
  #cpo #cpo-title,
  #cpo .cpo-copy .section-title {
    font-size: 32px !important;
  }
}

@media (max-width: 767px) {
  /* Semua gambar konten di mobile full width */
  main figure:not(.logo-side):not(.value-card) {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  main figure:not(.logo-side) > img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover;
  }

  /* Override khusus gambar Tentang Kami */
  .split-about .image-frame,
  .split-about .image-tall,
  .split-about .image-frame img,
  .split-about .image-tall img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }

  /* Override khusus gambar Transportasi CPO */
  .split-cpo .cpo-img,
  .split-cpo .image-tall,
  .split-cpo .cpo-img img,
  .split-cpo .image-tall img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }

  /* Biar rounded tetap rapi */
  .image-frame,
  .image-tall,
  .cpo-img,
  .rounded-img {
    overflow: hidden;
    border-radius: 20px;
  }

  .image-frame img,
  .image-tall img,
  .cpo-img img,
  .rounded-img img {
    border-radius: 20px;
  }

  /* Pastikan layout jadi 1 kolom */
  .split-about,
  .split-cpo,
  .split-service,
  .operator {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  /* Jangan ubah logo dan icon */
  .brand img,
  .hero-image img,
  .logo-side img,
  .value-card img {
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 767px) {
  .value-card img {
    width: 50% !important;
    max-width: 220px !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 auto 16px !important;
    display: block !important;
    object-fit: contain !important;
  }
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(0, 0, 0, 0.65);
}

@media (max-width: 767px) {
  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
}

.back-to-top svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}