/* =====================================================
   home.css — RgintanaVO Homepage
   Depends on: base.css (CSS variables & utilities)
===================================================== */

/* ─────────────────────────────────────────
   SHARED SECTION HELPERS
───────────────────────────────────────── */
.hm-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.hm-section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--bvo-navy);
  margin-bottom: 0.6rem;
}

.hm-section-sub {
  font-size: 0.97rem;
  color: var(--bvo-text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Shared buttons */
.hm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s, color 0.22s;
  white-space: nowrap;
}

.hm-btn--electric {
  background: linear-gradient(135deg, var(--bvo-electric), #0288d1);
  color: var(--bvo-navy-deep);
  box-shadow: 0 6px 20px rgba(79, 195, 247, 0.35);
}
.hm-btn--electric:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(79, 195, 247, 0.5);
  color: var(--bvo-navy-deep);
}

.hm-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--bvo-white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}
.hm-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--bvo-white);
}

.hm-btn--navy {
  background: linear-gradient(135deg, var(--bvo-navy), var(--bvo-blue));
  color: var(--bvo-white);
  box-shadow: 0 6px 20px rgba(30, 42, 94, 0.28);
}
.hm-btn--navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 42, 94, 0.4);
  color: var(--bvo-white);
}

.hm-btn--wa {
  background: #25d366;
  color: var(--bvo-white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.hm-btn--wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  color: var(--bvo-white);
}

.hm-btn--outline-navy {
  background: transparent;
  color: var(--bvo-navy);
  border: 1.5px solid rgba(30, 42, 94, 0.25);
}
.hm-btn--outline-navy:hover {
  background: var(--bvo-navy);
  color: var(--bvo-white);
  border-color: transparent;
}

.hm-btn--ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--bvo-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.hm-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--bvo-white);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ─────────────────────────────────────────
   1. HERO
───────────────────────────────────────── */
.hm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bvo-navy-deep);
  /* remove default main padding-top since hero handles it */
  margin-top: calc(-1 * var(--bvo-nav-height));
  padding-top: var(--bvo-nav-height);
}

/* Background photo */
.hm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hm-hero__bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14, 20, 55, 0.92) 0%,
    rgba(20, 29, 66, 0.80) 55%,
    rgba(30, 42, 94, 0.55) 100%
  );
}

/* Grid lines */
.hm-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(79, 195, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 195, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Glow orbs */
.hm-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  z-index: 1;
}
.hm-hero__orb--1 {
  width: 480px; height: 480px;
  background: var(--bvo-blue);
  opacity: 0.14;
  top: -100px; right: -80px;
  animation: hmOrbFloat 8s ease-in-out infinite alternate;
}
.hm-hero__orb--2 {
  width: 320px; height: 320px;
  background: var(--bvo-electric);
  opacity: 0.10;
  bottom: -60px; left: 10%;
  animation: hmOrbFloat 11s ease-in-out infinite alternate-reverse;
}
@keyframes hmOrbFloat {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.2) translate(20px, -30px); }
}

/* Content grid */
.hm-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

/* Badge */
.hm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 195, 247, 0.12);
  border: 1px solid rgba(79, 195, 247, 0.3);
  color: var(--bvo-electric);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 1.4rem;
}
.hm-hero__badge-dot {
  font-size: 0.5rem;
  animation: hmBlink 2s ease-in-out infinite;
}
@keyframes hmBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* Title */
.hm-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--bvo-white);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.hm-hero__accent      { color: var(--bvo-electric); }
.hm-hero__accent-gold { color: var(--bvo-gold); }

/* Description */
.hm-hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.2rem;
}

/* CTA row */
.hm-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

/* Stats */
.hm-hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hm-hero__stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  color: var(--bvo-white);
  font-weight: 700;
  line-height: 1;
}
.hm-hero__stat-num em {
  font-style: normal;
  color: var(--bvo-electric);
  font-size: 1.1rem;
}
.hm-hero__stat-lbl {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}
.hm-hero__stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Right: floating cards */
.hm-hero__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hm-floatcard {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  backdrop-filter: blur(12px);
  position: relative;
  animation: hmCardFloat 5s ease-in-out infinite alternate;
}
.hm-floatcard--2 { animation-delay: -1.5s; margin-left: 1.5rem; }
.hm-floatcard--3 { animation-delay: -3s;   margin-right: 1rem; }
@keyframes hmCardFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.hm-floatcard__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}
.hm-floatcard__title {
  font-size: 0.92rem;
  color: white;
  font-weight: 600;
}
.hm-floatcard__sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1px;
}
.hm-floatcard__badge {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(79, 195, 247, 0.18);
  color: var(--bvo-electric);
  white-space: nowrap;
}
.hm-floatcard__badge--gold  { background: rgba(240, 192, 64, 0.18);  color: var(--bvo-gold); }
.hm-floatcard__badge--green { background: rgba(102, 187, 106, 0.18); color: #66bb6a; }

/* ─────────────────────────────────────────
   2. RIBBON
───────────────────────────────────────── */
.hm-ribbon {
  background: var(--bvo-navy);
  padding: 1rem 2rem;
  overflow: hidden;
}
.hm-ribbon__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
}
.hm-ribbon__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.hm-ribbon__item i { color: var(--bvo-electric); font-size: 0.82rem; }
.hm-ribbon__sep { color: rgba(255, 255, 255, 0.2); font-size: 1.2rem; }

