/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Open Sans",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --default-color-rgb: 68, 68, 68; /* Nilai RGB dari --default-color */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #106eea; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color-rgb: 16, 110, 234; /* Nilai RGB dari --accent-color */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --contrast-color-rgb: 255, 255, 255; /* Nilai RGB dari --contrast-color */
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #106eea; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #106eea; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
.branding .logo img {
  /*
    Mengatur tinggi logo.
    Ukuran tinggi 60px akan membuat logo terlihat lebih besar.
    Lebar diatur otomatis untuk menjaga rasio aspek.
  */
  max-height: 60px;
  width: auto;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 991px) {
  /*
    Ketika tampilan di bawah 991px (tablet & mobile),
    mengatur posisi logo berada di tengah header.
  */
  .header .logo {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: transparent;
}

.header .topbar {
  background-color: var(--accent-color) !important; /* Biru dengan !important */
  min-height: 40px;
  height: auto;
  padding: 5px 0;
  font-size: 14px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.header .topbar a,
.header .topbar i {
  color: #ffffff !important; /* Paksa warna menjadi putih */
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}
.client-item .client-img {
  width: 100%;
  height: 200px; /* Sesuaikan */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-item .client-img img {
  width: 100%;
  height: 100%;
  object-fit: contain !important; /* atau 'cover' kalau mau full */
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

#header .branding {

background-color: #ffffff; /* Diubah menjadi putih solid eksplisit */

min-height: 60px;

padding: 10px 0;

transition: background-color 0.5s; /* Menjaga transisi tetap mulus */

}

.header .logo {
  line-height: 1;
}

.header .logo img {
  /*
    Mengatur tinggi logo menjadi 60px.
    Ini akan menimpa aturan lama yang membuatnya kecil.
  */
  max-height: 60px;
  /*
    Mengembalikan margin agar spasi tetap rapi seperti sebelumnya.
  */
  margin-right: 8px;
  /*
    Menjaga proporsi lebar agar logo tidak terlihat gepeng.
  */
  width: auto;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

    #header.scrolled {
      background-color: #ffffff; /* !important dihapus */
      box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    }

/*--------------------------------------------------------------
# Tombol WhatsApp
--------------------------------------------------------------*/
@media (max-width: 991px) {
  /*
    Menggunakan flexbox untuk menengahkan tombol.
    justify-content: center akan memposisikan item di tengah secara horizontal.
  */
  .hero .d-flex {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 15px;
  min-height: 60px;
  height: auto;
}

.footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5; /* Memberi ruang jika teks turun di mobile */
}

.footer a {
  color: var(--contrast-color);
  text-decoration: underline;
  font-weight: 700;
  transition: opacity 0.3s;
}

.footer a:hover {
  opacity: 0.8;
}

.footer .footer-separator {
  margin: 0 10px;
  opacity: 0.8; /* Membuat 'atau' sedikit redup */
}

/* Penyesuaian untuk desktop */
@media (min-width: 768px) {
  .footer p {
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #dc3545; /* Diubah menjadi merah cerah */
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Menambahkan sedikit bayangan agar lebih menonjol */
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff; /* Warna ikon diubah menjadi putih */
  line-height: 0;
}

.scroll-top:hover {
  background-color: #c82333; /* Warna merah sedikit lebih gelap saat hover */
  color: #ffffff; /* Warna ikon tetap putih saat hover */
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* Penyesuaian untuk Mobile (lebar layar <= 768px) */
@media (max-width: 768px) {
  .scroll-top {
    right: 15px; /* Posisi kanan tetap 15px dari tepi kanan viewport */
    bottom: 45px; /* Posisikan tepat di atas footer (tinggi footer mobile 40px) */
    width: 36px; /* Ukuran tombol sedikit lebih kecil */
    height: 36px; /* Ukuran tombol sedikit lebih kecil */
  }

  .scroll-top i {
    font-size: 20px; /* Ukuran ikon lebih kecil */
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px; /* Diubah dari 78px */
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px; /* Diubah dari 60px */
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Our Treatment Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Proses Kami Section (Final Style)
--------------------------------------------------------------*/
/* Mengatur wadah utama dari daftar (tag <ul>) */
.proses-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mengatur setiap poin/pil (tag <li>) */
.proses-list li {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #f8f9fa;
  border-radius: 50px;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease-in-out;
}

/* Efek saat kursor mouse menyentuh pil */
.proses-list li:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/* Mengubah warna ikon saat pil disentuh mouse */
.proses-list li:hover i {
  color: var(--contrast-color);
}

/* Mengatur ikon checklist di dalam pil */
.proses-list li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

/* --- PENYESUAIAN FONT & LAYOUT RESPONSIVE --- */

/* 1. Pengaturan untuk Tampilan WEB/DESKTOP */
/* Aturan ini hanya berlaku jika lebar layar 768px atau lebih */
@media (min-width: 768px) {
  .proses-list li {
    font-size: 24px;   /* Ukuran disamakan dengan H4 */
    font-weight: 700;  /* Ketebalan disamakan dengan H4 */
  }
}

/* 2. Pengaturan untuk Tampilan MOBILE */
/* Aturan ini hanya berlaku jika lebar layar 767px atau kurang */
@media (max-width: 767px) {
  .proses-list li {
    display: flex;
    width: 100%;
    margin-right: 0;
    font-size: 15px;   /* Ukuran font standar untuk mobile */
  }
}

/*--------------------------------------------------------------
    # Client Logos Section (Swiper Carousel)
    --------------------------------------------------------------*/
    .client-logos {
      padding: 25px 0;
      text-align: center;
      margin-bottom: 30px; /* Tambahkan jarak di bawah bagian ini */
    }

    .client-logos .swiper {
      padding: 10px 0;
    }

    .client-logos .swiper-wrapper {
      height: auto;
    }

    .client-logos .swiper-slide img {
      transition: 0.3s;
    }

    .client-logos .swiper-slide img:hover {
      transform: scale(1.1);
    }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  box-shadow: 0px 5px 20px rgba(var(--default-color-rgb), 0.06);
  background-color: var(--surface-color);
  border-radius: 10px; /* Tambahkan border-radius untuk sudut membulat */
  overflow: hidden; /* Penting untuk gambar agar tidak keluar dari border-radius */
  transition: all 0.3s ease-in-out;
  text-align: left; /* Teks rata kiri seperti di gambar */
  padding: 0; /* Hapus padding dari sini, padding akan diatur di .details */
  height: auto; /* Pastikan tinggi menyesuaikan konten */
}

.services .service-item .img {
  position: relative;
  overflow: hidden;
  height: 250px; /* Atur tinggi gambar agar konsisten */
}

.services .service-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Memastikan gambar mengisi area tanpa distorsi (cropping jika perlu) */
  transition: all 0.3s ease-in-out;
}

.services .service-item .details {
  padding: 25px 30px; /* Padding untuk konten teks di bawah gambar */
  position: relative;
}

.services .service-item h3 {
  color: var(--heading-color);
  font-size: 20px; /* Ukuran font judul layanan */
  font-weight: 700;
  margin: 0 0 10px 0;
  padding: 0;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  color: var(--default-color);
  font-size: 15px; /* Ukuran font paragraf deskripsi */
  margin: 0;
  padding: 0;
}

.services .service-item:hover .img img {
  transform: scale(1.1); /* Efek zoom pada gambar saat hover */
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 40px; /* Diubah menjadi lebih bulat */
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

/* Gaya baru untuk item portofolio */
.portfolio .portfolio-item {
  box-shadow: 0px 5px 20px rgba(var(--default-color-rgb), 0.06);
  background-color: var(--surface-color);
  border-radius: 10px; /* Sudut membulat */
  overflow: hidden; /* Penting untuk gambar agar tidak keluar dari border-radius */
  transition: all 0.3s ease-in-out;
  height: auto; /* Sesuaikan tinggi dengan konten */
  position: relative; /* Penting untuk efek hover overlay jika nanti ditambahkan */
}

.portfolio .portfolio-item img {
  width: 100%;
  height: 250px; /* Atur tinggi gambar agar konsisten seperti Services/Products */
  object-fit: cover; /* Memastikan gambar mengisi area tanpa distorsi (cropping jika perlu) */
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-item:hover img {
  transform: scale(1.1); /* Efek zoom pada gambar saat hover */
}

/* Gaya untuk portfolio-info (overlay) - Biarkan ini jika Anda ingin overlay muncul saat hover */
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 0; /* Diubah dari 12px */
  right: 0; /* Diubah dari 12px */
  bottom: 0; /* Diubah dari -100% */
  height: 100%; /* Agar overlay menutupi seluruh item */
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: rgba(var(--accent-color-rgb), 0.8); /* Warna overlay dengan transparansi */
  padding: 15px;
  display: flex; /* Untuk menengahkan konten di dalamnya */
  flex-direction: column; /* Konten vertikal */
  justify-content: center; /* Tengahkan secara vertikal */
  align-items: center; /* Tengahkan secara horizontal */
  text-align: center; /* Tengahkan teks */
  color: var(--contrast-color); /* Warna teks di overlay */
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 20px; /* Ukuran font judul di overlay */
  font-weight: 600;
  color: var(--contrast-color); /* Warna judul */
  margin-bottom: 5px; /* Jarak bawah judul */
  padding-right: 0; /* Hapus padding-right */
}

.portfolio .portfolio-item .portfolio-info p {
  font-size: 14px;
  margin-bottom: 10px; /* Jarak bawah paragraf */
  padding-right: 0; /* Hapus padding-right */
  color: rgba(var(--contrast-color-rgb), 0.8); /* Warna paragraf */
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: relative; /* Diubah dari absolute */
  right: auto; /* Hapus right */
  top: auto; /* Hapus top */
  font-size: 28px; /* Ukuran ikon */
  color: var(--contrast-color); /* Warna ikon */
  transition: 0.3s;
  line-height: 0;
  margin: 0 10px; /* Jarak antar ikon */
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: rgba(var(--contrast-color-rgb), 0.7); /* Efek hover ikon */
}

.portfolio .portfolio-item .portfolio-info .details-link {
  /* right: 14px; */ /* Hapus ini */
  /* font-size: 28px; */ /* Sudah diatur di atas */
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  /* bottom: 0; */ /* Tidak perlu karena height: 100% */
}


/*--------------------------------------------------------------
# Clients Section (New Portfolio Style)
--------------------------------------------------------------*/
.clients .client-item {
  overflow: hidden; /* Memastikan gambar tidak keluar dari sudut */
  border-radius: 8px;
  box-shadow: 0px 2px 15px rgba(var(--default-color-rgb), 0.1);
}

.clients .client-item img {
  width: 100%;
  aspect-ratio: 4 / 3; /* Menjaga bentuk gambar tetap konsisten (4:3) */
  object-fit: cover; /* Memastikan gambar mengisi area tanpa distorsi */
  transition: all 0.3s ease-in-out;
}

.clients .client-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 25px rgba(var(--default-color-rgb), 0.15);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  /* margin-right: 15px; <-- Baris ini dihapus karena tidak lagi diperlukan dengan flex-column */
}

/* Aturan ini untuk menengahkan teks di dalam div setelah ikon */
.contact .info-item div {
  text-align: center;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

    /*
      Ini adalah kode CSS khusus untuk bagian Manfaat Klien.
      Disematkan langsung untuk memastikan gaya diterapkan secara spesifik.
      Gaya ini disesuaikan agar mirip dengan section Layanan Kami.
    */
    #benefits .service-item {
      padding: 40px 30px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
      background: #fff;
      height: 100%;
      border-radius: 10px;
      text-align: center; /* Rata tengah semua teks di dalam kartu */
      transition: all 0.3s ease-in-out;
    }

    #benefits .service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    }

    #benefits .service-item .icon {
      margin: 0 auto 20px auto; /* Rata tengah ikon dan beri jarak bawah */
      width: 80px; /* Ukuran lingkaran ikon */
      height: 80px; /* Ukuran lingkaran ikon */
      background: var(--accent-color, #007bff); /* Warna latar belakang lingkaran ikon (biru) */
      border-radius: 50%; /* Membuat lingkaran */
      display: flex; /* Menggunakan flexbox untuk menengahkan ikon di dalamnya */
      align-items: center; /* Rata tengah vertikal ikon */
      justify-content: center; /* Rata tengah horizontal ikon */
      transition: ease-in-out 0.3s;
    }

    #benefits .service-item .icon i {
      color: #fff; /* Warna ikon (putih) */
      font-size: 36px; /* Ukuran ikon */
      transition: ease-in-out 0.3s;
      background: none; /* Pastikan tidak ada latar belakang ganda */
      border-radius: 0;
      padding: 0;
    }

    #benefits .service-item h4 { /* Menggunakan h4 karena di HTML Anda h4 */
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--heading-color, #333);
    }

    #benefits .service-item p {
      font-size: 15px;
      color: var(--default-color, #666);
      line-height: 1.6;
    }

    /* Responsif untuk mobile */
    @media (max-width: 768px) {
      #benefits .service-item {
        margin-bottom: 20px; /* Memberi jarak antar kartu di mobile */
      }
    }
	
	
    /*
      Ini adalah kode CSS khusus untuk bagian Keunggulan.
      Disematkan langsung untuk memastikan gaya diterapkan secara spesifik
      dan konsisten dengan section Layanan dan Manfaat.
    */
    #keunggulan .service-item {
      padding: 40px 30px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
      background: #fff;
      height: 100%;
      border-radius: 10px;
      text-align: center; /* Rata tengah semua teks di dalam kartu */
      transition: all 0.3s ease-in-out;
    }

    #keunggulan .service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    }

    #keunggulan .service-item .icon {
      margin: 0 auto 20px auto; /* Rata tengah ikon dan beri jarak bawah */
      width: 80px; /* Ukuran lingkaran ikon */
      height: 80px; /* Ukuran lingkaran ikon */
      background: var(--accent-color, #007bff); /* Warna latar belakang lingkaran ikon (biru) */
      border-radius: 50%; /* Membuat lingkaran */
      display: flex; /* Menggunakan flexbox untuk menengahkan ikon di dalamnya */
      align-items: center; /* Rata tengah vertikal ikon */
      justify-content: center; /* Rata tengah horizontal ikon */
      transition: ease-in-out 0.3s;
    }

    #keunggulan .service-item .icon i {
      color: #fff; /* Warna ikon (putih) */
      font-size: 36px; /* Ukuran ikon */
      transition: ease-in-out 0.3s;
      background: none; /* Pastikan tidak ada latar belakang ganda */
      border-radius: 0;
      padding: 0;
    }

    #keunggulan .service-item h4 { /* Menggunakan h4 karena di HTML Anda h4 */
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--heading-color, #333);
    }

    #keunggulan .service-item p {
      font-size: 15px;
      color: var(--default-color, #666);
      line-height: 1.6;
    }

    /* Responsif untuk mobile */
    @media (max-width: 768px) {
      #keunggulan .service-item {
        margin-bottom: 20px; /* Memberi jarak antar kartu di mobile */
      }
    }
	
	
    /*
      Ini adalah kode CSS khusus untuk bagian Layanan Kami.
      Disematkan langsung untuk menghindari konflik CSS.
    */
    .services .service-item {
      padding: 40px 30px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
      background: #fff;
      height: 100%;
      border-radius: 10px;
      text-align: center;
      transition: all 0.3s ease-in-out;
    }

    .services .service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    }

    .services .service-item .icon {
      margin: 0 auto 20px auto;
      width: 80px;
      height: 80px;
      background: var(--accent-color, #007bff); /* Menggunakan warna default jika tidak terdefinisi */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: ease-in-out 0.3s;
    }

    .services .service-item .icon i {
      color: #fff;
      font-size: 36px;
      transition: ease-in-out 0.3s;
    }

    .services .service-item h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--heading-color, #333); /* Menggunakan warna default jika tidak terdefinisi */
    }

    .services .service-item p {
      font-size: 15px;
      color: var(--default-color, #666); /* Menggunakan warna default jika tidak terdefinisi */
      line-height: 1.6;
    }

    /* Responsif untuk mobile */
    @media (max-width: 768px) {
      .services .service-item {
        margin-bottom: 20px; /* Memberi jarak antar kartu di mobile */
      }
    }


	/* CSS untuk Bagian Logo Klien Kecil (Grid Statis) */
	.client-logos .client-logo-item {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 15px;
	  border: 1px solid #eee;
	  border-radius: 8px;
	  height: 100px; /* Tinggi tetap untuk container logo */
	  background-color: #fff;
	  transition: all 0.3s ease-in-out;
	  margin-bottom: 15px; /* Jarak antar item */
	}

	.client-logos .client-logo-item img {
	  max-width: 100%;
	  max-height: 70px; /* Batasi tinggi gambar logo */
	  /* filter: grayscale(100%); DIHAPUS */
	  /* opacity: 0.6; */
	  transition: all 0.3s ease-in-out; /* Tetap pertahankan transisi jika ada properti lain yang berubah */
	}

	/* Responsif untuk 8 kolom di layar besar (lg dan up) */
	@media (min-width: 992px) {
	  .client-logos .client-logo-item {
		flex: 0 0 auto; /* Mencegah item tumbuh/menyusut */
		width: 12.5%; /* 100% / 8 kolom */
	  }
	}

	/* Penyesuaian untuk layar medium (md) */
	@media (min-width: 768px) and (max-width: 991px) {
	  .client-logos .client-logo-item {
		width: 33.333%%; /* 4 per baris */
	  }
	}

	/* Penyesuaian untuk layar kecil (sm) */
	@media (min-width: 576px) and (max-width: 767px) {
	  .client-logos .client-logo-item {
		width: 33.333%; /* 3 per baris */
	  }
	}

	/* Penyesuaian untuk layar ekstra kecil (xs) */
	@media (max-width: 575px) {
	  .client-logos .client-logo-item {
		width: 33.333%; /* 2 per baris */
	  }
	}
	
/*--------------------------------------------------------------
# Topbar Orange Accent
--------------------------------------------------------------*/
.header .topbar::after {
content: '';
position: absolute;
top: 50%; /* Diubah */
right: -50px; /* Dicoba diubah */
width: 50%;
height: 50%; /* Diubah */
background-color: #f7941d;
transform: skewX(-60deg);
}

/* Nonaktifkan Orange Accent di Mobile */
@media (max-width: 767px) {
  .header .topbar::after {
    content: none;
  }
  .header .topbar .contact-info a {
    font-size: 12px !important;
  }

  /* ===== TAMBAHKAN KODE BARU DI SINI ===== */
  .header .logo img {
    max-width: 150px; /* Atur lebar maksimal logo di mobile */
  }
  /* ======================================= */

}/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Open Sans",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --default-color-rgb: 68, 68, 68; /* Nilai RGB dari --default-color */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #106eea; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color-rgb: 16, 110, 234; /* Nilai RGB dari --accent-color */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --contrast-color-rgb: 255, 255, 255; /* Nilai RGB dari --contrast-color */
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #106eea; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #106eea; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
.branding .logo img {
  /*
    Mengatur tinggi logo.
    Ukuran tinggi 60px akan membuat logo terlihat lebih besar.
    Lebar diatur otomatis untuk menjaga rasio aspek.
  */
  max-height: 60px;
  width: auto;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 991px) {
  /*
    Ketika tampilan di bawah 991px (tablet & mobile),
    mengatur posisi logo berada di tengah header.
  */
  .header .logo {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: transparent;
}

.header .topbar {
  background-color: var(--accent-color) !important; /* Biru dengan !important */
  min-height: 40px;
  height: auto;
  padding: 5px 0;
  font-size: 14px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.header .topbar a,
.header .topbar i {
  color: #ffffff !important; /* Paksa warna menjadi putih */
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}
.client-item .client-img {
  width: 100%;
  height: 200px; /* Sesuaikan */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-item .client-img img {
  width: 100%;
  height: 100%;
  object-fit: contain !important; /* atau 'cover' kalau mau full */
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

#header .branding {

background-color: #ffffff; /* Diubah menjadi putih solid eksplisit */

min-height: 60px;

padding: 10px 0;

transition: background-color 0.5s; /* Menjaga transisi tetap mulus */

}

.header .logo {
  line-height: 1;
}

.header .logo img {
  /*
    Mengatur tinggi logo menjadi 60px.
    Ini akan menimpa aturan lama yang membuatnya kecil.
  */
  max-height: 60px;
  /*
    Mengembalikan margin agar spasi tetap rapi seperti sebelumnya.
  */
  margin-right: 8px;
  /*
    Menjaga proporsi lebar agar logo tidak terlihat gepeng.
  */
  width: auto;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

    #header.scrolled {
      background-color: #ffffff; /* !important dihapus */
      box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    }

/*--------------------------------------------------------------
# Tombol WhatsApp
--------------------------------------------------------------*/
@media (max-width: 991px) {
  /*
    Menggunakan flexbox untuk menengahkan tombol.
    justify-content: center akan memposisikan item di tengah secara horizontal.
  */
  .hero .d-flex {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 15px;
  min-height: 60px;
  height: auto;
}

.footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5; /* Memberi ruang jika teks turun di mobile */
}

.footer a {
  color: var(--contrast-color);
  text-decoration: underline;
  font-weight: 700;
  transition: opacity 0.3s;
}

.footer a:hover {
  opacity: 0.8;
}

.footer .footer-separator {
  margin: 0 10px;
  opacity: 0.8; /* Membuat 'atau' sedikit redup */
}

/* Penyesuaian untuk desktop */
@media (min-width: 768px) {
  .footer p {
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #dc3545; /* Diubah menjadi merah cerah */
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Menambahkan sedikit bayangan agar lebih menonjol */
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff; /* Warna ikon diubah menjadi putih */
  line-height: 0;
}

.scroll-top:hover {
  background-color: #c82333; /* Warna merah sedikit lebih gelap saat hover */
  color: #ffffff; /* Warna ikon tetap putih saat hover */
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* Penyesuaian untuk Mobile (lebar layar <= 768px) */
@media (max-width: 768px) {
  .scroll-top {
    right: 15px; /* Posisi kanan tetap 15px dari tepi kanan viewport */
    bottom: 45px; /* Posisikan tepat di atas footer (tinggi footer mobile 40px) */
    width: 36px; /* Ukuran tombol sedikit lebih kecil */
    height: 36px; /* Ukuran tombol sedikit lebih kecil */
  }

  .scroll-top i {
    font-size: 20px; /* Ukuran ikon lebih kecil */
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px; /* Diubah dari 78px */
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px; /* Diubah dari 60px */
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Our Treatment Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Proses Kami Section (Final Style)
--------------------------------------------------------------*/
/* Mengatur wadah utama dari daftar (tag <ul>) */
.proses-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mengatur setiap poin/pil (tag <li>) */
.proses-list li {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #f8f9fa;
  border-radius: 50px;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease-in-out;
}

/* Efek saat kursor mouse menyentuh pil */
.proses-list li:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/* Mengubah warna ikon saat pil disentuh mouse */
.proses-list li:hover i {
  color: var(--contrast-color);
}

/* Mengatur ikon checklist di dalam pil */
.proses-list li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

/* --- PENYESUAIAN FONT & LAYOUT RESPONSIVE --- */

/* 1. Pengaturan untuk Tampilan WEB/DESKTOP */
/* Aturan ini hanya berlaku jika lebar layar 768px atau lebih */
@media (min-width: 768px) {
  .proses-list li {
    font-size: 24px;   /* Ukuran disamakan dengan H4 */
    font-weight: 700;  /* Ketebalan disamakan dengan H4 */
  }
}

/* 2. Pengaturan untuk Tampilan MOBILE */
/* Aturan ini hanya berlaku jika lebar layar 767px atau kurang */
@media (max-width: 767px) {
  .proses-list li {
    display: flex;
    width: 100%;
    margin-right: 0;
    font-size: 15px;   /* Ukuran font standar untuk mobile */
  }
}

/*--------------------------------------------------------------
    # Client Logos Section (Swiper Carousel)
    --------------------------------------------------------------*/
    .client-logos {
      padding: 25px 0;
      text-align: center;
      margin-bottom: 30px; /* Tambahkan jarak di bawah bagian ini */
    }

    .client-logos .swiper {
      padding: 10px 0;
    }

    .client-logos .swiper-wrapper {
      height: auto;
    }

    .client-logos .swiper-slide img {
      transition: 0.3s;
    }

    .client-logos .swiper-slide img:hover {
      transform: scale(1.1);
    }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  box-shadow: 0px 5px 20px rgba(var(--default-color-rgb), 0.06);
  background-color: var(--surface-color);
  border-radius: 10px; /* Tambahkan border-radius untuk sudut membulat */
  overflow: hidden; /* Penting untuk gambar agar tidak keluar dari border-radius */
  transition: all 0.3s ease-in-out;
  text-align: left; /* Teks rata kiri seperti di gambar */
  padding: 0; /* Hapus padding dari sini, padding akan diatur di .details */
  height: auto; /* Pastikan tinggi menyesuaikan konten */
}

.services .service-item .img {
  position: relative;
  overflow: hidden;
  height: 250px; /* Atur tinggi gambar agar konsisten */
}

.services .service-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Memastikan gambar mengisi area tanpa distorsi (cropping jika perlu) */
  transition: all 0.3s ease-in-out;
}

.services .service-item .details {
  padding: 25px 30px; /* Padding untuk konten teks di bawah gambar */
  position: relative;
}

.services .service-item h3 {
  color: var(--heading-color);
  font-size: 20px; /* Ukuran font judul layanan */
  font-weight: 700;
  margin: 0 0 10px 0;
  padding: 0;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  color: var(--default-color);
  font-size: 15px; /* Ukuran font paragraf deskripsi */
  margin: 0;
  padding: 0;
}

.services .service-item:hover .img img {
  transform: scale(1.1); /* Efek zoom pada gambar saat hover */
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 40px; /* Diubah menjadi lebih bulat */
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

/* Gaya baru untuk item portofolio */
.portfolio .portfolio-item {
  box-shadow: 0px 5px 20px rgba(var(--default-color-rgb), 0.06);
  background-color: var(--surface-color);
  border-radius: 10px; /* Sudut membulat */
  overflow: hidden; /* Penting untuk gambar agar tidak keluar dari border-radius */
  transition: all 0.3s ease-in-out;
  height: auto; /* Sesuaikan tinggi dengan konten */
  position: relative; /* Penting untuk efek hover overlay jika nanti ditambahkan */
}

.portfolio .portfolio-item img {
  width: 100%;
  height: 250px; /* Atur tinggi gambar agar konsisten seperti Services/Products */
  object-fit: cover; /* Memastikan gambar mengisi area tanpa distorsi (cropping jika perlu) */
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-item:hover img {
  transform: scale(1.1); /* Efek zoom pada gambar saat hover */
}

/* Gaya untuk portfolio-info (overlay) - Biarkan ini jika Anda ingin overlay muncul saat hover */
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 0; /* Diubah dari 12px */
  right: 0; /* Diubah dari 12px */
  bottom: 0; /* Diubah dari -100% */
  height: 100%; /* Agar overlay menutupi seluruh item */
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: rgba(var(--accent-color-rgb), 0.8); /* Warna overlay dengan transparansi */
  padding: 15px;
  display: flex; /* Untuk menengahkan konten di dalamnya */
  flex-direction: column; /* Konten vertikal */
  justify-content: center; /* Tengahkan secara vertikal */
  align-items: center; /* Tengahkan secara horizontal */
  text-align: center; /* Tengahkan teks */
  color: var(--contrast-color); /* Warna teks di overlay */
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 20px; /* Ukuran font judul di overlay */
  font-weight: 600;
  color: var(--contrast-color); /* Warna judul */
  margin-bottom: 5px; /* Jarak bawah judul */
  padding-right: 0; /* Hapus padding-right */
}

.portfolio .portfolio-item .portfolio-info p {
  font-size: 14px;
  margin-bottom: 10px; /* Jarak bawah paragraf */
  padding-right: 0; /* Hapus padding-right */
  color: rgba(var(--contrast-color-rgb), 0.8); /* Warna paragraf */
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: relative; /* Diubah dari absolute */
  right: auto; /* Hapus right */
  top: auto; /* Hapus top */
  font-size: 28px; /* Ukuran ikon */
  color: var(--contrast-color); /* Warna ikon */
  transition: 0.3s;
  line-height: 0;
  margin: 0 10px; /* Jarak antar ikon */
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: rgba(var(--contrast-color-rgb), 0.7); /* Efek hover ikon */
}

.portfolio .portfolio-item .portfolio-info .details-link {
  /* right: 14px; */ /* Hapus ini */
  /* font-size: 28px; */ /* Sudah diatur di atas */
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  /* bottom: 0; */ /* Tidak perlu karena height: 100% */
}


/*--------------------------------------------------------------
# Clients Section (New Portfolio Style)
--------------------------------------------------------------*/
.clients .client-item {
  overflow: hidden; /* Memastikan gambar tidak keluar dari sudut */
  border-radius: 8px;
  box-shadow: 0px 2px 15px rgba(var(--default-color-rgb), 0.1);
}

.clients .client-item img {
  width: 100%;
  aspect-ratio: 4 / 3; /* Menjaga bentuk gambar tetap konsisten (4:3) */
  object-fit: cover; /* Memastikan gambar mengisi area tanpa distorsi */
  transition: all 0.3s ease-in-out;
}

.clients .client-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 25px rgba(var(--default-color-rgb), 0.15);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  /* margin-right: 15px; <-- Baris ini dihapus karena tidak lagi diperlukan dengan flex-column */
}

/* Aturan ini untuk menengahkan teks di dalam div setelah ikon */
.contact .info-item div {
  text-align: center;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

    /*
      Ini adalah kode CSS khusus untuk bagian Manfaat Klien.
      Disematkan langsung untuk memastikan gaya diterapkan secara spesifik.
      Gaya ini disesuaikan agar mirip dengan section Layanan Kami.
    */
    #benefits .service-item {
      padding: 40px 30px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
      background: #fff;
      height: 100%;
      border-radius: 10px;
      text-align: center; /* Rata tengah semua teks di dalam kartu */
      transition: all 0.3s ease-in-out;
    }

    #benefits .service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    }

    #benefits .service-item .icon {
      margin: 0 auto 20px auto; /* Rata tengah ikon dan beri jarak bawah */
      width: 80px; /* Ukuran lingkaran ikon */
      height: 80px; /* Ukuran lingkaran ikon */
      background: var(--accent-color, #007bff); /* Warna latar belakang lingkaran ikon (biru) */
      border-radius: 50%; /* Membuat lingkaran */
      display: flex; /* Menggunakan flexbox untuk menengahkan ikon di dalamnya */
      align-items: center; /* Rata tengah vertikal ikon */
      justify-content: center; /* Rata tengah horizontal ikon */
      transition: ease-in-out 0.3s;
    }

    #benefits .service-item .icon i {
      color: #fff; /* Warna ikon (putih) */
      font-size: 36px; /* Ukuran ikon */
      transition: ease-in-out 0.3s;
      background: none; /* Pastikan tidak ada latar belakang ganda */
      border-radius: 0;
      padding: 0;
    }

    #benefits .service-item h4 { /* Menggunakan h4 karena di HTML Anda h4 */
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--heading-color, #333);
    }

    #benefits .service-item p {
      font-size: 15px;
      color: var(--default-color, #666);
      line-height: 1.6;
    }

    /* Responsif untuk mobile */
    @media (max-width: 768px) {
      #benefits .service-item {
        margin-bottom: 20px; /* Memberi jarak antar kartu di mobile */
      }
    }
	
	
    /*
      Ini adalah kode CSS khusus untuk bagian Keunggulan.
      Disematkan langsung untuk memastikan gaya diterapkan secara spesifik
      dan konsisten dengan section Layanan dan Manfaat.
    */
    #keunggulan .service-item {
      padding: 40px 30px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
      background: #fff;
      height: 100%;
      border-radius: 10px;
      text-align: center; /* Rata tengah semua teks di dalam kartu */
      transition: all 0.3s ease-in-out;
    }

    #keunggulan .service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    }

    #keunggulan .service-item .icon {
      margin: 0 auto 20px auto; /* Rata tengah ikon dan beri jarak bawah */
      width: 80px; /* Ukuran lingkaran ikon */
      height: 80px; /* Ukuran lingkaran ikon */
      background: var(--accent-color, #007bff); /* Warna latar belakang lingkaran ikon (biru) */
      border-radius: 50%; /* Membuat lingkaran */
      display: flex; /* Menggunakan flexbox untuk menengahkan ikon di dalamnya */
      align-items: center; /* Rata tengah vertikal ikon */
      justify-content: center; /* Rata tengah horizontal ikon */
      transition: ease-in-out 0.3s;
    }

    #keunggulan .service-item .icon i {
      color: #fff; /* Warna ikon (putih) */
      font-size: 36px; /* Ukuran ikon */
      transition: ease-in-out 0.3s;
      background: none; /* Pastikan tidak ada latar belakang ganda */
      border-radius: 0;
      padding: 0;
    }

    #keunggulan .service-item h4 { /* Menggunakan h4 karena di HTML Anda h4 */
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--heading-color, #333);
    }

    #keunggulan .service-item p {
      font-size: 15px;
      color: var(--default-color, #666);
      line-height: 1.6;
    }

    /* Responsif untuk mobile */
    @media (max-width: 768px) {
      #keunggulan .service-item {
        margin-bottom: 20px; /* Memberi jarak antar kartu di mobile */
      }
    }
	
	
    /*
      Ini adalah kode CSS khusus untuk bagian Layanan Kami.
      Disematkan langsung untuk menghindari konflik CSS.
    */
    .services .service-item {
      padding: 40px 30px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
      background: #fff;
      height: 100%;
      border-radius: 10px;
      text-align: center;
      transition: all 0.3s ease-in-out;
    }

    .services .service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    }

    .services .service-item .icon {
      margin: 0 auto 20px auto;
      width: 80px;
      height: 80px;
      background: var(--accent-color, #007bff); /* Menggunakan warna default jika tidak terdefinisi */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: ease-in-out 0.3s;
    }

    .services .service-item .icon i {
      color: #fff;
      font-size: 36px;
      transition: ease-in-out 0.3s;
    }

    .services .service-item h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--heading-color, #333); /* Menggunakan warna default jika tidak terdefinisi */
    }

    .services .service-item p {
      font-size: 15px;
      color: var(--default-color, #666); /* Menggunakan warna default jika tidak terdefinisi */
      line-height: 1.6;
    }

    /* Responsif untuk mobile */
    @media (max-width: 768px) {
      .services .service-item {
        margin-bottom: 20px; /* Memberi jarak antar kartu di mobile */
      }
    }


	/* CSS untuk Bagian Logo Klien Kecil (Grid Statis) */
	.client-logos .client-logo-item {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 15px;
	  border: 1px solid #eee;
	  border-radius: 8px;
	  height: 100px; /* Tinggi tetap untuk container logo */
	  background-color: #fff;
	  transition: all 0.3s ease-in-out;
	  margin-bottom: 15px; /* Jarak antar item */
	}

	.client-logos .client-logo-item img {
	  max-width: 100%;
	  max-height: 70px; /* Batasi tinggi gambar logo */
	  /* filter: grayscale(100%); DIHAPUS */
	  /* opacity: 0.6; */
	  transition: all 0.3s ease-in-out; /* Tetap pertahankan transisi jika ada properti lain yang berubah */
	}

	/* Responsif untuk 8 kolom di layar besar (lg dan up) */
	@media (min-width: 992px) {
	  .client-logos .client-logo-item {
		flex: 0 0 auto; /* Mencegah item tumbuh/menyusut */
		width: 12.5%; /* 100% / 8 kolom */
	  }
	}

	/* Penyesuaian untuk layar medium (md) */
	@media (min-width: 768px) and (max-width: 991px) {
	  .client-logos .client-logo-item {
		width: 33.333%%; /* 4 per baris */
	  }
	}

	/* Penyesuaian untuk layar kecil (sm) */
	@media (min-width: 576px) and (max-width: 767px) {
	  .client-logos .client-logo-item {
		width: 33.333%; /* 3 per baris */
	  }
	}

	/* Penyesuaian untuk layar ekstra kecil (xs) */
	@media (max-width: 575px) {
	  .client-logos .client-logo-item {
		width: 33.333%; /* 2 per baris */
	  }
	}
	
/*--------------------------------------------------------------
# Topbar Orange Accent
--------------------------------------------------------------*/
.header .topbar::after {
content: '';
position: absolute;
top: 50%; /* Diubah */
right: -50px; /* Dicoba diubah */
width: 50%;
height: 50%; /* Diubah */
background-color: #f7941d;
transform: skewX(-60deg);
}

/* Nonaktifkan Orange Accent di Mobile */
@media (max-width: 767px) {
  .header .topbar::after {
    content: none;
  }
  .header .topbar .contact-info a {
    font-size: 12px !important;
  }

  /* ===== TAMBAHKAN KODE BARU DI SINI ===== */
  .header .logo img {
    max-width: 150px; /* Atur lebar maksimal logo di mobile */
  }
  /* ======================================= */

}/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Open Sans",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --default-color-rgb: 68, 68, 68; /* Nilai RGB dari --default-color */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #106eea; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color-rgb: 16, 110, 234; /* Nilai RGB dari --accent-color */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --contrast-color-rgb: 255, 255, 255; /* Nilai RGB dari --contrast-color */
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #106eea; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #106eea; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
.branding .logo img {
  /*
    Mengatur tinggi logo.
    Ukuran tinggi 60px akan membuat logo terlihat lebih besar.
    Lebar diatur otomatis untuk menjaga rasio aspek.
  */
  max-height: 60px;
  width: auto;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 991px) {
  /*
    Ketika tampilan di bawah 991px (tablet & mobile),
    mengatur posisi logo berada di tengah header.
  */
  .header .logo {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: transparent;
}

.header .topbar {
  background-color: var(--accent-color) !important; /* Biru dengan !important */
  min-height: 40px;
  height: auto;
  padding: 5px 0;
  font-size: 14px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.header .topbar a,
.header .topbar i {
  color: #ffffff !important; /* Paksa warna menjadi putih */
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}
.client-item .client-img {
  width: 100%;
  height: 200px; /* Sesuaikan */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-item .client-img img {
  width: 100%;
  height: 100%;
  object-fit: contain !important; /* atau 'cover' kalau mau full */
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

#header .branding {

background-color: #ffffff; /* Diubah menjadi putih solid eksplisit */

min-height: 60px;

padding: 10px 0;

transition: background-color 0.5s; /* Menjaga transisi tetap mulus */

}

.header .logo {
  line-height: 1;
}

.header .logo img {
  /*
    Mengatur tinggi logo menjadi 60px.
    Ini akan menimpa aturan lama yang membuatnya kecil.
  */
  max-height: 60px;
  /*
    Mengembalikan margin agar spasi tetap rapi seperti sebelumnya.
  */
  margin-right: 8px;
  /*
    Menjaga proporsi lebar agar logo tidak terlihat gepeng.
  */
  width: auto;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

    #header.scrolled {
      background-color: #ffffff; /* !important dihapus */
      box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    }

/*--------------------------------------------------------------
# Tombol WhatsApp
--------------------------------------------------------------*/
@media (max-width: 991px) {
  /*
    Menggunakan flexbox untuk menengahkan tombol.
    justify-content: center akan memposisikan item di tengah secara horizontal.
  */
  .hero .d-flex {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 15px;
  min-height: 60px;
  height: auto;
}

.footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5; /* Memberi ruang jika teks turun di mobile */
}

.footer a {
  color: var(--contrast-color);
  text-decoration: underline;
  font-weight: 700;
  transition: opacity 0.3s;
}

.footer a:hover {
  opacity: 0.8;
}

.footer .footer-separator {
  margin: 0 10px;
  opacity: 0.8; /* Membuat 'atau' sedikit redup */
}

/* Penyesuaian untuk desktop */
@media (min-width: 768px) {
  .footer p {
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #dc3545; /* Diubah menjadi merah cerah */
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Menambahkan sedikit bayangan agar lebih menonjol */
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff; /* Warna ikon diubah menjadi putih */
  line-height: 0;
}

.scroll-top:hover {
  background-color: #c82333; /* Warna merah sedikit lebih gelap saat hover */
  color: #ffffff; /* Warna ikon tetap putih saat hover */
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* Penyesuaian untuk Mobile (lebar layar <= 768px) */
@media (max-width: 768px) {
  .scroll-top {
    right: 15px; /* Posisi kanan tetap 15px dari tepi kanan viewport */
    bottom: 45px; /* Posisikan tepat di atas footer (tinggi footer mobile 40px) */
    width: 36px; /* Ukuran tombol sedikit lebih kecil */
    height: 36px; /* Ukuran tombol sedikit lebih kecil */
  }

  .scroll-top i {
    font-size: 20px; /* Ukuran ikon lebih kecil */
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px; /* Diubah dari 78px */
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px; /* Diubah dari 60px */
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Our Treatment Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Proses Kami Section (Final Style)
--------------------------------------------------------------*/
/* Mengatur wadah utama dari daftar (tag <ul>) */
.proses-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mengatur setiap poin/pil (tag <li>) */
.proses-list li {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #f8f9fa;
  border-radius: 50px;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease-in-out;
}

/* Efek saat kursor mouse menyentuh pil */
.proses-list li:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/* Mengubah warna ikon saat pil disentuh mouse */
.proses-list li:hover i {
  color: var(--contrast-color);
}

/* Mengatur ikon checklist di dalam pil */
.proses-list li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

/* --- PENYESUAIAN FONT & LAYOUT RESPONSIVE --- */

/* 1. Pengaturan untuk Tampilan WEB/DESKTOP */
/* Aturan ini hanya berlaku jika lebar layar 768px atau lebih */
@media (min-width: 768px) {
  .proses-list li {
    font-size: 24px;   /* Ukuran disamakan dengan H4 */
    font-weight: 700;  /* Ketebalan disamakan dengan H4 */
  }
}

/* 2. Pengaturan untuk Tampilan MOBILE */
/* Aturan ini hanya berlaku jika lebar layar 767px atau kurang */
@media (max-width: 767px) {
  .proses-list li {
    display: flex;
    width: 100%;
    margin-right: 0;
    font-size: 15px;   /* Ukuran font standar untuk mobile */
  }
}

/*--------------------------------------------------------------
    # Client Logos Section (Swiper Carousel)
    --------------------------------------------------------------*/
    .client-logos {
      padding: 25px 0;
      text-align: center;
      margin-bottom: 30px; /* Tambahkan jarak di bawah bagian ini */
    }

    .client-logos .swiper {
      padding: 10px 0;
    }

    .client-logos .swiper-wrapper {
      height: auto;
    }

    .client-logos .swiper-slide img {
      transition: 0.3s;
    }

    .client-logos .swiper-slide img:hover {
      transform: scale(1.1);
    }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  box-shadow: 0px 5px 20px rgba(var(--default-color-rgb), 0.06);
  background-color: var(--surface-color);
  border-radius: 10px; /* Tambahkan border-radius untuk sudut membulat */
  overflow: hidden; /* Penting untuk gambar agar tidak keluar dari border-radius */
  transition: all 0.3s ease-in-out;
  text-align: left; /* Teks rata kiri seperti di gambar */
  padding: 0; /* Hapus padding dari sini, padding akan diatur di .details */
  height: auto; /* Pastikan tinggi menyesuaikan konten */
}

.services .service-item .img {
  position: relative;
  overflow: hidden;
  height: 250px; /* Atur tinggi gambar agar konsisten */
}

.services .service-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Memastikan gambar mengisi area tanpa distorsi (cropping jika perlu) */
  transition: all 0.3s ease-in-out;
}

.services .service-item .details {
  padding: 25px 30px; /* Padding untuk konten teks di bawah gambar */
  position: relative;
}

.services .service-item h3 {
  color: var(--heading-color);
  font-size: 20px; /* Ukuran font judul layanan */
  font-weight: 700;
  margin: 0 0 10px 0;
  padding: 0;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  color: var(--default-color);
  font-size: 15px; /* Ukuran font paragraf deskripsi */
  margin: 0;
  padding: 0;
}

.services .service-item:hover .img img {
  transform: scale(1.1); /* Efek zoom pada gambar saat hover */
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 40px; /* Diubah menjadi lebih bulat */
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

/* Gaya baru untuk item portofolio */
.portfolio .portfolio-item {
  box-shadow: 0px 5px 20px rgba(var(--default-color-rgb), 0.06);
  background-color: var(--surface-color);
  border-radius: 10px; /* Sudut membulat */
  overflow: hidden; /* Penting untuk gambar agar tidak keluar dari border-radius */
  transition: all 0.3s ease-in-out;
  height: auto; /* Sesuaikan tinggi dengan konten */
  position: relative; /* Penting untuk efek hover overlay jika nanti ditambahkan */
}

.portfolio .portfolio-item img {
  width: 100%;
  height: 250px; /* Atur tinggi gambar agar konsisten seperti Services/Products */
  object-fit: cover; /* Memastikan gambar mengisi area tanpa distorsi (cropping jika perlu) */
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-item:hover img {
  transform: scale(1.1); /* Efek zoom pada gambar saat hover */
}

/* Gaya untuk portfolio-info (overlay) - Biarkan ini jika Anda ingin overlay muncul saat hover */
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 0; /* Diubah dari 12px */
  right: 0; /* Diubah dari 12px */
  bottom: 0; /* Diubah dari -100% */
  height: 100%; /* Agar overlay menutupi seluruh item */
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: rgba(var(--accent-color-rgb), 0.8); /* Warna overlay dengan transparansi */
  padding: 15px;
  display: flex; /* Untuk menengahkan konten di dalamnya */
  flex-direction: column; /* Konten vertikal */
  justify-content: center; /* Tengahkan secara vertikal */
  align-items: center; /* Tengahkan secara horizontal */
  text-align: center; /* Tengahkan teks */
  color: var(--contrast-color); /* Warna teks di overlay */
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 20px; /* Ukuran font judul di overlay */
  font-weight: 600;
  color: var(--contrast-color); /* Warna judul */
  margin-bottom: 5px; /* Jarak bawah judul */
  padding-right: 0; /* Hapus padding-right */
}

.portfolio .portfolio-item .portfolio-info p {
  font-size: 14px;
  margin-bottom: 10px; /* Jarak bawah paragraf */
  padding-right: 0; /* Hapus padding-right */
  color: rgba(var(--contrast-color-rgb), 0.8); /* Warna paragraf */
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: relative; /* Diubah dari absolute */
  right: auto; /* Hapus right */
  top: auto; /* Hapus top */
  font-size: 28px; /* Ukuran ikon */
  color: var(--contrast-color); /* Warna ikon */
  transition: 0.3s;
  line-height: 0;
  margin: 0 10px; /* Jarak antar ikon */
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: rgba(var(--contrast-color-rgb), 0.7); /* Efek hover ikon */
}

.portfolio .portfolio-item .portfolio-info .details-link {
  /* right: 14px; */ /* Hapus ini */
  /* font-size: 28px; */ /* Sudah diatur di atas */
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  /* bottom: 0; */ /* Tidak perlu karena height: 100% */
}


/*--------------------------------------------------------------
# Clients Section (New Portfolio Style)
--------------------------------------------------------------*/
.clients .client-item {
  overflow: hidden; /* Memastikan gambar tidak keluar dari sudut */
  border-radius: 8px;
  box-shadow: 0px 2px 15px rgba(var(--default-color-rgb), 0.1);
}

.clients .client-item img {
  width: 100%;
  aspect-ratio: 4 / 3; /* Menjaga bentuk gambar tetap konsisten (4:3) */
  object-fit: cover; /* Memastikan gambar mengisi area tanpa distorsi */
  transition: all 0.3s ease-in-out;
}

.clients .client-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 25px rgba(var(--default-color-rgb), 0.15);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  /* margin-right: 15px; <-- Baris ini dihapus karena tidak lagi diperlukan dengan flex-column */
}

/* Aturan ini untuk menengahkan teks di dalam div setelah ikon */
.contact .info-item div {
  text-align: center;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

    /*
      Ini adalah kode CSS khusus untuk bagian Manfaat Klien.
      Disematkan langsung untuk memastikan gaya diterapkan secara spesifik.
      Gaya ini disesuaikan agar mirip dengan section Layanan Kami.
    */
    #benefits .service-item {
      padding: 40px 30px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
      background: #fff;
      height: 100%;
      border-radius: 10px;
      text-align: center; /* Rata tengah semua teks di dalam kartu */
      transition: all 0.3s ease-in-out;
    }

    #benefits .service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    }

    #benefits .service-item .icon {
      margin: 0 auto 20px auto; /* Rata tengah ikon dan beri jarak bawah */
      width: 80px; /* Ukuran lingkaran ikon */
      height: 80px; /* Ukuran lingkaran ikon */
      background: var(--accent-color, #007bff); /* Warna latar belakang lingkaran ikon (biru) */
      border-radius: 50%; /* Membuat lingkaran */
      display: flex; /* Menggunakan flexbox untuk menengahkan ikon di dalamnya */
      align-items: center; /* Rata tengah vertikal ikon */
      justify-content: center; /* Rata tengah horizontal ikon */
      transition: ease-in-out 0.3s;
    }

    #benefits .service-item .icon i {
      color: #fff; /* Warna ikon (putih) */
      font-size: 36px; /* Ukuran ikon */
      transition: ease-in-out 0.3s;
      background: none; /* Pastikan tidak ada latar belakang ganda */
      border-radius: 0;
      padding: 0;
    }

    #benefits .service-item h4 { /* Menggunakan h4 karena di HTML Anda h4 */
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--heading-color, #333);
    }

    #benefits .service-item p {
      font-size: 15px;
      color: var(--default-color, #666);
      line-height: 1.6;
    }

    /* Responsif untuk mobile */
    @media (max-width: 768px) {
      #benefits .service-item {
        margin-bottom: 20px; /* Memberi jarak antar kartu di mobile */
      }
    }
	
	
    /*
      Ini adalah kode CSS khusus untuk bagian Keunggulan.
      Disematkan langsung untuk memastikan gaya diterapkan secara spesifik
      dan konsisten dengan section Layanan dan Manfaat.
    */
    #keunggulan .service-item {
      padding: 40px 30px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
      background: #fff;
      height: 100%;
      border-radius: 10px;
      text-align: center; /* Rata tengah semua teks di dalam kartu */
      transition: all 0.3s ease-in-out;
    }

    #keunggulan .service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    }

    #keunggulan .service-item .icon {
      margin: 0 auto 20px auto; /* Rata tengah ikon dan beri jarak bawah */
      width: 80px; /* Ukuran lingkaran ikon */
      height: 80px; /* Ukuran lingkaran ikon */
      background: var(--accent-color, #007bff); /* Warna latar belakang lingkaran ikon (biru) */
      border-radius: 50%; /* Membuat lingkaran */
      display: flex; /* Menggunakan flexbox untuk menengahkan ikon di dalamnya */
      align-items: center; /* Rata tengah vertikal ikon */
      justify-content: center; /* Rata tengah horizontal ikon */
      transition: ease-in-out 0.3s;
    }

    #keunggulan .service-item .icon i {
      color: #fff; /* Warna ikon (putih) */
      font-size: 36px; /* Ukuran ikon */
      transition: ease-in-out 0.3s;
      background: none; /* Pastikan tidak ada latar belakang ganda */
      border-radius: 0;
      padding: 0;
    }

    #keunggulan .service-item h4 { /* Menggunakan h4 karena di HTML Anda h4 */
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--heading-color, #333);
    }

    #keunggulan .service-item p {
      font-size: 15px;
      color: var(--default-color, #666);
      line-height: 1.6;
    }

    /* Responsif untuk mobile */
    @media (max-width: 768px) {
      #keunggulan .service-item {
        margin-bottom: 20px; /* Memberi jarak antar kartu di mobile */
      }
    }
	
	
    /*
      Ini adalah kode CSS khusus untuk bagian Layanan Kami.
      Disematkan langsung untuk menghindari konflik CSS.
    */
    .services .service-item {
      padding: 40px 30px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
      background: #fff;
      height: 100%;
      border-radius: 10px;
      text-align: center;
      transition: all 0.3s ease-in-out;
    }

    .services .service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    }

    .services .service-item .icon {
      margin: 0 auto 20px auto;
      width: 80px;
      height: 80px;
      background: var(--accent-color, #007bff); /* Menggunakan warna default jika tidak terdefinisi */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: ease-in-out 0.3s;
    }

    .services .service-item .icon i {
      color: #fff;
      font-size: 36px;
      transition: ease-in-out 0.3s;
    }

    .services .service-item h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--heading-color, #333); /* Menggunakan warna default jika tidak terdefinisi */
    }

    .services .service-item p {
      font-size: 15px;
      color: var(--default-color, #666); /* Menggunakan warna default jika tidak terdefinisi */
      line-height: 1.6;
    }

    /* Responsif untuk mobile */
    @media (max-width: 768px) {
      .services .service-item {
        margin-bottom: 20px; /* Memberi jarak antar kartu di mobile */
      }
    }


	/* CSS untuk Bagian Logo Klien Kecil (Grid Statis) */
	.client-logos .client-logo-item {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 15px;
	  border: 1px solid #eee;
	  border-radius: 8px;
	  height: 100px; /* Tinggi tetap untuk container logo */
	  background-color: #fff;
	  transition: all 0.3s ease-in-out;
	  margin-bottom: 15px; /* Jarak antar item */
	}

	.client-logos .client-logo-item img {
	  max-width: 100%;
	  max-height: 70px; /* Batasi tinggi gambar logo */
	  /* filter: grayscale(100%); DIHAPUS */
	  /* opacity: 0.6; */
	  transition: all 0.3s ease-in-out; /* Tetap pertahankan transisi jika ada properti lain yang berubah */
	}

	/* Responsif untuk 8 kolom di layar besar (lg dan up) */
	@media (min-width: 992px) {
	  .client-logos .client-logo-item {
		flex: 0 0 auto; /* Mencegah item tumbuh/menyusut */
		width: 12.5%; /* 100% / 8 kolom */
	  }
	}

	/* Penyesuaian untuk layar medium (md) */
	@media (min-width: 768px) and (max-width: 991px) {
	  .client-logos .client-logo-item {
		width: 33.333%%; /* 4 per baris */
	  }
	}

	/* Penyesuaian untuk layar kecil (sm) */
	@media (min-width: 576px) and (max-width: 767px) {
	  .client-logos .client-logo-item {
		width: 33.333%; /* 3 per baris */
	  }
	}

	/* Penyesuaian untuk layar ekstra kecil (xs) */
	@media (max-width: 575px) {
	  .client-logos .client-logo-item {
		width: 33.333%; /* 2 per baris */
	  }
	}
	
/*--------------------------------------------------------------
# Topbar Orange Accent
--------------------------------------------------------------*/
.header .topbar::after {
content: '';
position: absolute;
top: 50%; /* Diubah */
right: -50px; /* Dicoba diubah */
width: 50%;
height: 50%; /* Diubah */
background-color: #f7941d;
transform: skewX(-60deg);
}

/* Nonaktifkan Orange Accent di Mobile */
@media (max-width: 767px) {
  .header .topbar::after {
    content: none;
  }
  .header .topbar .contact-info a {
    font-size: 12px !important;
  }

  /* ===== TAMBAHKAN KODE BARU DI SINI ===== */
  .header .logo img {
    max-width: 150px; /* Atur lebar maksimal logo di mobile */
  }
  /* ======================================= */

}

/* ----------------------------------------------------------
# Styling untuk Tombol WhatsApp Melayang (Disesuaikan)
----------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    right: 15px; /* Menyamakan posisi kanan */
    bottom: 135px; /* Posisi di atas tombol scroll-top (15px + 40px + 10px jarak) */
    width: 60px;  /* Menyamakan lebar */
    height: 60px; /* Menyamakan tinggi */
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%; /* Dibuat bulat penuh */
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Pastikan di atas elemen lain */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

/* Mengatur ukuran ikon di dalam tombol WhatsApp */
.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Penyesuaian untuk Mobile (lebar layar <= 768px) */
@media (max-width: 768px) {
    .whatsapp-float {
        right: 15px;  /* Menyamakan posisi kanan mobile */
        bottom: 137px; /* Posisi di atas scroll-top mobile (45px + 36px + 10px jarak) */
        width: 36px;  /* Menyamakan lebar mobile */
        height: 36px; /* Menyamakan tinggi mobile */
    }

    .whatsapp-float svg {
        width: 20px; /* Ukuran ikon lebih kecil di mobile */
        height: 20px;
    }
}

/* ----------------------------------------------------------
# Styling untuk Tombol Telepon Melayang (Disesuaikan)
----------------------------------------------------------*/
.phone-float {
    position: fixed;
    right: 15px;
    bottom: 65px; /* Posisi di atas tombol WA (65px + 40px + 10px jarak) */
    width: 60px;
    height: 60px;
    background-color: #007bff; /* Warna biru khas telepon */
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.phone-float:hover {
    background-color: #0056b3; /* Biru lebih gelap saat hover */
    transform: scale(1.1);
}

/* Penyesuaian Telepon untuk Mobile (lebar layar <= 768px) */
@media (max-width: 768px) {
    .phone-float {
		right: 15px;  /* Menyamakan posisi kanan mobile */
        bottom: 91px; /* Posisi di atas tombol WA mobile (91px + 36px + 10px jarak) */
        width: 36px;
        height: 36px;
    }
	.phone-float svg {
        width: 20px; /* Ukuran ikon lebih kecil di mobile */
        height: 20px;
    }
}