/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Roboto";
}

/* 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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3690e7; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #3690e7; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3690e7; /* 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: #ffffff;
  --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;
}

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

.header .header-social-links {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  padding: 0 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links i {
  line-height: 0px;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
  --contrast-color: rgba(255, 255, 255, 0);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    /* KUNCI PERUBAHAN: Membuat Menu dan Sosmed sejajar */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Atau flex-start jika ingin rata kiri */
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  /* Hilangkan padding kanan pada item terakhir agar rapat dengan sosmed */
  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  /* Dropdown Styles (Tetap sama) */
  .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 a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown a:hover,
  .navmenu .dropdown .active:hover,
  .navmenu .dropdown 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;
  }
}

/* ============================================
   MOBILE HEADER ADJUSTMENT (Max-width 1199px)
   ============================================ */
@media (max-width: 1199px) {
  
  /* 1. PERBAIKI UKURAN LOGO */
  .header .logo img {
    max-height: 45px; /* Ukuran ideal untuk Mobile agar tidak raksasa */
    width: auto;      /* Lebar menyesuaikan otomatis */
    object-fit: contain;
  }

  /* 2. MUNCULKAN TOGGLE NAVBAR */
  .mobile-nav-toggle {
    display: block;      /* Pastikan dia muncul */
    font-size: 32px;     /* Perbesar icon agar mudah dipencet jari */
    color: #333333;      /* Beri warna gelap (hitam/abu) agar terlihat di background putih */
    cursor: pointer;
    z-index: 9999;       /* Pastikan dia layer paling atas */
    margin-left: 15px;   /* Jarak dari elemen sebelah kiri */
  }

  /* 3. ATUR POSISI CONTAINER */
  /* Agar Logo di Kiri dan Toggle di Kanan mentok */
  .header .container-fluid {
    padding-right: 20px; /* Beri jarak aman dari pinggir layar HP */
    padding-left: 20px;
  }

  /* Menyembunyikan Social Links di Header Mobile agar tidak menumpuk dengan tombol menu */
  /* OPSI: Hapus 'display: none' jika ingin tetap menampilkan sosmed di sebelah tombol menu */
  .header .header-social-links {
    display: none;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    /* Default hidden */
    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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

  /* Styles ketika tombol menu diklik (Mobile Nav Active) */
  .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
--------------------------------------------------------------*/

/* =========================================
   STYLE MODAL INFORMASI
   ========================================= */

/* Latar Belakang Gelap */
.info-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100000; /* Paling atas */
  display: none; /* Hidden default */
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  padding: 20px;
}

/* Kotak Konten (Kartu) */
.info-content {
  background: #fff;
  width: 100%;
  max-width: 500px; /* Lebar ideal untuk bacaan */
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: popUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  max-height: 85vh; /* Agar tidak melebihi layar */
}

@keyframes popUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Tombol Close */
.close-info {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: #f1f3f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: #333;
  transition: 0.2s;
  z-index: 10;
}
.close-info:hover { background: #e9ecef; color: #d63384; }

/* Header */
.info-header {
  padding: 30px 30px 10px 30px;
  text-align: center;
}

.info-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.info-header .divider {
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  margin: 0 auto;
  border-radius: 10px;
}

/* Body (Area Baca) */
.info-body {
  padding: 20px 30px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  overflow-y: auto; /* Scroll jika teks panjang */
  flex-grow: 1;
}

/* Styling Paragraf di dalam modal */
.info-body p { margin-bottom: 15px; text-align: justify; }
.info-body ul { padding-left: 20px; margin-bottom: 15px; }
.info-body li { margin-bottom: 8px; }

/* Footer (Tombol) */
.info-footer {
  padding: 20px 30px 30px 30px;
  text-align: center;
  border-top: 1px solid #f1f3f5;
}

.btn-select-package {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--accent-color); /* Biru Brand */
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-select-package:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: #fff;
}

.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

/* =========================================
   STYLING KHUSUS LOGO FOOTER
   ========================================= */

/* 1. Pengaturan Default (Desktop) */
.footer .logo img {
  max-height: 80px;    /* KUNCI: Membatasi tinggi logo maksimal segini */
  width: auto;         /* Lebar menyesuaikan otomatis agar gambar tidak gepeng */
  object-fit: contain; /* Menjaga proporsi gambar asli */
  display: block;      /* Memastikan tidak ada spasi hantu di bawah gambar */
}

/* 2. Pengaturan Mobile (HP) */
@media (max-width: 991px) {
  .footer .logo img {
    max-height: 60px; /* Di HP kita perkecil sedikit biar manis */
    /* Karena di CSS sebelumnya kita sudah set 'justify-content: center' 
       pada container logo, maka gambar ini akan otomatis di tengah */
  }
}

/* =========================================
   FOOTER MOBILE ADJUSTMENT (Max-width 991px)
   ========================================= */
@media (max-width: 991px) { 
  /* Note: Saya gunakan 991px agar Tablet juga rapi, 
     tapi jika ingin HP saja ganti angka ini jadi 768px */

  .footer {
    padding-top: 50px;
  }

  /* 1. Container Utama: Kita set Rata Kiri dulu sebagai default */
  .footer .footer-content {
    text-align: left; /* Agar teks deskripsi <p> menjadi rata kiri */
    margin-bottom: 30px;
  }

  /* 2. Logo (Gambar): Kita paksa ke Tengah */
  .footer .footer-content .logo {
    justify-content: center; /* Karena logo memakai class d-flex, gunakan ini untuk menengahkan */
    margin-bottom: 20px !important; /* Jarak antara logo dan deskripsi */
  }

  /* 3. Deskripsi: Pastikan tetap rata kiri (Redundant safety) */
  .footer .footer-content p {
    text-align: left; 
    margin-bottom: 25px; /* Jarak antara deskripsi dan sosmed */
  }

  /* 4. Social Media: Kita paksa ke Tengah */
  .footer .social-links {
    justify-content: center; /* Menengahkan icon sosmed */
    width: 100%; /* Memastikan wadahnya full width agar bisa di-center */
    margin-top: 0 !important; /* Reset margin bawaan jika perlu */
  }
  

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# 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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav 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: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 38px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 50%);
  padding-bottom: 32px;
}

.about .content-wrapper {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .about .content-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.about .badge-label {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 2rem;
  }
}

.about .lead-text {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.about .stats-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about .stats-row {
    gap: 1rem;
  }
}

.about .stats-row .stat-item {
  flex: 1;
}

.about .stats-row .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 576px) {
  .about .stats-row .stat-item .stat-number {
    font-size: 1.5rem;
  }
}

