/* ============================================================
   SENANG DEAL MARKETING – styles.css
   Color Palette:
     Primary:   #6366f1 (Indigo)
     Accent:    #f59e0b (Amber)
     Success:   #10b981 (Emerald)
     Dark:      #0f0f1a
     Surface:   #1a1a2e
     Text:      #e2e8f0
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #6366f1;
  --primary-d:  #4f46e5;
  --primary-l:  #818cf8;
  --accent:     #f59e0b;
  --success:    #10b981;
  --pink:       #ec4899;
  --blue:       #3b82f6;

  --dark:       #0a0a16;
  --surface:    #12121f;
  --surface-2:  #1a1a2e;
  --surface-3:  #22223a;
  --border:     rgba(255,255,255,0.08);
  --border-h:   rgba(255,255,255,0.15);

  --text:       #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim:   #64748b;

  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.5);

  --font-head:  'Plus Jakarta Sans', sans-serif;
  --font-body:  'Inter', sans-serif;

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: #fff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: #fff;
  box-shadow: 0 4px 20px rgba(99,102,241,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99,102,241,0.55);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #20b954) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4) !important;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55) !important;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-h);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--primary-l);
  color: #fff;
}

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-l), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION COMMON ===== */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(99,102,241,0.15);
  color: var(--primary-l);
  border: 1px solid rgba(99,102,241,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,22,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}
.logo-text em { font-style: normal; color: var(--primary-l); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: var(--surface-2); }
.nav-links .nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -200px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--accent);
  bottom: -100px; left: -100px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.blob-3 {
  width: 300px; height: 300px;
  background: var(--pink);
  top: 40%; left: 40%;
  animation: blobFloat 12s ease-in-out infinite 2s;
}

@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  color: var(--primary-l);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-l);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  animation: fadeIn 1s ease 1s both;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ============================================================
   SERVIS
   ============================================================ */
.servis {
  background: var(--surface);
}

.servis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servis-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  animation: cardReveal 0.55s ease both;
}

.servis-card:nth-child(1) { animation-delay: 0.05s; }
.servis-card:nth-child(2) { animation-delay: 0.15s; }
.servis-card:nth-child(3) { animation-delay: 0.25s; }
.servis-card:nth-child(4) { animation-delay: 0.35s; }
.servis-card:nth-child(5) { animation-delay: 0.45s; }
.servis-card:nth-child(6) { animation-delay: 0.55s; }

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.servis-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.servis-card.featured {
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(79,70,229,0.1));
  border-color: rgba(99,102,241,0.4);
}

.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(var(--icon-color, 99,102,241), 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--icon-color, var(--primary));
  border: 1px solid rgba(255,255,255,0.06);
}

.servis-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.servis-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-list {
  margin-bottom: 24px;
}
.card-list li {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary-l);
  border-radius: 50%;
  flex-shrink: 0;
}

.card-link {
  color: var(--primary-l);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.card-link:hover { color: #fff; }

.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-card:hover { transform: translateY(-6px); }

.cta-card-inner { text-align: center; }
.cta-card-inner h3 { font-size: 1.3rem; margin-bottom: 12px; }
.cta-card-inner p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 24px; }
.cta-card .btn-primary {
  background: #fff;
  color: var(--primary-d);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-card .btn-primary:hover { background: #f1f5f9; }

/* ============================================================
   KENAPA KAMI
   ============================================================ */
.kenapa { background: var(--dark); }

.kenapa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.kenapa-content .section-tag { margin-bottom: 16px; }
.kenapa-content .section-title { text-align: left; margin-bottom: 16px; }
.kenapa-content .section-desc { text-align: left; margin-bottom: 40px; }

.kenapa-list { display: flex; flex-direction: column; gap: 24px; }

.kenapa-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.kenapa-icon {
  width: 40px; height: 40px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-l);
  flex-shrink: 0;
}

.kenapa-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.kenapa-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Visual Cards */
.kenapa-visual {
  position: relative;
  height: 340px;
}

.visual-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: absolute;
  box-shadow: var(--shadow);
}

.main-card {
  width: 100%;
  top: 0; left: 0;
}

.vc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.vc-dots { display: flex; gap: 6px; }
.vc-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-h);
}
.vc-dots span:nth-child(1) { background: #ef4444; }
.vc-dots span:nth-child(2) { background: var(--accent); }
.vc-dots span:nth-child(3) { background: var(--success); }
.vc-title { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }

.vc-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  margin-bottom: 28px;
  padding-bottom: 22px;
}

