/* ===== IMPORT FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ===== DESIGN SYSTEM TOKENS ===== */
:root {
  --primary: #1B9FD4;
  --primary-dark: #1480B0;
  --primary-light: #29C0F0;
  --accent: #C9A227;
  --accent-light: #E8BF45;
  --white: #FFFFFF;
  --bg-light: #F5F9FC;
  --bg-section: #EAF5FB;
  --text-dark: #1A1A2E;
  --text-mid: #3A3A50;
  --text-soft: #6B7280;
  --border: #CBD8E0;
  --shadow: 0 4px 24px rgba(27,159,212,0.12);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.08);
  --radius: 14px;
  --radius-btn: 50px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background-color: #071828; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16.5px;
}
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.3; font-weight: 700; letter-spacing: -0.5px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}
.badge-green { background: #daf0fa; color: var(--primary); }
.badge-gold { background: #fff4d4; color: #a07800; }

/* Section title style */
.section-title { font-size: 36px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; line-height: 1.2; }
.section-subtitle { font-size: 18px; color: var(--text-soft); margin-bottom: 50px; max-width: 700px; margin-inline: auto; line-height: 1.65; }
.title-underline {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.title-underline::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(27,159,212,0.30);
}
.btn-primary:hover { background: var(--primary-dark); transform: scale(1.04); box-shadow: 0 8px 28px rgba(27,159,212,0.40); }
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(212,160,23,0.30);
}
.btn-accent:hover { background: #b88c0e; transform: scale(1.04); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.nav-logo-tag { font-size: 10px; color: var(--text-soft); font-family: 'Inter', sans-serif; letter-spacing: 0.3px; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-menu a:hover { color: var(--primary); background: var(--bg-section); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Mobile Nav Sidebar */
#mobile-sidebar {
  position: fixed;
  top: 0; right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  transition: right 0.35s ease;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#mobile-sidebar.open { right: 0; }
#mobile-sidebar a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 14px 16px;
  border-radius: 10px;
  transition: var(--transition);
}
#mobile-sidebar a:hover { background: var(--bg-section); color: var(--primary); }
#sidebar-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--text-dark);
}
#sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#sidebar-overlay.open { opacity: 1; pointer-events: all; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: url('assets/masjid_nabawi_hero.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(5,20,45,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.18);
  border: 1px solid rgba(212,160,23,0.5);
  color: var(--accent-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-title {
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title span { color: var(--accent-light); }
.hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 500;
}
.trust-item .trust-icon {
  width: 22px; height: 22px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ===== WHY US ===== */
#why-us { background: var(--bg-light); }
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  background: var(--white);
  border: 1px solid #d4eaf5;
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(27,159,212,0.18);
}
.why-icon {
  width: 64px; height: 64px;
  background: var(--bg-section);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--primary); }
.why-card:hover .why-icon svg { color: white; }
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }

/* ===== PACKAGES ===== */
#packages { background: var(--white); }
.pkg-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-section);
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  border: 1px solid #d4eaf5;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 12px 40px rgba(27,159,212,0.20); }
.pkg-card.popular { border-color: var(--primary); }
.pkg-img {
  height: 160px;
  background: var(--bg-section);
  overflow: hidden;
  position: relative;
}
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.pkg-card:hover .pkg-img img { transform: scale(1.05); }
.pkg-popular-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
}
.pkg-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.pkg-name { font-size: 19px; font-weight: 800; color: var(--text-dark); line-height: 1.3; }
.pkg-duration { font-size: 12px; color: var(--text-soft); }
.pkg-price-row { display: flex; align-items: baseline; gap: 6px; }
.pkg-price { font-size: 26px; font-weight: 800; color: var(--primary); font-family: 'Poppins', sans-serif; }
.pkg-price-label { font-size: 13px; color: var(--text-soft); }
.pkg-cicilan {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff4d4;
  color: #8a6800;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
}
.pkg-features { display: flex; flex-direction: column; gap: 5px; }
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-mid);
}
.pkg-features li::before { content: '✓'; color: var(--primary); font-weight: 700; }
.pkg-btn { margin-top: auto; }

