/* ============================
   ANEKA SERVICE ELEKTRONIK
   style.css – Premium Navy/Gold
   ============================ */

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

:root {
  --navy-900: #060e1f;
  --navy-800: #0a1628;
  --navy-700: #0f2040;
  --navy-600: #1a3a6e;
  --navy-400: #2a5298;
  --gold:     #f5a623;
  --gold-dark:#d4841a;
  --gold-light:#ffd080;
  --white:    #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --wa-green: #25D366;
  --teal:     #0d9488;
  --purple:   #7c3aed;
  --orange:   #ea580c;
  --radius-sm: 8px;
  --radius:   16px;
  --radius-lg:24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow:    0 4px 24px rgba(0,0,0,.18);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.3);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--navy-800);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(6,14,31,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo { display: flex; align-items: center; }
.nav-title { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); }
.brand-sub { font-size: .72rem; color: var(--gold); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }

.nav-links {
  display: flex; list-style: none; gap: 6px; margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.8); text-decoration: none; padding: 8px 14px;
  border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(245,166,35,.15); }

.btn-wa-nav {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa-green); color: var(--white);
  padding: 10px 20px; border-radius: 50px;
  font-size: .87rem; font-weight: 600; text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.btn-wa-nav:hover { background: #1dbb5a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.45); }
.btn-wa-nav svg { flex-shrink: 0; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(6,14,31,.92) 0%,
    rgba(10,22,40,.85) 50%,
    rgba(10,22,40,.65) 100%);
}
.circuit-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: circuitScroll 40s linear infinite;
}
@keyframes circuitScroll {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  color: var(--gold-light); padding: 8px 16px;
  border-radius: 50px; font-size: .85rem; font-weight: 500;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.15;
  color: var(--white); margin-bottom: 20px;
  letter-spacing: -.02em;
}
.text-gold { color: var(--gold); }

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.75);
  max-width: 560px; margin-bottom: 40px; line-height: 1.7;
}

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Poppins', sans-serif; font-size: 2.2rem;
  font-weight: 800; color: var(--gold); line-height: 1;
}
.stat-plus { font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.stat-label { display: block; font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.15); }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-900); padding: 14px 28px;
  border-radius: 50px; font-weight: 700; text-decoration: none;
  font-size: .95rem; transition: var(--transition);
  box-shadow: 0 8px 24px rgba(245,166,35,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,166,35,.55); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white); padding: 14px 28px;
  border-radius: 50px; font-weight: 600; text-decoration: none;
  font-size: .95rem; transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column;
  align-items: center; gap: 8px; color: rgba(255,255,255,.4);
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--navy-800); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
  display: inline-block;
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.3);
  color: var(--gold); padding: 6px 18px;
  border-radius: 50px; font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.section-badge.light {
  background: rgba(245,166,35,.12);
  border-color: rgba(245,166,35,.3);
  color: var(--gold-light);
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--navy-800);
  margin-bottom: 16px; line-height: 1.2;
}
.section-title.light, .light .section-title { color: var(--white); }
.section-title.light { color: var(--white); }
.section-desc {
  font-size: 1.05rem; color: var(--gray-500);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.section-desc.light, .light .section-desc { color: rgba(255,255,255,.65); }
.section-desc.light { color: rgba(255,255,255,.65); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(245,166,35,.04));
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,166,35,.4);
}
.service-card.featured {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  border-color: transparent;
  color: var(--white);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,.75); }
.service-card.featured .service-list li { color: rgba(255,255,255,.8); }

.service-ribbon {
  position: absolute; top: 20px; right: -22px;
  background: var(--gold);
  color: var(--navy-900); font-size: .72rem; font-weight: 700;
  padding: 4px 28px; transform: rotate(35deg);
  letter-spacing: .06em; text-transform: uppercase;
}

