/* ============================================================
   FA Dinar — Shared stylesheet for sub-pages
   Base design tokens & components mirror index.html exactly.
   ============================================================ */
:root {
  --gold: #C6A664;
  --gold-light: #E8D5A3;
  --gold-dark: #9A7B3A;
  --cream: #FAF6EE;
  --dark: #1A1611;
  --dark-card: #231E17;
  --text: #3D3529;
  --text-light: #8A7D6B;
  --white: #FFFDF8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
html { scroll-behavior: smooth; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  scrollbar-width: none;
}
body::-webkit-scrollbar { display: none; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,246,238,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(198,166,100,0.15);
  transition: all 0.4s;
}
.navbar.scrolled { padding: 0.8rem 2rem; box-shadow: 0 2px 30px rgba(0,0,0,0.06); }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900; color: var(--gold-dark);
  letter-spacing: 0.02em; text-decoration: none;
}
.nav-logo span { color: var(--dark); font-weight: 700; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text); font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--dark) !important; color: var(--gold-light) !important;
  padding: 0.6rem 1.4rem !important; border-radius: 4px;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all 0.3s; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--dark); color: var(--gold-light);
  padding: 1rem 2rem; border: none; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--dark);
  padding: 1rem 2rem; border: 1.5px solid var(--gold); border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

/* ---- PAGE HERO / HEADER ---- */
.page-hero {
  padding: 9rem 2rem 3rem;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(198,166,100,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(198,166,100,0.08) 0%, transparent 50%),
    var(--cream);
}
.page-hero-inner { max-width: 1000px; margin: 0 auto; }
.page-hero .hero-badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-dark);
  background: rgba(198,166,100,0.12);
  padding: 0.5rem 1.2rem; border-radius: 2px; margin-bottom: 1.2rem;
  border-left: 3px solid var(--gold);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.12; color: var(--dark); margin-bottom: 1.2rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-dark); }
.page-hero p.lead {
  font-size: 1.02rem; line-height: 1.8; color: var(--text-light); max-width: 640px;
}

/* ---- ITEM HERO (product detail) ---- */
.item-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; max-width: 1000px; margin: 0 auto;
}
.item-hero-grid .lead { margin-bottom: 1.8rem; }
.item-photo {
  background: var(--white); border: 1px solid rgba(198,166,100,0.18);
  border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.item-photo img { width: 100%; height: auto; border-radius: 10px; display: block; }
@media (max-width: 900px) {
  .item-hero-grid { grid-template-columns: 1fr; }
  .item-hero-grid .item-photo { order: -1; max-width: 360px; margin: 0 auto; }
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  max-width: 1000px; margin: 0 auto 1.4rem;
  font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.02em;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.breadcrumb a { color: var(--gold-dark); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li::after { content: '›'; margin-left: 0.4rem; color: var(--text-light); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb li[aria-current] { color: var(--text); font-weight: 600; }

/* ---- CONTENT SECTIONS ---- */
.content { max-width: 1000px; margin: 0 auto; padding: 3.5rem 2rem; }
.content-narrow { max-width: 820px; }
.content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--dark); margin-bottom: 1rem; line-height: 1.25;
}
.content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--dark); margin: 1.6rem 0 0.6rem;
}
.content p {
  font-size: 0.95rem; line-height: 1.85; color: var(--text); margin-bottom: 1rem;
}
.content p.muted { color: var(--text-light); }
.content ul, .content ol { margin: 0 0 1.2rem 1.2rem; }
.content li { font-size: 0.95rem; line-height: 1.8; color: var(--text); margin-bottom: 0.4rem; }
.content a.inline-link { color: var(--gold-dark); font-weight: 600; text-decoration: none; }
.content a.inline-link:hover { text-decoration: underline; }
.section-alt { background: #F0EAE0; }
.section-dark { background: linear-gradient(145deg, var(--dark), var(--dark-card)); color: var(--gold-light); }
.section-dark h2, .section-dark h3 { color: var(--gold-light); }
.section-dark p { color: rgba(232,213,163,0.7); }
.section-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.8rem;
}

