/* ==========================================================================
   KONTAK.CSS — MBGPLG.COM Public Contact & Logistics Hub Workstation
   Typography: Plus Jakarta Sans & Inter, 4 Fast Channel Cards,
   Interactive Partnership Form, Hub Map & Morning Dispatch Protocol
   ========================================================================== */

:root {
  --ktk-navy: #0f172a;
  --ktk-navy-light: #1e293b;
  --ktk-green: #059669;
  --ktk-green-hover: #047857;
  --ktk-green-light: #d1fae5;
  --ktk-blue: #0284c7;
  --ktk-blue-light: #e0f2fe;
  --ktk-border: #e2e8f0;
  --ktk-bg-light: #f8fafc;
  --ktk-card-bg: #ffffff;

  --font-ktk-head: 'Plus Jakarta Sans', sans-serif;
  --font-ktk-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 35px rgba(15, 23, 42, 0.12);
}

.kontak-page-body {
  font-family: var(--font-ktk-body);
  background: var(--ktk-bg-light);
  color: #334155;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.kontak-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--header-h, 72px) + 2rem) 1.25rem 2.5rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   1. HERO HEADER
   ══════════════════════════════════════════════════════════════════════════ */
.kontak-hero-section {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
}

.kontak-hero-badge {
  display: inline-block;
  background: #d1fae5;
  color: #059669;
  font-family: var(--font-ktk-head);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.12);
}

.kontak-hero-title {
  font-family: var(--font-ktk-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--ktk-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.kontak-hero-subtitle {
  font-size: 0.98rem;
  color: #64748b;
  max-width: 620px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════════════════
   2. 4 FAST-RESPONSE CHANNELS GRID
   ══════════════════════════════════════════════════════════════════════════ */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 3rem;
}

.channel-card {
  background: #ffffff;
  border: 1px solid var(--ktk-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.channel-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.icon-emerald { background: #d1fae5; color: #059669; }
.icon-blue    { background: #e0f2fe; color: #0284c7; }
.icon-purple  { background: #f3e8ff; color: #9333ea; }
.icon-amber   { background: #fef3c7; color: #d97706; }

.channel-card h4 {
  font-family: var(--font-ktk-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ktk-navy);
  margin-bottom: 0.25rem;
}
.channel-card p {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 0.85rem;
}
.channel-val {
  font-family: var(--font-ktk-head);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ktk-green);
  word-break: break-word;
}

/* ══════════════════════════════════════════════════════════════════════════
   3. 2-COLUMN MAIN SECTION (Inquiry Form & Location Map)
   ══════════════════════════════════════════════════════════════════════════ */
.kontak-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.25rem;
  margin-bottom: 4rem;
}

/* Inquiry Form Card */
.form-card {
  background: #ffffff;
  border: 1px solid var(--ktk-border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}

.form-card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}
.form-card-header h3 {
  font-family: var(--font-ktk-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ktk-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-card-header p {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 0.2rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ktk-group {
  margin-bottom: 1.15rem;
}
.ktk-label {
  display: block;
  font-family: var(--font-ktk-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ktk-navy);
  margin-bottom: 0.35rem;
}
.ktk-input {
  width: 100%;
  font-family: var(--font-ktk-body);
  font-size: 0.85rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--ktk-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: #0f172a;
  box-sizing: border-box;
  outline: none;
  transition: all 0.2s ease;
}
.ktk-input:focus {
  border-color: var(--ktk-green);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}
.ktk-textarea {
  resize: vertical;
  min-height: 90px;
}

.btn-submit-inquiry {
  width: 100%;
  background: var(--navy, #0A2540);
  color: #ffffff;
  font-family: var(--font-ktk-head);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}
.btn-submit-inquiry:hover {
  background: var(--navy-mid, #123860);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.35);
}

/* Map & Logistics Card */
.map-card {
  background: #ffffff;
  border: 1px solid var(--ktk-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-card-header {
  margin-bottom: 1.25rem;
}
.map-card-header h3 {
  font-family: var(--font-ktk-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ktk-navy);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.map-card-header p {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 0.2rem;
}

.map-preview-box {
  height: 190px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--ktk-border);
  background: #1e293b;
  margin-bottom: 1.25rem;
}
.map-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-pin-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0f172a;
  color: #ffffff;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-ktk-head);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dispatch-protocol-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
}
.dispatch-protocol-box h5 {
  font-family: var(--font-ktk-head);
  font-size: 0.84rem;
  font-weight: 800;
  color: #065f46;
  margin: 0 0 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.dispatch-protocol-box p {
  font-size: 0.78rem;
  color: #166534;
  margin: 0;
  line-height: 1.45;
}

.btn-gmaps {
  width: 100%;
  background: #f1f5f9;
  color: #0f172a;
  font-family: var(--font-ktk-head);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.7rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--ktk-border);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: all 0.2s ease;
}
.btn-gmaps:hover {
  background: #e2e8f0;
}

/* ══════════════════════════════════════════════════════════════════════════
   4. FAQ ACCORDION SECTION
   ══════════════════════════════════════════════════════════════════════════ */
.faq-section {
  max-width: 860px;
  margin: 0 auto 5rem;
}
.faq-header {
  text-align: center;
  margin-bottom: 2rem;
}
.faq-header h3 {
  font-family: var(--font-ktk-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ktk-navy);
}
.faq-header p {
  font-size: 0.85rem;
  color: #64748b;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1px solid var(--ktk-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question-btn {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  font-family: var(--font-ktk-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ktk-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}
.faq-question-btn:hover { background: #f8fafc; }
.faq-answer-box {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.6;
  display: none;
}
.faq-accordion-item.active .faq-answer-box {
  display: block;
}

/* ══════════════════════════════════════════════════════════════════════════
   5. RESPONSIVE DESIGN
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .kontak-main-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .channels-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .kontak-hero-title { font-size: 1.75rem; }
}
