/* ===== LOKASI.CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Syne:wght@700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0c1445;
  --royal: #1e3a8a;
  --cyan: #06b6d4;
  --cyan-light: #cffafe;
  --orange: #f97316;
  --white: #ffffff;
  --light-bg: #f0f9ff;
  --text: #1e293b;
  --muted: #64748b;
}

body { font-family: 'Space Grotesk', sans-serif; color: var(--text); background: var(--light-bg); overflow-x: hidden; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: var(--navy);
  border-bottom: 3px solid var(--cyan);
  box-shadow: 0 0 30px rgba(6,182,212,0.2);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 28px; }
.brand-text { font-family: 'Syne', sans-serif; font-size: 22px; color: var(--cyan); letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; gap: 6px; }
.nav-links a { color: #bae6fd; text-decoration: none; font-weight: 600; font-size: 14px; padding: 8px 16px; border-radius: 6px; transition: all 0.3s; }
.nav-links a:hover, .nav-links a.active { background: var(--cyan); color: var(--navy); }
.hamburger { display: none; background: none; border: 2px solid var(--cyan); color: var(--cyan); font-size: 20px; padding: 4px 10px; border-radius: 6px; cursor: pointer; }

.mobile-menu { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; z-index: 999; background: rgba(12,20,69,0.97); padding: 20px; gap: 10px; }
.mobile-menu a { color: var(--white); text-decoration: none; font-weight: 700; padding: 12px 16px; border-radius: 8px; text-align: center; border: 1px solid #1e3a8a; transition: all 0.2s; }
.mobile-menu a:hover { background: var(--cyan); color: var(--navy); }
.mobile-menu.open { display: flex; }

/* PAGE HERO */
.page-hero {
  min-height: 55vh;
  background: url('armada5.jpeg') center/cover no-repeat;
  position: relative; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 130px 40px 80px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,20,69,0.90) 0%, rgba(12,20,69,0.60) 100%);
}
.page-hero-content { position: relative; z-index: 2; color: var(--white); }
.hero-chip {
  display: inline-block; background: rgba(6,182,212,0.2); border: 1px solid var(--cyan);
  color: var(--cyan); padding: 6px 18px; border-radius: 50px; font-size: 12px;
  font-weight: 700; letter-spacing: 3px; margin-bottom: 20px;
}
.page-hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 7vw, 78px); line-height: 1.1; margin-bottom: 20px;
}
.page-hero-content h1 em { color: var(--cyan); font-style: normal; }
.page-hero-content p { font-size: 18px; color: #bae6fd; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* COVERAGE */
.coverage { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.coverage-header { text-align: center; margin-bottom: 50px; }
.coverage-header h2 { font-family: 'Syne', sans-serif; font-size: 40px; color: var(--navy); margin-bottom: 10px; }
.coverage-header p { color: var(--muted); font-size: 17px; }

.region-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-bottom: 60px;
}

.region-card {
  background: var(--white); border-radius: 20px; padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.region-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--cyan);
  transform: scaleX(0); transition: transform 0.3s;
}
.region-card:hover { border-color: var(--cyan-light); transform: translateY(-5px); }
.region-card:hover::after { transform: scaleX(1); }
.region-card.main-region { border-color: var(--cyan); background: linear-gradient(135deg, #f0fdff, #ffffff); }
.region-card.main-region::after { transform: scaleX(1); background: var(--orange); }

.region-icon { font-size: 40px; margin-bottom: 14px; }
.region-card h3 { font-family: 'Syne', sans-serif; font-size: 22px; color: var(--navy); margin-bottom: 16px; }

.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.area-chips span {
  background: var(--light-bg); color: var(--royal); border: 1px solid #bae6fd;
  padding: 5px 12px; border-radius: 50px; font-size: 13px; font-weight: 600;
}
.region-note {
  font-size: 13px; color: var(--orange); font-weight: 700;
  background: #fff7ed; padding: 6px 12px; border-radius: 8px; display: inline-block;
}

/* MAP SECTION */
.map-section { margin-bottom: 60px; }
.map-card {
  display: grid; grid-template-columns: 1fr 320px; gap: 0;
  background: var(--white); border-radius: 24px; overflow: hidden;
  box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}
.map-embed iframe { display: block; width: 100%; height: 450px; border-radius: 0; }
.map-info {
  padding: 40px 32px; display: flex; flex-direction: column; justify-content: center;
  background: var(--navy);
}
.map-info h3 { font-family: 'Syne', sans-serif; font-size: 24px; color: var(--white); margin-bottom: 16px; }
.map-info p { color: #bae6fd; line-height: 1.8; font-size: 15px; margin-bottom: 28px; }
.map-actions { display: flex; flex-direction: column; gap: 12px; }
.btn-map {
  display: block; padding: 12px 20px; border-radius: 10px;
  text-align: center; font-weight: 700; font-size: 14px;
  text-decoration: none; background: var(--cyan); color: var(--navy); transition: all 0.3s;
}
.btn-map:hover { background: #0891b2; color: var(--white); }
.btn-map.outline { background: transparent; border: 2px solid var(--cyan); color: var(--cyan); }
.btn-map.outline:hover { background: var(--cyan); color: var(--navy); }

/* OUTSIDE AREA */
.outside-area {
  background: linear-gradient(135deg, var(--navy), var(--royal));
  border-radius: 24px; padding: 60px 40px; text-align: center; color: var(--white);
}
.outside-icon { font-size: 56px; margin-bottom: 20px; }
.outside-area h3 { font-family: 'Syne', sans-serif; font-size: 32px; margin-bottom: 14px; }
.outside-area p { font-size: 16px; color: #bae6fd; max-width: 500px; margin: 0 auto 28px; line-height: 1.7; }
.btn-outside {
  display: inline-block; background: var(--orange); color: var(--white);
  padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(249,115,22,0.4);
}
.btn-outside:hover { background: #ea580c; transform: translateY(-3px); }

/* FOOTER */
.footer { background: var(--navy); color: #64748b; text-align: center; padding: 30px 20px; font-size: 14px; line-height: 2; }

@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .coverage { padding: 60px 20px; }
  .map-card { grid-template-columns: 1fr; }
  .map-embed iframe { height: 280px; }
  .outside-area { padding: 40px 24px; }
}