:root {
  --blue-deep: #0d1b5e;
  --blue-main: #1a237e;
  --blue-mid: #1565c0;
  --blue-light: #1e88e5;
  --gold: #ffd600;
  --gold-dark: #ffc107;
  --gold-dim: rgba(255, 214, 0, 0.15);
  --white: #ffffff;
  --off-white: #f4f6fb;
  --gray-100: #e8eaf6;
  --gray-400: #90a4ae;
  --gray-600: #546e7a;
  --gray-800: #263238;
  --text-dark: #0d1b5e;
  --text-mid: #37474f;
  --text-light: #78909c;
  --shadow-sm: 0 2px 12px rgba(13, 27, 94, 0.1);
  --shadow-md: 0 6px 30px rgba(13, 27, 94, 0.15);
  --shadow-lg: 0 16px 50px rgba(13, 27, 94, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

/* ================== RESET & BASE ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ================================== UTILITY =========================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-dim);
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--blue-main);
}
.section-title span {
  color: var(--gold-dark);
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--blue-deep);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue-main);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 35, 126, 0.35);
}
.btn-wa {
  background: #25d366;
  color: var(--white);
}
.btn-wa:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.from-left {
  transform: translateX(-50px);
}
.reveal.from-right {
  transform: translateX(50px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* =========================== NAVBAR ================================== */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition:
    background var(--transition),
    backdrop-filter var(--transition),
    box-shadow var(--transition),
    padding var(--transition);
}
#navbar.scrolled {
  background: rgba(13, 27, 94, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--blue-deep);
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text span {
  color: var(--gold);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-menu a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-menu a:hover {
  color: var(--gold);
}
.nav-menu a:hover::after {
  width: 100%;
}
.nav-cta {
  margin-left: 10px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(13, 27, 94, 0.97);
  backdrop-filter: blur(20px);
  padding: 0 20px;
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.nav-mobile.open {
  max-height: 400px;
  padding: 10px 20px 20px;
}
.nav-mobile a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile a:last-child {
  border-bottom: none;
}

/* ========================================= HERO SECTION ==================== */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../src/WhatsApp\ Image\ 2026-04-21\ at\ 15.23.02.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 94, 0.93) 0%,
    rgba(13, 27, 94, 0.75) 50%,
    rgba(21, 101, 192, 0.5) 100%
  );
}
/* Diagonal gold accent */
.hero-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 214, 0, 0.15);
  border: 1px solid rgba(255, 214, 0, 0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  animation: fadeSlideIn 0.7s ease 0.2s both;
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 18px;
  animation: fadeSlideIn 0.8s ease 0.4s both;
}
.hero-heading .highlight {
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeSlideIn 0.8s ease 0.6s both;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
  animation: fadeSlideIn 0.8s ease 0.8s both;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  animation: fadeSlideIn 0.8s ease 1s both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================== SECTION: MENGAPA PILIH KAMI ===================== */

#keunggulan {
  padding: 90px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
#keunggulan::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 35, 126, 0.06), transparent 70%);
  border-radius: 50%;
}
.keunggulan-header {
  text-align: center;
  margin-bottom: 56px;
}
.keunggulan-header .section-sub {
  margin-inline: auto;
}
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.keunggulan-card {
  background: var(--white);
  border: 1px solid rgba(26, 35, 126, 0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.keunggulan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-main), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.keunggulan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.keunggulan-card:hover::before {
  transform: scaleX(1);
}
.keunggulan-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.keunggulan-card:hover .keunggulan-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.keunggulan-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}
.keunggulan-card:hover .keunggulan-icon svg {
  fill: var(--blue-deep);
}
.keunggulan-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-main);
  margin-bottom: 10px;
}
.keunggulan-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================= SECTION: LAYANAN ================================ */

#layanan {
  padding: 90px 0;
  background: var(--white);
}
.layanan-header {
  text-align: center;
  margin-bottom: 56px;
}
.layanan-header .section-sub {
  margin-inline: auto;
}
.layanan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.layanan-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(26, 35, 126, 0.08);
  background: var(--white);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.layanan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.layanan-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.layanan-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.layanan-card:hover .layanan-img-wrap img {
  transform: scale(1.08);
}
.layanan-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 94, 0.75) 0%,
    transparent 60%
  );
}
.layanan-num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(13, 27, 94, 0.7);
  padding: 4px 10px;
  border-radius: 100px;
}
.layanan-body {
  padding: 22px 24px;
}
.layanan-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-main);
  margin-bottom: 8px;
}
.layanan-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.layanan-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 10px 20px;
}

/* ============================== SECTION: MASALAH KOMPOR ============================= */

#masalah {
  padding: 90px 0;
  background: var(--off-white);
}
.masalah-header {
  text-align: center;
  margin-bottom: 70px;
}
.masalah-header .section-sub {
  margin-inline: auto;
}
.masalah-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.masalah-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.masalah-item.reverse {
  direction: rtl;
}
.masalah-item.reverse > * {
  direction: ltr;
}
.masalah-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.masalah-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.masalah-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.2), transparent)
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.masalah-content {
}
.masalah-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(26, 35, 126, 0.08);
  line-height: 1;
  margin-bottom: 4px;
}
.masalah-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-main);
  margin-bottom: 12px;
  line-height: 1.2;
}
.masalah-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.masalah-desc strong {
  color: var(--blue-main);
}

/* ======================= SECTION: TESTIMONI — INFINITE MARQUEE 2 ROWS ====================== */

#testimoni {
  padding: 90px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
