/* =============================================
   DESIGN SYSTEM — Bidang Cipta Karya DPUTRP
   Light Professional Government Theme
   ============================================= */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  overflow-x: hidden;
  /* Colors */
  --primary: #0D2B5C;
  --primary-dark: #091E40;
  --primary-mid: #1E4D91;
  --primary-light: #2563EB;
  --amber: #F59E0B;
  --amber-hover: #D97706;
  --amber-light: #FEF3C7;
  --success: #059669;
  --danger: #DC2626;

  --bg-main: #F8FAFC;
  --bg-light: #F1F5F9;
  --bg-white: #FFFFFF;
  --bg-navy: #0D2B5C;

  --text-dark: #1E293B;
  --text-mid: #475569;
  --text-muted: #94A3B8;
  --text-white: #FFFFFF;
  --text-white-70: rgba(255, 255, 255, 0.75);

  --border: #E2E8F0;
  --border-mid: #CBD5E1;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.25s var(--ease);
  --transition-lg: all 0.4s var(--ease);

  /* Layout */
  --container: 1260px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

select,
input,
textarea {
  font: inherit;
}

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-navy {
  background-color: var(--bg-navy);
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.28rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.eyebrow-light {
  color: var(--amber);
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.title-light {
  color: var(--text-white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}

.desc-light {
  color: var(--text-white-70);
}

.section-subtitle-text {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-desc {
  margin: 0 auto;
}

.accent-text {
  color: var(--amber);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 43, 92, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-amber {
  background: var(--amber);
  color: var(--text-dark);
  font-weight: 700;
}

.btn-amber:hover {
  background: var(--amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0.3rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  height: 48px;
  width: auto;
}


.footer-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
}

.nav-brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(13, 43, 92, 0.06);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('../assets/img/hero_construction.webp') center center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding-top: 64px;
  /* navbar height */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(9, 30, 64, 0.93) 0%,
      rgba(13, 43, 92, 0.82) 45%,
      rgba(13, 43, 92, 0.35) 75%,
      rgba(0, 0, 0, 0.15) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 1.5rem 40px;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: var(--amber);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-amber 2s infinite;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.hero-title-accent {
  color: var(--amber);
  position: relative;
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  border-left: 3px solid var(--amber);
  padding-left: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Stats Ticker */
.hero-stats-ticker {
  position: relative;
  z-index: 2;
  background: rgba(9, 30, 64, 0.75);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0;
}

.ticker-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2.5rem;
  flex-direction: column;
  text-align: center;
}

.ticker-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.ticker-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ticker-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ==========================================
   STATISTIK SECTION
   ========================================== */
.statistik {
  background:
    linear-gradient(rgba(9, 30, 64, 0.82), rgba(13, 43, 92, 0.88)),
    url('../assets/img/hero_construction.webp') center / cover fixed;
  padding: 80px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-lg);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.stat-icon svg {
  width: 26px;
  height: 26px;
  color: var(--amber);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   SAMBUTAN SECTION
   ========================================== */
.sambutan-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: center;
}

.sambutan-img-wrap {
  position: relative;
}

.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.sambutan-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.img-frame-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--amber);
  z-index: 1;
  opacity: 0.45;
}

.quote-box {
  background: var(--bg-light);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-box p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.quote-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.signature-line {
  width: 3rem;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.signature-info {
  display: flex;
  flex-direction: column;
}

.signature-info strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--primary);
}

.signature-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================
   LAYANAN / SERVICES SECTION
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--transition-lg);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--icon-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--icon-color);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  flex: 1;
}

.card-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.card-features li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.25rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.card-features li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
  margin-top: auto;
}

.card-link:hover {
  color: var(--amber);
  gap: 0.7rem;
}

/* ==========================================
   SUPPLY CHAIN SECTION
   ========================================== */
.supply-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
}

.supply-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.feature-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.feature-icon {
  width: 30px;
  height: 30px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  color: #16A34A;
}

.feature-list-light .feature-item {
  color: rgba(255, 255, 255, 0.85);
}

