/* Bulan Madu Impian — Romantic Honeymoon Travel */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #7b2d8b;
  --primary-light: #9b3dab;
  --primary-dark: #5a1f68;
  --accent: #ff85a1;
  --accent-light: #ffb3c6;
  --accent-dark: #e05070;
  --gold: #d4a843;
  --gold-light: #f0c96a;
  --bg: #fdf6ff;
  --bg2: #fff5f8;
  --text: #2d1a36;
  --text-muted: #7a6080;
  --white: #ffffff;
  --border: #e8d4f0;
  --shadow: 0 4px 24px rgba(123,45,139,0.12);
  --shadow-lg: 0 8px 48px rgba(123,45,139,0.18);
  --radius: 16px;
  --radius-sm: 8px;
}

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ── NAV ── */
nav {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(123,45,139,0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-text strong { font-size: 15px; color: var(--primary); font-weight: 700; }
.nav-brand-text span { font-size: 11px; color: var(--text-muted); }

#nav-toggle { display: none; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: rgba(123,45,139,0.08);
}
.nav-links .nav-cta a {
  background: linear-gradient(135deg, var(--primary), var(--accent-dark));
  color: #fff;
  font-weight: 600;
}
.nav-links .nav-cta a:hover { opacity: 0.9; background: linear-gradient(135deg, var(--primary), var(--accent-dark)); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 65px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 4px;
  }
  .nav-links a { display: block; width: 100%; text-align: center; padding: 12px; }
  #nav-toggle:checked ~ .nav-links { display: flex; }
  #nav-toggle:checked ~ .nav-hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  #nav-toggle:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked ~ .nav-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a24 0%, #3d1155 40%, #6b1d7a 70%, #9b2a5a 100%);
}
.hero-decor {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.hero-circle-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-circle-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.hero-circle-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #fff 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0.05;
}
.hero-petals {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
}
.petal {
  position: absolute;
  width: 12px; height: 20px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-radius: 50% 0 50% 0;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}
.petal:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.petal:nth-child(2) { top: 60%; left: 85%; animation-delay: 1.5s; }
.petal:nth-child(3) { top: 40%; left: 70%; animation-delay: 3s; }
.petal:nth-child(4) { top: 80%; left: 30%; animation-delay: 2s; }
.petal:nth-child(5) { top: 15%; left: 55%; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 40px 24px;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,133,161,0.2);
  border: 1px solid rgba(255,133,161,0.4);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--accent-light);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(255,80,112,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,80,112,0.5); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--gold-light); }
.hero-stat span { font-size: 12px; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }

/* ── SECTION ── */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 15px;
  margin-bottom: 48px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── FITUR CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon.purple { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.feature-icon.pink { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.feature-icon.gold { background: linear-gradient(135deg, #b8860b, var(--gold)); }
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ── PAKET PREVIEW ── */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.paket-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.paket-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.paket-card.featured { border-color: var(--accent); }
.paket-badge-pop {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 1px;
}
.paket-visual {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.paket-visual.bali {
  background: linear-gradient(135deg, #3d1155 0%, #7b2d8b 50%, #ff85a1 100%);
}
.paket-visual.lombok {
  background: linear-gradient(135deg, #1a4a3d 0%, #2d7a6b 50%, #a8e6cf 100%);
}
.paket-visual.maladewa {
  background: linear-gradient(135deg, #0a2a4a 0%, #1565c0 50%, #42a5f5 100%);
}
.paket-visual-icon {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.paket-visual-icon span { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600; letter-spacing: 1px; }
.paket-body { padding: 24px; }
.paket-body h3 { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.paket-dur { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.paket-price { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.paket-price span { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.paket-includes { list-style: none; margin-bottom: 20px; }
.paket-includes li {
  font-size: 13px; color: var(--text-muted);
  padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.paket-includes li::before { content: "✓"; color: var(--accent-dark); font-weight: 700; }
.btn-sm {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-sm:hover { opacity: 0.9; }
.btn-sm.accent {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

/* ── TESTIMONI ── */
.bg-soft { background: var(--bg2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testi-quote {
  font-size: 48px;
  line-height: 0.5;
  color: var(--accent-light);
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--primary-dark); }
.testi-dest { font-size: 12px; color: var(--text-muted); }
.stars { color: var(--gold); font-size: 13px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #c0396e 100%);
  color: #fff;
  padding: 64px 24px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.cta-banner p { opacity: 0.85; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--primary-dark);
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}
.btn-white:hover { transform: translateY(-2px); }
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── PAKET FULL PAGE ── */
.paket-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.paket-full-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.paket-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.paket-full-card.best { border: 2px solid var(--accent); }
.paket-full-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.paket-full-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 3px 12px; border-radius: 999px;
  margin-bottom: 12px;
}
.paket-full-tag.gold-tag {
  background: linear-gradient(135deg, #b8860b, var(--gold));
}
.paket-full-header h3 { font-size: 20px; font-weight: 800; color: var(--primary-dark); margin-bottom: 4px; }
.paket-full-dur { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.paket-full-price { font-size: 26px; font-weight: 800; color: var(--primary); }
.paket-full-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.paket-full-body { padding: 24px 28px; }
.include-title { font-size: 13px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.include-list { list-style: none; margin-bottom: 16px; }
.include-list li {
  font-size: 13px; color: var(--text-muted);
  padding: 5px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.include-list li.yes::before { content: "✓"; color: #22c55e; font-weight: 700; flex-shrink: 0; }
.include-list li.no::before { content: "✗"; color: #ef4444; font-weight: 700; flex-shrink: 0; }
.paket-full-body .btn-sm, .paket-full-body .btn-sm.accent { width: 100%; text-align: center; padding: 12px; }

/* ── DESTINASI ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.dest-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dest-visual {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.dest-visual.bali { background: linear-gradient(135deg, #4a1060, #8b3da0, #e060a0); }
.dest-visual.lombok { background: linear-gradient(135deg, #1a3a2a, #2d6b4a, #60c07a); }
.dest-visual.maladewa { background: linear-gradient(135deg, #0a2040, #1560b0, #40b0e0); }
.dest-visual.seminyak { background: linear-gradient(135deg, #5a1a70, #a040b0, #ff70a0); }
.dest-visual.gili { background: linear-gradient(135deg, #0a3030, #208060, #60d0a0); }
.dest-visual.ubud { background: linear-gradient(135deg, #2a3a10, #5a7820, #a0c040); }
.dest-visual.nusapenida { background: linear-gradient(135deg, #1a2a50, #304080, #6080d0); }
.dest-visual.kuta { background: linear-gradient(135deg, #602010, #c04020, #f08040); }
.dest-visual-inner { text-align: center; padding: 16px; }
.dest-visual-inner p { color: rgba(255,255,255,0.85); font-size: 12px; margin-top: 8px; letter-spacing: 1px; }
.dest-body { padding: 20px; }
.dest-body h3 { font-size: 17px; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.dest-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.dest-highlights { display: flex; flex-wrap: wrap; gap: 6px; }
.dest-tag {
  font-size: 11px; font-weight: 600;
  background: rgba(123,45,139,0.1);
  color: var(--primary);
  padding: 3px 10px; border-radius: 999px;
}

/* ── GALERI ── */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.galeri-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}
.galeri-item:hover { transform: scale(1.02); }
.galeri-item:nth-child(1) { background: linear-gradient(135deg, #4a1060, #8b3da0, #ff85a1); }
.galeri-item:nth-child(2) { background: linear-gradient(135deg, #0a3050, #1565c0, #64b5f6); }
.galeri-item:nth-child(3) { background: linear-gradient(135deg, #1a3a2a, #2e7d52, #81c784); }
.galeri-item:nth-child(4) { background: linear-gradient(135deg, #5a1070, #9c27b0, #e040fb); }
.galeri-item:nth-child(5) { background: linear-gradient(135deg, #602010, #bf360c, #ff7043); }
.galeri-item:nth-child(6) { background: linear-gradient(135deg, #1a2a4a, #283593, #5c6bc0); }
.galeri-item:nth-child(7) { background: linear-gradient(135deg, #2a1a4a, #6a1b9a, #ce93d8); }
.galeri-item:nth-child(8) { background: linear-gradient(135deg, #0a2a20, #00695c, #4db6ac); }
.galeri-item:nth-child(9) { background: linear-gradient(135deg, #3a1a0a, #795548, #d7ccc8); }
.galeri-item:nth-child(10) { background: linear-gradient(135deg, #4a2060, #7b1fa2, #f48fb1); }
.galeri-item:nth-child(11) { background: linear-gradient(135deg, #0a1a3a, #0d47a1, #42a5f5); }
.galeri-item:nth-child(12) { background: linear-gradient(135deg, #2a1a10, #4e342e, #a1887f); }
.galeri-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: #fff;
  padding: 24px 14px 12px;
  font-size: 13px; font-weight: 600;
}
.galeri-sub { font-size: 11px; opacity: 0.75; font-weight: 400; }

/* ── KONTAK ── */
.kontak-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .kontak-layout { grid-template-columns: 1fr; } }
.kontak-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 16px; }
.kontak-info p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.kontak-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.kontak-item { display: flex; align-items: flex-start; gap: 16px; }
.kontak-item-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kontak-item-text strong { display: block; font-size: 14px; color: var(--primary-dark); margin-bottom: 2px; }
.kontak-item-text span { font-size: 13px; color: var(--text-muted); }
.jam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.jam-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 12px; background: rgba(123,45,139,0.06); border-radius: 8px; }
.jam-row span:first-child { color: var(--text-muted); }
.jam-row span:last-child { color: var(--primary); font-weight: 600; }
.map-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #e8d4f0, #ffd4e8);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--primary);
  font-size: 14px; font-weight: 500;
  border: 2px dashed var(--border);
  margin-top: 24px;
}
.kontak-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.kontak-form h3 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123,45,139,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent-dark));
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-submit:hover { opacity: 0.92; transform: translateY(-1px); }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #c0396e 100%);
  color: #fff;
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,133,161,0.15) 0%, transparent 60%);
}
.page-header-inner { position: relative; max-width: 640px; margin: 0 auto; }
.page-header h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-header p { opacity: 0.85; font-size: 16px; }

/* ── FOOTER ── */
footer {
  background: #1a0a24;
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand strong { display: block; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.social-btn:hover { background: var(--accent); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
}
.footer-bottom a { color: var(--accent-light); text-decoration: none; }

/* ── MISC ── */
.divider {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--gold));
  border-radius: 999px;
  width: 60px;
  margin-bottom: 24px;
}
.text-center .divider { margin-left: auto; margin-right: auto; }

.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  display: flex; align-items: center; gap: 8px;
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

@media (max-width: 768px) {
  section { padding: 56px 20px; }
  .hero { min-height: 70vh; }
  .hero-stats { gap: 24px; }
}