.about .stats-row .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.about .feature-highlights {
  margin-bottom: 2rem;
}

.about .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.about .feature-highlights .highlight-item:last-child {
  margin-bottom: 0;
}

.about .feature-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about .feature-highlights .highlight-item span {
  color: var(--default-color);
  font-size: 0.9375rem;
  font-weight: 500;
}

.about .cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 576px) {
  .about .cta-group {
    flex-direction: row;        /* Tetap sejajar kiri-kanan */
    align-items: center;
    width: 100%;                /* Lebar full layar */
    gap: 8px;                   /* Jarak antar tombol dirapatkan (sekitar 0.5rem) */
  }

  .about .cta-group .btn-primary,
  .about .cta-group .btn-secondary {
    flex: 1;                    /* Kunci: Memaksa kedua tombol punya lebar sama (50%) */
    width: auto;                /* Reset width */
    
    /* PENTING: Padding kiri-kanan dikecilkan (4px) agar muat di layar sempit */
    padding: 12px 4px;          
    
    font-size: 13px;            /* Font sedikit dikecilkan agar teks panjang tidak terpotong */
    display: flex;              /* Menggunakan flexbox di dalam tombol */
    justify-content: center;    /* Agar teks & ikon benar-benar di tengah */
    align-items: center;
    white-space: nowrap;        /* Mencegah teks turun ke baris kedua */
    text-align: center;
  }
  
  /* Opsional: Mengatur ikon di tombol sekunder agar pas */
  .about .cta-group .btn-secondary i {
    font-size: 14px;
    margin-right: 4px;
  }
}

.about .cta-group .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--accent-color);
}