.feature-icon-amber {
  background: rgba(245, 158, 11, 0.15);
}

.feature-icon-amber svg {
  color: var(--amber);
}

/* ==========================================
   PENGAWASAN SECTION
   ========================================== */
.pengawasan-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 4rem;
  align-items: center;
}

.pengawasan-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ==========================================
   INFORMASI & REGULASI SECTION
   ========================================== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.info-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  border-top: 4px solid var(--primary);
}

.info-box-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.info-box-header svg {
  color: var(--primary);
  flex-shrink: 0;
}

.info-box-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.doc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.doc-item svg {
  color: var(--amber);
  flex-shrink: 0;
}

.doc-item:hover {
  background: rgba(13, 43, 92, 0.06);
  color: var(--primary);
  transform: translateX(4px);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}

.news-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.news-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.news-item h4 a {
  color: var(--text-dark);
  transition: var(--transition);
}

.news-item h4 a:hover {
  color: var(--primary);
}

.news-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.link-more:hover {
  color: var(--amber);
  gap: 0.65rem;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-btn:hover,
.faq-item.open .faq-btn {
  color: var(--primary);
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--amber);
  transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}

.faq-item.open .faq-body {
  max-height: 400px;
}

.faq-body p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ==========================================
   KONTAK SECTION
   ========================================== */
.kontak-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 2rem;
}

.form-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group label span {
  color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--bg-main);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(13, 43, 92, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  border-radius: var(--radius-sm);
  color: #166534;
  font-size: 0.88rem;
  font-weight: 500;
}

.form-success svg {
  color: var(--success);
  flex-shrink: 0;
}

.form-success.show {
  display: flex;
}

.kontak-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.kontak-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.kontak-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kontak-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.detail-icon {
  width: 34px;
  height: 34px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.detail-icon svg {
  color: var(--primary);
}

.kontak-detail-item a {
  color: var(--primary);
  font-weight: 500;
}

.kontak-detail-item a:hover {
  color: var(--amber);
}

.maps-wrap iframe {
  display: block;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--primary-dark);
  color: var(--text-white-70);
  padding-top: 64px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
}

.footer-brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-white-70);
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white-70);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--amber);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 1.1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-white-70);
  transition: var(--transition);
  padding: 0.1rem 0;
}

.footer-links a:hover {
  color: var(--amber);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-white-70);
  line-height: 1.5;
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-amber {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeInUp 0.7s var(--ease) forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==========================================
   RESPONSIVE — TABLET (≤1024px)
   ========================================== */
@media (max-width: 1024px) {
  .sambutan-layout {
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
  }

  .supply-layout {
    grid-template-columns: 1fr;
  }

  .supply-img-wrap {
    order: -1;
  }

  .supply-img {
    aspect-ratio: 16/7;
  }

  .pengawasan-layout {
    grid-template-columns: 1fr;
  }

  .pengawasan-img {
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .kontak-layout {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ==========================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================== */
@media (max-width: 768px) {
  .section-pad {
    padding: 56px 0;
  }

  /* Navbar */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
    padding: 1rem;
  }

  .nav-menu.open {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
  }

  .nav-link.active::after {
    display: none;
  }

  /* Hero */
  .hero {
    background-attachment: scroll;
  }

  .hero-layout {
    padding: 60px 1.5rem 30px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .ticker-item {
    padding: 0.4rem 1.2rem;
  }

  .ticker-divider {
    height: 30px;
  }

  /* Sambutan */
  .sambutan-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sambutan-img {
    aspect-ratio: 2/2;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stat-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Kontak */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ========================================== */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .ticker-grid {
    flex-direction: column;
    gap: 0.5rem;
  }

  .ticker-divider {
    display: none;
  }

  .ticker-item {
    padding: 0.4rem 1rem;
  }

  .stat-number {
    font-size: 2.8rem;
  }
}

/* ==========================================
   SCROLLBAR CUSTOM
   ========================================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-mid);
  border-radius: 6px;
}

/* ==========================================
   FOCUS ACCESSIBILITY
   ========================================== */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}
