:root {
  --bg: #0b1220;

  /* Dominan biru */
  --brand: #1a73e8;
  --brand-strong: #0b5ed7;
  --brand-soft: rgba(26, 115, 232, 0.12);

  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: rgba(255, 255, 255, 0.92);

  --text: #0f172a;
  --text-soft: rgba(15, 23, 42, 0.72);

  --muted: rgba(255, 255, 255, 0.72);
  --shadow: 0 16px 60px rgba(2, 8, 23, 0.12);
  --shadow-strong: 0 18px 70px rgba(2, 8, 23, 0.18);

  --radius: 18px;
}

.modern-body {
  font-family:
    Poppins,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: #f6f8fc;
}

/* =========================
   HEADER
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: var(--surface);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
  border-bottom-color: rgba(15, 23, 42, 0.1);
}

.header-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 220px 1fr auto 44px;
  gap: 12px;
  align-items: center;
}

.brand-logo {
  max-height: 64px;
  width: auto;
  height: auto;
  display: block;
}

/* CTA */
.header-cta .cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(26, 115, 232, 0.16),
    rgba(26, 115, 232, 0.06)
  );
  border: 1px solid rgba(26, 115, 232, 0.22);
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(26, 115, 232, 0.1);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.header-cta .cta-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 60px rgba(26, 115, 232, 0.16);
}

.cta-value {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.92);
}

/* Toggle Button */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: rgba(15, 23, 42, 0.82);
  border-radius: 99px;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

/* Burger -> X */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   MENUZORD (Modern Skin - AMAN)
   ========================= */
.site-header .modern-menuzord {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Link menu utama */
.site-header .menuzord-menu > li > a {
  font-weight: 800 !important;
  padding: 12px 14px !important;
  border-radius: 12px;
  color: rgba(15, 23, 42, 0.88) !important;
  background: transparent;
  line-height: 1.2 !important;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.site-header .menuzord-menu > li:hover > a,
.site-header .menuzord-menu > li.active > a {
  background: var(--brand-soft);
  color: var(--brand) !important;
}

/* Dropdown */
.site-header .menuzord-menu ul.dropdown {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-strong);
}

/* Item dropdown */
.site-header .menuzord-menu ul.dropdown li a {
  padding: 10px 14px !important;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.88) !important;
}

.site-header .menuzord-menu ul.dropdown li:hover > a {
  background: rgba(26, 115, 232, 0.08);
  color: var(--brand) !important;
}

/* Dropdown animation — desktop only (smooth fade+slide) */
@media (min-width: 993px) {
  .site-header .menuzord-menu ul.dropdown {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition:
      opacity 0.18s ease,
      transform 0.18s ease,
      visibility 0s linear 0.18s;
  }

  .site-header .menuzord-menu > li:hover > ul.dropdown,
  .site-header .menuzord-menu ul.dropdown.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.18s ease,
      transform 0.18s ease,
      visibility 0s linear 0s;
  }
}

/* Mobile: dropdown tampil sebagai nested list biasa (tidak absolute) */
@media (max-width: 992px) {
  .site-header .menuzord-menu ul.dropdown {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(26, 115, 232, 0.05) !important;
    margin: 4px 0 4px 12px !important;
    padding: 4px 0 !important;
    display: none;
  }

  .site-header .menuzord-menu ul.dropdown.is-open {
    display: block;
  }

  .site-header .menuzord-menu ul.dropdown li a {
    padding: 8px 14px !important;
    font-size: 0.9rem !important;
    border-radius: 8px;
  }
}

/* =========================
   MAIN
   ========================= */
.main-content {
  min-height: 60vh;
}

/* =========================
   FOOTER MODERN (NEW AESTHETIC)
   ========================= */

