/* ==========================================================================
   WANTEN SUNAT CILEGON - MODERN DESIGN SYSTEM & STYLESHEET
   Optimized for 100 PageSpeed, Zero CLS, Mobile-First & Rich Brand Aesthetics
   ========================================================================== */

/* --- Custom Properties / CSS Variables --- */
:root {
  --brand-cyan: #09B4CC;
  --brand-cyan-dark: #078C9F;
  --brand-cyan-light: #EBF8FA;
  --brand-cyan-glow: rgba(9, 180, 204, 0.25);
  
  --brand-orange: #FF6B00;
  --brand-orange-hover: #E55F00;
  --brand-orange-light: #FFF2E8;
  --brand-orange-glow: rgba(255, 107, 0, 0.3);

  --brand-navy: #0D2238;
  --brand-navy-card: #132D48;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  --bg-page: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-alt: #F0F9FB;

  --border-light: #E2E8F0;
  --border-accent: rgba(9, 180, 204, 0.3);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(13, 34, 56, 0.08);
  --shadow-lg: 0 10px 25px -3px rgba(13, 34, 56, 0.1), 0 4px 6px -2px rgba(13, 34, 56, 0.05);
  --shadow-glow: 0 10px 30px rgba(9, 180, 204, 0.2);
  --shadow-orange: 0 8px 20px rgba(255, 107, 0, 0.28);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --container-max: 1200px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --- Base Reset & Typography --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  position: relative;
}

img, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
}

/* --- Layout Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-navy {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #081B2E 100%);
  color: #FFFFFF;
}

.text-center { text-align: center; }
.text-cyan { color: var(--brand-cyan); }
.text-orange { color: var(--brand-orange); }

/* --- Section Header Component --- */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-cyan-light);
  color: var(--brand-cyan-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(9, 180, 204, 0.25);
}

.badge-tag.badge-orange {
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  border-color: rgba(255, 107, 0, 0.25);
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--brand-navy);
  margin-bottom: 0.85rem;
}

.section-navy .section-title {
  color: #FFFFFF;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.section-navy .section-desc {
  color: var(--text-light);
}

/* --- Announcement Bar --- */
.topbar {
  display: none;
  background: var(--brand-navy);
  color: #FFFFFF;
  font-size: 0.825rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .topbar {
    display: block;
  }
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-badge {
  background: var(--brand-orange);
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.topbar-link:hover {
  color: var(--brand-cyan);
}

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 48px;
  width: auto;
}

.nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--brand-cyan);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-cyan);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--brand-cyan-dark);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--brand-orange);
  color: #FFFFFF;
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  background: var(--brand-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 107, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--brand-navy);
  border: 2px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--brand-cyan);
  color: var(--brand-cyan);
  background: var(--brand-cyan-light);
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  cursor: pointer;
  color: var(--brand-navy);
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 99;
  transform: translateY(-120%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
  border-bottom: 2px solid var(--brand-cyan);
}

.mobile-drawer.active {
  transform: translateY(0);
}

.mobile-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light);
}

/* --- Hero Section --- */
.hero {
  padding: 3.5rem 0 4.5rem 0;
  background: radial-gradient(circle at 85% 20%, rgba(9, 180, 204, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 40%),
              #FFFFFF;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--brand-cyan-light);
  border: 1px solid rgba(9, 180, 204, 0.35);
  color: var(--brand-cyan-dark);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.hero-title {
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1.18;
  color: var(--brand-navy);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.15rem;
  }
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

@media (min-width: 560px) {
  .hero-benefits {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.benefit-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-cyan-light);
  color: var(--brand-cyan-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.75rem;
}

@media (min-width: 500px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}

.hero-trust-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
}

.trust-stars {
  color: #F59E0B;
  display: flex;
  gap: 2px;
}

.trust-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-text strong {
  color: var(--brand-navy);
}

/* Mascot Visual Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile Hero Re-ordering: Gambar Maskot Tampil Lebih Dulu */
@media (max-width: 959px) {
  .hero-visual {
    order: -1;
    margin-bottom: 0.5rem;
  }
}

.mascot-card {
  position: relative;
  background: radial-gradient(circle at center, #E0F7FA 0%, #B2EBF2 60%, #80DEEA 100%);
  border-radius: 36px;
  padding: 2.25rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 20px 45px rgba(9, 180, 204, 0.22);
  border: 4px solid #FFFFFF;
  text-align: center;
  max-width: 440px;
  width: 100%;
}

.mascot-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 15px 25px rgba(13, 34, 56, 0.25));
  animation: floatMascot 4s ease-in-out infinite;
}

@keyframes floatMascot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mascot-badge {
  background: var(--brand-navy);
  color: #FFFFFF;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 3;
  max-width: 90%;
}

.mascot-float-pill {
  position: absolute;
  background: #FFFFFF;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(13, 34, 56, 0.12);
  font-size: 0.825rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 4;
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.pill-top-left {
  top: 20px;
  left: -15px;
  color: var(--brand-orange);
}

.pill-bottom-right {
  top: 32%;
  right: -18px;
  bottom: auto;
  color: var(--brand-cyan-dark);
}

@media (max-width: 480px) {
  .mascot-card {
    padding: 1.75rem 1rem 1.25rem 1rem;
    border-radius: 24px;
  }
  .mascot-img {
    max-width: 250px;
  }
  .mascot-badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.85rem;
    margin-top: 0.85rem;
  }
  .mascot-float-pill {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
  .pill-top-left {
    top: 10px;
    left: 4px;
  }
  .pill-bottom-right {
    top: 50%;
    right: 4px;
  }
}

/* --- Trust / EEAT Bar --- */
.trust-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.75rem 0;
}

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

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-cyan-light);
  color: var(--brand-cyan-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-title {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.2;
}

.trust-item-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Problem vs Solution Section --- */
.empathy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 800px) {
  .empathy-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.empathy-card {
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.card-fear {
  background: #FFFBFB;
  border-left: 6px solid #EF4444;
}

.card-solution {
  background: #F0FDF4;
  border-left: 6px solid #10B981;
}

.empathy-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card-fear .empathy-card-title { color: #B91C1C; }
.card-solution .empathy-card-title { color: #047857; }

.empathy-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.empathy-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.975rem;
  color: var(--text-dark);
}

.empathy-list-icon {
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- Method Cards Grid --- */
.methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 680px) {
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.method-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-cyan);
}

.method-badge-top {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--brand-orange);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.method-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--brand-cyan-light);
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.method-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.method-summary {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.method-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.method-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* --- Special Services Grid --- */
.special-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .special-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 990px) {
  .special-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.special-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.25s ease;
}

.special-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: var(--brand-cyan);
}