.about .cta-group .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .cta-group .btn-secondary {
  color: var(--default-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: transparent;
}

.about .cta-group .btn-secondary i {
  font-size: 1.25rem;
}

.about .cta-group .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.about .visual-wrapper {
  position: relative;
}

.about .visual-wrapper .main-visual {
  position: relative;
  margin-bottom: 1.5rem;
}

.about .visual-wrapper .main-visual img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about .visual-wrapper .main-visual .floating-card {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

/* =========================================================
   KHUSUS TAMPILAN DESKTOP (Layar > 992px)
   ========================================================= */
@media (min-width: 992px) {
  
  /* 1. ATUR POSISI GAMBAR (Agar sejajar dengan Judul H2) */
  .about .visual-wrapper {
    /* Kita dorong container gambar ke bawah sebesar 55px.
       Angka ini dihitung dari tinggi Badge + Margin Badge 
       agar gambar pas sejajar dengan teks "Rafting Paling Aman" */
    margin-top: 55px; 
  }

  /* 2. ATUR TINGGI GAMBAR UTAMA (Agar tidak kepanjangan/dominan) */
  .about .visual-wrapper .main-visual img {
    width: 100%;       /* Lebar tetap full */
    height: 420px;     /* KUNCI: Kita kunci tingginya segini agar seimbang dengan teks kiri */
    object-fit: cover; /* Wajib: Agar gambar dipotong rapi dan tidak gepeng */
    object-position: center; /* Fokus tengah */
  }

  /* 3. Atur Gambar Kecil di bawahnya (Opsional: Agar rapi) */
  .about .visual-wrapper .secondary-grid img {
    height: 200px;
    object-fit: cover;
  }
}

/* --- Khusus Tampilan Mobile (Lebar layar di bawah 768px) --- */
@media (max-width: 768px) {
  
  /* 1. Mengurangi jarak antara Gambar Besar (atas) dengan Gambar Kecil (bawah) */
  .about .visual-wrapper .main-visual {
    margin-bottom: 0.5rem !important; /* Sebelumnya 1.5rem, kita kecilkan jadi 0.5rem */
  }

  /* 2. Mengurangi jarak/sela antara dua gambar kecil */
  .about .visual-wrapper .secondary-grid {
    gap: 0.5rem !important; /* Sebelumnya 1.5rem, kita rapatkan jadi 0.5rem */
  }
}

@media (max-width: 992px) {
  .about .visual-wrapper .main-visual .floating-card.top-card {
    right: 1rem;
  }
}

.about .visual-wrapper .main-visual .floating-card.bottom-card {
  bottom: 1rem;
  left: -1.5rem;
}

@media (max-width: 992px) {
  .about .visual-wrapper .main-visual .floating-card.bottom-card {
    left: 1rem;
  }
}

.about .visual-wrapper .main-visual .floating-card .card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), blue 20%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about .visual-wrapper .main-visual .floating-card .card-content .card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about .visual-wrapper .main-visual .floating-card .card-content .card-text {
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.about .visual-wrapper .secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about .visual-wrapper .secondary-grid img {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* PERUBAHAN DI SINI */
  width: 100%;          /* Memastikan gambar memenuhi lebar kolom */
  aspect-ratio: 3/2;    /* Mengubah rasio menjadi Landscape standar foto */
  /* Opsi lain: aspect-ratio: 16/9; (jika ingin lebih gepeng/wide) */
  
  object-fit: cover;    /* Memastikan gambar tetap rapi mengisi area */
}

.about .visual-wrapper .secondary-grid img:hover {
  transform: translateY(-4px);
}

.about .features-grid {
  margin-top: 5rem;
}

.about .features-grid .feature-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about .features-grid .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .features-grid .feature-card .feature-icon {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.about .features-grid .feature-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.about .features-grid .feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 43px;
  position: relative;
  overflow: hidden;
  padding-bottom: 15px;
}

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

.call-to-action .cta-content {
  padding-right: 20px;
}

/* =========================================
   FIX POSISI TENGAH DI MOBILE (Max-Width 991px)
   ========================================= */
@media (max-width: 991px) {
  
  /* 1. Menengahkan Judul & Deskripsi */
  .cta-content {
    text-align: center;
    margin-bottom: 30px; /* Beri jarak dengan fitur di bawahnya */
  }
  
  /* 2. Menengahkan List Fitur (Checklist) */
  .features-list {
    display: flex;
    flex-direction: column;
    align-items: center; /* Paksa icon check ke tengah */
    text-align: center;
  }
  
  /* 3. Menengahkan Tombol CTA (Booking & Harga) */
  .cta-buttons {
    display: flex;
    flex-direction: column; /* Tombol jadi atas-bawah */
    align-items: center;    /* Posisi persis di tengah horizontal */
    gap: 15px;              /* Jarak antar tombol */
    width: 100%;
  }

  /* Agar tombol WA terlihat proporsional di HP */
  .cta-buttons .btn {
    width: 100%;            /* Opsional: Agar tombol full lebar */
    max-width: 320px;       /* Batasi agar tidak terlalu lebar di Tablet */
    justify-content: center;
  }

  /* 4. Menengahkan Rating/Trust di bawah tombol */
  .trust-indicators {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.call-to-action .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #6c5ce7 50%) 100%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .badge i {
  font-size: 16px;
}

.call-to-action h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .call-to-action h2 {
    font-size: 2rem;
  }
}

.call-to-action .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.call-to-action .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.call-to-action .features-list .feature-item i {
  color: #22c55e;
  font-size: 18px;
  flex-shrink: 0;
}

.call-to-action .features-list .feature-item span {
  font-weight: 500;
  color: var(--default-color);
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .call-to-action .cta-buttons {
    flex-direction: column;
  }
}

.call-to-action .cta-buttons .btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #6c5ce7 50%) 100%);
  color: var(--contrast-color);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.call-to-action .cta-buttons .btn.btn-outline {
  background: var(--surface-color);
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.call-to-action .trust-indicators small {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.call-to-action .trust-indicators .rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.call-to-action .trust-indicators .rating i {
  color: #fbbf24;
  font-size: 14px;
}

.call-to-action .trust-indicators .rating span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 {
  padding-top: 53px;
  padding-bottom: 60px;
}

/* Update Bagian Ini Saja */
.features-2 .feature-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  
  /* Flexbox Settings */
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* TAMBAHKAN INI AGAR TEKS KEMBALI KE TENGAH */
  text-align: center; 
}

/* Sisanya biarkan sama seperti kode Anda sebelumnya */
.features-2 .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-2 .feature-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin auto menjaga icon tetap di tengah secara horizontal */
  margin: 0 auto 25px; 
  position: relative;
}

/* ... Kode CSS lain di bawahnya tidak perlu diubah ... */

.features-2 .feature-card .icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  opacity: 0.3;
  transform: scale(1.2);
  z-index: 0;
}

.features-2 .feature-card .icon-wrapper i {
  font-size: 36px;
  color: var(--contrast-color);
}

.features-2 .feature-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

/* Pastikan paragraf deskripsi mengisi ruang kosong */
.features-2 .feature-card p {
  flex-grow: 1; /* Paragraf akan memanjang mengisi ruang, mendorong footer ke bawah */
  margin-bottom: 20px; /* Jarak aman sebelum garis footer */
}

/* Bagian Footer Statistik */
.features-2 .feature-card .feature-stats {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-top: auto; /* KUNCI: Memaksa elemen ini duduk manis di dasar kartu */
  width: 100%; /* Pastikan lebarnya penuh */
}

.features-2 .feature-card .feature-stats .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.features-2 .feature-card .feature-stats .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.features-2 .feature-showcase {
  text-align: center;
}

.features-2 .feature-showcase img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.features-2 .feature-content {
  padding-left: 30px;
}

.features-2 .feature-content h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.2;
}