/* ─────────────────────────────────────────
   3. FEATURE HIGHLIGHTS
───────────────────────────────────────── */
.hm-features {
  padding: 5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.hm-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hm-feat-card {
  position: relative;
  background: var(--bvo-white);
  border: 1.5px solid rgba(30, 42, 94, 0.08);
  border-radius: 22px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
/* Top gradient bar on hover */
.hm-feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bvo-navy), var(--bvo-electric));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.hm-feat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--bvo-shadow-lg);
  border-color: rgba(30, 42, 94, 0.14);
}
.hm-feat-card:hover::before { transform: scaleX(1); }

/* Featured variant */
.hm-feat-card--featured {
  background: linear-gradient(160deg, var(--bvo-navy-deep), var(--bvo-navy-mid));
  border-color: transparent;
  color: var(--bvo-white);
}
.hm-feat-card--featured .hm-feat-card__desc { color: rgba(255, 255, 255, 0.65); }
.hm-feat-card--featured .hm-feat-card__link { color: var(--bvo-electric); }
.hm-feat-card--featured::before { display: none; }
.hm-feat-card--featured:hover {
  box-shadow: 0 20px 50px rgba(30, 42, 94, 0.45);
  border-color: transparent;
}

.hm-feat-card__tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--bvo-electric);
  color: var(--bvo-navy-deep);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.hm-feat-card__icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--bvo-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--bvo-blue);
  margin: 0 auto 1.2rem;
  transition: background 0.3s, color 0.3s;
}
.hm-feat-card:not(.hm-feat-card--featured):hover .hm-feat-card__icon {
  background: linear-gradient(135deg, var(--bvo-navy), var(--bvo-blue));
  color: white;
}
.hm-feat-card--featured .hm-feat-card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--bvo-electric);
}

.hm-feat-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: inherit;
}
.hm-feat-card__desc {
  font-size: 0.87rem;
  color: var(--bvo-text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.hm-feat-card__link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--bvo-blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.hm-feat-card__link i { transition: transform 0.2s; font-size: 0.75rem; }
.hm-feat-card:hover .hm-feat-card__link i { transform: translateX(4px); }

/* ─────────────────────────────────────────
   4. PRODUCTS SECTION
───────────────────────────────────────── */
.hm-products {
  padding: 5rem 2rem;
  background: var(--bvo-bg);
  max-width: 100%;
}
.hm-products .hm-section-header { max-width: 1280px; margin-left: auto; margin-right: auto; }

/* Tabs */
/* ─── TABS: mobile scroll fix ─── */
.hm-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bvo-white);
  border-radius: 50px;
  padding: 0.4rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  box-shadow: var(--bvo-shadow);

  /* ← Tambah ini */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
  flex-wrap: nowrap;            /* jangan wrap, biar bisa scroll */
}

/* Hide scrollbar Chrome/Safari */
.hm-tabs::-webkit-scrollbar {
  display: none;
}

.hm-tab {
  flex: 1;
  padding: 0.65rem 1.2rem;
  border: none;
  background: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bvo-text-muted);
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;

  /* ← Tambah ini agar tidak menyusut */
  flex-shrink: 0;
}
.hm-tab i { font-size: 0.8rem; }
.hm-tab.active {
  background: linear-gradient(135deg, var(--bvo-navy), var(--bvo-blue));
  color: var(--bvo-white);
  box-shadow: 0 4px 14px rgba(30, 42, 94, 0.25);
}

/* Panels */
.hm-tab-panels { max-width: 1280px; margin: 0 auto; }
.hm-tab-panel {
  display: none;
  animation: hmFadeIn 0.3s ease;
}
.hm-tab-panel.active { display: block; }
@keyframes hmFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cards grid */
.hm-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.4rem;
}

