/* 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: "Raleway", sans-serif;
  --nav-font: "Poppins", 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 */
  --heading-color: #2a2c39;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3A59D1;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --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. */
}

/* 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: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #3A59D1;
  /* 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: #060606;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3A59D1;
  /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2a2c39;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# 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 {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 42px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(42, 44, 57, 0.9);
}

/*--------------------------------------------------------------
# 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;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 20px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    background-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: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .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 {
    background-color: transparent;
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    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;
    /* KUNCI: Ubah 'inset' menjadi 'top' dan 'right' */
    top: 60px;
    /* Jarak dari atas header */
    right: 20px;
    /* Jarak dari kanan layar */

    /* KUNCI: Hapus pengaturan yang membuatnya memenuhi layar */
    /* inset: 60px 20px 20px 20px; (baris ini dihapus/diganti) */

    /* KUNCI: Biarkan lebar dan tinggi menyesuaikan konten */
    /* width: auto; */
    /* height: auto; */

    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    /* Pastikan var ini berisi warna putih */
    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 {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* background: linear-gradient(0deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color) 90%, white 10%) 100%); */
  background: url(../img/gunung-tambora.jpg) top center no-repeat;
  background-size: cover;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 75vh;
  padding-top: 60px;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

.hero h2 span {
  text-decoration: underline;
}

.hero p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}

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

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

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

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

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

@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 90vh;
  }

  .hero h2 {
    font-size: 28px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  /* align-items: center; */
}

.about ul i {
  font-size: 16px;
  /* line-height: ; */
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}


/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

.alt-features .icon-box h4 {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-features .icon-box h4s {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 10px 0;
}

.alt-features .icon-box h4s {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/* Kustomisasi untuk Mission Scroll Box */
#alt-features-2 .row.align-self-center {
  display: block;
  /* Mengubah dari flex ke block agar scroll berfungsi */
  max-height: 380px;
  /* Atur tinggi maksimum kotak, sesuaikan jika perlu */
  overflow-y: auto;
  /* Tambahkan scroll vertikal jika konten melebihi max-height */
  padding-right: 15px;
  /* Beri sedikit ruang untuk scrollbar */
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
/* .call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
} */


/*
--------------------------------------------------------------
# Final Partnership Logo Slider (Dengan Jarak Antar Baris)
--------------------------------------------------------------
*/

/* Kontainer utama dengan efek fade */
section#partnership .logo-slider-container {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}

section#partnership .logo-slider-container::before,
section#partnership .logo-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

section#partnership .logo-slider-container::before {
  left: 0;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

section#partnership .logo-slider-container::after {
  right: 0;
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

/* KUNCI: Memberi jarak antar baris slider */
section#partnership .swiper {
  margin-bottom: 100px;
  /* <--- JARAK ANTAR BARIS ATAS & BAWAH */
}

section#partnership .swiper:last-child {
  margin-bottom: 20;
  /* Hapus jarak untuk baris terakhir */
}

/* Mengatur ukuran "kotak" logo */
section#partnership .swiper-slide {
  height: 110px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

section#partnership .swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

section#partnership .swiper-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/*--------------------------------------------------------------
# Site MapBox Section
--------------------------------------------------------------*/
.site ul {
  list-style: none;
  padding: 0;
}

.site ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.site ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

section#site .maps-container {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}

section#site .maps-container::before,
section#site .maps-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

section#site .maps-container::before {
  left: 0;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

section#site .maps-container::after {
  right: 0;
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

/* Kunci: Sembunyikan kontrol navigasi Mapbox */
/* .mapboxgl-ctrl-group { */
/* display: none !important; */
/* } */

/* Menyembunyikan teks atribusi di pojok kanan bawah */
.mapboxgl-ctrl-attrib {
  display: none !important;
}

/* Menyembunyikan logo Mapbox di pojok kiri bawah */
.mapboxgl-ctrl-bottom-left {
  display: none !important;
}

/*
--------------------------------------------------------------
# Section Waves Separator (Disesuaikan seperti Hero Section)
--------------------------------------------------------------
*/

