/* HikariNet Custom Navbar Styles */

.hikari-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hikari-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hikari-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.hikari-navbar-business {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

/* Hamburger toggle (hidden on desktop) */
.hikari-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: #DC2626;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.hikari-menu-toggle .hikari-toggle-bar {
  width: 26px;
  height: 3px;
  background-color: #ffffff;
  display: block;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
}

.hikari-menu-toggle.is-open {
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
}

.hikari-menu-toggle.is-open .hikari-toggle-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hikari-menu-toggle.is-open .hikari-toggle-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hikari-menu-toggle.is-open .hikari-toggle-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Logo Styling */
.hikari-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.hikari-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.hikari-logo a:hover {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

/* Navigation Menu */
.hikari-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hikari-nav-list {
  display: flex;
  align-items: center;
  gap: 45px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hikari-nav-item {
  margin: 0;
}

.hikari-nav-link {
  color: #1f2937;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.hikari-nav-link:hover {
  color: #DC2626;
}

.hikari-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #DC2626;
  transition: width 0.3s ease;
}

.hikari-nav-link:hover::after {
  width: 100%;
}

/* Active link state */
.hikari-nav-link.is-active {
  color: #DC2626;
}

.hikari-nav-link.is-active::after {
  width: 100%;
}

/* Action Buttons */
.hikari-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hikari-btn {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.hikari-btn-primary {
  background-color: #DC2626;
  color: #ffffff;
  border: 2px solid #DC2626;
}

.hikari-btn-primary:hover {
  background-color: #B91C1C;
  border-color: #B91C1C;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.hikari-btn-secondary {
  background-color: #ffffff;
  color: #DC2626;
  font-weight: 700;
  border: 2px solid #DC2626;
}

.hikari-btn-secondary:hover {
  background-color: #B91C1C;
  border-color: #B91C1C;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  transition: background-color 0.3s ease;
}

.hikari-btn-outline {
  background-color: transparent;
  color: #DC2626;
  border: 2px solid #DC2626;
}

.hikari-btn-outline i {
  color: #DC2626;
}

.hikari-btn-outline:hover i {
  color: #ffffff;
}

.hikari-btn-outline:hover {
  background-color: #DC2626;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

/* ============================================ */
/* PAKET DROPDOWN - EXACT MATCH TO SCREENSHOT */
/* ============================================ */

/* Paket Button Styling */
.hikari-nav-dropdown {
  position: relative;
}

.hikari-paket-button {
  background-color: transparent;
  color: #1f2937;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
  z-index: 1001;
  pointer-events: auto;
}

.hikari-paket-button::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  width: calc(100% - 24px);
  height: 2px;
  background-color: #DC2626;
  transition: width 0.3s ease;
  opacity: 0;
}

.hikari-paket-button:hover {
  color: #DC2626;
}

.hikari-paket-button:hover::after {
  opacity: 1;
}

/* Button merah penuh hanya saat dropdown open/active */
.hikari-paket-button.is-open {
  background-color: #DC2626;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.hikari-paket-button.is-open::after {
  opacity: 0;
}

.hikari-paket-arrow {
  transition: transform 0.3s ease;
}

.hikari-paket-button.is-open .hikari-paket-arrow {
  transform: rotate(180deg);
}

/* Dropdown Overlay - Pushes content down (not floating) */

@keyframes dropdownSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hikari-dropdown-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px;
}

.hikari-dropdown-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Dropdown Card Styling */
.hikari-dropdown-card {
  display: flex;
  align-items: stretch;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  padding: 0;
  height: 100%;
}

.hikari-dropdown-card:hover {
  border-color: #DC2626;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
  transform: translateY(-4px);
}

.hikari-card-image-wrapper {
  width: 210px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.hikari-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hikari-dropdown-card:hover .hikari-card-image-wrapper img {
  transform: scale(1.1);
}

.hikari-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.hikari-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.hikari-card-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 16px 0;
  flex: 1;
}

.hikari-card-link {
  color: #DC2626;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.hikari-dropdown-card:hover .hikari-card-link {
  gap: 10px;
}

.hikari-arrow-icon {
  font-size: 20px;
  line-height: 1;
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

@media (max-width: 1200px) {
  .hikari-nav-list {
    gap: 30px;
  }

  .hikari-container {
    padding: 0 30px;
  }

  .hikari-dropdown-wrapper {
    max-width: 900px;
    gap: 25px;
  }

  .hikari-card-image-wrapper {
    width: 180px;
  }

  .hikari-dropdown-container {
    padding: 35px 30px;
  }
}

@media (max-width: 992px) {
  .hikari-nav-list {
    gap: 20px;
  }

  .hikari-nav-link {
    font-size: 15px;
  }

  .hikari-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hikari-logo a {
    font-size: 24px;
  }

  .hikari-dropdown-wrapper {
    gap: 20px;
  }

  .hikari-card-image-wrapper {
    width: 160px;
  }

  .hikari-card-content {
    padding: 20px;
  }

  .hikari-card-title {
    font-size: 16px;
  }

  .hikari-card-description {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .hikari-navbar {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hikari-nav,
  .hikari-actions {
    display: none;
  }

  .hikari-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    gap: 5px;
  }

  .hikari-menu-toggle .hikari-toggle-bar {
    width: 22px;
    height: 2px;
  }

  .hikari-menu-toggle.is-open .hikari-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hikari-menu-toggle.is-open .hikari-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Dropdown adjustments for tablet/mobile */
  .hikari-dropdown-overlay {
    position: relative;
    top: 0;
    border: none;
  }

  .hikari-dropdown-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hikari-dropdown-container {
    padding: 20px;
  }

  .hikari-dropdown-card {
    flex-direction: column;
  }

  .hikari-card-image-wrapper {
    width: 100%;
    height: 160px;
  }

  .hikari-card-content {
    padding: 18px;
  }
}

@media (max-width: 576px) {
  .hikari-container {
    padding: 0 20px;
  }

  .hikari-navbar {
    padding: 15px 0;
  }

  .hikari-logo a {
    font-size: 22px;
  }

  .hikari-nav-list {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
  }

  .hikari-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ============================================ */
/* MOBILE MENU */
/* ============================================ */

.hikari-mobile-menu {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 12px;
  margin-top: 12px;
}

.hikari-mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hikari-mobile-item+.hikari-mobile-item {
  border-top: 1px solid #f1f5f9;
}

.hikari-mobile-link {
  display: block;
  padding: 12px 8px;
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
}

.hikari-mobile-link:hover {
  color: #DC2626;
}

.hikari-mobile-link.is-active {
  color: #DC2626;
}

.hikari-mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

/* Mobile Dropdown Toggle */


.hikari-mobile-dropdown {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hikari-mobile-dropdown .hikari-dropdown-card {
  flex-direction: column;
}

.hikari-mobile-dropdown .hikari-card-image-wrapper {
  width: 100%;
  height: 180px;
}

.hikari-mobile-dropdown .hikari-card-content {
  padding: 20px;
}

/* Backdrop overlay untuk mengabu-abukan konten di belakang */
.hikari-dropdown-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Dropdown Overlay - Pushes content down (not floating) */
.hikari-dropdown-overlay {
  position: relative;
  width: 100%;
  background: #ffffff;
  /* border-top: 1px solid #e5e7eb; */
  /* border-bottom: 1px solid #e5e7eb; */
  z-index: 999;
  animation: dropdownSlideDown 0.3s ease-out;
}

/* ============================================ */
/* BRAND SLIDER - STABLE VERSION */
/* ============================================ */

.brand-slider-section {
  background: #ffffff;
  padding: 50px 0;
  overflow: hidden;
  /* border-top: 1px solid #f9f6f1; */
  /* border-bottom: 1px solid #f1f5f9; */
}

.brand-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Fade gradients on edges */
.brand-slider-container::before,
.brand-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 10;
  pointer-events: none;
}

.brand-slider-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-slider-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

/* The animated track */
.brand-slider-track {
  display: flex;
  gap: 50px;
  animation: slideLeft 90s linear infinite;
  will-change: transform;
}

/* Slower animation - 90 seconds for 3 sets */
@keyframes slideLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-33.333%, 0, 0);
  }
}

/* Pause on hover */
.brand-slider-track:hover {
  animation-play-state: paused;
}

/* Individual brand item */
.brand-slide {
  flex: 0 0 auto;
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.brand-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.brand-slide:hover .brand-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 1024px) {
  .brand-slider-section {
    padding: 40px 0;
  }

  .brand-slider-track {
    gap: 80px;
    animation-duration: 75s;
  }

  .brand-slide {
    width: 140px;
    height: 70px;
  }

  .brand-slider-container::before,
  .brand-slider-container::after {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .brand-slider-section {
    padding: 35px 0;
  }

  .brand-slider-track {
    gap: 60px;
    animation-duration: 60s;
  }

  .brand-slide {
    width: 120px;
    height: 60px;
  }

  .brand-slider-container::before,
  .brand-slider-container::after {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .brand-slider-section {
    padding: 30px 0;
  }

  .brand-slider-track {
    gap: 50px;
    animation-duration: 50s;
  }

  .brand-slide {
    width: 100px;
    height: 50px;
  }

  .brand-slider-container::before,
  .brand-slider-container::after {
    width: 60px;
  }
}

/* ============================================ */
/* CTA BUSINESS SECTION */
/* ============================================ */

.cta-business-section {
  /* background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); */
  padding: 80px 0;
  position: relative;
}

.cta-business-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(90deg, #DC2626 0%, #B91C1C 100%); */
}

.cta-business-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.cta-business-content {
  text-align: center;
  padding: 60px;
}

.cta-business-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  line-height: 1.3;
}

.cta-business-description {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin: 0 0 16px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-business-note {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 32px 0;
  font-style: italic;
}

.cta-business-button {
  background-color: #DC2626;
  color: #ffffff;
  border: none;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.cta-business-button:hover {
  background-color: #B91C1C;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.cta-business-button:active {
  transform: translateY(0);
}

/* ============================================ */
/* KONSULTASI POPUP - ENHANCED */
/* ============================================ */

/* .hikari-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hikari-popup-konsultasi-business {
  background: #ffffff;
  border-radius: 16px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideUp 0.4s ease;
}

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

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 1024px) {
  .cta-business-container {
    padding: 0 30px;
  }

  .cta-business-content {
    padding: 50px 40px;
  }

  .cta-business-title {
    font-size: 28px;
  }

  .hikari-popup-header-business {
    margin-right: 20px;
    padding: 35px 40px 30px 40px;
  }

  .hikari-popup-form-business {
    padding: 35px 40px 45px 40px;
  }
}

@media (max-width: 768px) {
  .cta-business-section {
    padding: 60px 0;
  }

  .cta-business-container {
    padding: 0 20px;
  }

  .cta-business-content {
    padding: 40px 30px;
  }

  .cta-business-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .cta-business-description {
    font-size: 15px;
  }

  .cta-business-button {
    padding: 14px 36px;
    font-size: 16px;
  }

  /* Popup responsive */
  /* .hikari-popup-overlay {
    padding: 10px;
  }

  .hikari-popup-header-business {
    padding: 30px 25px 25px 25px;
  }

  .hikari-popup-header-business h2 {
    font-size: 20px;
  }

  .hikari-popup-header-business h3 {
    font-size: 14px;
  } */

  /* .hikari-popup-form-business {
    padding: 30px 25px 35px 25px;
  } */

  .hikari-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hikari-popup-close {
    width: 36px;
    height: 36px;
    top: 15px;
    right: 15px;
    font-size: 24px;
  }

  .hikari-btn-submit {
    width: 100%;
    padding: 14px 40px;
  }
}

@media (max-width: 480px) {
  .cta-business-content {
    padding: 30px 20px;
  }

  .cta-business-title {
    font-size: 20px;
  }

  .cta-business-description {
    font-size: 14px;
  }

  .cta-business-note {
    font-size: 12px;
  }

  .cta-business-button {
    padding: 12px 28px;
    font-size: 15px;
    width: 100%;
  }
}

/* ============================================ */
/* FEATURE BUSINESS SECTION - 100% MATCH */
/* ============================================ */

.feature-business-section {
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 50%, #fef2f2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.feature-business-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header dengan garis biru */
.feature-business-header {
  position: relative;
  margin-bottom: 60px;
}

.feature-business-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, #3B82F6 30%, #3B82F6 70%, transparent 100%);
  border-radius: 2px;
}

.feature-business-title-wrapper {
  padding-left: 40px;
  max-width: 900px;
}

.feature-business-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.feature-business-subtitle {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
}

/* Grid Layout - 2 columns x 3 rows */
.feature-business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Feature Card */
.feature-business-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-business-card:hover {
  border-color: #DC2626;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.12);
  transform: translateY(-4px);
}

/* Icon Container */
.feature-business-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%); */
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-business-card:hover .feature-business-icon {
  /* background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%); */
  transform: scale(1.05);
}

.feature-business-card:hover .feature-business-icon svg {
  filter: brightness(0) invert(1);
}

/* Content */
.feature-business-content {
  flex: 1;
  padding-top: 5px;
}

.feature-business-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.feature-business-card-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

@media (max-width: 1024px) {
  .feature-business-section {
    padding: 60px 0;
  }

  .feature-business-container {
    padding: 0 30px;
  }

  .feature-business-title {
    font-size: 32px;
  }

  .feature-business-grid {
    gap: 30px;
  }

  .feature-business-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .feature-business-section {
    padding: 50px 0;
  }

  .feature-business-container {
    padding: 0 20px;
  }

  .feature-business-header {
    margin-bottom: 40px;
  }

  .feature-business-line {
    height: 150px;
  }

  .feature-business-title-wrapper {
    padding-left: 30px;
  }

  .feature-business-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .feature-business-subtitle {
    font-size: 15px;
  }

  /* Stack to 1 column on mobile */
  .feature-business-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-business-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .feature-business-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .feature-business-content {
    padding-top: 0;
  }

  .feature-business-card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .feature-business-card-description {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .feature-business-section {
    padding: 40px 0;
  }

  .feature-business-title {
    font-size: 22px;
  }

  .feature-business-subtitle {
    font-size: 14px;
  }

  .feature-business-card {
    padding: 18px;
  }

  .feature-business-icon {
    width: 55px;
    height: 55px;
  }

  .feature-business-card-title {
    font-size: 17px;
  }
}

/* ============================================ */
/* ANIMATION ON SCROLL (Optional) */
/* ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-business-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.feature-business-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-business-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-business-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-business-card:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-business-card:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-business-card:nth-child(6) {
  animation-delay: 0.6s;
}

.business-ending {
  background-image: url(../images/background/bisnis_bottom.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* ============================================ */
/* SELECT2-LIKE SEARCHABLE SELECT COMPONENT */
/* Enhanced Professional Design */
/* ============================================ */

/* Container */
.hikari-select-wrapper {
  position: relative;
  width: 100%;
}

/* Main Input Container */
.hikari-select-input {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hikari-select-input:hover:not(.is-disabled) {
  /* border-color: #d1d5db; */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.hikari-select-input.is-open {
  /* border-color: #DC2626; */
  /* box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1); */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.hikari-select-input.is-disabled {
  background: #f9fafb;
  border-color: #e5e7eb;
  cursor: not-allowed;
  opacity: 0.65;
}

/* end */

.hikari-select-input.has-error {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Search Input Inside */
.hikari-select-search {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #1f2937;
  font-family: inherit;
  padding: 10px 0;
  cursor: inherit;
  font-weight: 500;
}

.hikari-select-search::placeholder {
  color: #9ca3af;
  font-size: 13px;
  font-weight: 400;
}

.hikari-select-search:disabled {
  cursor: not-allowed;
  color: #9ca3af;
  background-color: #f9fafb;
}

/* Icons Container */
.hikari-select-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

/* Clear Button */
.hikari-select-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  padding: 0;
}

.hikari-select-clear:hover {
  background: #fee2e2;
  color: #DC2626;
}

.hikari-select-clear:active {
  transform: scale(0.95);
}

/* Arrow Icon */
.hikari-select-arrow {
  flex-shrink: 0;
  color: #6b7280;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hikari-select-input:hover:not(.is-disabled) .hikari-select-arrow {
  color: #DC2626;
}

.hikari-select-arrow.is-open {
  transform: rotate(180deg);
  color: #DC2626;
}

/* Loading Spinner */
.hikari-select-loading {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #DC2626;
}

.hikari-spinner {
  width: 100%;
  height: 100%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Dropdown Menu */
.hikari-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 320px;
  overflow-y: auto;
  background: #ffffff;
  border: 2px solid #DC2626;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 0 0 0 3px rgba(220, 38, 38, 0.1);
  z-index: 1000;
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Scrollbar */
.hikari-select-dropdown::-webkit-scrollbar {
  width: 10px;
}

.hikari-select-dropdown::-webkit-scrollbar-track {
  background: #f9fafb;
  border-radius: 0 0 8px 0;
}

.hikari-select-dropdown::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 5px;
  border: 2px solid #f9fafb;
}

.hikari-select-dropdown::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Dropdown Option */
.hikari-select-option {
  padding: 12px 14px;
  font-size: 14px;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #ffffff;
}

.hikari-select-option:hover,
.hikari-select-option.is-highlighted {
  background: linear-gradient(90deg, #fef2f2 0%, #ffffff 100%);
  border-left-color: #DC2626;
  padding-left: 18px;
}

.hikari-select-option.is-selected {
  background: #fee2e2;
  color: #DC2626;
  font-weight: 600;
  border-left-color: #DC2626;
  padding-left: 18px;
}

.hikari-select-option.is-selected:hover {
  background: linear-gradient(90deg, #fecaca 0%, #fee2e2 100%);
}

.hikari-option-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hikari-option-check {
  flex-shrink: 0;
  color: #DC2626;
  animation: checkPop 0.3s ease;
}

@keyframes checkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Empty State */
.hikari-select-empty {
  padding: 32px 20px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.hikari-select-empty svg {
  color: #d1d5db;
}

/* Error Text */
.hikari-error-text {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #DC2626;
  margin-top: 6px;
  font-weight: 600;
  background: #FEE2E2;
  padding: 6px 10px;
  border-radius: 6px;
  border-left: 3px solid #DC2626;
  animation: slideInError 0.3s ease;
}

@keyframes slideInError {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading Text (for normal select fallback) */
.hikari-loading-text {
  display: block;
  font-size: 12px;
  color: #DC2626;
  margin-top: 4px;
  font-style: italic;
  font-weight: 500;
}

/* Make selects look better when disabled (fallback) */
.hikari-form-group select:disabled {
  background-color: #f9fafb;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.65;
}

/* Loading state for select (fallback) */
.hikari-form-group select:disabled:not([value=""]) {
  opacity: 0.8;
}

/* ============================================ */
/* FOCUS STATES & ACCESSIBILITY */
/* ============================================ */

.hikari-select-input:focus-within {
  outline: none;
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.hikari-select-option:focus {
  outline: 2px solid #DC2626;
  outline-offset: -2px;
}

/* Keyboard navigation indicator */
.hikari-select-option.is-highlighted {
  /* outline: 2px solid #fecaca; */
  outline-offset: -2px;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
  .hikari-select-input {
    min-height: 46px;
    /* Larger touch target */
    padding: 0 12px;
  }

  .hikari-select-search {
    font-size: 15px;
    padding: 12px 0;
  }

  .hikari-select-search::placeholder {
    font-size: 14px;
  }

  .hikari-select-dropdown {
    max-height: 280px;
  }

  .hikari-select-option {
    padding: 14px 14px;
    font-size: 15px;
    min-height: 48px;
    /* Larger touch target */
  }

  .hikari-select-option:hover,
  .hikari-select-option.is-highlighted,
  .hikari-select-option.is-selected {
    padding-left: 20px;
  }

  .hikari-select-empty {
    font-size: 14px;
    padding: 36px 20px;
  }

  .hikari-error-text {
    font-size: 13px;
    padding: 8px 12px;
  }

  .hikari-select-clear {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hikari-select-input {
    min-height: 48px;
    /* Even larger for mobile */
    border-radius: 10px;
  }

  .hikari-select-input.is-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .hikari-select-dropdown {
    max-height: 240px;
    border-radius: 0 0 10px 10px;
  }

  .hikari-select-option {
    padding: 16px 14px;
    min-height: 52px;
  }
}

/* ============================================ */
/* DARK MODE SUPPORT (Optional) */
/* ============================================ */

.hikari-select-input:hover:not(.is-disabled) {
  border-color: #DC2626;
}

.hikari-select-search {
  color: #f9fafb;
}

.hikari-select-search::placeholder {
  color: #DC2626;
}

.hikari-select-dropdown {
  /* background: #ffffff; */
  /* border-color: #DC2626; */
}

.hikari-select-option {
  /* color: #f9fafb; */
  /* background: #1f2937; */
}

.hikari-select-option:hover,
.hikari-select-option.is-highlighted {
  color: #DC2626;
  background-color: #ffff;
}

.hikari-select-option.is-selected {
  background: #fecaca;
  color: black;
}

.hikari-select-empty {
  color: #6b7280;
}

/* ============================================ */
/* ANIMATIONS & TRANSITIONS */
/* ============================================ */

/* Smooth height transition when options change */
.hikari-select-dropdown {
  transition: max-height 0.3s ease;
}

/* Option entrance animation */
.hikari-select-option {
  animation: fadeInOption 0.2s ease forwards;
  opacity: 0;
}

@keyframes fadeInOption {
  from {
    opacity: 0;
    transform: translateX(-4px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Stagger animation for options */
.hikari-select-option:nth-child(1) {
  animation-delay: 0.02s;
}

.hikari-select-option:nth-child(2) {
  animation-delay: 0.04s;
}

.hikari-select-option:nth-child(3) {
  animation-delay: 0.06s;
}

.hikari-select-option:nth-child(4) {
  animation-delay: 0.08s;
}

.hikari-select-option:nth-child(5) {
  animation-delay: 0.10s;
}

.hikari-select-option:nth-child(n+6) {
  animation-delay: 0.12s;
}

/* Pulse animation for loading */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hikari-select-input.is-disabled {
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================ */
/* SUCCESS MODAL - THEME CONSISTENT */
/* ============================================ */

.hikari-success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hikari-success-modal {
  background: #ffffff;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  box-shadow: 0 24px 64px rgba(220, 38, 38, 0.2);
  position: relative;
  animation: successPopUp 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-align: center;
}

@keyframes successPopUp {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hikari-success-icon {
  margin: 0 auto 28px auto;
  animation: successIconBounce 0.6s ease 0.3s both;
}

@keyframes successIconBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hikari-success-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.hikari-success-message {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.hikari-success-button {
  background-color: #DC2626;
  color: #ffffff;
  border: none;
  padding: 14px 48px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
  width: 100%;
}

.hikari-success-button:hover {
  background-color: #B91C1C;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
}

.hikari-success-button:active {
  transform: translateY(0);
}

/* ============================================ */
/* FORM VALIDATION STYLES */
/* ============================================ */

/* Required indicator */
.required {
  color: #DC2626;
  font-weight: 700;
  margin-left: 2px;
}

/* Input focus states */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Invalid input state */
input:invalid:not(:focus):not(:placeholder-shown),
textarea:invalid:not(:focus):not(:placeholder-shown),
select:invalid:not(:focus) {
  border-color: #DC2626;
}

/* Valid input state (optional) */
input:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
  /* border-color: #10B981; */
}

/* Submit button loading state */
.hikari-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.hikari-btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.hikari-submit-spinner {
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
}

/* Placeholder styling */
::placeholder {
  color: #9ca3af;
  opacity: 1;
}

/* ============================================ */
/* ENHANCED FORM STYLES */
/* ============================================ */

.hikari-form-group label,
.hikari-form-group-full label {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
  display: block;
}

.hikari-form-group input,
.hikari-form-group textarea,
.hikari-form-group-full input,
.hikari-form-group-full textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  color: #1f2937;
  transition: all 0.2s ease;
  font-family: inherit;
}

.hikari-form-group input:hover,
.hikari-form-group textarea:hover,
.hikari-form-group-full input:hover,
.hikari-form-group-full textarea:hover {
  /* border-color: #d1d5db; */
}

/* Checkbox styling */
.hikari-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  margin: 24px 0;
}

.hikari-form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #DC2626;
  flex-shrink: 0;
}

.hikari-form-checkbox label {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  cursor: pointer;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
  .hikari-success-modal {
    padding: 40px 32px;
    max-width: 90%;
  }

  .hikari-success-icon svg {
    width: 56px;
    height: 56px;
  }

  .hikari-success-title {
    font-size: 24px;
  }

  .hikari-success-message {
    font-size: 15px;
  }

  .hikari-success-button {
    padding: 12px 36px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hikari-success-modal {
    padding: 32px 24px;
  }

  .hikari-success-icon svg {
    width: 48px;
    height: 48px;
  }

  .hikari-success-title {
    font-size: 22px;
  }

  .hikari-success-message {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hikari-form-checkbox {
    padding: 12px;
  }

  .hikari-form-checkbox label {
    font-size: 12px;
  }
}

/* ============================================ */
/* ANIMATION UTILITIES */
/* ============================================ */

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Shake animation for validation errors */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-4px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(4px);
  }
}

.hikari-error-text {
  animation: shake 0.5s ease;
}

/* ============================================ */
/* ACCESSIBILITY */
/* ============================================ */

/* Focus visible for keyboard navigation */
.hikari-success-button:focus-visible {
  outline: 3px solid #DC2626;
  outline-offset: 2px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #DC2626;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hikari-success-modal {
    border: 3px solid #1a1a1a;
  }

  .hikari-success-button {
    border: 2px solid #1a1a1a;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .hikari-success-overlay,
  .hikari-success-modal,
  .hikari-success-icon,
  .hikari-submit-spinner,
  .hikari-error-text {
    animation: none !important;
  }

  .hikari-success-button,
  input,
  textarea,
  select {
    transition: none !important;
  }
}

/* NEW */
/* ============================================ */
/* SEARCHABLE SELECT - 100% SCREENSHOT MATCH */
/* Fix: Normal font weight + No yellow border */
/* ============================================ */

/* Container */
.hikari-select-wrapper {
  position: relative;
  width: 100%;
}

/* Main Input Container - Simple Border */
.hikari-select-input {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hikari-select-input:hover:not(.is-disabled) {
  border-color: #9ca3af;
}

.hikari-select-input.is-open {
  border-color: #9ca3af;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.hikari-select-input.is-disabled {
  background: #f9fafb;
  border-color: #e5e7eb;
  cursor: not-allowed;
  opacity: 0.65;
}

.hikari-select-input.has-error {
  border-color: #DC2626;
}

/* Search Input Inside - NO FOCUS OUTLINE */
.hikari-select-search {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #6b7280;
  font-family: inherit;
  padding: 10px 0;
  cursor: inherit;
  font-weight: 400;
  box-shadow: none !important;
  /* Remove any box-shadow */
}

/* Remove browser default focus styles */
.hikari-select-search:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.hikari-select-search::placeholder {
  color: #9ca3af;
  font-size: 15px;
  font-weight: 400;
}

.hikari-select-search:disabled {
  cursor: not-allowed;
  color: #9ca3af;
}

/* Icons Container */
.hikari-select-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

/* Clear Button */
.hikari-select-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  padding: 0;
}

.hikari-select-clear:hover {
  background: #f3f4f6;
  color: #6b7280;
}

.hikari-select-clear:active {
  transform: scale(0.95);
}

/* Arrow Icon */
.hikari-select-arrow {
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hikari-select-input:hover:not(.is-disabled) .hikari-select-arrow {
  color: #6b7280;
}

.hikari-select-arrow.is-open {
  transform: rotate(180deg);
  color: #6b7280;
}

/* Loading Spinner */
.hikari-select-loading {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #6b7280;
}

.hikari-spinner {
  width: 100%;
  height: 100%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Dropdown Menu - EXACTLY LIKE SCREENSHOT */
.hikari-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 320px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Scrollbar - Subtle */
.hikari-select-dropdown::-webkit-scrollbar {
  width: 8px;
}

.hikari-select-dropdown::-webkit-scrollbar-track {
  background: #f9fafb;
  border-radius: 0 0 6px 0;
}

.hikari-select-dropdown::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.hikari-select-dropdown::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Dropdown Option - NORMAL FONT WEIGHT */
.hikari-select-option {
  padding: 14px 16px;
  font-size: 15px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s ease;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 400 !important;
  /* Force normal weight */
  border-left: 3px solid transparent;
}

.hikari-select-option:hover,
.hikari-select-option.is-highlighted {
  background: #f9fafb;
  color: #374151;
  font-weight: 400 !important;
  /* Keep normal on hover */
}

.hikari-select-option.is-selected {
  background: #f3f4f6;
  color: #1f2937;
  font-weight: 400 !important;
  /* Normal weight even when selected */
  border-left-color: #9ca3af;
}

.hikari-select-option.is-selected:hover {
  background: #e5e7eb;
  font-weight: 400 !important;
}

/* Option Text - FORCE NORMAL WEIGHT */
.hikari-option-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400 !important;
  /* Force normal weight */
}

/* Checkmark Icon */
.hikari-option-check {
  flex-shrink: 0;
  color: #6b7280;
  animation: checkPop 0.3s ease;
}

@keyframes checkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Empty State */
.hikari-select-empty {
  padding: 32px 20px;
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 400;
}

.hikari-select-empty svg {
  color: #d1d5db;
}

/* Error Text */
.hikari-error-text {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #DC2626;
  margin-top: 6px;
  font-weight: 500;
  background: #FEE2E2;
  padding: 6px 10px;
  border-radius: 6px;
  border-left: 3px solid #DC2626;
  animation: slideInError 0.3s ease;
}

@keyframes slideInError {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading Text (for normal select fallback) */
.hikari-loading-text {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  font-style: italic;
  font-weight: 400;
}

/* Make selects look better when disabled (fallback) */
.hikari-form-group select:disabled {
  background-color: #f9fafb;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.65;
}

/* Loading state for select (fallback) */
.hikari-form-group select:disabled:not([value=""]) {
  opacity: 0.8;
}

/* ============================================ */
/* FOCUS STATES - NO YELLOW/ORANGE BORDER */
/* ============================================ */

/* Remove focus-within color change */
.hikari-select-input:focus-within {
  outline: none;
  border-color: #9ca3af;
  /* Keep gray, not yellow */
  box-shadow: none !important;
  /* No shadow */
}

/* Remove option focus outline */
.hikari-select-option:focus {
  outline: none;
}

/* Keyboard navigation - subtle gray only */
.hikari-select-option.is-highlighted {
  outline: 2px solid #e5e7eb;
  outline-offset: -2px;
}

/* ============================================ */
/* REMOVE ALL YELLOW/ORANGE COLORS */
/* ============================================ */

/* Override any global input focus styles */
.hikari-select-wrapper input:focus,
.hikari-select-wrapper input:focus-visible,
.hikari-select-wrapper input:active {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

/* Override any webkit autofill yellow background */
.hikari-select-search:-webkit-autofill,
.hikari-select-search:-webkit-autofill:hover,
.hikari-select-search:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  box-shadow: 0 0 0 1000px white inset !important;
  border: none !important;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
  .hikari-select-input {
    min-height: 46px;
    padding: 0 12px;
  }

  .hikari-select-search {
    font-size: 15px;
    padding: 12px 0;
  }

  .hikari-select-search::placeholder {
    font-size: 15px;
  }

  .hikari-select-dropdown {
    max-height: 280px;
  }

  .hikari-select-option {
    padding: 16px 16px;
    font-size: 15px;
    min-height: 50px;
    font-weight: 400 !important;
  }

  .hikari-select-empty {
    font-size: 14px;
    padding: 36px 20px;
  }

  .hikari-error-text {
    font-size: 13px;
    padding: 8px 12px;
  }

  .hikari-select-clear {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hikari-select-input {
    min-height: 48px;
    border-radius: 8px;
  }

  .hikari-select-input.is-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .hikari-select-dropdown {
    max-height: 240px;
    border-radius: 0 0 8px 8px;
  }

  .hikari-select-option {
    padding: 18px 16px;
    min-height: 54px;
    font-weight: 400 !important;
  }
}

/* ============================================ */
/* ANIMATIONS & TRANSITIONS */
/* ============================================ */

/* Smooth height transition when options change */
.hikari-select-dropdown {
  transition: max-height 0.3s ease;
}

/* Option entrance animation - SUBTLE */
.hikari-select-option {
  animation: fadeInOption 0.15s ease forwards;
  opacity: 0;
}

@keyframes fadeInOption {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Stagger animation for options - VERY SUBTLE */
.hikari-select-option:nth-child(1) {
  animation-delay: 0.01s;
}

.hikari-select-option:nth-child(2) {
  animation-delay: 0.02s;
}

.hikari-select-option:nth-child(3) {
  animation-delay: 0.03s;
}

.hikari-select-option:nth-child(4) {
  animation-delay: 0.04s;
}

.hikari-select-option:nth-child(5) {
  animation-delay: 0.05s;
}

.hikari-select-option:nth-child(n+6) {
  animation-delay: 0.06s;
}

/* Pulse animation for loading */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hikari-select-input.is-disabled {
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================ */
/* REDUCED MOTION SUPPORT */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {

  .hikari-select-dropdown,
  .hikari-select-option,
  .hikari-select-clear,
  .hikari-select-arrow,
  .hikari-submit-spinner,
  .hikari-error-text {
    animation: none !important;
  }

  .hikari-select-input,
  .hikari-select-option,
  input,
  textarea,
  select {
    transition: none !important;
  }
}

/* ============================================ */
/* GLOBAL OVERRIDES - FORCE NORMAL STYLES */
/* ============================================ */

/* Override any global styles that might affect font weight */
.hikari-select-dropdown * {
  font-size: 14px !important;
  font-weight: 400 !important;
}

/* Override any global focus styles that add yellow/orange */
.hikari-select-wrapper *:focus,
.hikari-select-wrapper *:focus-visible,
.hikari-select-wrapper *:focus-within {
  outline: none !important;
  box-shadow: none !important;
}

/* Ensure no yellow/orange anywhere in the component */
.hikari-select-wrapper *,
.hikari-select-wrapper *::before,
.hikari-select-wrapper *::after {
  /* Remove any yellow/orange colors */
  border-color: inherit;
  outline-color: inherit;
}

.hikari-select-search {
  border-color: #ffffff !important;
}

/* Error Alert */
.hikari-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.hikari-alert-error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.hikari-alert svg {
  flex-shrink: 0;
  color: currentColor;
}

.hikari-alert-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.hikari-alert-close:hover {
  opacity: 1;
}

/* Input Error State */
input.has-error,
textarea.has-error {
  border-color: #DC2626 !important;
  background-color: #FEF2F2;
}

input.has-error:focus,
textarea.has-error:focus {
  border-color: #DC2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* reCAPTCHA Container */
.hikari-form-recaptcha {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.g-recaptcha {
  transform: scale(0.95);
  transform-origin: 0 0;
}

@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.85);
  }
}

/* Success Modal - Update color */
.hikari-success-icon circle:last-child {
  fill: #10B981;
  /* Green instead of red */
}

.banner-one-left-details{
  justify-content: start;
}

/* OLD */

/* PRICELIST */

.chat-btn {
  text-decoration: none !important;
}
.chat-btn:hover {
  text-decoration: none !important;
}

.cta-business-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-business-content {
  width: 100%;
}

.cta-business-title,
.cta-business-description,
.cta-business-note {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing-wrapper {
  margin-top: 60px;
  width: 100%;
  max-width: 1400px;
}

/* TABS */

.pricing-tabs {
  display: flex;
  gap: 18px;
  align-items: stretch;
  margin-bottom: -2px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.tab {
  flex: 0 1 240px;
  min-height: 72px;
  padding: 14px 18px;
  border-radius: 16px 16px 0 0;
  background: #f3f4f6;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  border-bottom: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  transition: all 0.2s ease;
}

.tab.active {
  background: #ffffff;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.05);
}

/* TABLE CARD */

.pricing-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 0 20px 20px 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
  padding: 34px 40px;
}

/* HEADER PRICE */

.pricing-header {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 1.6fr 1fr;
  padding: 20px 22px;
  font-weight: 700;
  background: #f9fafb;
  border-radius: 14px;
  margin-bottom: 14px;
}

/* ROW PRICE */

.pricing-row {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 1.6fr 1fr;
  padding: 24px 22px;
  align-items: center;
  border-radius: 14px;
  transition: background 0.15s ease;
}
.pricing-row > .col {
  min-width: 0;
}

.pricing-row > div:nth-child(1),
.pricing-row > div:nth-child(2) {
  font-weight: 700;
}

.pricing-row:not(:last-child) {
  border-bottom: 1px solid #f1f1f1;
}

.pricing-row:hover {
  background: #fafafa;
}

/* PRICE */

.price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.old {
  color: #DC2626;
  text-decoration: line-through;
  font-size: 13px;
  font-weight: 500;
}

.new {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

/* BUTTON CHAT */

.chat-btn {
  background: #DC2626;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.chat-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(220,38,38,0.25);
}

/* PRICING TERMS */
.pricing-terms {
  margin: 46px auto 0 auto; 
  max-width: 1000px;         
  width: 100%;
  text-align: left;
  padding: 0px;           
}

.pricing-terms h3 {
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 18px;
}

.pricing-terms ul {
  padding-left: 18px;
  color: #444;
  line-height: 1.8;
  font-size: 15px;
}

.terms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
  }

  .arrow {
    display: flex;
    align-items: center;
    color: #111827;
  }

  .terms-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    opacity: 0;
    padding-left: 18px;
  }

  .terms-list.show {
    max-height: 500px;
    opacity: 1;
    margin-top: 10px;
  }

@media (max-width: 768px) {

  .pricing-table {
    padding: 20px;
  }

  .pricing-header {
    display: none;
  }
  .pricing-row {
    grid-template-columns: 1fr;
    padding: 16px;
    margin-bottom: 14px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: none;
  }

  .pricing-row:hover {
    background: #fff;
  }

  .pricing-row .col {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 6px;
  }

  .pricing-row .paket::before {
    content: "Paket";
    font-weight: 600;
    color: #6b7280;
  }

  .pricing-row .rasio::before {
    content: "Rasio";
    font-weight: 600;
    color: #6b7280;
  }

  .pricing-row .harga::before {
    content: "Harga";
    font-weight: 600;
    color: #6b7280;
  }

  .pricing-row .aksi {
    margin-top: 10px;
  }

  .chat-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
  }
}