.service-icon-wrap {
  width: 64px; height: 64px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.service-icon-wrap.gold { background: rgba(245,166,35,.15); color: var(--gold); }
.service-icon-wrap.blue { background: rgba(42,82,152,.1); color: var(--navy-400); }
.service-icon-wrap.teal { background: rgba(13,148,136,.1); color: var(--teal); }
.service-icon-wrap.purple { background: rgba(124,58,237,.1); color: var(--purple); }
.service-icon-wrap.orange { background: rgba(234,88,12,.1); color: var(--orange); }

.service-card h3 {
  font-family: 'Poppins', sans-serif; font-size: 1.2rem;
  font-weight: 700; color: var(--navy-800); margin-bottom: 10px;
}
.service-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.service-list { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 6px; }
.service-list li { font-size: .85rem; color: var(--gray-500); }

.btn-service {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--navy-900);
  padding: 10px 22px; border-radius: 50px;
  font-size: .85rem; font-weight: 700; text-decoration: none;
  transition: var(--transition);
}
.btn-service:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-service.outline {
  background: transparent; border: 1.5px solid var(--gray-200);
  color: var(--navy-700);
}
.btn-service.outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,166,35,.06); }

.card-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  border: none !important; display: flex; align-items: center; justify-content: center;
}
.card-cta-inner { text-align: center; }
.cta-icon { font-size: 3rem; margin-bottom: 16px; }
.card-cta h3 { color: var(--navy-900) !important; margin-bottom: 10px; }
.card-cta p { color: rgba(6,14,31,.7) !important; margin-bottom: 24px; }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  overflow: hidden;
}
.feature-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(245,166,35,.3);
  transform: translateY(-4px);
}
.feature-number {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Poppins', sans-serif; font-size: 3.5rem;
  font-weight: 900; color: rgba(245,166,35,.08);
  line-height: 1; letter-spacing: -.04em;
}
.feature-icon { font-size: 2.2rem; margin-bottom: 16px; }
.feature-card h3 {
  font-family: 'Poppins', sans-serif; font-size: 1.1rem;
  font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.feature-card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ===== AREA ===== */
.area-wrapper {
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px;
  align-items: start;
}
.area-map-card {
  background: var(--navy-800); border: 1px solid rgba(245,166,35,.2);
  border-radius: var(--radius-lg); padding: 40px 32px;
  text-align: center; color: var(--white);
}
.map-pin-icon { font-size: 3rem; margin-bottom: 16px; }
.area-map-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; }
.area-address { color: rgba(255,255,255,.6); margin: 8px 0 24px; }
.btn-maps {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy-900);
  padding: 12px 24px; border-radius: 50px;
  font-weight: 700; text-decoration: none; font-size: .9rem;
  transition: var(--transition);
}
.btn-maps:hover { background: var(--gold-dark); transform: translateY(-2px); }

.area-intro { font-size: .95rem; color: var(--gray-500); margin-bottom: 20px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.area-chip {
  background: rgba(245,166,35,.08); border: 1px solid rgba(245,166,35,.25);
  color: var(--navy-700); padding: 8px 16px; border-radius: 50px;
  font-size: .85rem; font-weight: 500; transition: var(--transition);
}
.area-chip:hover { background: rgba(245,166,35,.18); color: var(--gold-dark); }
.area-note {
  display: flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.06); border: 1px solid rgba(245,166,35,.2);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: .85rem; color: var(--gray-500);
}