/* ===== HOW IT WORKS ===== */
#how-it-works { background: var(--bg-section); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 50px;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  width: 75%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 10px, transparent 10px, transparent 20px);
}
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(27,159,212,0.35);
}
.step-icon { font-size: 22px; margin-bottom: 12px; }
.step-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--text-soft); line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.testi-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.testi-stars { color: #F5A623; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 2px solid var(--primary);
}
.testi-name { font-weight: 700; font-size: 14px; font-family: 'Poppins', sans-serif; }
.testi-profile { font-size: 12px; color: var(--text-soft); }

/* ===== FAQ ===== */
#faq { background: var(--bg-light); }
.faq-wrap { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  user-select: none;
  gap: 12px;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: transform 0.3s ease;
  color: var(--primary);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }

/* ===== CTA FORM ===== */
#cta-form { background: var(--primary); }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-left h2 { font-size: 34px; font-weight: 800; color: white; line-height: 1.25; margin-bottom: 16px; }
.cta-left p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.7; }
.cta-form {
  background: white;
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.cta-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 22px;
  font-family: 'Poppins', sans-serif;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #b8d4e8;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: white;
  border: 1px solid #b8d4e8;
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.autocomplete-item {
  padding: 12px 20px;
  cursor: pointer;
  font-size: 14px;
}
.autocomplete-item:hover { background: var(--bg-section); color: var(--primary); }
.form-group input:focus, .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,159,212,0.15);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Wizard Form Styles */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeInForm 0.4s ease; }
@keyframes fadeInForm { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.wizard-header { margin-bottom: 24px; }
.wizard-progress { display: flex; justify-content: space-between; position: relative; margin-bottom: 12px; }
.wizard-progress::before {
  content: ''; position: absolute; top: 12px; left: 10px; right: 10px;
  height: 2px; background: var(--border); z-index: 1;
}
.wizard-step-bullet {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  color: var(--text-soft); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; transition: var(--transition);
}
.wizard-step-bullet.active, .wizard-step-bullet.completed {
  background: var(--primary); border-color: var(--primary); color: white;
}
.wizard-actions { display: flex; gap: 10px; margin-top: 24px; }
.wizard-btn-prev { background: #e0e0e0; color: var(--text-dark); flex: 1; }
.wizard-btn-next { flex: 2; }

/* Dynamic Jamaah Box */
.jamaah-box { background: var(--bg-light); border: 1px dashed var(--primary); border-radius: 8px; padding: 12px; margin-top: 8px; }
.jamaah-box .form-group { margin-bottom: 8px; }

/* ===== FOOTER ===== */
footer {
  background: #071828;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
  margin-bottom: 0 !important;
}
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 48px;
  max-width: 600px;
  margin: 0 auto;
}
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 12px;
}
.footer-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.footer-brand-tag {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 28px;
  transition: var(--transition);
}
.footer-wa:hover { background: #1da851; transform: scale(1.03); }
.footer-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.footer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--primary); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0 !important;
}
.footer-bottom p {
  margin: 0 !important;
  padding: 0 !important;
}
html, body {
  margin: 0;
  padding: 0;
}

/* ===== FLOATING WA BUTTON ===== */
#float-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  animation: floatPulse 2.5s infinite;
}
#float-wa:hover { background: #1da851; transform: scale(1.07) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
#float-wa-icon { font-size: 22px; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.70); }
}

/* ===== POPUP / TOAST ===== */
#toast {
  position: fixed;
  bottom: 90px;
  right: 24px;
  background: white;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  border-left: 4px solid var(--primary);
  z-index: 950;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transform: translateX(140%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  max-width: 280px;
}
#toast.show { transform: translateX(0); }
#toast p { font-size: 13px; color: var(--text-soft); font-weight: 400; margin-top: 4px; }

/* ===== EXIT POPUP ===== */
#exit-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#exit-popup.show { opacity: 1; pointer-events: all; }
.exit-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.exit-box {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: popIn 0.4s ease;
}
@keyframes popIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.exit-box h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; color: var(--text-dark); }
.exit-box p { color: var(--text-soft); margin-bottom: 24px; font-size: 15px; line-height: 1.6; }
.exit-close {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--bg-light);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== MORE SECTIONS ===== */
.lansia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

/* ===== SCROLL ANIMATIONS ===== */
.anim-fade { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-fade.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .lansia-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 16px; margin-bottom: 40px; }
  .nav-menu, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .why-cards { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .form-grid { grid-template-columns: 1fr; }
  #float-wa span { display: none; }
  #float-wa { padding: 14px; border-radius: 50%; }
}