.features-2 .feature-content .lead {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
  line-height: 1.6;
}

.features-2 .feature-content .feature-list {
  margin-bottom: 40px;
}

.features-2 .feature-content .feature-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.features-2 .feature-content .feature-list .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.features-2 .feature-content .feature-list .feature-item .feature-icon i {
  color: var(--accent-color);
  font-size: 24px;
}

.features-2 .feature-content .feature-list .feature-item .feature-text h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.features-2 .feature-content .feature-list .feature-item .feature-text p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.5;
}

.features-2 .feature-content .cta-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.features-2 .feature-content .cta-wrapper .btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.features-2 .feature-content .cta-wrapper .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features-2 .feature-content .cta-wrapper .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features-2 .feature-content .cta-wrapper .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features-2 .feature-content .cta-wrapper .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .features-2 .feature-content {
    padding-left: 0;
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .features-2 .feature-card {
    padding: 30px 20px;
  }

  .features-2 .feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .features-2 .feature-card .icon-wrapper i {
    font-size: 30px;
  }

  .features-2 .feature-card h4 {
    font-size: 20px;
  }

  .features-2 .feature-card .feature-stats .stat-number {
    font-size: 28px;
  }

  .features-2 .feature-content h3 {
    font-size: 28px;
  }

  .features-2 .feature-content .cta-wrapper .btn {
    padding: 12px 25px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Pricing 2 Section
--------------------------------------------------------------*/
/* --- SETTING UTAMA --- */
.pricing-2 {
  padding-top: 52px;
  padding-bottom: 120px;
}

.pricing-2 .section-title {
  margin-bottom: 40px;
}

/* Card Container */
.pricing-2 .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
  transition: transform 0.3s ease; /* Smooth hover effect */
}

/* --- PERBAIKAN 1: BADGE "PALING LARIS" (Class .advanced) --- */
/* Badge ini sekarang melayang di atas garis border */
.pricing-2 .advanced {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%); /* Posisi tengah atas presisi */
  z-index: 2;
  background: var(--accent-color); /* Warna Biru */
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Bayangan agar timbul */
  white-space: nowrap;
}

.pricing-2 h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

/* Icon Styling */
.pricing-2 .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing-2 .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

/* Efek lingkaran di belakang icon */
.pricing-2 .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing-2 .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

/* --- PERBAIKAN 2: HARGA, RP, DAN PAX (Sinkronisasi) --- */
.pricing-2 h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  
  /* Flexbox Magic: Memaksa elemen sejajar dan rapi */
  display: flex;
  align-items: center;    /* Vertikal tengah */
  justify-content: center; /* Horizontal tengah */
  gap: 5px;               /* Jarak antar elemen tidak terlalu jauh */
}

/* Mata Uang (Rp) */
.pricing-2 h4 sup {
  font-size: 24px;
  top: -10px; /* Sedikit naik agar elegan */
  position: relative;
  font-weight: 500;
}

