/* Hero, strip statistik, tentang, kontak CTA, footer, tombol WhatsApp. */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15, 17, 20, 0.92) 0%, rgba(15, 17, 20, 0.72) 45%, rgba(15, 17, 20, 0.35) 100%);
}
.hero-content { position: relative; padding: 90px 24px; max-width: 1200px; }
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(245, 159, 0, 0.16);
  border: 1px solid rgba(245, 159, 0, 0.45);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 800px;
}
.hero p {
  font-size: 17px;
  color: #d5d9de;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Stats ---------- */
.stats { background: var(--accent); }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 24px;
}
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat strong { font-family: var(--font-head); font-size: 30px; color: var(--dark); line-height: 1.1; }
.stat span { font-size: 13.5px; font-weight: 500; color: rgba(22, 24, 28, 0.75); }

/* ---------- About ---------- */
.about { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); height: 460px; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-card {
  position: absolute;
  left: -26px;
  bottom: -26px;
  background: var(--dark);
  color: #fff;
  padding: 20px 26px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent);
}
.about-card strong { font-family: var(--font-head); font-size: 18px; }
.about-card span { font-size: 12.5px; color: #b8bdc4; }
.about-text h2 { font-family: var(--font-head); font-size: clamp(28px, 3.4vw, 38px); color: var(--dark); margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 14px; font-size: 15.5px; }
.about-text .highlight {
  color: var(--dark);
  font-weight: 500;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  margin: 18px 0;
}
.about-list { margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--dark); font-size: 15px; }
.about-list svg { width: 22px; height: 22px; color: var(--accent-dark); flex-shrink: 0; }

/* ---------- Contact CTA ---------- */
.contact { background: var(--dark); color: #fff; padding: 90px 0; }
.contact-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.contact-text h2 { font-family: var(--font-head); font-size: clamp(26px, 3.2vw, 36px); line-height: 1.18; margin-bottom: 16px; }
.contact-text p { color: #b8bdc4; max-width: 520px; margin-bottom: 28px; font-size: 15.5px; }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-links,
.contact-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-links h3,
.contact-card h3 { font-family: var(--font-head); font-size: 18px; margin-bottom: 18px; color: #fff; }
.contact-card address {
  font-style: normal;
  color: #d5d9de;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 6px;
}
.store-hours { color: var(--accent); font-size: 13.5px; font-weight: 600; margin-bottom: 16px; }
.contact-map {
  width: 100%;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: block;
  margin-bottom: 14px;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}
.map-link svg { width: 16px; height: 16px; }
.map-link:hover { text-decoration: underline; }
.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #d5d9de;
  font-size: 14.5px;
  font-weight: 500;
  transition: all 0.15s ease;
}
.contact-links a svg { width: 18px; height: 18px; color: var(--accent); }
.contact-links a:hover { background: rgba(245, 159, 0, 0.12); color: var(--accent); }

/* ---------- Footer ---------- */
.footer { background: #101215; color: #aab0b8; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 70px 24px 50px;
}
.footer .brand-logo-lg { height: 88px; }
.footer-brand p { margin-top: 18px; font-size: 14px; line-height: 1.7; max-width: 340px; }
.footer-col h4 { font-family: var(--font-head); font-size: 15px; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; padding: 5px 0; font-size: 14px; color: #aab0b8; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-bottom p { padding: 20px 0; font-size: 13px; text-align: center; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media img { height: 380px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { min-height: 560px; }
  .hero-content { padding: 70px 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-card { left: 12px; bottom: 12px; }
}

@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; }
  .contact-actions .btn { width: 100%; }
}
