/* ================================================================
   VIRENDRA GROUP — Design System
   Palet: Navy Deep + Sky Blue (#00AEEF) + Fire Orange (#F7941D) + Gold (#D4A853)
   Typography: Cormorant Garamond (display) + Plus Jakarta Sans (body)
   ================================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Montserrat:wght@500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Warna Utama */
  --navy-deep:   #04091E;
  --navy-mid:    #08112A;
  --navy-card:   #0C1A35;
  --navy-border: #132040;

  /* Brand Colors */
  --sky:         #00AEEF;
  --sky-glow:    rgba(0, 174, 239, 0.25);
  --sky-dim:     rgba(0, 174, 239, 0.12);
  --electric:    #1E72B8;
  --fire:        #F7941D;
  --fire-glow:   rgba(247, 148, 29, 0.25);
  --fire-dim:    rgba(247, 148, 29, 0.12);
  --gold:        #D4A853;
  --gold-glow:   rgba(212, 168, 83, 0.3);
  --gold-dim:    rgba(212, 168, 83, 0.1);

  /* Gradients */
  --grad-brand:     linear-gradient(135deg, #F7941D 0%, #F15A24 35%, #1E72B8 70%, #00AEEF 100%);
  --grad-sky:       linear-gradient(135deg, #00AEEF, #1E72B8);
  --grad-fire:      linear-gradient(135deg, #F7941D, #F15A24);
  --grad-gold:      linear-gradient(135deg, #C9A227, #D4A853, #E8C36A);
  --grad-dark:      linear-gradient(180deg, #04091E 0%, #08112A 100%);
  --grad-glass:     linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);

  /* Typography */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-label:   'Montserrat', sans-serif;

  /* Text */
  --text-hi:   #F5F8FB;
  --text-mid:  rgba(245,248,251,0.72);
  --text-low:  rgba(245,248,251,0.45);

  /* Spacing */
  --section-py: 100px;
  --container:  1240px;

  /* Animation */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-brand: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--navy-deep);
  color: var(--text-hi);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none; /* custom cursor */
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: none; border: none; background: none; font: inherit; }

/* ── Custom Cursor ── */
#cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--sky);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, background 0.2s, width 0.2s, height 0.2s;
  mix-blend-mode: exclusion;
}
#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(0,174,239,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out), width 0.3s, height 0.3s, border-color 0.2s;
}
body.cursor-hover #cursor { width: 20px; height: 20px; background: var(--fire); }
body.cursor-hover #cursor-ring { width: 60px; height: 60px; border-color: rgba(247,148,29,0.4); }

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-brand);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography Scale ── */
.eyebrow {
  font-family: var(--ff-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--grad-brand);
  display: block;
  flex-shrink: 0;
}
.eyebrow.fire { color: var(--fire); }
.eyebrow.fire::before { background: var(--grad-fire); }
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before { background: var(--grad-gold); }

h1, h2, h3 { font-family: var(--ff-display); line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }

p { color: var(--text-mid); max-width: 65ch; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease-brand), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::after { transform: translateX(110%) skewX(-15deg); }
.btn:hover { transform: translateY(-3px); }

.btn-sky {
  background: var(--grad-sky);
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(0,174,239,0.5);
}
.btn-sky:hover { box-shadow: 0 12px 40px -8px rgba(0,174,239,0.65); }

.btn-fire {
  background: var(--grad-fire);
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(247,148,29,0.5);
}
.btn-fire:hover { box-shadow: 0 12px 40px -8px rgba(247,148,29,0.65); }

.btn-gold {
  background: var(--grad-gold);
  color: #1a1000;
  box-shadow: 0 8px 30px -8px rgba(212,168,83,0.5);
}
.btn-gold:hover { box-shadow: 0 12px 40px -8px rgba(212,168,83,0.65); }

.btn-outline {
  background: transparent;
  color: var(--text-hi);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--sky);
  color: var(--sky);
  box-shadow: 0 8px 30px -8px var(--sky-glow);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(37,211,102,0.4);
}
.btn-wa:hover { box-shadow: 0 12px 40px -8px rgba(37,211,102,0.6); }