/* ===== KONTAK ===== */
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 24px; transition: var(--transition);
}
.contact-item:hover { border-color: rgba(245,166,35,.3); background: rgba(255,255,255,.07); }
.contact-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-icon { background: rgba(37,211,102,.15); color: var(--wa-green); }
.maps-icon { background: rgba(245,166,35,.15); color: var(--gold); }
.time-icon { background: rgba(42,82,152,.2); color: #60a5fa; }
.contact-label { display: block; font-size: .8rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-value {
  font-size: 1.05rem; font-weight: 600; color: var(--white);
  text-decoration: none; transition: var(--transition);
}
a.contact-value:hover { color: var(--gold); }

.wa-cta-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 48px 36px; text-align: center;
}
.wa-pulse {
  display: inline-flex; width: 80px; height: 80px;
  border-radius: 50%; background: rgba(37,211,102,.15);
  align-items: center; justify-content: center; margin-bottom: 24px;
  position: relative;
}
.wa-pulse::before, .wa-pulse::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.3); animation: ringPulse 2s ease-out infinite;
}
.wa-pulse::after { animation-delay: 1s; }
@keyframes ringPulse {
  0% { width: 80px; height: 80px; opacity: .7; }
  100% { width: 130px; height: 130px; opacity: 0; }
}
.wa-cta-card h3 {
  font-family: 'Poppins', sans-serif; font-size: 1.5rem;
  font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.wa-cta-card p { color: rgba(255,255,255,.6); margin-bottom: 28px; }
.btn-wa-big {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
  background: var(--wa-green); color: var(--white);
  padding: 16px 28px; border-radius: 50px;
  font-weight: 700; text-decoration: none; font-size: 1rem;
  transition: var(--transition); box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-wa-big:hover { background: #1dbb5a; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,.5); }

/* ===== FOOTER ===== */
.footer { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.06); padding: 48px 0 24px; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-name { display: block; font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--white); font-size: .95rem; }
.footer-loc { display: block; font-size: .8rem; color: var(--gold); }
.footer-links { display: flex; gap: 4px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; padding: 6px 12px; border-radius: 6px; font-size: .88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); background: rgba(245,166,35,.08); }
.footer-contact { display: flex; gap: 16px; }
.footer-contact a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 20px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; }

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa-green);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition); animation: floatIn .6s ease forwards;
}
.floating-wa:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.6); }
.floating-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--navy-800); color: var(--white);
  padding: 6px 12px; border-radius: 6px; font-size: .8rem; font-weight: 600;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: var(--transition);
}
.floating-tooltip::after {
  content: ''; position: absolute; top: 50%; right: -6px;
  transform: translateY(-50%); border: 6px solid transparent;
  border-left-color: var(--navy-800); border-right: none;
}
.floating-wa:hover .floating-tooltip { opacity: 1; }
@keyframes floatIn {
  from { opacity: 0; transform: scale(.5) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .8s ease forwards;
}
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1.visible { transition-delay: .1s; }
.reveal.delay-2.visible { transition-delay: .2s; }
.reveal.delay-3.visible { transition-delay: .3s; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(245,166,35,.4); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.faq-item.open { border-color: rgba(245,166,35,.5); box-shadow: 0 4px 20px rgba(245,166,35,.12); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 24px;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--navy-800); transition: var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-item.open .faq-question { color: var(--gold-dark); }
.faq-chevron {
  flex-shrink: 0; color: var(--gray-400);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-answer.open { max-height: 500px; }
.faq-answer p {
  padding: 0 24px 22px; font-size: .95rem; color: var(--gray-500);
  line-height: 1.75; border-top: 1px solid var(--gray-200);
  padding-top: 16px; margin: 0;
}
.faq-answer p strong { color: var(--navy-700); }
.faq-answer p a { color: var(--gold-dark); text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .area-wrapper { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; z-index: -1;
    flex-direction: column; background: rgba(6,14,31,.97);
    padding: 90px 24px 40px; gap: 8px;
    transition: var(--transition); opacity: 0;
  }
  .nav-links.open { display: flex; z-index: 999; opacity: 1; }
  .nav-links a { padding: 14px 20px; font-size: 1rem; border-radius: var(--radius-sm); }
  .btn-wa-nav { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 100px 24px 60px; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.8rem; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .area-wrapper { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .floating-tooltip { display: none; }
}

/* ===== WA MODAL FORM ===== */
.wa-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(6,14,31,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.wa-modal-overlay.open {
  opacity: 1; pointer-events: auto;
}
.wa-modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  transform: translateY(28px) scale(.97);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
  opacity: 0;
  position: relative;
}
.wa-modal-overlay.open .wa-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.wa-modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 24px;
}
.wa-modal-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-modal-title { flex: 1; }
.wa-modal-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy-800); line-height: 1.2; margin-bottom: 4px;
}
.wa-modal-title p {
  font-size: .82rem; color: var(--gray-400); line-height: 1.4;
}
.wa-modal-close {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gray-100); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); transition: var(--transition);
  flex-shrink: 0;
}
.wa-modal-close:hover { background: var(--gray-200); color: var(--navy-800); }

