/* ============================================
   Pages Theme CSS - NIB OSS Konsultan
   Shared styles for all page templates
   (home, daftar, layanan, kontak, tentang)
   ============================================ */

/* ────────────────────────────────────────────
   0. HOME PAGE SPECIFIC
   ──────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #003DA5 0%, #1A56C4 60%, #0F4CC0 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  font-weight: 400;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-box {
  width: 100%;
  max-width: 250px;
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.hero-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 36px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.section-alt {
  background: var(--light-bg);
}

.section-white {
  background: var(--white);
}

.perizinan-section {
  padding: 90px 0;
}

.perizinan-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.perizinan-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 20px;
  line-height: 1.25;
}

.perizinan-section p {
  color: var(--gray-text);
  font-size: 0.97rem;
  line-height: 1.8;
}

.highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.perizinan-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.img-card {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--gray-border);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nib-section {
  padding: 90px 0;
}

.nib-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 24px;
}

.nib-highlight-box {
  background: var(--primary-pale);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin-bottom: 32px;
}

.nib-highlight-box p {
  color: #2D3748;
  font-size: 0.97rem;
  line-height: 1.85;
}

.nib-cta {
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.about-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.about-section .section-label {
  color: var(--gold);
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-section h2 span {
  border-bottom: 3px solid var(--gold);
  padding-bottom: 2px;
}

.about-section p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.97rem;
  line-height: 1.85;
}

.about-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-icon-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.about-icon-emoji {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.about-icon-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
}

.services-section {
  padding: 90px 0;
  background: var(--light-bg);
}

.services-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.services-section .section-header {
  text-align: center;
  margin-bottom: 52px;
}

.services-section .section-header p {
  color: var(--gray-text);
  font-size: 0.97rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--gray-border);
  border-top: 3px solid var(--primary);
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 61, 165, 0.12);
}

.service-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}

.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.75;
}

.contact-section {
  background: linear-gradient(135deg, #002B75 0%, #003DA5 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.contact-section .sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  font-style: italic;
}

.contact-footer-link {
  margin-top: 24px;
}

.contact-footer-link a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  text-decoration: underline;
  transition: color 0.2s;
}

.contact-footer-link a:hover {
  color: rgba(255, 255, 255, 0.9);
}


/* ────────────────────────────────────────────
   1. SHARED PAGE HERO
   ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #003DA5 0%, #1A56C4 100%);
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  text-align: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero-label-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ────────────────────────────────────────────
   2. SECTION LABELS
   ──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.label-blue {
  color: var(--primary);
}

.label-gold {
  color: var(--gold);
}

/* ────────────────────────────────────────────
   3. NAV BACK BUTTON
   ──────────────────────────────────────────── */
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-back:hover {
  color: var(--primary);
}

/* ────────────────────────────────────────────
   4. DAFTAR & LAYANAN PAGES
   ──────────────────────────────────────────── */
.daftar-section,
.layanan-section {
  padding: 20px 0 100px;
  background: var(--light-bg);
}

.section-intro {
  text-align: center;
  margin-bottom: 52px;
}

.section-intro h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.section-intro p {
  color: var(--gray-text);
  font-size: 0.97rem;
}

.daftar-options,
.layanan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.daftar-card,
.layanan-card {
  background: white;
  border-radius: 14px;
  border: 1px solid var(--gray-border);
  border-top: 4px solid var(--primary);
  padding: 20px 28px 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  text-align: center;
}

.daftar-card:hover,
.layanan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 61, 165, 0.13);
}

.daftar-card.featured,
.layanan-card.featured {
  border-top-color: var(--gold);
  background: linear-gradient(160deg, #fffdf5 0%, white 60%);
}

.daftar-card-badge,
.layanan-card-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gold);
  color: #7A4F00;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.daftar-icon,
.layanan-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.layanan-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  font-size: 26px;
  margin-bottom: 20px;
}

.daftar-card.featured .daftar-icon,
.layanan-card.featured .layanan-icon {
  background: #FFF3D6;
}

.daftar-card h3,
.layanan-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.daftar-card p,
.layanan-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}