/* ── Glass Card ── */
.glass-card {
  background: var(--grad-glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,174,239,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s, height 0.3s;
}
.navbar.scrolled {
  background: rgba(4,9,30,0.92);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.4);
  height: 64px;
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: filter 0.3s;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
  font-family: var(--ff-label);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-link:hover, .nav-link.active { color: var(--text-hi); background: rgba(255,255,255,0.06); }
.nav-link .nav-arrow { font-size: 10px; transition: transform 0.2s; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Mega/dropdown menu */
.nav-drop { display: none; }
.nav-item:hover .nav-drop { display: block; }
.nav-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8,17,42,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  min-width: 220px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  animation: dropIn 0.2s var(--ease-out);
}
@keyframes dropIn { from { opacity:0; transform: translateX(-50%) translateY(-8px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }

.nav-drop a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--text-mid);
  transition: color 0.2s, background 0.2s;
}
.nav-drop a:hover { color: var(--text-hi); background: rgba(255,255,255,0.06); }
.nav-drop a .drop-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.nav-drop a .drop-icon.sky  { background: var(--sky-dim); }
.nav-drop a .drop-icon.fire { background: var(--fire-dim); }
.nav-drop a .drop-icon.gold { background: var(--gold-dim); }

.nav-cta {
  padding: 10px 22px;
  background: var(--grad-brand);
  color: #fff;
  border-radius: 50px;
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: box-shadow 0.25s, transform 0.25s var(--ease-brand);
  box-shadow: 0 4px 20px rgba(247,148,29,0.3);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(247,148,29,0.45); }

/* Hamburger Mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.ham-line {
  width: 22px; height: 2px;
  background: var(--text-hi);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}
.nav-hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .ham-line:nth-child(2) { opacity: 0; }
.nav-hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-overlay.visible { opacity: 1; }

/* Mobile Menu Panel */
.nav-mobile {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: #060d22;
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile.open { transform: translateX(0); }

.nav-mobile-logo { padding: 8px 0 24px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px; }
.nav-mobile-logo img { height: 36px; }

.nav-mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.2s, background 0.2s;
}
.nav-mobile-link:hover { color: var(--text-hi); background: rgba(255,255,255,0.06); }
.nav-mobile-link .mob-icon { font-size: 18px; }

.nav-mobile-sub {
  padding: 4px 0 4px 44px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile-sub a {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text-low);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile-sub a:hover { color: var(--sky); background: var(--sky-dim); }

.nav-mobile-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 10px 0;
}

.nav-mobile-cta {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Foto background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/wedding-1.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

/* Overlay gradasi berlapis */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(4,9,30,0.92) 0%, rgba(4,9,30,0.6) 55%, rgba(4,9,30,0.2) 100%),
    linear-gradient(to top, rgba(4,9,30,0.85) 0%, transparent 50%);
}

/* Canvas partikel */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Aurora blobs */
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: auroraFloat 12s ease-in-out infinite;
  pointer-events: none;
}
.aurora-1 { width: 500px; height: 500px; background: radial-gradient(circle, #00AEEF, transparent); top: -150px; left: -100px; animation-delay: 0s; }
.aurora-2 { width: 400px; height: 400px; background: radial-gradient(circle, #F7941D, transparent); bottom: -100px; right: 10%; animation-delay: -4s; animation-duration: 10s; }
.aurora-3 { width: 300px; height: 300px; background: radial-gradient(circle, #1E72B8, transparent); top: 30%; right: 5%; animation-delay: -8s; animation-duration: 14s; }
@keyframes auroraFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Konten Hero */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 140px 0 80px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--ff-label);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-hi);
  margin-bottom: 32px;
  animation: fadeSlideIn 0.8s var(--ease-out) 0.2s both;
}
.hero-badge .badge-dot {
  display: none;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(247,148,29,0.5); } 50% { box-shadow: 0 0 0 8px rgba(247,148,29,0); } }

.hero h1 {
  animation: fadeSlideIn 0.9s var(--ease-out) 0.35s both;
  margin-bottom: 24px;
}
.hero h1 .grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 40px;
  animation: fadeSlideIn 0.9s var(--ease-out) 0.5s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeSlideIn 0.9s var(--ease-out) 0.65s both;
}

/* Stats strip di bawah hero */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeSlideIn 0.9s var(--ease-out) 0.8s both;
  flex-wrap: wrap;
}
.stat-item { }
.stat-number {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.stat-label {
  font-size: 12px;
  font-family: var(--ff-label);
  letter-spacing: 0.06em;
  color: var(--text-low);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: fadeSlideIn 1s var(--ease-out) 1.2s both;
}
.scroll-hint span {
  font-family: var(--ff-label);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-low);
  text-transform: uppercase;
}
.scroll-wheel {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--sky);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { opacity:1; transform: translateY(0); } 50% { opacity:0; transform: translateY(14px); } }

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