/* 1. Atur section utama sebagai patokan posisi */
section#Site {
  position: relative;
  padding-bottom: 0;
}

/* 2. Atur posisi kontainer gelombang */
.waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* 3. KUNCI: Atur tinggi SVG gelombang agar tidak terlalu tinggi */
.waves-container svg.waves {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  /* <--- Diubah menjadi 60px (lebih landai) */
}

/* 4. KUNCI: Atur animasi agar lebih lambat */
.parallax>use {
  /* Durasi diubah menjadi 25s (lebih lambat) */
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 10s;
  /* <--- Diperlambat */
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 13s;
  /* <--- Diperlambat */
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 16s;
  /* <--- Diperlambat */
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 25s;
  /* <--- Diperlambat */
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* 5. Pastikan section di bawahnya berwarna putih */
#about {
  /* Ganti #about dengan ID section Anda berikutnya */
  background-color: #ffffff;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

/* === BAGIAN GRID STATIS (4 PIMPINAN) === */

/* Mengatur gaya dasar untuk setiap kartu anggota tim */
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  /* Memberi efek bayangan halus */
  overflow: hidden;
  /* Menyembunyikan elemen yang keluar dari kotak (misal: saat hover) */
  text-align: center;
  /* Teks di dalam kartu rata tengah */
  border-radius: 5px;
  /* Membuat sudut kartu sedikit melengkung */
  transition: 0.3s;
  /* Efek transisi halus untuk semua perubahan (misal: hover) */
}

/* Mengatur wadah gambar */
.team .team-member .member-img {
  position: relative;
  /* Menjadi patokan posisi untuk elemen di dalamnya */
  overflow: hidden;
  /* Menyembunyikan bagian gambar yang keluar */
}

/* Membuat bentuk dekoratif seperti gelombang di bawah gambar */
.team .team-member .member-img:after {
  position: absolute;
  /* Posisi absolut terhadap .member-img */
  content: "";
  /* Wajib ada untuk pseudo-element ::after */
  left: -1px;
  right: -1px;
  bottom: -1px;
  /* Menempel di bagian bawah */
  height: 100%;
  /* Tinggi menutupi seluruh gambar */
  background-color: var(--surface-color);
  /* Warna latar belakang bentuk */
  /* Menggunakan file SVG sebagai 'mask' untuk menciptakan bentuk unik */
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  /* Ukuran mask menyesuaikan */
  z-index: 1;
  /* Lapisan di atas gambar */
}

/* Mengatur ikon media sosial (saat ini disembunyikan) */
.team .team-member .social {
  position: absolute;
  /* Posisi absolut */
  right: -100%;
  /* Awalnya tersembunyi di luar layar kanan */
  top: 30px;
  /* Posisi dari atas */
  opacity: 0;
  /* Awalnya transparan */
  border-radius: 4px;
  transition: 0.5s;
  /* Animasi muncul selama 0.5 detik */
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  /* Background semi-transparan */
  z-index: 2;
  /* Lapisan di atas ::after */
}

/* Efek hover pada link media sosial */
.team .team-member .social a:hover {
  color: var(--default-color);
  /* Warna berubah saat disentuh mouse */
}

/* Ukuran ikon media sosial */
.team .team-member .social i {
  font-size: 18px;
}

/* Area informasi di bawah gambar (nama, jabatan, dll) */
.team .team-member .member-info {
  padding: 10px 15px 20px 15px;
  /* Jarak di dalam area info */
  text-align: left;
  /* Teks dibuat rata kiri */
}

/* Gaya untuk nama anggota tim */
.team .team-member .member-info h4 {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 20px;
}

/* Gaya untuk jabatan */
.team .team-member .member-info span {
  display: block;
  /* Agar menempati satu baris penuh */
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  /* Warna abu-abu transparan */
}