.btn-pilih,
.btn-daftar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 0;
  border-radius: 8px;
  width: 100%;
  transition: background 0.2s, transform 0.15s;
  min-height: 48px;
  touch-action: manipulation;
  text-decoration: none;
}

.btn-daftar {
  text-decoration: none;
}

.btn-pilih:hover,
.btn-daftar:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-pilih:active,
.btn-daftar:active {
  transform: translateY(0);
}

.daftar-card.featured .btn-pilih,
.layanan-card.featured .btn-daftar {
  background: var(--gold);
  color: #3D2600;
}

.daftar-card.featured .btn-pilih:hover,
.layanan-card.featured .btn-daftar:hover {
  background: #e0950f;
}

/* ────────────────────────────────────────────
   5. STEPS SECTION
   ──────────────────────────────────────────── */
.steps-section {
  padding: 80px 0;
  background: white;
}

.steps-section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark-text);
  text-align: center;
  margin-bottom: 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: var(--gray-border);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 4px solid white;
  box-shadow: 0 0 0 2px var(--primary);
}

.step h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.step p {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ────────────────────────────────────────────
   6. FAQ SECTION
   ──────────────────────────────────────────── */
.faq-section {
  padding: 80px 0;
  background: var(--light-bg);
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--gray-border);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-text);
  background: var(--light-bg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer-content {
  padding: 20px 0;
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ────────────────────────────────────────────
   7. KONTAK PAGE
   ──────────────────────────────────────────── */
.kontak-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.kontak-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.kontak-info h2,
.kontak-form h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.kontak-info p {
  color: var(--gray-text);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

.contact-methods {
  margin-top: 28px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-border-light);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-details h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.contact-details p {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin: 0;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--primary-dark);
}

.kontak-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.form-control.wide {
  width: 100%;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  max-width: 200px;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.map-section {
  padding: 80px 0;
  background: white;
}

.map-container {
  background: #eef2f7;
  border-radius: 12px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-border);
}

.map-placeholder {
  text-align: center;
  color: var(--gray-text);
}

.map-placeholder svg {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  opacity: 0.5;
}

/* ────────────────────────────────────────────
   8. TENTANG PAGE
   ──────────────────────────────────────────── */
.tentang-section {
  padding: 80px 0 60px;
  background: var(--light-bg);
}

.tentang-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.tentang-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.tentang-content p {
  color: var(--gray-text);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.tentang-features {
  margin-top: 30px;
}

.tentang-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.tentang-feature-icon {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 2px;
}

.tentang-feature-text {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.team-section {
  padding: 60px 0 80px;
  background: white;
}

.team-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.team-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.team-content p {
  color: var(--gray-text);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.team-member {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--gray-border);
}

.team-member-photo {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.team-member-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.team-member-role {
  font-size: 0.85rem;
  color: var(--primary);
}

.mission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #002B75 0%, #003DA5 100%);
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.mission-inner {
  text-align: center;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.mission-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.mission-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.mission-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 30px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: #3D2600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 200, 0, 0.35);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 200, 0, 0.45);
}

/* ────────────────────────────────────────────
   9. RESMI SECTION (LAYANAN)
   ──────────────────────────────────────────── */
.resmi-section {
  padding: 70px 0;
  background: var(--light-bg);
}

.resmi-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.resmi-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 4px;
  padding: 6px 16px;
}

.resmi-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark-text);
}

.resmi-img-box {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.resmi-img-card {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 80px;
}

.resmi-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--primary-pale);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.resmi-link:hover {
  border-color: var(--primary);
}

/* ────────────────────────────────────────────
   10. CTA STRIP
   ──────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, #002B75 0%, #003DA5 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-strip h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
  font-size: 0.97rem;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wa-green);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  min-height: 52px;
  touch-action: manipulation;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

.btn-wa:active {
  transform: translateY(0);
}

.btn-wa svg {
  flex-shrink: 0;
}

/* ────────────────────────────────────────────
   11. RESPONSIVE
   ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .layanan-grid {
    gap: 20px;
  }

  .hero-inner,
  .perizinan-inner,
  .about-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat-row {
    gap: 16px;
  }
}

@media (max-width: 900px) {

  .kontak-inner,
  .tentang-inner,
  .team-inner {
    grid-template-columns: 1fr;
  }

  .kontak-visual,
  .tentang-visual {
    display: none;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .perizinan-images {
    grid-template-columns: 1fr;
  }

  .about-icons {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 100px 0 50px;
  }

  .page-hero h1 {
    font-size: 1.9rem;
  }

  .page-hero p {
    font-size: 0.95rem;
    padding: 0 12px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .steps-grid::before {
    display: none;
  }

  .step-num {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .section-intro h2 {
    font-size: 1.75rem;
  }

  .resmi-img-box {
    flex-direction: column;
    gap: 12px;
  }

  .resmi-img-card {
    min-width: 100%;
    height: 60px;
  }

  .layanan-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }

  .layanan-card {
    padding: 28px 24px 28px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 96px 0 48px;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .page-hero p {
    font-size: 0.9rem;
  }

  .hero-label {
    font-size: 0.7rem;
    padding: 4px 12px;
  }

  .section-intro {
    padding: 0 12px;
  }

  .section-intro h2 {
    font-size: 1.6rem;
  }

  .section-intro p {
    font-size: 0.9rem;
  }

  .daftar-card,
  .layanan-card {
    padding: 24px 20px;
  }

  .daftar-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  .layanan-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .daftar-card h3,
  .layanan-card h3 {
    font-size: 1.1rem;
  }

  .daftar-card p,
  .layanan-card p {
    font-size: 0.85rem;
  }

  .btn-pilih,
  .btn-daftar {
    min-height: 48px;
    font-size: 0.9rem;
    padding: 12px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step {
    padding: 0 8px;
  }

  .step-num {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }

  .step h4 {
    font-size: 0.9rem;
  }

  .step p {
    font-size: 0.8rem;
  }

  .kontak-section {
    padding: 60px 0;
  }

  .cta-strip {
    padding: 60px 0;
  }

  .cta-strip h2 {
    font-size: 1.5rem;
  }

  .cta-strip p {
    font-size: 0.9rem;
    padding: 0 16px;
  }

  .btn-wa {
    width: 100%;
    max-width: 320px;
    min-height: 52px;
  }

  .resmi-label {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .resmi-title {
    font-size: 1.4rem;
  }

  .resmi-img-card {
    padding: 12px 20px;
    min-width: 140px;
    height: 60px;
  }
}

@media (max-width: 414px) {

  .page-hero h1 {
    font-size: 1.45rem;
  }

  .daftar-card-badge,
  .layanan-card-badge {
    font-size: 0.65rem;
    padding: 2px 8px;
  }

  .daftar-card h3,
  .layanan-card h3 {
    font-size: 1.05rem;
  }

  .resmi-title {
    font-size: 1.3rem;
  }

  .resmi-label {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
}

@media (max-width: 375px) {
  .page-hero h1 {
    font-size: 1.35rem;
  }

  .hero-label {
    font-size: 0.65rem;
  }

  .layanan-card h3 {
    font-size: 1rem;
  }

  .layanan-card p {
    font-size: 0.82rem;
  }

  .btn-daftar {
    font-size: 0.85rem;
  }
}

/* ────────────────────────────────────────────
   6. UTILITY CLASSES
   ──────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-48 {
  margin-bottom: 48px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.max-w-600 {
  max-width: 600px;
}

.max-w-860 {
  max-width: 860px;
}

.max-w-900 {
  max-width: 900px;
}

.bg-white {
  background-color: var(--white);
}

.rounded-12 {
  border-radius: 12px;
}

.border-gray {
  border: 1px solid var(--gray-border);
}

.p-28 {
  padding: 28px;
}

.font-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.text-dark {
  color: var(--dark-text);
}

.text-gray {
  color: var(--gray-text);
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 0.97rem;
}

.text-lg {
  font-size: 1.1rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.75rem;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

/* Custom components from residual styles */
.hero-card.card-alt-color {
  background: #E8232A;
}

.section-heading-v2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark-text);
}

.section-desc-v2 {
  color: var(--gray-text);
  font-size: 0.97rem;
  line-height: 1.6;
}