/* ================================================================
   SECTION: UNIT BISNIS (Services)
   ================================================================ */
.section-services {
  padding: var(--section-py) 0;
  position: relative;
}

/* V-shape diagonal dekoratif */
.section-services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--navy-deep), transparent);
  z-index: 1;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header p { margin: 16px auto 0; text-align: center; }

/* Service Cards — 3D Tilt */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: none;
}
.service-card:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 24px 64px -20px rgba(0,0,0,0.6);
}

/* Image area */
.service-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-card-img img { transform: scale(1.08); }

/* Color glow bar per unit */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card.card-sky::after  { background: var(--grad-sky);  }
.service-card.card-fire::after { background: var(--grad-fire); }
.service-card.card-gold::after { background: var(--grad-gold); }
.service-card.card-brand::after{ background: var(--grad-brand);}
.service-card:hover::after { opacity: 1; }

/* Card image overlay */
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,17,42,0.9) 0%, rgba(8,17,42,0.2) 60%, transparent 100%);
}

/* Unit logo di foto */
.service-unit-logo {
  position: absolute;
  bottom: 16px;
  left: 20px;
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Card body */
.service-card-body {
  padding: 28px 28px 32px;
}
.service-card-body .eyebrow { margin-bottom: 10px; }
.service-card-body h3 { margin-bottom: 12px; }
.service-card-body p { font-size: 14px; margin-bottom: 24px; }

/* Feature list */
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
}
.feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-sky  { background: var(--sky);  }
.dot-fire { background: var(--fire); }
.dot-gold { background: var(--gold); }

/* ================================================================
   SECTION: TENTANG VIRENDRA GROUP
   ================================================================ */
.section-about {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, transparent, rgba(0,174,239,0.04) 50%, transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photos {
  position: relative;
  height: 520px;
}
.about-photo-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 80%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.06);
}
.about-photo-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 52%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid rgba(247,148,29,0.2);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}
.about-photo-main img, .about-photo-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Badge tahun berdiri */
.about-year-badge {
  position: absolute;
  top: 50%; left: 58%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(247,148,29,0.4);
  z-index: 2;
}
.about-year-badge .year-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.about-year-badge .year-label {
  font-family: var(--ff-label);
  font-size: 8px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}
.about-text .eyebrow { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about-value {
  background: var(--grad-glass);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  padding: 20px;
  transition: border-color 0.2s;
}
.about-value:hover { border-color: rgba(0,174,239,0.2); }
.value-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.value-title {
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 6px;
  display: block;
}
.value-desc { font-size: 13px; max-width: none; }

/* ================================================================
   SECTION: KENAPA PILIH KAMI
   ================================================================ */
.section-why {
  padding: var(--section-py) 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.why-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-brand), box-shadow 0.3s;
}
.why-card:hover {
  border-color: rgba(0,174,239,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(0,174,239,0.2);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  background: var(--sky-dim);
  border: 1px solid rgba(0,174,239,0.15);
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.why-card p { font-size: 13.5px; margin: 0 auto; text-align: center; }

/* ================================================================
   SECTION: GALERI / PORTFOLIO
   ================================================================ */
.section-portfolio {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, transparent, rgba(247,148,29,0.03) 50%, transparent);
}

.portfolio-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 48px;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-mid);
  transition: all 0.2s;
  cursor: none;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--grad-sky);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px var(--sky-glow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-card);
  cursor: none;
}
.portfolio-item.wide { grid-column: span 2; }
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out), filter 0.4s;
  filter: brightness(0.85);
}
.portfolio-item:hover img { transform: scale(1.06); filter: brightness(1); }
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,9,30,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-label {
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ================================================================
   SECTION: PAKET LAYANAN
   ================================================================ */
.section-packages {
  padding: var(--section-py) 0;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
/* Card flip 3D */
.pkg-card {
  perspective: 1000px;
  height: 380px;
  cursor: none;
}
.pkg-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out);
}
.pkg-card:hover .pkg-card-inner { transform: rotateY(180deg); }

