/* ============================================
   DESA ONONAMOLO ALASA — Main Stylesheet
   Theme: Navy Deep + Coral Terracotta Editorial
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===================== CSS VARIABLES ===================== */
:root {
  --navy:        #0c1b33;
  --navy-deep:   #07111f;
  --navy-mid:    #152a47;
  --navy-light:  #1e3a5f;
  --coral:       #d95f3b;
  --coral-light: #e8784f;
  --coral-pale:  #f5d0c0;
  --cream:       #faf4ec;
  --cream-dark:  #f0e8d8;
  --sand:        #c9b99a;
  --white:       #ffffff;
  --text-dark:   #1a1a2e;
  --text-body:   #3d4a5c;
  --text-muted:  #7a8899;
  --border:      rgba(12, 27, 51, 0.12);
  --border-light:rgba(255,255,255, 0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-ui:      'DM Sans', sans-serif;

  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(12,27,51,0.08);
  --shadow-md:   0 8px 30px rgba(12,27,51,0.14);
  --shadow-lg:   0 20px 60px rgba(12,27,51,0.20);
  --shadow-coral:0 8px 30px rgba(217,95,59,0.25);

  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-ui); }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--navy-deep);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}
.topbar-left { display: flex; gap: 1.5rem; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 5px; }
.topbar-right { display: flex; gap: 1rem; align-items: center; }
.topbar-right a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.topbar-right a:hover { color: var(--coral-light); }

/* ===================== NAVBAR ===================== */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo {
  width: 48px; height: 48px;
  background: var(--coral);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.nav-logo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}
.nav-brand-text { line-height: 1.2; }
.nav-brand-text .desa-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-brand-text .desa-sub {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--sand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-link.active { color: var(--coral-light); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  border: 1px solid var(--border);
  overflow: hidden;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  color: var(--text-body);
  transition: all var(--transition);
  border-bottom: 1px solid var(--border);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--cream); color: var(--coral); padding-left: 24px; }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================== HERO SECTION ===================== */
.hero {
  background: var(--navy-deep);
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(217,95,59,0.15), transparent),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(21,42,71,0.8), transparent),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 60%, #1a2840 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(217,95,59,0.2);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(30,58,95,0.6);
  bottom: 100px; left: 10%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  flex: 1;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero-left { display: flex; flex-direction: column; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,95,59,0.15);
  border: 1px solid rgba(217,95,59,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--coral-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--coral-light);
}
.hero-subtitle {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: var(--shadow-coral);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(217,95,59,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  animation: fadeInRight 0.8s ease 0.3s both;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(217,95,59,0.3);
  transform: translateY(-4px);
}
.stat-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(217,95,59,0.2), rgba(217,95,59,0.05));
  border-color: rgba(217,95,59,0.3);
}
.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===================== HERO SCROLL INDICATOR ===================== */
.hero-scroll {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 2rem;
  animation: fadeInUp 1s ease 1s both;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-indicator .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================== SECTION COMMONS ===================== */
section { padding: 5rem 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--coral); }
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.8;
}
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-eyebrow { justify-content: center; }
.section-header.centered .section-eyebrow::before { display: none; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ===================== WELCOME STRIP ===================== */
.welcome-strip {
  background: var(--coral);
  padding: 1rem 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: stripScroll 25s linear infinite;
}
@keyframes stripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.strip-item .sep { color: rgba(255,255,255,0.4); font-size: 1.2rem; }

/* ===================== ABOUT PREVIEW ===================== */
.about-preview {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 440px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-main::before {
  content: '';
  position: absolute; inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-img-main .placeholder-icon {
  font-size: 5rem;
  opacity: 0.3;
}
.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 180px; height: 180px;
  background: var(--coral);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-coral);
}
.about-img-accent .acc-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.about-img-accent .acc-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 1rem;
}
.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-para {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.85;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
.fact-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  transition: all var(--transition);
}
.fact-item:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.fact-item .fact-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.fact-item .fact-key {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  transition: gap var(--transition);
}
.about-link:hover { gap: 14px; }