.site-footer {
  margin-top: 80px;
  background:
    radial-gradient(ellipse at top left, rgba(26, 115, 232, 0.25), transparent 45%),
    radial-gradient(ellipse at bottom right, rgba(26, 115, 232, 0.15), transparent 45%),
    linear-gradient(145deg, #0a101f, #050812);
  color: #fff;
  padding: 85px 0 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -24px 50px rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Subtle Glowing Light Top Center */
.site-footer::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120px;
  background: var(--brand);
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 64px;
  margin-bottom: 28px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.3s ease;
  filter: drop-shadow(0 8px 14px rgba(255, 255, 255, 0.12));
}

.footer-logo:hover {
  transform: scale(1.06) translateY(-2px);
  filter: drop-shadow(0 15px 25px rgba(255, 255, 255, 0.25));
}

.footer-text {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 300;
  letter-spacing: 0.3px;
}

.footer-contact {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.6px;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-contact a:hover {
  background: var(--brand);
  color: #fff;
  border-color: rgba(26, 115, 232, 0.6);
  box-shadow: 0 12px 30px rgba(26, 115, 232, 0.45);
  transform: translateY(-5px) scale(1.03);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.8px;
}
/* =========================
   SCROLL TOP
   ========================= */

.modern-scrolltop{
  border-radius:18px!important;
  background:#1a73e8!important;
  box-shadow:0 6px 20px rgba(26,115,232,.45);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 992px) {
  .header-shell {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "cta cta";
  }

  .brand {
    grid-area: brand;
  }
  .nav-toggle {
    grid-area: toggle;
    display: block;
  }
  .main-nav {
    grid-area: nav;
    display: none;
  }
  .header-cta {
    grid-area: cta;
  }

  /* Panel nav saat dibuka */
  .main-nav {
    margin-top: 10px;
  }

  .site-header .menuzord-menu {
    background: var(--surface-solid);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .site-header .menuzord-menu > li > a {
    display: block;
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* =========================
   QUOTE SECTION
   ========================= */
.quote-section {
  padding: 54px 0 60px;
  background:
    radial-gradient(
      900px 420px at 10% 0%,
      rgba(26, 115, 232, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 90% 10%,
      rgba(26, 115, 232, 0.08),
      transparent 60%
    ),
    transparent;
}

.quote-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 26px;
  padding: 26px 22px;
  box-shadow: 0 16px 60px rgba(2, 8, 23, 0.08);
  position: relative;
  overflow: hidden;
}

.quote-card:before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(
      800px 260px at 10% 0%,
      rgba(26, 115, 232, 0.16),
      transparent 60%
    ),
    radial-gradient(
      700px 260px at 90% 10%,
      rgba(26, 115, 232, 0.1),
      transparent 60%
    );
  opacity: 0.95;
  pointer-events: none;
}

.quote-mark {
  position: relative;
  font-size: 56px;
  font-weight: 1000;
  line-height: 1;
  color: rgba(26, 115, 232, 0.35);
  margin-bottom: 6px;
}

.quote-text {
  position: relative;
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #0f172a;
  max-width: 900px;
}

.quote-author {
  position: relative;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(15, 23, 42, 0.7);
  font-weight: 900;
}

.quote-line {
  width: 44px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand), var(--brand-strong));
}

.quote-mini {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.qm-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 10px 30px rgba(2, 8, 23, 0.06);
  color: rgba(15, 23, 42, 0.78);
  font-weight: 800;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: block;
  }
}
/* Matikan hamburger bawaan menuzord */
.menuzord-menu-button {
  display: none !important;
}
@media (max-width: 992px) {
  .menuzord-menu {
    display: block !important;
  }
}
/* Hide hamburger bawaan menuzord */
.menuzord-menu-button,
.menuzord .showhide {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* =========================
   ABOUT US SECTION (MODERN AESTHETIC)
   ========================= */

.civil-section {
    background: linear-gradient(135deg, #f4f7fb 0%, #e2e8f0 100%);
    position: relative;
    padding-top: 110px;
    padding-bottom: 110px;
    overflow: hidden;
}

/* Soft glowing orbs behind the card */
.civil-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.civil-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Modern Card with Glassmorphism Edge */
.civil-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 32px;
    padding: 95px 50px 65px 50px;
    position: relative;
    z-index: 1;
    box-shadow: 
      0 22px 50px rgba(15, 23, 42, 0.05),
      inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.civil-card:hover {
    transform: translateY(-8px);
    box-shadow: 
      0 35px 70px rgba(15, 23, 42, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

/* Beautiful Floating 3D Badge */
.civil-badge {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #F59E0B, #EA580C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #fff;
    border: 6px solid #fff;
    box-shadow: 
      0 16px 32px rgba(234, 88, 12, 0.35),
      inset 0 4px 10px rgba(255, 255, 255, 0.25);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.civil-card:hover .civil-badge {
    transform: translateX(-50%) scale(1.12) rotate(6deg);
}

/* Elegant glowing line */
.civil-line {
    width: 90px;
    height: 6px;
    background: linear-gradient(90deg, #F59E0B, #EA580C);
    margin: 22px auto 35px;
    border-radius: 100px;
    position: relative;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.civil-line:before,
.civil-line:after {
    display: none; /* remove noisy old lines */
}

/* Text Enhancements inside the card */
.civil-card h2 {
    color: #0f172a;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.civil-card .about-content {
    font-size: 17px;
    line-height: 1.85;
    color: #475569;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    #home {
        display: none !important;
    }
}

/* Bersihkan overlay & pattern bawaan template */
.inner-header.page-hero.layer-overlay::before,
.inner-header.page-hero.layer-pattern::before {
  display: none !important;
}

.inner-header.page-hero.layer-overlay::after,
.inner-header.page-hero.layer-pattern::after {
  display: none !important;
}

/* Ganti dengan versi bersih kita */
.inner-header.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(26,115,232,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(26,115,232,0.12) 0%, transparent 55%),
    linear-gradient(145deg, #0a101f, #050812) !important;
}

.inner-header.page-hero .glow {
  content: '';
  position: absolute;
  top: -50px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 100px;
  background: #1a73e8;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.inner-header.page-hero .accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 72px; height: 3px;
  background: linear-gradient(90deg, #1a73e8, #0b5ed7);
  z-index: 1;
}

.inner-header.page-hero .container {
  position: relative;
  z-index: 2;
}

#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: #050812;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s ease;
}
#preloader.hide { opacity: 0; pointer-events: none; }

.seg   { opacity: 0; transition: opacity 0.35s ease; }
.seg.on { opacity: 1; }

@keyframes shimmer {
  0%,100% { opacity: 0.18; } 50% { opacity: 0.32; }
}
.water-line { animation: shimmer 2.5s ease-in-out infinite; }
.water-line:nth-child(2) { animation-delay: 0.8s; }
.water-line:nth-child(3) { animation-delay: 1.6s; }

@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: 0.2; }
}
.tower-light { animation: blink 1.2s ease-in-out infinite; }

#car { opacity: 0; transition: opacity 0.3s ease; }
#car.on { opacity: 1; }

@keyframes drive {
  from { transform: translateX(-240px); }
  to   { transform: translateX(240px); }
}
#car.go { animation: drive 1.6s linear forwards; }