/* Satuan (/ pax) */
.pricing-2 h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 500;
  align-self: flex-end; /* Duduk di garis bawah sejajar angka */
  margin-bottom: 10px;  /* Penyesuaian agar sejajar baseline angka */
}

/* List Fitur */
.pricing-2 ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

.pricing-2 ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing-2 ul i {
  color: #059652; /* Hijau Checklist */
  font-size: 24px;
  padding-right: 8px;
}

/* Item tidak tersedia (Silang) */
.pricing-2 ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing-2 ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing-2 ul .na span {
  text-decoration: line-through;
}

/* Tombol Buy */
.pricing-2 .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing-2 .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

/* Style Khusus Card Featured/Paling Laris */
.pricing-2 .featured {
  z-index: 10;
  border: 2px solid var(--accent-color); /* Border biru */
  /* Pastikan overflow visible agar badge 'Paling Laris' yang di atas border terlihat */
  overflow: visible; 
}

/* --- MOBILE RESPONSIVE TWEAK --- */
@media (max-width: 991px) {
  /* Di HP, font harga dikecilkan sedikit agar muat 1 baris */
  .pricing-2 h4 {
    font-size: 36px;
  }
  
  .pricing-2 h4 sup {
    font-size: 18px;
    top: -5px;
  }

  /* Reset scale transform di mobile agar tidak melebar keluar layar */
  .pricing-2 .featured {
    transform: none; 
    margin-top: 20px; /* Jarak tambahan karena ada badge */
  }
}

/* --- DESKTOP SCALE --- */
@media (min-width: 992px) {
  .pricing-2 .featured {
    transform: scale(1.1); /* Sedikit diperbesar agar menonjol */
  }
}

/* =========================================
   CUSTOM CHECKOUT MODAL STYLES
   ========================================= */

/* Overlay Background */
.checkout-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* Lebih gelap dikit biar fokus */
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(5px); /* Efek blur modern */
}

/* Modal Box */
.checkout-content {
  width: 90%;
  max-width: 1000px;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Close Button */
.close-checkout {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: 0.2s;
  z-index: 10;
}
.close-checkout:hover { color: #333; }

/* Grid Layout (Desktop) */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr; /* Kiri lebih lebar */
  gap: 30px;
  align-items: start;
}

/* --- BAGIAN KIRI (FORM) --- */
.checkout-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.checkout-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-box .step {
  background: var(--accent-color);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Tombol Kirim WA */
.place-btn {
  width: 100%;
  padding: 15px;
  background: #25D366; /* Warna WA Resmi */
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.place-btn:hover { background: #1ebc57; }

/* --- BAGIAN KANAN (SUMMARY) --- */
.checkout-right {
  background: #f8f9fa; /* Background sedikit abu biar beda */
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  position: sticky;
  top: 20px;
}

.checkout-right h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Item Produk */
.order-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #d1d5db;
}

.order-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

/* Info Bank */
.payment-info-box {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dashed #d1d5db;
}

.bank-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

/* =========================================
   MOBILE RESPONSIVE FIX (Max-width 991px)
   ========================================= */
@media (max-width: 991px) {

  /* 1. CONTAINER MODAL (KUNCI ANTI GOYANG) */
  .checkout-content {
    position: fixed;       /* Kunci posisi di layar */
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-height: 100vh !important;
    margin: 0 !important;
    border-radius: 0 !important;
    
    /* Padding diatur agar konten tidak nabrak pinggir */
    padding: 60px 20px 40px 20px !important; 
    
    /* Scroll terjadi DI DALAM kotak ini, bukan di body website */
    overflow-y: scroll !important; 
    -webkit-overflow-scrolling: touch; /* Agar scroll licin di iPhone */
    background: #fff;
  }

  /* 2. TOMBOL CLOSE (Lebih Kecil & Tidak Ikut Scroll) */
  .close-checkout {
    position: absolute !important; /* Absolute = Nempel di konten, bukan di layar */
    top: 15px;
    right: 15px;
    
    /* Ukuran Lebih Kecil */
    width: 32px;
    height: 32px;
    font-size: 20px;
    
    /* Styling Sederhana */
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    z-index: 10;
  }

  /* 3. LAYOUT GRID MENJADI SATU KOLOM */
  .checkout-grid {
    display: flex !important;
    flex-direction: column !important; /* Form di atas, Ringkasan di bawah */
    gap: 20px;
    width: 100% !important;
    padding-bottom: 50px; /* Ruang napas di paling bawah */
  }

  /* 4. TOMBOL BOOKING (MASUK KOTAK) */
  /* Kita reset semua properti 'fixed' agar dia diam di tempatnya */
  .place-btn {
    position: static !important; /* Static = Ikut alur normal HTML */
    width: 100% !important;
    margin-top: 15px;
    box-shadow: none !important;
    z-index: 1;
  }

  /* 5. CHECKOUT RIGHT (RINGKASAN) */
  .checkout-right {
    position: static !important; /* Tidak sticky lagi */
    width: 100% !important;
    margin-top: 20px;
    order: 2; /* Taruh di urutan kedua (bawah) setelah form */
  }

  /* Perbaikan kecil untuk Input agar tidak terlalu mepet */
  .checkout-box {
    padding: 15px !important;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/* 2. Styling Judul Section (Tengah & Rapi) */
.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--heading-color, #333); /* Fallback warna gelap */
  position: relative;
}

/* Garis kecil di bawah judul agar manis */
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color, #0d6efd); /* Fallback warna biru */
  bottom: -10px;
  left: calc(50% - 25px);
}

.section-title p {
  color: #6c757d;
  font-size: 16px;
  max-width: 600px; /* Membatasi lebar teks agar enak dibaca */
  margin: 0 auto;   /* Posisi tengah */
}

.gallery {
  overflow: hidden;
}

.gallery .gallery-container {
  padding: 20px 0 40px;
  position: relative;
}

.gallery .swiper-wrapper {
  height: auto !important;
  align-items: center;
  padding: 30px 0;
}

.gallery .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.gallery .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery .gallery-img .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery .gallery-img .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 3rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.gallery .gallery-img:hover img {
  transform: scale(1.1);
}

.gallery .gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery .gallery-img:hover .gallery-overlay i {
  transform: scale(1);
}

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

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.gallery .swiper-button-next,
.gallery .swiper-button-prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery .swiper-button-next:after,
.gallery .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.gallery:hover .swiper-button-next,
.gallery:hover .swiper-button-prev {
  opacity: 0.9;
}

.gallery:hover .swiper-button-next:hover,
.gallery:hover .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .gallery .gallery-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .gallery .swiper-button-next,
  .gallery .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .gallery .swiper-wrapper {
    padding: 15px 0;
  }

  .gallery .gallery-img .gallery-overlay i {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
  height: auto !important;
  padding-bottom: 20px;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonials .testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 50%));
  border-radius: 24px 24px 0 0;
}

.testimonials .testimonial-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.testimonials .testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.testimonials .user-avatar {
  position: relative;
}

.testimonials .user-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .user-info {
  flex: 1;
}

.testimonials .user-info h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}

