/* ================================================================
   ATRIANO MAKE UP STUDIO — style.css
   Aesthetic: Vibrant Berry & Soft Blush · Modern & Eye-Catching
   ================================================================ */

/* ─── CSS VARIABLES (SEMANTIC & EASY TO THEME) ───────────────── */
:root {
  /* Colors - Backgrounds */
  --bg-base:       #ffffff; /* Background utama web yang bersih */
  --bg-soft:       #fff0f3; /* Background sekunder untuk variasi section */
  --bg-dark:       #1a1a24; /* Background gelap untuk footer / highlight */

  /* Colors - Text (High Contrast for Readability) */
  --text-main:     #111827; /* Hitam kebiruan, lebih tajam untuk dibaca */
  --text-muted:    #64748b; /* Abu-abu kebiruan untuk sub-teks */
  --text-light:    #ffffff; /* Teks di atas warna gelap */

  /* Colors - Accents (The Eye-Catching Elements) */
  --accent-primary: #ff0054; /* Pink/Merah cerah yang sangat menonjol */
  --accent-hover:   #d90046; /* Versi gelap sedikit untuk efek hover */
  --accent-gold:    #fb8500; /* Oranye/Emas cerah untuk rating & elemen kecil */
  --accent-gold-lt: #ffb703;

  /* Colors - UI Elements */
  --border-color:  #ffd6e0; /* Warna garis yang lembut */

  /* Typography - Import di HTML: DM Sans & Playfair Display */
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;

  /* Layout & Animation */
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:         0.4s;
  --container: 1100px;
  --section-gap: 6rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17.5px; 
}

body {
  background: var(--bg-base);
  color: var(--text-main);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--accent-primary); border-radius: 3px; }


/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

/* ─── SECTION COMMON ────────────────────────────────────────── */
.section { padding: var(--section-gap) 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}
.section-title em {
  font-style: italic;
  color: var(--accent-primary);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 1rem auto 0;
}
.section-sub.left { margin-left: 0; }

/* ─── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-main);
}
.nav-logo span {
  color: var(--accent-primary);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
  position: relative;
  transition: color var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-primary);
  transition: width var(--t) var(--ease);
}
.nav-links a:hover { color: var(--accent-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  background: var(--accent-primary);
  color: var(--text-light);
  border-radius: 4px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 84, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--text-main);
  transition: all 0.3s;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-overlay ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.mobile-link {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--accent-primary); }
.mobile-cta {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.8rem 2.2rem;
  background: var(--accent-primary);
  color: var(--text-light);
  border-radius: 4px;
  transition: background 0.3s;
}
.mobile-cta:hover {
  background: var(--accent-hover);
}
.close-btn {
  position: absolute;
  top: 1.5rem; right: 6%;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s;
}
.close-btn:hover { color: var(--accent-primary); }


/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff0f3 0%, #ffffff 50%, #ffe5ec 100%);
  padding: 8rem 5% 5rem;
}

/* Orb backgrounds - Lebih vibrant */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,0,84,0.3), transparent);
  top: -100px; right: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251,133,0,0.2), transparent);
  bottom: 0; left: -80px;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,0,84,0.15), transparent);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent-primary);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* Rating badges */
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.badge-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}
.badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.badge-divider {
  width: 2px; height: 40px;
  background: var(--border-color);
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--accent-primary);
  color: var(--text-light);
  border-radius: 4px;
  transition: all var(--t);
  box-shadow: 0 4px 20px rgba(255, 0, 84, 0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 84, 0.4);
}

.btn-ghost {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  border-radius: 4px;
  transition: all var(--t);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--accent-primary);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* Decorative rings */
.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-color);
}
.ring-1 {
  width: 550px; height: 550px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 40s linear infinite;
}
.ring-2 {
  width: 750px; height: 750px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 60s linear infinite reverse;
  border-style: dashed;
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }


/* ════════════════════════════════════════════════════
   LAYANAN / SERVICES (GALERI FOTO)
════════════════════════════════════════════════════ */
.layanan { background: var(--bg-base); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card Container */
.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 450px; 
  text-decoration: none;
  background-color: var(--bg-soft);
  background-size: cover;
  background-position: center;
  transition: transform var(--t) var(--ease), box-shadow var(--t);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Gradient Overlay Gelap dari Bawah agar Teks Terbaca */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 36, 0.95) 0%, rgba(26, 26, 36, 0.3) 60%, transparent 100%);
  z-index: 1;
  transition: opacity var(--t);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 0, 84, 0.15);
}

.service-card:hover::after {
  opacity: 0.9;
}

/* Content wrapper */
.card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
}

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Icon & Tag */
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--accent-primary);
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--accent-primary);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(255,0,84,0.3);
}

