/* =========================================================
   VASARUMA — AREA LANDING PAGE STYLES (area-landing.css)
   File reusable untuk semua halaman turunan lokasi
   (jasa-arsitek-<area>). Dipakai pertama kali oleh
   /jakarta-selatan/jasa-arsitek-kemang, dan bisa dipakai lagi
   untuk halaman kecamatan/area lain tanpa membuat CSS baru.
   Navbar, drawer, footer TETAP memakai css/style.css (tidak diubah).
   ========================================================= */

/* ===== BREADCRUMB ===== */
.al-breadcrumb {
  padding: 14px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.al-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.al-breadcrumb a { color: var(--muted); text-decoration: none; }
.al-breadcrumb a:hover { color: var(--navy); }
.al-breadcrumb li[aria-current="page"] { color: var(--navy); font-weight: 600; }
.al-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: rgba(0,61,102,0.3);
}

/* ===== PAGE HERO ===== */
.al-hero {
  padding: 0 0 30px;
  background: linear-gradient(160deg, var(--navy) 0%, #002944 100%);
  position: relative;
  overflow: hidden;
}
.al-hero-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.al-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.al-hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,41,68,0.15) 0%, rgba(0,41,68,0.95) 100%);
}
.al-hero-body { padding: 24px 20px 0; position: relative; }
.al-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(244,180,88,0.18), transparent 55%);
  pointer-events: none;
}
.al-hero-eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  position: relative;
}
.al-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 6.5vw, 36px);
  line-height: 1.25;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}
.al-hero h1 em { font-style: italic; color: var(--gold); }
.al-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 18px;
  position: relative;
}
.al-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
}
.al-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.al-badge i { color: var(--gold); }
.al-hero-btns { display: flex; flex-wrap: wrap; gap: 10px; position: relative; }
.al-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  position: relative;
}
.al-meta-row span { display: inline-flex; align-items: center; gap: 5px; }

/* ===== TABLE OF CONTENTS ===== */
.al-toc {
  margin: -14px 16px 24px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  padding: 16px 18px;
  position: relative;
  z-index: 5;
}
.al-toc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 10px;
}
.al-toc ol { list-style: none; counter-reset: toc; }
.al-toc li { counter-increment: toc; margin-bottom: 8px; }
.al-toc li:last-child { margin-bottom: 0; }
.al-toc a {
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}
.al-toc a::before {
  content: counter(toc) ". ";
  color: var(--gold);
  font-weight: 700;
}
.al-toc a:hover { text-decoration: underline; }

/* ===== GENERIC SECTION WRAP ===== */
.al-section { padding: 34px 20px; }
.al-section.alt { background: var(--cream); }

/* ===== FEATURE CARDS (Mengapa Kami) ===== */
.al-feature-grid { display: flex; flex-direction: column; gap: 14px; }
.al-feature-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 14px;
}
.al-feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.al-feature-card h3 { font-size: 14.5px; color: var(--navy); margin-bottom: 5px; }
.al-feature-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ===== BUILDING TYPE GRID ===== */
.al-building-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.al-building-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.al-building-card img { width: 100%; height: 90px; object-fit: cover; display: block; }
.al-building-card-body { padding: 10px 12px 12px; }
.al-building-card h3 { font-size: 12.5px; color: var(--navy); margin-bottom: 4px; }
.al-building-card p { font-size: 10.5px; color: var(--muted); line-height: 1.45; }

/* ===== STYLE CARDS (Gaya Desain) ===== */
.al-style-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
}
.al-style-card:last-child { margin-bottom: 0; }
.al-style-img { width: 100%; height: 170px; object-fit: cover; display: block; }
.al-style-body { padding: 18px; }
.al-style-body h3 { font-family: var(--font-display); font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.al-style-body > p { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.al-style-proscons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.al-style-pros, .al-style-cons { font-size: 12px; }
.al-style-pros-title { color: var(--green); font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 5px; }
.al-style-cons-title { color: #c0392b; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 5px; }
.al-style-pros ul, .al-style-cons ul { list-style: none; }
.al-style-pros li, .al-style-cons li { padding-left: 14px; position: relative; margin-bottom: 4px; color: var(--text); line-height: 1.5; }
.al-style-pros li::before { content: "•"; position: absolute; left: 0; color: var(--green); }
.al-style-cons li::before { content: "•"; position: absolute; left: 0; color: #c0392b; }
.al-style-fit {
  background: var(--surface);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.55;
}
.al-style-fit strong { color: var(--navy); }

/* ===== PROCESS STEPS ===== */
.al-process-list { display: flex; flex-direction: column; gap: 0; }
.al-process-step { display: flex; gap: 14px; padding-bottom: 22px; position: relative; }
.al-process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.al-process-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.al-process-when {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.al-process-body h3 { font-size: 14.5px; color: var(--navy); margin-bottom: 5px; }
.al-process-body p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ===== INSPIRATION / PORTFOLIO CARDS ===== */
.al-inspo-grid { display: flex; flex-direction: column; gap: 12px; }
.al-inspo-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  display: flex;
}
.al-inspo-img { width: 110px; height: 100px; object-fit: cover; flex-shrink: 0; }
.al-inspo-body { padding: 12px 14px; }
.al-inspo-tag {
  display: inline-block;
  background: var(--gold-light);
  color: #8a5a10;
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  margin-bottom: 6px;
}
.al-inspo-body h3 { font-size: 13px; color: var(--navy); margin-bottom: 4px; line-height: 1.35; }
.al-inspo-body p { font-size: 11.5px; color: var(--muted); line-height: 1.45; }

/* ===== TIPS LIST ===== */
.al-tips-list { display: flex; flex-direction: column; gap: 14px; }
.al-tip-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.al-tip-num {
  font-family: var(--font-display);
  font-size: 26px;
  color: rgba(0,61,102,0.15);
  margin-bottom: 6px;
}
.al-tip-card h3 { font-size: 14.5px; color: var(--navy); margin-bottom: 6px; }
.al-tip-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ===== AREA COVERAGE GROUPS ===== */
.al-coverage-group {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 12px;
}
.al-coverage-group:last-child { margin-bottom: 0; }
.al-coverage-group h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.al-coverage-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.al-coverage-chips span {
  background: var(--surface);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}
.al-coverage-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

/* ===== RELATED AREA TAGS (interlink antar halaman turunan lokasi) ===== */
.al-related-areas {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
}
.al-related-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.al-related-title i { color: var(--gold); }
.al-related-sub {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 14px;
}
.al-related-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.al-related-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.al-related-tag:hover { background: var(--gold-light); border-color: var(--gold); }
.al-related-tag i { font-size: 10px; color: var(--gold); }
.al-related-tag.current {
  background: var(--navy);
  color: #fff;
  cursor: default;
}
.al-related-tag.current i { color: var(--gold); }
.al-related-tag.current:hover { background: var(--navy); }

/* ===== RESPONSIVE (tablet+) ===== */
@media (min-width: 720px) {
  .al-hero, .al-section, .al-breadcrumb { padding-left: 40px; padding-right: 40px; }
  .al-toc { margin-left: 40px; margin-right: 40px; }
  .al-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
  .al-building-grid { grid-template-columns: repeat(3, 1fr); }
  .al-style-img { height: 220px; }
  .al-tips-list { display: grid; grid-template-columns: repeat(2, 1fr); }
}