.hm-prod-card {
  background: var(--bvo-white);
  border-radius: var(--bvo-radius);
  overflow: hidden;
  border: 1px solid rgba(30, 42, 94, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.hm-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bvo-shadow-lg);
}

.hm-prod-card__img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.hm-prod-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hm-prod-card:hover .hm-prod-card__img-wrap img { transform: scale(1.04); }

.hm-prod-card__img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bvo-navy-mid), var(--bvo-blue), var(--bvo-electric));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.hm-prod-card__body {
  padding: 1.3rem 1.3rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hm-prod-card__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bvo-navy);
  margin-bottom: 0.4rem;
}
.hm-prod-card__desc {
  font-size: 0.84rem;
  color: var(--bvo-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.hm-prod-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.3rem;
  border-top: 1px solid rgba(30, 42, 94, 0.07);
  gap: 0.5rem;
}
.hm-prod-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bvo-navy);
  line-height: 1.2;
}
.hm-prod-card__price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--bvo-text-muted);
  font-weight: 400;
}
.hm-prod-card__price--contact {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bvo-blue);
}
.hm-prod-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 18px;
  background: var(--bvo-navy);
  color: var(--bvo-white);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hm-prod-card__btn i { font-size: 0.72rem; transition: transform 0.2s; }
.hm-prod-card:hover .hm-prod-card__btn {
  background: var(--bvo-blue);
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(30, 42, 94, 0.25);
}
.hm-prod-card:hover .hm-prod-card__btn i { transform: translateX(3px); }

/* Empty state */
.hm-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
  color: var(--bvo-text-muted);
}
.hm-empty i { font-size: 2.5rem; display: block; margin-bottom: 0.8rem; opacity: 0.4; }
.hm-empty p { font-size: 0.95rem; font-style: italic; }

/* ─────────────────────────────────────────
   5. STATS
───────────────────────────────────────── */
.hm-stats {
  background: linear-gradient(135deg, var(--bvo-navy-deep), var(--bvo-navy-mid));
  padding: 4.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.hm-stats::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79, 195, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 195, 247, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hm-stats__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.hm-stats__item {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}
.hm-stats__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bvo-white);
  font-weight: 700;
  line-height: 1;
}
.hm-stats__suf {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--bvo-electric);
  font-weight: 700;
}
.hm-stats__lbl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}
.hm-stats__sep {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   6. SERVICES
───────────────────────────────────────── */
.hm-services {
  padding: 5rem 2rem;
  background: var(--bvo-white);
  position: relative;
  overflow: hidden;
}
.hm-services::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hm-services .hm-section-header { max-width: 1280px; margin-left: auto; margin-right: auto; }

.hm-services__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem;
}

.hm-svc-card {
  padding: 1.8rem;
  border-radius: var(--bvo-radius);
  border: 1.5px solid rgba(30, 42, 94, 0.08);
  background: var(--bvo-white);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hm-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bvo-navy), var(--bvo-electric));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.hm-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bvo-shadow);
  border-color: rgba(30, 42, 94, 0.14);
}
.hm-svc-card:hover::before { transform: scaleX(1); }

.hm-svc-card__icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--bvo-bg-2);
  border: 1.5px solid rgba(30, 42, 94, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--bvo-blue);
  margin-bottom: 1.1rem;
  transition: background 0.3s, color 0.3s;
}
.hm-svc-card:hover .hm-svc-card__icon {
  background: linear-gradient(135deg, var(--bvo-navy), var(--bvo-blue));
  color: var(--bvo-white);
  border-color: transparent;
}
.hm-svc-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--bvo-navy);
  margin-bottom: 0.5rem;
}
.hm-svc-card__desc {
  font-size: 0.84rem;
  color: var(--bvo-text-muted);
  line-height: 1.72;
}