/* ════════════════════════════════════════════════════
   KEUNGGULAN
════════════════════════════════════════════════════ */
.keunggulan {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.keunggulan-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2rem;
}
.feature-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.feat-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: var(--accent-primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 4px;
  box-shadow: 0 4px 10px rgba(255,0,84,0.2);
}
.feature-list strong {
  display: block;
  font-weight: 700;
  color: var(--text-main);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.feature-list p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Visual cards */
.keunggulan-visual {
  position: relative;
  height: 450px;
}
.visual-card {
  position: absolute;
  background: var(--bg-base);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  padding: 2rem;
  transition: transform var(--t) var(--ease);
}
.visual-card:hover { transform: translateY(-8px) !important; }

.main-card {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  text-align: center;
  background: var(--bg-dark);
  color: var(--text-light);
}
.vc-big {
  font-family: var(--ff-display);
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--accent-primary);
  line-height: 1;
}
.vc-stars { font-size: 1.2rem; color: var(--accent-gold); margin: 0.5rem 0; }
.vc-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.small-card {
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.small-card span { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.small-card p { color: var(--text-main); font-weight: 600; font-size: 0.9rem; }

.card-a { top: 0px; left: -20px; width: 170px; transform: rotate(-4deg); }
.card-b { bottom: 0px; right: -20px; width: 170px; transform: rotate(4deg); }


/* ════════════════════════════════════════════════════
   TESTIMONI
════════════════════════════════════════════════════ */
.testimoni { background: var(--bg-base); }

.testi-track-wrap {
  overflow: hidden;
  margin: 0 -1rem;
  padding: 0 1rem;
}
.testi-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s var(--ease);
}

.testi-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  background: var(--bg-base);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border-radius: 8px;
  padding: 2.5rem;
}
.testi-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}
.testi-card > p {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 45px; height: 45px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}
.testi-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 3rem;
}
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all var(--t);
  border: none;
}
.testi-dot.active {
  background: var(--accent-primary);
  transform: scale(1.3);
}


/* ════════════════════════════════════════════════════
   CARA PESAN
════════════════════════════════════════════════════ */
.cara-pesan {
  background: var(--bg-dark);
  color: var(--text-light);
}
.cara-pesan .section-eyebrow { color: var(--accent-primary); }
.cara-pesan .section-title { color: var(--text-light); }
.cara-pesan .section-title em { color: var(--accent-primary); }
.cara-pesan .section-sub { color: rgba(255,255,255,0.7); }

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 0 1rem;
}
.step-num {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 0, 84, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}
.step p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.step-arrow {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.2);
  padding-top: 1.5rem;
  flex-shrink: 0;
}

.cta-center {
  width: 100%; /* Memaksa div mengambil seluruh sisa lebar ruang */
  display: flex;
  flex-direction: column; /* Menyusun tombol dan teks atas-bawah */
  align-items: center; /* Memaksa semua elemen di dalamnya rata tengah */
  justify-content: center;
  margin-top: 2.5rem; /* Memberi jarak agar tidak terlalu menempel dengan langkah di atasnya */
}

/* Pastikan juga teks note-nya rata tengah */
.cta-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  margin-top: 1rem;
}


/* ════════════════════════════════════════════════════
   KONTAK
════════════════════════════════════════════════════ */
.kontak { background: var(--bg-soft); }

.kontak-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2rem;
}
.contact-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.cl-icon {
  font-size: 1.5rem;
  color: var(--accent-primary);
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}
.contact-list p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-list a {
  color: var(--accent-primary);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t);
}
.contact-list a:hover { border-color: var(--accent-primary); }

.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.social-btn {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  color: var(--text-light);
  transition: transform var(--t), box-shadow var(--t);
}
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.social-btn.wa  { background: #25D366; }
.social-btn.ig  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.lt  { background: var(--text-main); }

/* Map Card */
.map-card {
  background: var(--bg-base);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
}
.map-pin { font-size: 3.5rem; margin-bottom: 1.5rem; color: var(--accent-primary); }
.map-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}
.map-addr {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.btn-map {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border: 2px solid var(--text-main);
  color: var(--text-main);
  border-radius: 4px;
  transition: all var(--t);
}
.btn-map:hover {
  background: var(--text-main);
  color: var(--text-light);
}


/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  padding: 3rem 0;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
}
.footer-logo em { color: var(--accent-primary); font-style: italic; }
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--accent-primary); }
.footer-copy {
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
}


/* ════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 400;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--t), box-shadow var(--t);
  animation: wa-bounce 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  animation: none;
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}


/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
.hide-sm { display: inline; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .keunggulan-inner { grid-template-columns: 1fr; gap: 4rem; }
  .keunggulan-visual { display: none; }
  .kontak-inner { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 calc(50% - 1rem); }
}

@media (max-width: 700px) {
  :root { --section-gap: 4rem; }
  .hide-sm { display: none; }

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

  .hero-title { font-size: clamp(2.5rem, 8vw, 3.8rem); }

  .services-grid { grid-template-columns: 1fr; }

  .steps-row { flex-direction: column; align-items: center; gap: 2rem; }
  .step-arrow { display: none; }

  .testi-card { flex: 0 0 calc(100% - 0rem); }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}