/* ---- HIGHLIGHT CARD ---- */
.about-highlight {
  background: linear-gradient(145deg, var(--dark), var(--dark-card));
  border-radius: 12px; padding: 2.5rem; color: var(--gold-light);
}
.about-highlight .stat {
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(198,166,100,0.12);
}
.about-highlight .stat:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.about-highlight .stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; margin-bottom: 0.2rem;
}
.about-highlight .stat-label {
  font-size: 0.8rem; color: rgba(232,213,163,0.55); letter-spacing: 0.04em;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

/* ---- TABLE ---- */
.seo-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.seo-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border: 1px solid rgba(198,166,100,0.2); border-radius: 10px; overflow: hidden;
  font-size: 0.9rem;
}
.seo-table th, .seo-table td {
  padding: 0.85rem 1rem; text-align: left;
  border-bottom: 1px solid rgba(198,166,100,0.15);
}
.seo-table thead th {
  background: var(--dark); color: var(--gold-light);
  font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase;
  font-weight: 600;
}
.seo-table tbody tr:last-child td { border-bottom: none; }
.seo-table tbody tr:hover { background: rgba(198,166,100,0.06); }
.seo-table .wa-mini {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: #25D366; color: #fff; text-decoration: none;
  padding: 0.4rem 0.9rem; border-radius: 6px;
  font-size: 0.78rem; font-weight: 600; white-space: nowrap;
}
.seo-table .wa-mini:hover { background: #1fb855; }

/* ---- CARDS GRID (reuse why-card look) ---- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
  margin-top: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid rgba(198,166,100,0.18);
  border-radius: 10px; padding: 1.6rem; transition: all 0.3s;
}
.feature-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.06); border-color: var(--gold); }
.feature-card .icon {
  width: 44px; height: 44px; margin-bottom: 0.9rem;
  background: rgba(198,166,100,0.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem; font-weight: 700; margin: 0 0 0.4rem; color: var(--dark);
}
.feature-card p { font-size: 0.86rem; line-height: 1.7; color: var(--text-light); margin: 0; }

/* ---- STEPS ---- */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem;
  margin-top: 1.5rem;
}
.step-box {
  background: var(--white); border: 1px solid rgba(198,166,100,0.22);
  border-radius: 12px; padding: 1.4rem; text-align: center;
}
.step-box .num {
  width: 36px; height: 36px; margin: 0 auto 0.8rem;
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--gold-dark);
}
.step-box h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 0.3rem; }
.step-box p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ---- AREA BADGES ---- */
.area-badges { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.2rem 0; }
.cod-area-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(198,166,100,0.1); border: 1px solid rgba(198,166,100,0.25);
  border-radius: 20px; padding: 0.45rem 1rem;
  font-size: 0.82rem; font-weight: 600; color: var(--gold-dark);
}

/* ---- FAQ ---- */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  background: var(--white); border: 1px solid rgba(198,166,100,0.18);
  border-radius: 10px; padding: 1.3rem 1.5rem; margin-bottom: 1rem;
}
.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem; color: var(--dark); margin: 0 0 0.5rem;
}
.faq-item p { font-size: 0.9rem; line-height: 1.75; color: var(--text-light); margin: 0; }

/* ---- PROFILE (tentang) ---- */
.profile-card {
  display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap;
  background: var(--white); border: 1px solid rgba(198,166,100,0.15);
  border-radius: 16px; padding: 2rem 2.5rem; margin-top: 1.5rem;
}
.profile-photo {
  width: 280px; height: 280px; flex-shrink: 0;
  border-radius: 12px; overflow: hidden;
  border: 4px solid var(--gold-light);
  box-shadow: 0 8px 32px rgba(198,166,100,0.25);
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-info h2 { margin-bottom: 0.3rem; }
.profile-info p { margin-bottom: 0.5rem; }

/* ---- WA CHANNEL / CTA ---- */
.wa-channel {
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, rgba(37,211,102,0.08), rgba(198,166,100,0.06));
  border-top: 1px solid rgba(198,166,100,0.15);
  border-bottom: 1px solid rgba(198,166,100,0.15);
}
.wa-channel-inner {
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 14px;
  padding: 1.5rem 1.8rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}
.wa-channel-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: #25D366; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.wa-channel-icon svg { width: 30px; height: 30px; }
.wa-channel-text { flex: 1; }
.wa-channel-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #25D366; margin-bottom: 0.3rem;
}
.wa-channel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--dark);
  line-height: 1.3; margin-bottom: 0.2rem;
}
.wa-channel-sub { font-size: 0.82rem; color: var(--text-light); }
.wa-channel-btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #25D366; color: #fff;
  padding: 0.75rem 1.4rem; border-radius: 6px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
  text-decoration: none; transition: all 0.3s;
}
.wa-channel-btn:hover { background: #1fb855; transform: translateY(-2px); }

/* ---- CONTACT / CTA SECTION ---- */
.contact {
  padding: 5rem 2rem;
  background: radial-gradient(ellipse at 30% 50%, rgba(198,166,100,0.08) 0%, transparent 50%), #F0EAE0;
}
.contact-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--dark); margin-bottom: 0.8rem;
}
.contact-inner > p { color: var(--text-light); line-height: 1.7; margin-bottom: 2rem; font-size: 0.92rem; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: #25D366; color: white;
  padding: 1rem 2rem; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s; letter-spacing: 0.02em;
}
.wa-btn:hover { background: #1fb855; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.wa-btn svg { width: 20px; height: 20px; }

/* ---- FOOTER ---- */
footer {
  background: var(--dark); color: rgba(232,213,163,0.4);
  padding: 3rem 2rem; text-align: center; font-size: 0.78rem; line-height: 1.8;
}
footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900; color: var(--gold); margin-bottom: 0.3rem;
}
footer a { color: var(--gold-light); text-decoration: none; }
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem 1.5rem; margin: 1.4rem auto 0.4rem; max-width: 760px;
}
.footer-nav a {
  color: var(--gold-light); font-size: 0.78rem; text-decoration: none;
  letter-spacing: 0.03em; transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(198,166,100,0.15); gap: 1rem;
  }
  .wa-channel-inner { flex-direction: column; text-align: center; padding: 1.5rem; }
  .wa-channel-btn { width: 100%; justify-content: center; }
  .profile-photo { width: 100%; height: auto; aspect-ratio: 1/1; }
}