/* ─────────────────────────────────────────
   7. WHY US
───────────────────────────────────────── */
.hm-whyus {
  padding: 5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hm-whyus .bvo-eyebrow { justify-content: flex-start; }
.hm-whyus .bvo-eyebrow::before { display: none; }
.hm-whyus__desc {
  font-size: 0.97rem;
  color: var(--bvo-text-muted);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.hm-whyus__right {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.hm-why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  border-radius: var(--bvo-radius);
  background: var(--bvo-white);
  border: 1px solid rgba(30, 42, 94, 0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}
.hm-why-item:hover {
  transform: translateX(6px);
  box-shadow: var(--bvo-shadow);
}
.hm-why-item__num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bvo-navy), var(--bvo-blue));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.hm-why-item__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--bvo-navy);
  margin-bottom: 0.2rem;
}
.hm-why-item__desc {
  font-size: 0.82rem;
  color: var(--bvo-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─────────────────────────────────────────
   8. TESTIMONIAL
───────────────────────────────────────── */
.hm-testi {
  padding: 5rem 2rem;
  background: var(--bvo-bg);
}
.hm-testi .hm-section-header { max-width: 1280px; margin-left: auto; margin-right: auto; }

.hm-testi__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.hm-testi-card {
  background: var(--bvo-white);
  border-radius: var(--bvo-radius);
  border: 1px solid rgba(30, 42, 94, 0.07);
  padding: 1.8rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hm-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bvo-shadow);
}
.hm-testi-card--featured {
  background: linear-gradient(160deg, var(--bvo-navy-deep), var(--bvo-navy-mid));
  border-color: transparent;
}
.hm-testi-card--featured .hm-testi-card__quote { color: rgba(255, 255, 255, 0.8); }
.hm-testi-card--featured .hm-testi-card__name  { color: white; }
.hm-testi-card--featured .hm-testi-card__role  { color: rgba(255, 255, 255, 0.5); }
.hm-testi-card--featured .hm-testi-card__stars { color: var(--bvo-gold); }

.hm-testi-card__stars {
  color: var(--bvo-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.hm-testi-card__quote {
  font-size: 0.9rem;
  color: var(--bvo-text);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.hm-testi-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hm-testi-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bvo-navy), var(--bvo-blue));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hm-testi-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bvo-navy);
}
.hm-testi-card__role {
  font-size: 0.76rem;
  color: var(--bvo-text-muted);
  margin-top: 1px;
}

/* ─────────────────────────────────────────
   9. LOCATION
───────────────────────────────────────── */
.hm-location {
  padding: 5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hm-location .bvo-eyebrow { justify-content: flex-start; }
.hm-location .bvo-eyebrow::before { display: none; }
.hm-location__desc {
  font-size: 0.96rem;
  color: var(--bvo-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.hm-location__list {
  list-style: none;
  margin-bottom: 2rem;
}
.hm-location__list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--bvo-text-muted);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.hm-location__list i {
  color: var(--bvo-blue);
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
}
.hm-location__map-wrap {
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--bvo-shadow-lg);
  border: 1px solid rgba(30, 42, 94, 0.08);
}

/* ─────────────────────────────────────────
   10. CTA
───────────────────────────────────────── */
.hm-cta {
  margin: 0 2rem 4rem;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--bvo-navy-deep) 0%, var(--bvo-navy-mid) 50%, var(--bvo-blue) 100%);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hm-cta__glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.hm-cta__dots {
  position: absolute;
  bottom: 20px; right: 24px;
  display: grid;
  grid-template-columns: repeat(10, 8px);
  gap: 6px;
  opacity: 0.1;
  pointer-events: none;
}
.hm-cta__dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: white;
  display: block;
}
.hm-cta__content { position: relative; z-index: 1; }
.hm-cta__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--bvo-white);
  margin-bottom: 0.8rem;
}
.hm-cta__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.hm-cta__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hm-whyus, .hm-location {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hm-hero__content {
    grid-template-columns: 1fr;
  }
  .hm-hero__right { display: none; }
  .hm-testi__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hm-features__grid { grid-template-columns: 1fr; }
  .hm-testi__grid    { grid-template-columns: 1fr; }
  .hm-stats__inner   { flex-wrap: wrap; gap: 2rem; }
  .hm-stats__sep     { display: none; }

.hm-tabs {
    max-width: 100%;
    border-radius: 50px; /* ← tetap pill, jangan kotak */
    padding: 0.4rem;
  }
  .hm-tab { 
    font-size: 0.82rem; 
    padding: 0.6rem 1rem; 
  }


  .hm-cta { margin: 0 1rem 3rem; padding: 3rem 1.5rem; }
  .hm-hero__content { padding: 3rem 1.5rem 2.5rem; }
  .hm-hero__cta { flex-direction: column; align-items: flex-start; }
  .hm-hero__stats { flex-wrap: wrap; gap: 1rem; }
  .hm-location__map-wrap { height: 260px; }
}

@media (max-width: 480px) {
  .hm-ribbon__sep { display: none; }
  .hm-ribbon__inner { gap: 0.4rem 0.8rem; }
  .hm-section-header { padding: 0 0.5rem; }
  .hm-cta__btns { flex-direction: column; align-items: center; }
}