.pkg-front, .pkg-back {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 32px;
  overflow: hidden;
}

.pkg-front {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pkg-front-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  transition: opacity 0.3s;
}
.pkg-card:hover .pkg-front-bg { opacity: 0.4; }
.pkg-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,17,42,0.95) 40%, rgba(8,17,42,0.2) 100%);
}
.pkg-front-content { position: relative; z-index: 1; }
.pkg-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.pkg-front h3 { margin-bottom: 8px; }
.pkg-front .pkg-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--ff-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--sky-dim);
  color: var(--sky);
  border: 1px solid rgba(0,174,239,0.2);
}
.pkg-hint {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--ff-label);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-low);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 1;
}
.pkg-hint::after {
  content: '↻';
  font-size: 14px;
  animation: rotateSpin 3s linear infinite;
}
@keyframes rotateSpin { to { transform: rotate(360deg); } }

.pkg-back {
  background: linear-gradient(135deg, #08112A, #0C1A35);
  border: 1px solid rgba(0,174,239,0.15);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
}
.pkg-back-top { margin-bottom: 20px; }
.pkg-price {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-hi);
}
.pkg-price-original {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-low);
  text-decoration: line-through;
  margin-left: 8px;
}
.pkg-includes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}
.pkg-include-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-mid);
}
.pkg-include-item::before {
  content: '✓';
  color: var(--sky);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ================================================================
   SECTION: TESTIMONI
   ================================================================ */
.section-testimonials {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, transparent, rgba(0,174,239,0.03) 50%, transparent);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  animation: testimonialScroll 30s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(0,174,239,0.2); }
.testimonial-stars { color: var(--gold); margin-bottom: 14px; font-size: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14px;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 13.5px;
  display: block;
}
.testimonial-event {
  font-size: 12px;
  color: var(--text-low);
  display: block;
}

/* ================================================================
   SECTION: KONTAK / CTA
   ================================================================ */
.section-cta {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/img/wedding-2.jpg') center/cover;
  opacity: 0.12;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,9,30,0.95) 0%, rgba(4,9,30,0.85) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 { margin-bottom: 20px; }
.cta-inner p { margin: 0 auto 40px; text-align: center; }
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #020714;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {}
.footer-brand img { height: 44px; margin-bottom: 20px; }
.footer-brand p { font-size: 13.5px; max-width: 280px; line-height: 1.7; }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.social-btn:hover {
  background: var(--sky-dim);
  border-color: rgba(0,174,239,0.3);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-hi);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13.5px;
  color: var(--text-low);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sky); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.fc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--sky-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.fc-text { font-size: 13px; color: var(--text-low); }
.fc-text strong { color: var(--text-mid); display: block; font-size: 12px; font-family: var(--ff-label); letter-spacing: 0.04em; margin-bottom: 3px; }

/* Affiliates logos */
.footer-affiliates {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.affiliates-label {
  font-family: var(--ff-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-low);
  text-align: center;
  margin-bottom: 24px;
}
.affiliates-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.affiliate-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.3);
  transition: filter 0.3s, transform 0.2s;
}
.affiliate-logo:hover {
  filter: brightness(0) invert(1) opacity(0.7);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12.5px;
  color: var(--text-low);
}
.footer-copy span { color: var(--sky); }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-low);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--text-mid); }

/* WhatsApp FAB */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wa-fab-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: transform 0.25s var(--ease-brand), box-shadow 0.25s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-fab-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}
.wa-tooltip {
  background: rgba(8,17,42,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-family: var(--ff-label);
  font-weight: 600;
  color: var(--text-hi);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.wa-fab:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ================================================================
   PAGE HERO (sub pages)
   ================================================================ */
.page-hero {
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,174,239,0.12), transparent);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { margin: 0 auto; text-align: center; font-size: 1.1rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: var(--ff-label);
  letter-spacing: 0.05em;
  color: var(--text-low);
  margin-bottom: 24px;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--sky); }
