/* ================================================================
   AngkutAja – Landing Page Styles
   Design tokens → section styles → responsive breakpoints
   ================================================================ */

/* ─── TOKENS ──────────────────────────────────────────────────── */
:root {
  --ink:    #141414;
  --yellow: #FFC52B;
  --orange: #FF5436;
  --cream:  #FFFDF5;
  --wa:     #25D366;
  --shadow: 5px 5px 0 var(--ink);
  --border: 3px solid var(--ink);
  --max-w:  1180px;
  --px:     clamp(20px, 5vw, 30px);
}

/* ─── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; }
p           { margin: 0; }
a           { text-decoration: none; color: inherit; }
figure      { margin: 0; }

/* ─── NAV ─────────────────────────────────────────────────────── */
.site-nav {
  background: var(--ink);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo-link {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  /* White pill so the black wordmark reads on the dark nav */
  background: #fff;
  border-radius: 8px;
  padding: 5px 12px;
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14.5px;
  font-weight: 600;
  color: #cfcfcf;
  white-space: nowrap;
}

.nav-links a:hover { color: #fff; }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 8px;
  white-space: nowrap;
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 60px) var(--px) 40px;
  position: relative;
}

.hero-badge {
  position: absolute;
  right: clamp(16px, 4vw, 60px);
  top: 40px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 14px;
  transform: rotate(7deg);
  box-shadow: 0 10px 24px rgba(255, 84, 54, .3);
}

.hero-content { max-width: 860px; }

.location-pill {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(38px, 9vw, 74px);
  line-height: .98;
  font-weight: 700;
  letter-spacing: -.035em;
  margin-bottom: 22px;
}

.hero-highlight {
  background: var(--yellow);
  padding: 0 12px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 8px;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: #3a3a3a;
  font-weight: 500;
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 30px;
  border-radius: 12px;
  box-shadow: 6px 6px 0 var(--ink);
}

.hero-img-wrap {
  margin-top: 48px;
  position: relative;
}

.stat-badge {
  position: absolute;
  left: 30px;
  bottom: -22px;
  background: var(--ink);
  color: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  transform: rotate(-4deg);
  line-height: 1.3;
}

.stat-num { font-size: 26px; font-weight: 700; color: var(--yellow); }
.stat-txt { font-size: 14px; font-weight: 500; }

/* ─── IMAGE PLACEHOLDERS ──────────────────────────────────────── */
/* Reusable neo-brutalist placeholder that matches image-slot look.
   Swap: remove the <div class="slot-inner"> and uncomment the <img>. */
.img-slot {
  display: block;
  position: relative;
  background: rgba(0, 0, 0, .04);
  overflow: hidden;
}

.slot-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
}

.slot-icon    { opacity: .4; }
.slot-caption {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, .55);
  max-width: 90%;
  line-height: 1.4;
}

/* Real photos inside any slot fill the box */
.img-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero slot */
.img-slot-hero {
  width: 100%;
  height: clamp(220px, 48vw, 420px);
  border: 4px solid var(--ink);
  border-radius: 20px;
}

/* Gallery slots – shared */
.bento .img-slot {
  width: 100%;
  height: 100%;
  border: var(--border);
  border-radius: 18px;
}

/* ─── MARQUEE STRIP ───────────────────────────────────────────── */
.marquee-strip {
  background: var(--yellow);
  padding: 18px 0;
  margin-top: 40px;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.marquee-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
}

.marquee-sep { color: var(--orange); }

/* ─── SHARED SECTION SHELL ────────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 84px) var(--px);
}

/* ─── KEUNGGULAN ──────────────────────────────────────────────── */
.heading-lg {
  font-size: clamp(30px, 6vw, 46px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 44px;
}

.text-orange { color: var(--orange); }
.text-yellow { color: var(--yellow); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.card {
  background: #fff;
  border: var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-yellow { background: var(--yellow); }
.icon-orange { background: var(--orange); }

.card-title { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.card-body  { font-size: 14px; color: #555; line-height: 1.5; }

/* ─── CARA PESAN ──────────────────────────────────────────────── */
.cara-section { background: var(--ink); color: #fff; }

.heading-lg-light {
  font-size: clamp(30px, 6vw, 46px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 44px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.step-card {
  border: 3px solid var(--yellow);
  border-radius: 18px;
  padding: 30px;
}

.step-num {
  font-size: 60px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title { font-size: 21px; font-weight: 700; margin-bottom: 9px; }
.step-body  { font-size: 15px; color: #b5b5b5; line-height: 1.55; }

/* ─── GALERI ──────────────────────────────────────────────────── */
.galeri-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.galeri-title {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.galeri-sub {
  font-size: 15px;
  color: #555;
  line-height: 1.55;
  font-weight: 500;
  max-width: 320px;
}

/* Bento grid (4 cols, 188px rows) */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 188px;
  gap: 16px;
}

.gal-1 { grid-column: span 2; grid-row: span 2; }
.gal-2 { grid-column: span 2; }
.gal-5 { grid-column: span 2; }
.gal-6 { grid-column: span 2; }

/* ─── TESTIMONI ───────────────────────────────────────────────── */
.testi-section {
  background: var(--yellow);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.testi-card {
  background: #fff;
  border: var(--border);
  border-radius: 18px;
  padding: 26px;
}

.testi-stars  { font-size: 18px; margin-bottom: 12px; }
.testi-quote  { font-size: 15px; line-height: 1.55; font-weight: 500; margin-bottom: 18px; }
.testi-name   { font-size: 15px; font-weight: 700; }
.testi-role   { font-size: 13px; color: #666; }

/* ─── AREA + FAQ ──────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.area-title {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.area-sub {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 22px;
}

.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.tag {
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 15px;
  border-radius: 8px;
}

.tag-dark   { background: var(--ink);    color: #fff; }
.tag-orange { background: var(--orange); color: #fff; }

.faq-title {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-card {
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 20px 22px;
}

.faq-q { font-size: 16.5px; font-weight: 700; margin-bottom: 6px; }
.faq-a { font-size: 14.5px; color: #555; line-height: 1.5; }

/* ─── CTA FOOTER ──────────────────────────────────────────────── */
.cta-footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(56px, 9vw, 80px) var(--px);
  text-align: center;
}

.cta-inner { max-width: var(--max-w); margin: 0 auto; }

.cta-title {
  font-size: clamp(32px, 7vw, 54px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.02;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 18px;
  color: #b5b5b5;
  font-weight: 500;
  margin-bottom: 32px;
}

.btn-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
  padding: 19px 34px;
  border-radius: 12px;
  box-shadow: 6px 6px 0 var(--orange);
}

.credit { margin-top: 44px; font-size: 14px; color: #777; }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 820px) {
  .nav-links  { display: none; }
  .hero-badge { display: none; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  /* Reset all explicit spans, then re-apply first-child */
  .bento .img-slot {
    grid-column: auto;
    grid-row: auto;
  }

  .bento .img-slot:first-child { grid-column: span 2; }

  .galeri-title { font-size: clamp(28px, 7vw, 46px); }
}

@media (max-width: 480px) {
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 170px;
  }

  .bento .img-slot:first-child { grid-column: auto; }
}