/* Gaya untuk paragraf ringkasan */
.team .team-member .member-info p {
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  /* Jarak antar baris teks */
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Efek saat seluruh kartu disentuh mouse */
.team .team-member:hover {
  transform: scale(1.08);
  /* Kartu sedikit membesar */
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

/* Efek munculnya ikon media sosial saat kartu di-hover */
.team .team-member:hover .social {
  right: 8px;
  /* Pindah ke dalam layar */
  opacity: 1;
  /* Menjadi terlihat */
}

/* Tombol "Selengkapnya" di kartu pimpinan */
.team-member .btn-more {
  background: none;
  /* Menghilangkan background */
  border: none;
  /* Menghilangkan border */
  padding: 0;
  /* Menghilangkan padding */
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  /* Warna teks sesuai warna aksen tema */
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}

/* Ikon panah di tombol */
.team-member .btn-more i {
  font-size: 16px;
}

/* === BAGIAN SLIDER (TEAM MEMBERS) === */

/* Mengatur gaya dasar untuk setiap item di dalam slider */
.team-members .carousel-team-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  /* Padding & border tidak menambah ukuran total */
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  /* Menggunakan flexbox untuk penataan */
  flex-direction: column;
  /* Menata item secara vertikal (atas ke bawah) */
  text-align: center;
  transition: 0.3s;
}

/* Wadah untuk foto dan nama */
.team-members .carousel-team-item .stars {
  margin-bottom: 15px;
}

/* (Tidak terpakai) Gaya untuk ikon bintang, jika ada */
.team-members .carousel-team-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

/* Foto anggota tim di slider */
.team-members .carousel-team-item .carousel-team-img {
  width: 90px;
  border-radius: 50%;
  /* Membuat foto menjadi lingkaran */
  border: 4px solid var(--background-color);
  /* Garis tepi putih di sekitar foto */
  margin: 0 auto;
  /* Posisi di tengah */
}

/* Nama anggota tim di slider */
.team-members .carousel-team-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

/* Jabatan di slider */
.team-members .carousel-team-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/* Paragraf di slider */
.team-members .carousel-team-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Pagination (titik-titik navigasi) slider */
.team-members .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

/* Gaya untuk setiap titik pagination */
.team-members .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

/* Gaya untuk titik pagination yang aktif */
.team-members .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/* Slide yang tidak aktif dibuat sedikit transparan */
.team-members .swiper-slide {
  opacity: 0.3;
}

/* Tombol "Selengkapnya" di slider */
.team-members .btn-more {
  background: none;
  border: none;
  align-items: center;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
  color: var(--accent-color);
}

/* Ikon panah di tombol slider */
.team-members .btn-more i {
  font-size: 16px;
}

/* === PENGATURAN RESPONSIVE (MEDIA QUERIES) === */

/* Untuk layar tablet dan di bawahnya */
@media (max-width: 1199px) {

  /* Hanya slide yang aktif yang terlihat jelas */
  .team-members .swiper-slide-active {
    opacity: 1;
  }
}

/* Untuk layar desktop besar */
@media (min-width: 1200px) {

  /* Slide berikutnya (di sebelah kanan) juga dibuat jelas dan sedikit membesar */
  .team-members .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}


/*
--------------------------------------------------------------
# Kustomisasi Final Kartu Kaca (Modal)
--------------------------------------------------------------
*/

/* Mengatur gaya utama untuk kotak konten modal */
#teamDetailModal .modal-content {
  background: rgba(255, 255, 255, 0.1);
  /* Background lebih gelap & sedikit lebih transparan */
  backdrop-filter: blur(20px);
  /* Blur lebih tinggi untuk efek kaca yang lebih kuat */
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* Tepi kaca lebih tipis */
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  color: #ffffff;
  /* Warna teks default di dalam modal */
  border-radius: 15px;
  /* Sudut melengkung */
}

/* Memindahkan posisi tombol close agar pas setelah header dihapus */
#teamDetailModal .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  /* Pastikan tombol di lapisan teratas */
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* KUNCI: Kustomisasi font agar lebih kontras */
#teamDetailModal #modal-name {
  font-size: 32px;
  font-weight: 700;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
  /* Memberi bayangan agar teks menonjol */
}