.breadcrumb-sep { color: var(--text-low); }

/* ================================================================
   CONTENT SECTIONS (sub pages)
   ================================================================ */
.content-section {
  padding: var(--section-py) 0;
}
.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-grid-2.reverse { direction: rtl; }
.content-grid-2.reverse > * { direction: ltr; }

.content-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.content-img img { width: 100%; height: 100%; object-fit: cover; }

.highlight-box {
  background: var(--grad-glass);
  border: 1px solid rgba(0,174,239,0.15);
  border-left: 3px solid var(--sky);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box.fire { border-left-color: var(--fire); border-color: rgba(247,148,29,0.15); }
.highlight-box.gold { border-left-color: var(--gold); border-color: rgba(212,168,83,0.15); }
.highlight-box p { font-size: 14px; margin: 0; }

/* Packages on sub pages */
.packages-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.pkg-detail-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-brand);
}
.pkg-detail-card.featured {
  border-color: rgba(0,174,239,0.3);
  background: linear-gradient(135deg, rgba(0,174,239,0.08), var(--navy-card));
}
.pkg-detail-card:hover {
  border-color: rgba(0,174,239,0.2);
  transform: translateY(-4px);
}
.pkg-detail-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--grad-brand);
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--ff-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.pkg-detail-card h3 { margin-bottom: 8px; }
.pkg-detail-price {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 4px;
}
.pkg-detail-price-orig {
  font-size: 0.9rem;
  color: var(--text-low);
  text-decoration: line-through;
  margin-bottom: 20px;
}
.pkg-detail-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.pkg-detail-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  align-items: flex-start;
}
.pkg-detail-item::before {
  content: '✓';
  color: var(--sky);
  font-weight: 700;
  flex-shrink: 0;
}

/* ================================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .services-grid    { grid-template-columns: 1fr; }
  .about-grid       { grid-template-columns: 1fr; gap: 48px; }
  .about-photos     { height: 400px; }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .packages-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid   { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.wide { grid-column: span 1; }
  .content-grid-2   { grid-template-columns: 1fr; gap: 36px; }
  .content-grid-2.reverse { direction: ltr; }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 767px)
   ================================================================ */
@media (max-width: 767px) {
  :root { --section-py: 56px; }

  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }

  .nav-menu, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 120px 0 60px; }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 1.8rem; }

  /* Why cards: tetap 2 kolom di HP — lebih rapi & readable */
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-card     { padding: 20px 14px; }
  .why-icon     { width: 48px; height: 48px; font-size: 22px; }

  .packages-grid{ grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .portfolio-item.wide { grid-column: span 2; }

  /* Package card: nonaktifkan flip 3D di mobile, tampilkan konten depan */
  .pkg-card     { height: auto; perspective: none; }
  .pkg-card-inner { transform: none !important; transform-style: flat; position: static; }
  .pkg-back     { display: none; }
  .pkg-front    {
    position: relative;
    height: auto;
    min-height: unset;
    padding: 24px 20px 28px;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .pkg-front-bg { opacity: 0.25; }
  .pkg-hint     { display: none; }
  .pkg-icon     { font-size: 2rem; margin-bottom: 10px; }

  /* Tambahkan tombol CTA di pkg-front mobile (pengganti flip) */
  .pkg-front-content { display: flex; flex-direction: column; gap: 8px; }
  .pkg-front h3 { font-size: 1.1rem; }

  .about-photos { height: 300px; }
  /* About values: tetap 2 kolom */
  .about-values { grid-template-columns: repeat(2, 1fr); }

  /* Footer: 2 kolom untuk kolom link */
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-brand { margin-bottom: 8px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  .services-grid { gap: 14px; }
  /* Foto di card: tinggi lebih kecil, object-position atas agar subjek tidak terpotong */
  .service-card-img { height: 190px; }
  .service-card-img img { object-position: top center; }

  .affiliates-row { gap: 20px; }
  .affiliate-logo { height: 28px; }

  .wa-fab { bottom: 20px; right: 20px; }
  .wa-fab-btn { width: 50px; height: 50px; font-size: 22px; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .testimonials-track { animation: none; }
}