.wa-form { display: flex; flex-direction: column; gap: 14px; }

.wa-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .wa-form-row { grid-template-columns: 1fr; } }

.wa-field { display: flex; flex-direction: column; gap: 5px; }
.wa-field label {
  font-size: .78rem; font-weight: 600;
  color: var(--navy-700); letter-spacing: .02em;
}
.wa-field label .req { color: #ef4444; margin-left: 2px; }
.wa-field label .opt {
  font-size: .72rem; font-weight: 400;
  color: var(--gray-400); margin-left: 4px;
}
.wa-input, .wa-select, .wa-textarea {
  font-family: 'Inter', sans-serif; font-size: .88rem;
  color: var(--navy-800); border: 1.5px solid var(--gray-200);
  border-radius: 10px; padding: 10px 13px;
  outline: none; background: #f8fafc;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.wa-input::placeholder, .wa-textarea::placeholder { color: var(--gray-400); }
.wa-input:focus, .wa-select:focus, .wa-textarea:focus {
  border-color: var(--wa-green);
  box-shadow: 0 0 0 3px rgba(37,211,102,.12);
  background: var(--white);
}
.wa-select { cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px;
}
.wa-textarea { resize: none; }

/* Home Service toggle */
.wa-home-toggle {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 10px; cursor: pointer;
  border: 1.5px solid var(--gray-200); background: #f8fafc;
  transition: var(--transition); user-select: none;
}
.wa-home-toggle:hover { border-color: rgba(245,166,35,.5); background: #fffbeb; }
.wa-home-toggle.active { border-color: #fbbf24; background: #fffbeb; }
.wa-toggle-switch {
  width: 38px; height: 20px; border-radius: 99px;
  background: var(--gray-200); position: relative;
  flex-shrink: 0; transition: background .2s;
}
.wa-toggle-switch .knob {
  position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: left .2s;
}
.wa-home-toggle.active .wa-toggle-switch { background: linear-gradient(135deg, #f59e0b, #d97706); }
.wa-home-toggle.active .wa-toggle-switch .knob { left: 20px; }
.wa-toggle-text { flex: 1; }
.wa-toggle-text strong { display: block; font-size: .85rem; font-weight: 700; color: var(--navy-700); }
.wa-toggle-text span { font-size: .72rem; color: var(--gray-400); }

.wa-address-field {
  overflow: hidden; max-height: 0;
  transition: max-height .3s ease, opacity .3s ease;
  opacity: 0;
}
.wa-address-field.visible { max-height: 120px; opacity: 1; }

/* Error notice */
.wa-error {
  background: #fff0f0; border: 1.5px solid #fecaca;
  border-radius: 10px; padding: 10px 14px;
  font-size: .82rem; color: #dc2626;
  display: none;
}
.wa-error.show { display: block; }

/* Divider */
.wa-divider {
  border: none; border-top: 1.5px solid var(--gray-200);
  margin: 4px 0;
}

/* Submit button */
.wa-btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 20px;
  background: var(--wa-green); color: var(--white);
  border: none; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.wa-btn-submit:hover { background: #1dbb5a; transform: translateY(-1px); box-shadow: 0 12px 32px rgba(37,211,102,.5); }
.wa-btn-cancel {
  background: none; border: 1.5px solid var(--gray-200); color: var(--gray-500);
  border-radius: 50px; padding: 12px 20px;
  font-family: 'Inter', sans-serif; font-size: .88rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); width: 100%;
}
.wa-btn-cancel:hover { border-color: var(--gray-400); color: var(--navy-700); }
.wa-form-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }

/* Preview pesan */
.wa-preview {
  background: #f0fdf4; border: 1.5px solid #bbf7d0;
  border-radius: 10px; padding: 12px 14px;
  font-size: .78rem; color: #166534; line-height: 1.7;
  white-space: pre-line; display: none;
}
.wa-preview.show { display: block; }
.wa-preview-label {
  font-size: .72rem; font-weight: 700; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 4px; display: none;
}
.wa-preview-label.show { display: block; }