#testimoni::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(26, 35, 126, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 193, 7, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.testimoni-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimoni-header .section-sub {
  margin-inline: auto;
}

/* Marquee track wrapper — clips overflow */
.marquee-outer {
  position: relative;
  overflow: hidden;
}
/* Fade edges left & right */
.marquee-outer::before,
.marquee-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}
.marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

/* Each row */
.marquee-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  width: max-content;
}
.marquee-row:last-child {
  margin-bottom: 0;
}

/* Row 1 scrolls left, row 2 scrolls right */
.marquee-row.row-left {
  animation: marqueeLeft 45s linear infinite;
}
.marquee-row.row-right {
  animation: marqueeRight 40s linear infinite;
}
.marquee-row:hover {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Individual card */
.testi-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid rgba(26, 35, 126, 0.09);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  cursor: default;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Stars */
.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.testi-stars span {
  color: #f59e0b;
  font-size: 1rem;
}

/* Quote text */
.testi-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(26, 35, 126, 0.07);
  padding-top: 16px;
}

/* Avatar — colored circle with initials */
.testi-avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
/* Photo avatar */
.testi-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(26, 35, 126, 0.1);
}

.testi-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-main);
  line-height: 1.2;
}
.testi-city {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ========================== SECTION: FORM KONSULTASI ========================= */

#konsultasi {
  padding: 90px 0;
  background: var(--white);
}
.konsultasi-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.konsultasi-info {
}
.konsultasi-info .section-sub {
  margin-bottom: 30px;
}
.konsultasi-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.konsultasi-contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
  border: 1px solid rgba(255, 193, 7, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.konsultasi-contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-dark);
}
.konsultasi-contact-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 2px;
}
.konsultasi-contact-value {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-main);
}
.konsultasi-form-wrap {
  background: var(--off-white);
  border: 1px solid rgba(26, 35, 126, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-main);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid rgba(26, 35, 126, 0.15);
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.form-control:focus {
  border-color: var(--blue-main);
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.08);
}
.form-control::placeholder {
  color: var(--gray-400);
}
textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
select.form-control {
  cursor: pointer;
}
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 15px;
}
.form-error {
  display: none;
  font-size: 0.8rem;
  color: #e53935;
  margin-top: 5px;
}
.form-group.error .form-control {
  border-color: #e53935;
}
.form-group.error .form-error {
  display: block;
}

/* =========================== FLOATING WHATSAPP BUTTON ========================== */

.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 22px 13px 16px;
  border-radius: 100px;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  animation:
    floatIn 0.8s ease 1.5s both,
    bobble 3s ease-in-out 3s infinite;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.floating-wa:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.55);
}
.floating-wa svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  flex-shrink: 0;
}
.floating-wa-label {
  display: none;
}
@media (min-width: 480px) {
  .floating-wa-label {
    display: block;
  }
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bobble {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ====================== FOOTER ===================== */

#footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .nav-logo {
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-head);
  transition: var(--transition);
}
.footer-social-btn:hover {
  background: var(--gold);
  color: var(--blue-deep);
  border-color: var(--gold);
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 8px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: "›";
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a {
  color: var(--gold);
}

/* ======================== SECTION: MITRA KERJA SAMA ======================= */

#mitra {
  padding: 56px 0;
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
}
#mitra::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0px,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 60px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0px,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 60px
    );
  pointer-events: none;
}
.mitra-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mitra-label-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}
.mitra-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 214, 0, 0.4),
    transparent
  );
}
.mitra-label-text {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.mitra-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.mitra-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 28px 40px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  cursor: default;
  min-width: 500px;
}
.mitra-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 214, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}
.mitra-logo-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 214, 0, 0.4);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mitra-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mitra-logo-fallback {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}
.mitra-info {
}
.mitra-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.mitra-desc {
  font-size: 0.91rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

/* =========================== SECTION: LOKASI / MAPS ========================== */

#lokasi {
  padding: 90px 0;
  background: var(--white);
}
.lokasi-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: stretch;
}
.lokasi-info {
  display: flex;
  flex-direction: column;
}
.lokasi-address-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--off-white);
  border: 1px solid rgba(26, 35, 126, 0.07);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 12px;
}
.lokasi-address-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lokasi-address-icon svg {
  width: 20px;
  height: 20px;
}
.lokasi-address-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.lokasi-address-text {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.lokasi-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 35, 126, 0.08);
  min-height: 420px;
  position: relative;
}
.lokasi-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* =========================== RESPONSIVE ============================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .konsultasi-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-mobile {
    display: flex;
  }

  .masalah-item,
  .masalah-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
  }
  .testi-card {
    width: 280px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    justify-content: center;
  }
  .hero-stats {
    gap: 16px;
  }
  .konsultasi-form-wrap {
    padding: 24px 20px;
  }
}

/* Stagger delays for cards */
.layanan-card:nth-child(1) {
  transition-delay: 0.05s;
}
.layanan-card:nth-child(2) {
  transition-delay: 0.1s;
}
.layanan-card:nth-child(3) {
  transition-delay: 0.15s;
}
.layanan-card:nth-child(4) {
  transition-delay: 0.2s;
}
.layanan-card:nth-child(5) {
  transition-delay: 0.25s;
}
.keunggulan-card:nth-child(1) {
  transition-delay: 0s;
}
.keunggulan-card:nth-child(2) {
  transition-delay: 0.1s;
}
.keunggulan-card:nth-child(3) {
  transition-delay: 0.2s;
}
.keunggulan-card:nth-child(4) {
  transition-delay: 0.3s;
}
