/* ================================================
   HERO SECTION
   ================================================ */

#home {
  min-height: 100vh;
  background: linear-gradient(rgba(5, 0, 0, 0.55), rgba(20, 5, 5, 0.72)),
    url('../images/background.png') center/cover fixed;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left { animation: fadeLeft 0.9s ease; }

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50px;
  padding: 7px 20px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: var(--gold-light); display: block; }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}
.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeRight 0.9s ease 0.2s both;
}

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

.hero-card {
  background: var(--glass-maroon);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 16px;
  padding: 22px 28px;
  transition: var(--transition);
}
.hero-card:hover { transform: translateY(-4px); border-color: var(--gold); }

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.hero-card-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
}
.hero-card-icon i { color: var(--maroon-deep); font-size: 18px; }
.hero-card-title { color: var(--white); font-size: 1rem; font-weight: 600; }
.hero-card-value { color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }
.hero-card-sub { color: rgba(255, 255, 255, 0.55); font-size: 0.8rem; margin-top: 4px; }

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  margin-top: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* ================================================
   CLIENTS STRIP
   ================================================ */

.clients-strip {
    background: var(--maroon-deep);
    padding: 20px 0;
    border-top: 1px solid rgba(201,168,76,.2);
    border-bottom: 1px solid rgba(201,168,76,.2);
}

.clients-strip {
    background: var(--maroon-deep);
    padding: 20px 0;
    border-top: 1px solid rgba(201,168,76,.2);
    border-bottom: 1px solid rgba(201,168,76,.2);
}

.clients-inner {
    max-width: 1300px;
    margin: auto;
    padding: 0 5%;

    display: flex;
    align-items: stretch;
    gap: 30px;

    position: relative; /* Tambah ini */
}

.clients-label {
    flex-shrink: 0;
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 46px;
    padding: 0 20px;

    /* Ganti dari rgba transparan ke warna solid maroon */
    background: var(--maroon-deep);          /* ← INI KUNCINYA */
    border: 1px solid rgba(201,168,76,.4);
    border-radius: 999px;

    color: var(--gold-light);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 2px;
}

.clients-track {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;

    /* Fade kiri (dekat label) dan fade kanan */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 88%, transparent 100%);
}

.clients-marquee {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.clients-marquee span {
    display: flex;
    align-items: center;
    height: 46px;
    white-space: nowrap;

    color: rgba(255,255,255,.75);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}