.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.chart-bar-wrap::after {
  content: attr(data-label);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  color: var(--text-dim);
  white-space: nowrap;
}
.chart-bar-wrap:hover .chart-bar { opacity: 0.75; }

.chart-bar {
  width: 100%;
  border-radius: 5px 5px 0 0;
  transform-origin: bottom;
  animation: barGrow 0.8s cubic-bezier(0.4,0,0.2,1) both;
  min-height: 6px;
}

.chart-bar-wrap:nth-child(1) .chart-bar { animation-delay: 0.1s; }
.chart-bar-wrap:nth-child(2) .chart-bar { animation-delay: 0.2s; }
.chart-bar-wrap:nth-child(3) .chart-bar { animation-delay: 0.3s; }
.chart-bar-wrap:nth-child(4) .chart-bar { animation-delay: 0.4s; }
.chart-bar-wrap:nth-child(5) .chart-bar { animation-delay: 0.5s; }
.chart-bar-wrap:nth-child(6) .chart-bar { animation-delay: 0.6s; }

@keyframes barGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

.vc-footer { margin-top: 28px; }
.vc-metric {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  min-width: 150px;
}
.mini-card div { display: flex; flex-direction: column; }
.mini-card strong { font-size: 1.1rem; font-weight: 800; color: #fff; }
.mini-card span { font-size: 0.75rem; color: var(--text-muted); }

.card-reach {
  bottom: -16px;
  right: 16px;
  background: var(--surface-3);
  animation: floatCard 4s ease-in-out infinite;
}
.card-leads {
  bottom: 52px;
  right: 16px;
  background: var(--surface-3);
  animation: floatCard 4s ease-in-out infinite 1s;
}

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   PROSES
   ============================================================ */
.proses { background: var(--surface); }

.proses-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.proses-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.proses-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 0 0 8px var(--surface), 0 0 0 10px rgba(99,102,241,0.2);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.step-arrow {
  display: none;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial { background: var(--dark); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testi-card.featured-testi {
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(79,70,229,0.08));
  border-color: rgba(99,102,241,0.35);
}

.testi-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ============================================================
   HUBUNGI
   ============================================================ */
.hubungi { background: var(--surface); }

.hubungi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hubungi-info .section-tag { margin-bottom: 16px; }
.hubungi-info .section-title { text-align: left; font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 16px; }
.hubungi-info > p { color: var(--text-muted); margin-bottom: 40px; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-l);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.contact-item span {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.contact-item a { color: var(--primary-l); transition: var(--transition); }
.contact-item a:hover { color: #fff; }

.social-links { display: flex; gap: 12px; }

.social-btn {
  width: 44px; height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Form */
.form-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(99,102,241,0.05);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select option { background: var(--surface-3); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 16px;
  color: var(--success);
  font-size: 0.88rem;
  font-weight: 500;
}
.form-success.show { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--primary-l); }

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span {
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}

/* Pulse animation for WhatsApp button */
.pulse-wa {
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

/* Larger ring animation */
.pulse-wa::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.4;
  animation: waRing 2s ease-out infinite;
}

@keyframes waRing {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .servis-grid { grid-template-columns: repeat(2, 1fr); }
  .kenapa-inner { grid-template-columns: 1fr; gap: 60px; }
  .kenapa-visual { height: 360px; }
  .card-reach, .card-leads { right: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,22,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; padding: 12px 24px; }
  .hamburger { display: flex; z-index: 1000; }

  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 20px; }

  .servis-grid { grid-template-columns: 1fr; }

  .proses-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .proses-steps::before { display: none; }
  .proses-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; }
  .step-num { margin-bottom: 0; flex-shrink: 0; }

  .testi-grid { grid-template-columns: 1fr; }

  .hubungi-inner { grid-template-columns: 1fr; gap: 48px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .kenapa-visual { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2rem; }
  .form-card { padding: 24px; }
  .stat-divider { display: none; }
  .hero-stats { gap: 24px; }
}