.testimonials .user-info .user-role {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin-bottom: 8px;
}

.testimonials .rating {
  display: flex;
  gap: 2px;
}

.testimonials .rating i {
  color: #fbbf24;
  font-size: 14px;
}

.testimonials .testimonial-content {
  flex-grow: 1;
  position: relative;
  margin-bottom: 24px;
}

.testimonials .testimonial-content .quote-mark {
  position: absolute;
  top: -12px;
  right: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 50%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials .testimonial-content .quote-mark i {
  color: var(--contrast-color);
  font-size: 20px;
}

.testimonials .testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0;
  font-weight: 500;
}

.testimonials .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .company-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
}

.testimonials .company-badge i {
  color: var(--accent-color);
  font-size: 14px;
}

.testimonials .company-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
}

.testimonials .verified-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonials .verified-badge i {
  color: #10b981;
  font-size: 16px;
}

.testimonials .verified-badge span {
  font-size: 12px;
  font-weight: 600;
  color: #10b981;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .testimonials .testimonial-card {
    padding: 24px;
    border-radius: 20px;
  }

  .testimonials .testimonial-header {
    gap: 12px;
    margin-bottom: 20px;
  }

  .testimonials .user-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .testimonials .user-info h3 {
    font-size: 16px;
  }

  .testimonials .testimonial-content {
    margin-bottom: 20px;
  }

  .testimonials .testimonial-content .quote-mark {
    width: 40px;
    height: 40px;
  }

  .testimonials .testimonial-content .quote-mark i {
    font-size: 16px;
  }

  .testimonials .testimonial-content p {
    font-size: 15px;
  }

  /* =========================================
   FIX BADGE SEJAJAR DI MOBILE (Max-Width 991px)
   ========================================= */
