:root {
  --color-main: linear-gradient(90deg, #0743f5, #1240c9);
}

* {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;     /* IE */
  user-select: none;         /* Standard */
}

.text-main {
  background: var(--color-main);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.bg-main {
  background: linear-gradient(to right, #0743f5 0%, #1240c9 100%);
}

/* =========================
   TOP BAR CONTACT US
   ========================= */
.header-offset {
  margin-top: 122px; /* sesuaikan dengan tinggi header */
}

header .contact {
  background: linear-gradient(to right, #0743f5 0%, #1240c9 100%);
  padding: 10px 18px;
}

/* Left Container */
header .contact .text-white {
  line-height: 1.1;
}

/* Title */
header .contact strong {
  font-size: 16px;
  font-weight: bold;
  display: block;
}

/* Description */
header .contact small {
  font-size: 13px; 
  opacity: 0.9;
}

/* Subtitle */
header .contact span {
  font-size: 12px; 
  opacity: 0.9;
}

/* Icon */
header .contact svg {
  flex-shrink: 0;
}

/* Button kanan */
header .contact .btn {
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* =========================
   HEADER BRAND
   ========================= */

header .brand {
  padding: 25px 18px;
}

/* Left Container */
header .brand .text-white {
  line-height: 1;
}

/* Title */
header .brand strong {
  font-size: 16px;
  font-weight: bold;
  display: block;
}

/* Description */
header .brand small {
  font-size: 13px; 
  opacity: 0.9;
}

/* Subtitle */
header .brand span {
  font-size: 12px; 
  opacity: 0.9;
}

/* Icon */
header .brand svg {
  flex-shrink: 0;
}

/* Button kanan */
header .brand .btn {
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* Responsive */
@media (min-width: 768px) {
  header .contact strong {
    font-size: 15px;
  }

  header .contact span {
    font-size: 10px;
  }

  header .contact .btn {
    font-size: 0.8rem;
    padding: 4px 14px;
  }
}

/* Button Effect Ripple */

.btn {
  position: relative;
  display: inline-block;
  color: #fff;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  overflow: hidden;
  cursor: pointer;
  outline: 0;
  z-index: 1;
  transition: all 0.15s ease-in;
}
.btn:hover, .btn:focus {
  opacity: 0.9;
}

@-webkit-keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 150px;
    height: 150px;
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 150px;
    height: 150px;
    opacity: 0;
  }
}
.ripple:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background-color: currentColor;
  visibility: hidden;
  z-index: 2;
}
.ripple:not(:active):before {
  -webkit-animation: ripple 0.4s cubic-bezier(0, 0, 0.2, 1);
          animation: ripple 0.4s cubic-bezier(0, 0, 0.2, 1);
  transition: visibility 0.4s step-end;
}
.ripple:active:before {
  visibility: visible;
}

.scroll-hidden {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;

  /* Firefox */
  scrollbar-width: none !important;

  /* IE / Edge lama */
  -ms-overflow-style: none;
}

/* Chrome, Safari, Android */
.scroll-hidden::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

/* =========================
   MENU LIST
   ========================= */
   
.menu .box {
  width: 90px;
  height: 90px;
  transition: 0.2s;
}

.menu .box:hover {
  background-color: #e9ecef;
}

.menu .icon {
  height: 48px;
  width: 48px;
}

.menu .title {
  width: 70px;
  font-size: 13px;
  align-items: center;
  line-height: 1.5;
  word-wrap: break-word;
}

/* =========================
   PRICE LIST
   ========================= */

.pricing-card {
  border-radius: 24px;
  border: none;
  transition: 0.3s;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.top-section {
  background: linear-gradient(160deg, #d1f4ff, #e8f0ff);
  padding: 25px;
  position: relative;
}

.badge-plan {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #0d6efd;
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
}

.speed-line span {
  display: inline-block;
  height: 6px;
  width: 30px;
  border-radius: 10px;
  margin-right: 4px;
}

.active-bar { background: #0d47a1; }
.inactive-bar { background: #dee2e6; }

.tag {
  background: #f1f3f5;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 5px;
}

.btn-pill {
  border-radius: 50px;
}

/* =========================
   CAROUSEL LIST
   ========================= */ 
   
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Default: mobile = 1 slide */
.slide {
  flex: 0 0 100%;
  padding: 5px;
}

/* Desktop ≥ md = 2 slide */
@media (min-width: 768px) {
  .slide {
    flex: 0 0 50%;
  }
}

/* Image biar tidak kepotong */
.slide img {
  width: 100%;
  height: auto; /* penting */
  object-fit: contain; /* bukan cover */
  display: block;
}

.indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.indicator {
  width: 40px;
  height: 8px;
  border-radius: 4px;
  background: #EEE;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.indicator.active {
  width: 60px;
  height: 10px;
  background: #E1E1E1;
}

.indicator .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0743f5, #1240c9);
  transition: none;
}

.indicator.active .progress {
  transition: width linear;
} 