/* ===================== SERVICES SECTION ===================== */
.services-section { background: var(--navy-deep); }
.services-section .section-title { color: var(--white); }
.services-section .section-desc { color: rgba(255,255,255,0.5); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(217,95,59,0.15);
  border: 1px solid rgba(217,95,59,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--coral);
  border-color: var(--coral);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.service-desc {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-link {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral-light);
  display: flex; align-items: center; gap: 5px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ===================== NEWS SECTION ===================== */
.news-section { background: var(--cream-dark); }
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral);
}
.news-img {
  height: 220px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.news-card.featured .news-img { height: 300px; }
.news-cat {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--coral);
  color: white;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.news-body { padding: 1.5rem; }
.news-date {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 5px;
}
.news-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.news-card:hover .news-title { color: var(--coral); }
.news-excerpt {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===================== POTENTIAL SECTION ===================== */
.potensi-section { background: var(--cream); }
.potensi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.potensi-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 280px;
  cursor: pointer;
  background: var(--navy-mid);
}
.potensi-card .p-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,17,31,0.9) 100%);
  z-index: 1;
  transition: all var(--transition);
}
.potensi-card:hover .p-bg { background: linear-gradient(180deg, rgba(217,95,59,0.3) 0%, rgba(7,17,31,0.9) 100%); }
.potensi-card .p-emoji {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  font-size: 4rem;
  z-index: 0;
  opacity: 0.4;
  transition: all var(--transition);
}
.potensi-card:hover .p-emoji { opacity: 0.6; transform: translate(-50%, -65%) scale(1.1); }
.potensi-card .p-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.5rem;
}
.potensi-card .p-tag {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--coral-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.potensi-card .p-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}
.potensi-card .p-desc {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.4rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.potensi-card:hover .p-desc { max-height: 60px; }

/* ===================== GOVERNMENT SECTION ===================== */
.govt-section { background: var(--navy); }
.govt-section .section-title { color: white; }
.govt-section .section-desc { color: rgba(255,255,255,0.5); }
.govt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.govt-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.govt-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(217,95,59,0.4);
  transform: translateY(-4px);
}
.govt-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(217,95,59,0.3);
}
.govt-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.3rem;
}
.govt-pos {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--coral-light);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--coral) 0%, #b34428 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z' fill-rule='nonzero'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner .section-title {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.cta-inner .section-title em { color: rgba(255,255,255,0.7); font-style: italic; }
.cta-inner p {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-ui);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: white;
  color: var(--coral);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.2); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.2rem;
}
.footer-brand .logo-icon {
  width: 44px; height: 44px;
  background: var(--coral);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
}
.footer-brand .logo-text .name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
}
.footer-brand .logo-text .sub {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}
.footer-about {
  font-family: var(--font-ui);
  font-size: 0.83rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-btn:hover { background: var(--coral); border-color: var(--coral); color: white; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-family: var(--font-ui);
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--coral);
  font-size: 1rem;
  line-height: 1;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); padding-left: 4px; }
.footer-contact li {
  display: flex; gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.8rem;
  align-items: flex-start;
}
.footer-contact li .icon { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: var(--coral-light); }
.footer-bottom a:hover { color: var(--coral); }

/* ===================== PAGE HEADER (inner pages) ===================== */
.page-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(217,95,59,0.12), transparent);
}
.page-header .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--coral-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.page-header p {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
}

/* ===================== CONTENT CARDS (inner pages) ===================== */
.content-section { background: var(--cream); }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-body { padding: 1.75rem; }
.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===================== TABLE STYLES ===================== */
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.88rem;
}
th {
  background: var(--navy);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.03em;
}
td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}
tr:nth-child(even) td { background: var(--cream); }
tr:hover td { background: var(--cream-dark); }

/* ===================== FORM STYLES ===================== */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(217,95,59,0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ===================== BADGE/TAG STYLES ===================== */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge-coral { background: rgba(217,95,59,0.12); color: var(--coral); }
.badge-navy { background: rgba(12,27,51,0.1); color: var(--navy); }
.badge-success { background: rgba(22,163,74,0.1); color: #16a34a; }

/* ===================== BACK TO TOP ===================== */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--coral);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-coral);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--coral-light); transform: translateY(-3px); }

/* ===================== LOADING OVERLAY ===================== */
.page-loader {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 1rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-icon {
  width: 60px; height: 60px;
  background: var(--coral);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.9); }
}
.loader-text {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