@media (max-width: 991px) {

  /* 1. Paksa Container Sejajar */
  .testimonials .testimonial-footer {
    display: flex;
    flex-direction: row !important; /* Paksa baris (kiri-kanan) */
    align-items: center;
    justify-content: flex-start;
    gap: 8px; /* Jarak antar badge diperkecil sedikit */
    width: 100%;
    margin-top: 15px;
    flex-wrap: nowrap; /* PENTING: Larang badge turun baris */
    overflow: hidden; /* Jaga-jaga agar tidak merusak layout */
  }

  /* 2. Perkecil Ukuran Badge Agar Muat */
  .testimonials .company-badge,
  .testimonials .verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px !important; /* Perkecil font badge di HP */
    padding: 5px 10px !important; /* Perkecil padding badge */
    white-space: nowrap; /* Pastikan teks tidak turun baris */
    flex-shrink: 0; /* Pastikan badge tidak tergencet/gepeng */
  }

  /* 3. Atur Icon di dalam badge */
  .testimonials .company-badge i,
  .testimonials .verified-badge i {
    font-size: 12px;
    margin-right: 4px;
  }
}
}

/*--------------------------------------------------------------
# Faq 5 Section
--------------------------------------------------------------*/
.faq-5 {
  padding-top: 48px;
  padding-bottom: 60px;
}

.faq-5 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.faq-5 .section-header .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.faq-5 .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-5 .faq-item {
  border-left: 4px solid transparent;
  border-radius: 10px;
  background: var(--surface-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.faq-5 .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.faq-5 .faq-item.faq-active {
  border-left-color: var(--accent-color);
}

.faq-5 .faq-item.faq-active .faq-header .faq-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq-5 .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq-5 .faq-item.faq-active .faq-header .faq-toggle {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq-5 .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  display: none;
}

.faq-5 .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  display: block;
}

.faq-5 .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq-5 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  display: block;
}

.faq-5 .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  display: none;
}

.faq-5 .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  gap: 20px;
}

.faq-5 .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq-5 .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq-5 .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.faq-5 .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s ease;
}

.faq-5 .faq-item .faq-header .faq-toggle:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq-5 .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-5 .faq-item .faq-content .content-inner {
  padding: 0 25px 25px 25px;
  overflow: hidden;
}

.faq-5 .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 0.95rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .faq-5 .faq-item .faq-header {
    padding: 20px;
    gap: 15px;
  }

  .faq-5 .faq-item .faq-header .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq-5 .faq-item .faq-header h4 {
    font-size: 1rem;
  }

  .faq-5 .faq-item .faq-header .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .faq-5 .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq-5 .faq-item.faq-active .faq-content .content-inner {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section (Re-Design 3 Kolom)
--------------------------------------------------------------*/
.contact .info-item {
  background: var(--surface-color);
  padding: 40px 30px; /* Padding lebih besar biar lega */
  border-radius: 15px; /* Sudut lebih melengkung modern */
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%; /* Memaksa semua kartu sama tingginya */
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Efek Hover: Kartu naik sedikit & bayangan muncul */
.contact .info-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-10px); 
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Icon Wrapper: Diubah jadi besar dan di tengah */
.contact .info-item .icon-wrapper {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px; /* Jarak icon ke judul */
  transition: 0.3s;
}

.contact .info-item .icon-wrapper i {
  color: var(--accent-color);
  font-size: 32px; /* Icon lebih besar */
  transition: 0.3s;
}

/* Efek Hover Icon: Warna berubah jadi solid */
.contact .info-item:hover .icon-wrapper {
  background: var(--accent-color);
}

.contact .info-item:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.contact .info-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
}

/* Membuat Link WA bisa diklik dan berwarna */
.contact .info-item p a {
  color: var(--default-color);
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.contact .info-item p a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding-top: 60px;
  --background-color: var(--contrast-color);
  padding-bottom: 60px;
}

.call-to-action-2 .cta-box {
  position: relative;
  padding: 70px 30px;
  border-radius: 25px;
  overflow: hidden;
}

.call-to-action-2 .cta-box .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.call-to-action-2 .cta-box .background-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--surface-color), transparent 5%), color-mix(in srgb, var(--surface-color), transparent 10%));
  opacity: 0.95;
}

.call-to-action-2 .cta-box .background-overlay .background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease-in-out;
}

.call-to-action-2 .cta-box:hover .background-image {
  transform: scale(1.1);
}

.call-to-action-2 .cta-box .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action-2 .cta-box .content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action-2 .cta-box .content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.call-to-action-2 .cta-box .content .cta-buttons .btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 20px 35px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-2 .cta-box .content .cta-buttons .btn-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.call-to-action-2 .cta-box .content .cta-buttons .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action-2 .cta-box .content .cta-buttons .btn-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .call-to-action-2 .cta-box {
    padding: 60px 20px;
  }

  .call-to-action-2 .cta-box .content h2 {
    font-size: 2rem;
  }

  .call-to-action-2 .cta-box .content p {
    font-size: 1rem;
  }

  .call-to-action-2 .cta-box .content .btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* --- Background Section Features (Kenapa Kami) --- */