.special-icon {
  color: var(--brand-cyan);
  margin-bottom: 1rem;
}

.special-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.special-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* --- Pricing / Packages Table --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 860px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.pricing-card.featured {
  border-color: var(--brand-orange);
  box-shadow: 0 14px 35px rgba(255, 107, 0, 0.18);
  transform: translateY(-4px);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #EF4444;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-title {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--brand-navy);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Tiered Price Options Box */
.pricing-tiers-box {
  background: var(--bg-alt);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-tier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(9, 180, 204, 0.15);
}

.pricing-tier-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.tier-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-navy);
}

.tier-price-group {
  text-align: right;
}

.tier-strike {
  font-size: 0.825rem;
  color: #94A3B8;
  text-decoration: line-through;
  margin-right: 0.35rem;
  font-weight: 600;
}

.tier-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand-navy);
}

.tier-price.tier-promo {
  color: #10B981;
}

/* Add-on Box */
.addon-section-box {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-alt) 100%);
  border: 2px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-md);
}

.addon-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.addon-badge {
  background: var(--brand-navy);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.addon-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.addon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 680px) {
  .addon-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.addon-item-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.addon-item-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-cyan);
}

.addon-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--brand-navy);
  display: flex;
  flex-direction: column;
}

.addon-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.2rem;
}

.addon-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand-orange);
  white-space: nowrap;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.925rem;
  color: var(--text-dark);
}

.pricing-item-icon {
  color: #10B981;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--brand-cyan);
}

/* --- Hadiah & Fasilitas Khitan Showcase --- */
.hadiah-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hadiah-showcase-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
  }
}

.hadiah-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(9, 180, 204, 0.18);
  border: 4px solid #FFFFFF;
  background: var(--bg-surface);
}

.hadiah-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hadiah-image-box:hover .hadiah-img {
  transform: scale(1.02);
}

.hadiah-list-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hadiah-item-card {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hadiah-item-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-md);
}

.hadiah-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hadiah-item-info {
  flex-grow: 1;
}

.hadiah-item-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.25rem;
}

.hadiah-item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.hadiah-cta-box {
  margin-top: 1rem;
}

.hadiah-cta-box .btn {
  width: 100%;
}

/* --- Social Proof & Testimonial --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testi-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-stars {
  color: #F59E0B;
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-cyan-light);
  color: var(--brand-cyan-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.testi-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.testi-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Area Coverage Section (Local SEO Booster) --- */
.areas-box {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 600px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-item {
  background: var(--bg-alt);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(9, 180, 204, 0.15);
}

.area-icon {
  color: var(--brand-cyan);
}

/* --- FAQ Accordion --- */
.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--brand-cyan);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--brand-cyan);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.35rem 1.5rem;
}

/* --- Location & Map CTA --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-cyan-light);
  color: var(--brand-cyan-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-navy);
}

.contact-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.map-placeholder-box {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 440px;
  display: flex;
  flex-direction: column;
}

.map-header-bar {
  background: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  z-index: 2;
}

.map-direct-link {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  border: 1px solid rgba(9, 180, 204, 0.2);
}

.map-direct-link:hover {
  background: var(--brand-cyan);
  color: #FFFFFF;
}

.map-embed-iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  flex: 1 1 auto;
  border: none;
  display: block;
}

/* --- Footer --- */
.site-footer {
  background: var(--brand-navy);
  color: var(--text-light);
  padding: 4rem 0 2rem 0;
  font-size: 0.925rem;
  border-top: 4px solid var(--brand-cyan);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: var(--text-light);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--brand-cyan);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* --- Floating WhatsApp CTA --- */
.floating-wa-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 95;
  background: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulseWa 2.5s infinite;
}

.floating-wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Sticky Mobile Bottom Action Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 90;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
  .floating-wa-btn {
    bottom: 30px;
    right: 30px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 72px;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .pricing-card {
    padding: 2rem 1.25rem;
  }
  .addon-section-box {
    padding: 1.5rem 1.25rem;
  }
}

.mobile-bottom-bar .btn {
  flex: 1;
  font-size: 0.875rem;
  padding: 0.65rem 0.5rem;
}