#teamDetailModal #modal-title {
  font-size: 15px;
  color: #f2f2f2 !important;
  /* Jabatan sedikit lebih transparan */
  /* text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5); */
}

#teamDetailModal #modal-bio {
  font-size: 16px;
  line-height: 1.7;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Styling tambahan untuk gambar */
#teamDetailModal #modal-img {
  border: 4px solid rgba(255, 255, 255, 0.3);
}

/*
--------------------------------------------------------------
# Memaksa Modal Bootstrap ke Tengah
--------------------------------------------------------------
*/

/* Hapus flex-direction default dari modal */
#teamDetailModal .modal-dialog {
  display: flex;
  align-items: center;
  /* KUNCI: Menengahkan secara vertikal */
  min-height: calc(100% - 1rem);
  /* Mengisi tinggi layar */
}

/* Penyesuaian untuk layar kecil (HP) */
@media (max-width: 767px) {
  #teamDetailModal .modal-dialog {
    min-height: calc(100% - 0.5rem);
  }
}



/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  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;
}

.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);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* .starter-section { */
/* Add your styles here */
/* } */

/*--------------------------------------------------------------
# news Posts Section
--------------------------------------------------------------*/
.news-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.news-posts .post-img {
  max-height: 240px;
  height: 240px;
  /* Mengubah max-height menjadi height agar ukurannya tetap */
  margin: -30px -30px 15px -30px;
  overflow: hidden;
  position: relative;
  /* Menjadi patokan untuk gambar di dalamnya */
}

.news-posts .post-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Kunci: Membuat gambar mengisi kontainer tanpa distorsi */
}

.news-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.news-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.news-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.news-posts .title a:hover {
  color: var(--accent-color);
}

.news-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.news-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.news-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# news Pagination Section
--------------------------------------------------------------*/
.news-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.news-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.news-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.news-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.news-pagination li a.active,
.news-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.news-pagination li a.active a,
.news-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# news Details Section
--------------------------------------------------------------*/
.news-details {
  padding-bottom: 30px;
}

.news-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.news-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.news-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.news-details .content {
  margin-top: 20px;
}

.news-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.news-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.news-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.news-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.news-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.news-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.news-details .meta-top ul li+li {
  padding-left: 20px;
}

.news-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.news-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.news-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.news-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.news-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.news-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.news-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.news-details .meta-bottom .cats li {
  display: inline-block;
}

.news-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.news-details .meta-bottom .tags li {
  display: inline-block;
}

.news-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.news-details .meta-bottom .share {
  font-size: 16px;
}

.news-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.news-author-widget img {
  max-width: 160px;
}

.news-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.news-author-widget .social-links {
  margin: 5px 0;
}

.news-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.news-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.news-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Product Section Customization
--------------------------------------------------------------*/
.product-img-container {
  height: 550px;
  /* Atur tinggi tetap untuk semua kontainer gambar */
  overflow: hidden;
  /* Sembunyikan bagian gambar yang keluar dari kontainer */
  position: relative;
  background-color: #f0f0f0;
  /* Warna latar belakang jika gambar gagal dimuat */
}

.product-img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Kunci: Membuat gambar mengisi kontainer tanpa distorsi */
  object-position: center;
  /* Pastikan gambar terpusat */
}

/*--------------------------------------------------------------
# Product Slider Section
--------------------------------------------------------------*/
.product-slider .swiper-slide {
  /* opacity: 0.5; */
  transition: opacity 0.3s;
}

@media (min-width: 1200px) {
  .product-slider .swiper-slide-next {
    opacity: 1;
    transform: scale(1.05);
  }
}

.product-slider .swiper-slide-active {
  opacity: 1;
}

.product-slider .product-card {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 10px;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 40px 15px;
  /* Menyesuaikan margin agar pas */
}

.product-slider .product-card-info {
  padding: 30px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-slider .product-card-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.product-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.product-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.product-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}


.product-slider .product-card-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0px;
}

.product-slider .product-card-info p {
  font-size: 15px;
  text-align: left;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 15px;
  flex-grow: 1;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}