#features-2 {
  /* Warna Ice Blue sangat lembut */
  background-color: #f4f9fc; 
  
  /* Opsi lain: Jika ingin sesuai warna brand otomatis, pakai kode ini: */
  /* background-color: color-mix(in srgb, var(--accent-color), white 95%); */
  
  padding: 80px 0; /* Memberi ruang napas atas-bawah */
}

#features-2 .feature-card {
  background: #ffffff; /* Kartu tetap putih agar kontras */
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Bayangan halus */
  border: none; /* Hilangkan garis pinggir agar lebih modern */
}

/* =======================================================
   PEWARNAAN BACKGROUND SECTION (ZEBRA STRIPING)
   ======================================================= */

/* 1. CALL TO ACTION (Promo)
   Kita beri efek gradient halus dari putih ke biru muda.
   Memberi sinyal bawah sadar: "Ini penting dibaca". */
#call-to-action {
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
  border-bottom: 1px solid #eef7ff;
}

/* 2. FEATURES (Kenapa Kami)
   Kita beri warna "Ice Blue" sangat tipis.
   Warna ini memberi kesan sejuk, aman, dan berkaitan dengan air. */
#features-2 {
  background-color: #f4faff; /* Biru sangat muda */
}

/* Agar kartu di dalamnya tetap terlihat menonjol (Pop-up),
   kita pastikan kartunya berwarna putih bersih */
#features-2 .feature-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

/* 3. GALLERY (Foto-foto)
   Kita beri warna Abu-abu super muda (Off-White).
   Tujuannya agar warna-warni foto terlihat lebih kontras. */
#gallery {
  background-color: #f9f9f9; 
}

/* 4. TESTIMONIALS (Kata Mereka)
   Kita beri warna "Warm White" / Putih Gading.
   Memberikan nuansa hangat, akrab, dan kekeluargaan. */
#testimonials {
  background-color: #fffcf7; /* Sedikit nuansa kuning/krem sangat tipis */
}

/* Kartu testimoni kita buat putih agar kontras dengan background krem */
#testimonials .testimonial-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

/* =======================================================
   END PEWARNAAN
   ======================================================= */

 /* ==================================================
   FIX FINAL: PANIC BAR & BACK TO TOP
   ================================================== */

/* 1. CONTAINER UTAMA BAR */
.panic-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background: #000; /* Hitam pekat */
  color: #fff;
  z-index: 99999;
  border-top: 2px solid #ff0000;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
  font-size: 13px;
}

/* 2. LAYOUT DESKTOP (INI YANG HILANG KEMARIN) */
/* Kode ini memaksa Teks & Tombol sejajar kiri-kanan */
.panic-bar .container {
  display: flex !important; /* Wajib Flexbox */
  justify-content: center;  /* Posisi di tengah layar */
  align-items: center;      /* Sejajar secara vertikal */
  gap: 20px;                /* Jarak antara Teks dan Tombol */
}

/* 3. TEKS & ICON */
.panic-bar .panic-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.panic-bar .bi-bell-fill {
  font-size: 16px;
  color: #fbbf24; /* Kuning Lonceng */
  animation: blinker 2s infinite ease-in-out;
}

/* 4. TOMBOL AMANKAN */
.panic-bar .btn-panic {
  font-size: 12px;
  padding: 6px 20px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--accent-color); /* Biru Brand */
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

/* 5. FIX BACK-TO-TOP (Agar tidak tabrakan) */
.back-to-top {
  bottom: 90px !important; /* Desktop: Naik sedikit */
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

/* ==================================================
   MOBILE RESPONSIVE (TAMPILAN HP)
   ================================================== */
@media (max-width: 768px) {
  
  /* Di HP, kita ubah jadi susunan Atas-Bawah */
  .panic-bar .container {
    flex-direction: column !important;
    gap: 10px;
    text-align: center;
  }
  
  /* Tombol Back-to-Top naik drastis di HP */
  .back-to-top {
    bottom: 150px !important; /* Jauh di atas bar */
    right: 15px !important;
  }
  
  .panic-bar .btn-panic {
    width: 100%; /* Tombol full width biar gampang dipencet */
  }
}

/* ANIMASI KEDIP */
@keyframes blinker {
  50% { opacity: 0.5; transform: scale(0.9); }
}
.blink {
  animation: blinker 0.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* --- FIX TOMBOL BACK-TO-TOP (UPDATE) --- */
.back-to-top {
  /* Posisi Desktop: Sedikit di atas bar notifikasi */
  bottom: 90px !important; 
  z-index: 999; /* Pastikan terlihat */
  transition: all 0.3s ease-in-out;
}

/* KHUSUS HP (Mobile) - Perbaikan Tabrakan */
@media (max-width: 768px) {
  .back-to-top {
    /* Kita naikkan drastis ke 140px agar benar-benar lepas dari bar notifikasi yang tebal */
    bottom: 140px !important; 
    right: 15px !important;
  }
}
