/* FoodHall Nusantara — style.css */
:root {
  --primary: #0288d1;
  --primary-dark: #0277bd;
  --primary-light: #b3e5fc;
  --accent: #ff6f00;
  --accent-light: #ffe0b2;
  --bg: #f5f5f5;
  --bg-white: #ffffff;
  --bg-dark: #1a1a2e;
  --text: #1a1a1a;
  --text-muted: #555;
  --text-light: #888;
  --border: #e0e0e0;
  --shadow: 0 2px 12px rgba(0,0,0,0.1);
  --shadow-hover: 0 6px 24px rgba(2,136,209,0.18);
  --radius: 10px;
  --radius-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  padding-top: 36px;
}

/* ─── Demo Bar ─── */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 1.4;
}
.demo-bar a {
  color: var(--accent-light);
  font-weight: 700;
  text-decoration: none;
}
.demo-bar a:hover { text-decoration: underline; }

/* ─── Header & Nav ─── */
header {
  background: var(--bg-white);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 36px;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 10px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Checkbox hack nav */
#nav-toggle { display: none; }

.nav-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-label span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
nav ul li a {
  display: block;
  padding: 8px 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav ul li a:hover,
nav ul li a.active {
  background: var(--primary-light);
  color: var(--primary-dark);
}
nav ul li a.btn-nav {
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
}
nav ul li a.btn-nav:hover {
  background: #e65100;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #01579b 50%, var(--bg-dark) 100%);
  color: #fff;
  padding: 70px 16px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,111,0,0.12);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-light);
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Food Court SVG Layout ─── */
.foodcourt-layout {
  max-width: 700px;
  margin: 50px auto 0;
  position: relative;
}

/* ─── Section ─── */
.section { padding: 60px 16px; }
.section-alt { background: var(--bg-white); }

.container { max-width: 1100px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.section-header p { color: var(--text-muted); font-size: 1rem; }
.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ─── Tenant Grid ─── */
.tenant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.tenant-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--primary);
}
.tenant-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.tenant-card.accent-border { border-top-color: var(--accent); }
.tenant-card.green-border { border-top-color: #2e7d32; }
.tenant-card.purple-border { border-top-color: #7b1fa2; }

.tenant-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.tenant-icon.blue { background: var(--primary-light); }
.tenant-icon.orange { background: #ffe0b2; }
.tenant-icon.green { background: #c8e6c9; }
.tenant-icon.red { background: #ffcdd2; }
.tenant-icon.purple { background: #e1bee7; }
.tenant-icon.yellow { background: #fff9c4; }
.tenant-icon.teal { background: #b2dfdb; }
.tenant-icon.pink { background: #fce4ec; }

.tenant-booth {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.tenant-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.tenant-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.tenant-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.tenant-price { color: var(--accent); font-weight: 700; }
.tenant-hours { color: var(--text-light); }

/* ─── Category Pills ─── */
.category-pill {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.pill-nasi { background: #fff3e0; color: #e65100; }
.pill-mie { background: #fce4ec; color: #c62828; }
.pill-jajanan { background: #f3e5f5; color: #6a1b9a; }
.pill-minuman { background: #e3f2fd; color: #0277bd; }
.pill-dessert { background: #fce4ec; color: #880e4f; }
.pill-western { background: #e8f5e9; color: #1b5e20; }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--primary);
  color: #fff;
  padding: 30px 16px;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--accent-light);
  display: block;
}
.stat-label {
  font-size: 12px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── Fasilitas ─── */
.fasilitas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.fasilitas-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.fasilitas-item:hover { transform: translateY(-3px); }
.fasilitas-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.fasilitas-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}
.fasilitas-desc { font-size: 12px; color: var(--text-muted); }

/* ─── Jam Buka ─── */
.jam-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.jam-card h3 { font-size: 1.3rem; margin-bottom: 20px; }
.jam-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
}
.jam-row:last-child { border-bottom: none; }
.jam-hari { opacity: 0.85; }
.jam-waktu { font-weight: 700; color: var(--accent-light); }

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #e65100 100%);
  color: #fff;
  padding: 60px 16px;
  text-align: center;
}
.cta-section h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.cta-section p { opacity: 0.9; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--accent); }
.btn-white:hover { background: #fff8e1; }
.btn-outline-white { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 50px 16px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; margin-bottom: 10px; }
.page-hero p { opacity: 0.88; font-size: 1rem; max-width: 540px; margin: 0 auto; }

/* ─── Breadcrumb ─── */
.breadcrumb {
  padding: 12px 16px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── Tenant Directory ─── */
.tenant-dir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.tenant-dir-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.tenant-dir-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.tenant-dir-header {
  padding: 20px 20px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}
.tenant-dir-body { padding: 16px 20px 20px; flex: 1; }
.tenant-dir-footer {
  padding: 14px 20px;
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.booth-badge {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.tenant-dir-name { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.menu-item-list { list-style: none; }
.menu-item-list li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.menu-item-list li:last-child { border-bottom: none; }
.menu-item-price { color: var(--accent); font-weight: 700; }
.menu-open { color: #2e7d32; font-weight: 700; }
.menu-closed { color: #c62828; font-weight: 700; }

/* ─── Category Filter ─── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 20px;
  border: 2px solid var(--border);
  background: var(--bg-white);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ─── About / Tentang ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--primary-light) 0%, #e3f2fd 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.about-text h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }

.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: var(--primary-light);
}
.timeline-item { position: relative; margin-bottom: 24px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-year {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.timeline-text { font-size: 14px; color: var(--text-muted); }

.nilai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.nilai-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.nilai-card h4 { font-weight: 800; color: var(--text); margin-bottom: 8px; }
.nilai-card p { font-size: 13px; color: var(--text-muted); }

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.gallery-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.gallery-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gallery-caption {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  border-top: 1px solid var(--border);
}
.gallery-caption small { color: var(--text-muted); font-weight: 400; font-size: 12px; }

/* Floor plan CSS art */
.floor-plan {
  width: 100%;
  height: 100%;
  background: #e8f5e9;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  padding: 10px;
}
.fp-booth {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}
.fp-b1 { background: var(--primary); }
.fp-b2 { background: var(--accent); }
.fp-b3 { background: #2e7d32; }
.fp-b4 { background: #7b1fa2; }
.fp-b5 { background: #c62828; }
.fp-b6 { background: #f57c00; }
.fp-center { background: #b2dfdb; grid-column: 2/4; border-radius: 6px; }

/* Dining area art */
.dining-area {
  width: 100%;
  height: 100%;
  background: #fff8e1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 5px;
  padding: 10px;
}
.table-set {
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-set::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px dashed #ffcc02;
  border-radius: 50%;
}

/* Parking art */
.parking-area {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
  padding: 10px;
}
.park-slot {
  background: var(--bg-white);
  border-radius: 3px;
  border: 1px solid #bdbdbd;
}
.park-slot.taken { background: #b3e5fc; }
.park-slot.road { background: #e0e0e0; border: none; grid-column: span 6; }

/* Mosque art */
.masjid-visual {
  width: 100%;
  height: 100%;
  background: #e8f5e9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Kids area art */
.kids-area {
  width: 100%;
  height: 100%;
  background: #fff9c4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
  padding: 14px;
}
.kids-shape {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.ks1 { background: #f48fb1; }
.ks2 { background: #80deea; }
.ks3 { background: #a5d6a7; }
.ks4 { background: #ffcc02; }
.ks5 { background: #ce93d8; }
.ks6 { background: #ff8a65; }

/* Open kitchen art */
.kitchen-area {
  width: 100%;
  height: 100%;
  background: #fbe9e7;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  padding: 14px;
}
.kitchen-item {
  border-radius: 6px;
  background: #ff8a65;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Form ─── */
.form-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}
.form-section h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.form-section p { color: var(--text-muted); margin-bottom: 24px; font-size: 14px; }
.form-section h3 span {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 8px;
  font-weight: 700;
  vertical-align: middle;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form-group textarea { min-height: 100px; resize: vertical; }

.form-submit { margin-top: 20px; }

.info-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.info-box h4 { font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.info-box ul { list-style: none; }
.info-box ul li { font-size: 13px; color: var(--text); padding: 4px 0; }
.info-box ul li::before { content: "✓ "; color: var(--primary); font-weight: 700; }

.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.paket-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.paket-card:hover { border-color: var(--primary); background: var(--primary-light); }
.paket-card h4 { font-weight: 800; color: var(--text); margin-bottom: 6px; }
.paket-card p { font-size: 12px; color: var(--text-muted); }
.paket-card .paket-price { color: var(--accent); font-weight: 700; font-size: 1rem; margin-top: 8px; }

/* ─── Footer ─── */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.85);
  padding: 50px 16px 24px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-brand .logo-name { color: #fff; font-size: 1.2rem; }
.footer-brand .logo-tagline { color: var(--accent-light); }
.footer-brand p { font-size: 13px; opacity: 0.7; margin-top: 14px; line-height: 1.7; }
.footer-col h4 { color: #fff; font-weight: 700; margin-bottom: 14px; font-size: 13px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-contact-item { font-size: 13px; opacity: 0.7; margin-bottom: 8px; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  opacity: 0.5;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  body { padding-top: 50px; }

  .nav-label { display: flex; }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 12px 0;
    box-shadow: var(--shadow);
    gap: 0;
    border-top: 2px solid var(--primary-light);
  }
  nav ul li a {
    padding: 12px 20px;
    border-radius: 0;
    font-size: 15px;
  }
  nav ul li a.btn-nav {
    margin: 8px 16px;
    border-radius: 6px;
    text-align: center;
  }
  #nav-toggle:checked ~ nav ul { display: flex; }

  header { position: relative; top: 0; }
  .header-inner { position: relative; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .paket-grid { grid-template-columns: 1fr; }
}
