/* ============================================================
   DAFTARLESEN.MY — Premium Corporate Redesign
   Palette: #000814 | #001D3D | #003566 | #FFC300 | #FFD60A
   Fonts: Montserrat (body) | Dosis Medium (numbers only)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --c-black:   #000814;
  --c-navy:    #001D3D;
  --c-blue:    #003566;
  --c-gold:    #FFC300;
  --c-yellow:  #FFD60A;
  --c-gold-dk: #B8960C;
  --c-wa:      #25D366;
  --c-wa-dk:   #1EBE5D;
  --c-white:   #FFFFFF;
  --c-light:   #F1F5F9;
  --c-gray:    #94A3B8;
  --c-gray2:   #CBD5E1;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 8px 32px rgba(255, 195, 0, 0.15);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 12px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--c-black);
  color: var(--c-white);
  overflow-x: hidden;
  position: relative;
}

/* Fluid Abstract Background Image */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/geometric_bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  opacity: 1; /* SVG is already balanced in colors */
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* ---- Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.gold { color: var(--c-gold); }
.dosis-num { font-family: 'Dosis', sans-serif; font-weight: 500; }

/* ---- Scroll Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 0 32px;
  transition: var(--transition);
}
.navbar.scrolled {
  background-color: rgba(0, 8, 20, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 195, 0, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-text span { color: var(--c-gold); }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a:not(.btn-nav) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-gray2);
  letter-spacing: 0.3px;
}
.nav-links a:not(.btn-nav):hover { color: var(--c-gold); }
.btn-nav {
  background-color: var(--c-wa);
  color: var(--c-white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--c-wa);
}
.btn-nav:hover {
  background-color: transparent !important;
  color: var(--c-wa) !important;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
  padding: 10px 0;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-highlight {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--c-white) !important;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--c-navy);
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 10px 0;
  border: 1px solid rgba(255,195,0,0.15);
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block !important;
  padding: 12px 24px;
  font-size: 0.92rem !important;
  color: var(--c-gray2) !important;
}
.dropdown-menu a:hover {
  background-color: rgba(255,195,0,0.1);
  color: var(--c-gold) !important;
  padding-left: 30px !important;
}
.arrow {
  font-size: 0.7rem;
  transition: transform 0.3s;
}
.dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* ================================================================
   HERO SLIDER
   ================================================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.slides-track { width: 100%; height: 100%; position: relative; }

.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
.slide.active { opacity: 1; z-index: 2; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 8, 20, 0.93) 0%,
    rgba(0, 29, 61, 0.75) 45%,
    rgba(0, 53, 102, 0.25) 100%
  );
}

.slide-body {
  position: absolute;
  top: 50%; left: 10%;
  transform: translateY(-50%);
  max-width: 640px;
  z-index: 3;
}
.slide-tag {
  display: inline-block;
  background: rgba(255, 195, 0, 0.12);
  border: 1px solid rgba(255, 195, 0, 0.35);
  color: var(--c-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.slide-body h1,
.slide-body h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--c-white);
}
.slide-body h1 span,
.slide-body h2 span { color: var(--c-gold); }
.slide-body p {
  font-size: 1.05rem;
  color: var(--c-gray2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}
.slide-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--c-gold);
  color: var(--c-black);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--c-gold);
  transition: var(--transition);
}
.btn-primary:hover {
  background: transparent;
  color: var(--c-gold);
}
.btn-secondary {
  background: transparent;
  color: var(--c-white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.btn-whatsapp {
  background: var(--c-wa);
  color: var(--c-white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--c-wa);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover {
  background: var(--c-wa-dk);
  border-color: var(--c-wa-dk);
  color: var(--c-white);
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 195, 0, 0.12);
  border: 1.5px solid rgba(255, 195, 0, 0.4);
  color: var(--c-gold);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--c-gold); color: var(--c-black); }
.prev-btn { left: 28px; }
.next-btn { right: 28px; }

.slider-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--c-gold); width: 48px; }

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--c-gold);
  z-index: 10;
  width: 0%;
  transition: width 3s linear;
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  padding: 40px 0;
  position: relative;
  z-index: 5;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; height: 80%;
  width: 1px;
  background: rgba(255,195,0,0.15);
}
.stat-num {
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--c-gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--c-gray);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-section {
  padding: 80px 0 100px;
  position: relative;
  z-index: 5;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--c-gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
}
.section-header-left { margin-bottom: 60px; }

/* Feature Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: linear-gradient(135deg, var(--c-navy) 0%, rgba(0,53,102,0.6) 100%);
  border: 1px solid rgba(255,195,0,0.08);
  border-radius: var(--radius);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-yellow));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,195,0,0.3);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::before { opacity: 1; }

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}
.card-num {
  font-family: 'Dosis', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,195,0,0.08);
  position: absolute;
  top: 20px; right: 24px;
  line-height: 1;
  pointer-events: none;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--c-gray);
  line-height: 1.7;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 20px;
  transition: var(--transition);
}
.card-link::after { content: '→'; transition: var(--transition); }
.service-card:hover .card-link { gap: 10px; }

/* Wide card (spans 2 cols) */
.card-wide { grid-column: span 2; }

/* ================================================================
   WHY US SECTION
   ================================================================ */
.whyus-section {
  position: relative;
  padding: 100px 0;
  z-index: 5;
}
.whyus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.whyus-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}
.whyus-left p {
  color: var(--c-gray);
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 36px;
}
.btn-gold-outline {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 6px;
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
}
.btn-gold-outline:hover {
  background: var(--c-gold);
  color: var(--c-black);
}
.whyus-points { display: flex; flex-direction: column; gap: 24px; }
.point-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(0,8,20,0.4);
  border: 1px solid rgba(255,195,0,0.1);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: var(--transition);
}
.point-card:hover {
  border-color: rgba(255,195,0,0.3);
  background: rgba(0,8,20,0.6);
}
.point-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-yellow));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.point-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.point-text p { font-size: 0.88rem; color: var(--c-gray); line-height: 1.6; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section {
  padding: 100px 0 120px;
  position: relative;
  z-index: 5;
}
.testi-header { text-align: center; margin-bottom: 60px; }
.testimonial-track { position: relative; }
.testi-wrapper { position: relative; height: 260px; }
.testi-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.55s ease;
  pointer-events: none;
}
.testi-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.testi-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--c-navy) 0%, rgba(0,29,61,0.7) 100%);
  border: 1px solid rgba(255,195,0,0.12);
  border-radius: 16px;
  padding: 48px 52px;
  text-align: center;
  box-shadow: var(--shadow-dark);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 40px;
  font-size: 7rem;
  color: var(--c-gold);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}
.testi-stars { color: var(--c-gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testi-card p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--c-gray2);
  font-style: italic;
  margin-bottom: 28px;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold), var(--c-yellow));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-black);
}
.testi-name { font-weight: 700; font-size: 0.95rem; }
.testi-role { font-size: 0.8rem; color: var(--c-gray); margin-top: 2px; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.tdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--transition);
}
.tdot.active { background: var(--c-gold); transform: scale(1.4); }

/* ================================================================
   MAPS SECTION
   ================================================================ */
.maps-section {
  position: relative;
  z-index: 5;
  padding: 40px 0 100px;
}
.maps-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 480px;
  background: rgba(0, 29, 61, 0.4);
  border: 1px solid rgba(255, 195, 0, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.maps-info {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.maps-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
}
.maps-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.maps-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,195,0,0.1);
  border: 1px solid rgba(255,195,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.maps-detail p {
  font-size: 0.92rem;
  color: var(--c-gray2);
  line-height: 1.7;
}
.maps-detail strong {
  display: block;
  color: var(--c-white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.maps-detail em {
  font-size: 0.82rem;
  color: var(--c-gray);
  font-style: normal;
}
.maps-embed { 
  position: relative;
  height: 100%;
}
.maps-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(10%) contrast(1.05) brightness(0.95);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background-color: #00060F;
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer-brand h3 span { color: var(--c-gold); }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--c-gray);
  line-height: 1.7;
  margin-bottom: 22px;
}
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,195,0,0.07);
  border: 1px solid rgba(255,195,0,0.15);
  color: var(--c-gray);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-black);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 22px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.88rem;
  color: var(--c-gray);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--c-gold); padding-left: 5px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item span:first-child {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-item p {
  margin: 0;
  font-size: 0.87rem;
  color: var(--c-gray);
  line-height: 1.6;
}

/* Phone Number Helpers */
.large-phone {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-gold);
}
.footer-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-gold);
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  color: rgba(148,163,184,0.5);
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--c-wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  z-index: 999;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.whatsapp-float:hover {
  background: var(--c-wa-dk);
  transform: scale(1.1);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .card-wide { grid-column: span 1; }
  .whyus-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ================================================================
   MOBILE NAV DRAWER
   ================================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255,195,0,0.12);
  border: 1.5px solid rgba(255,195,0,0.5);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 12px;
  min-width: 46px;
  min-height: 46px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open { position: relative; z-index: 1400; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--c-navy);
  border-left: 1px solid rgba(255,195,0,0.15);
  z-index: 1300;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 90px 28px 40px;
  gap: 0;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: var(--c-gray2);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
}
.mobile-nav a:hover { color: var(--c-gold); }
.mobile-nav .mobile-nav-label {
  color: var(--c-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 18px 0 4px;
}
.mobile-nav .mobile-nav-sub a {
  padding: 10px 0 10px 14px;
  font-size: 0.92rem;
  border-bottom: none;
  color: var(--c-gray);
}
.mobile-nav .mobile-nav-sub a:hover { color: var(--c-gold); }
.mobile-nav .btn-nav-mobile {
  margin-top: 24px;
  background: var(--c-wa);
  color: var(--c-white) !important;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  border-bottom: none !important;
}

/* Mobile Nav Close Button */
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,195,0,0.12);
  border: 1.5px solid rgba(255,195,0,0.45);
  border-radius: 8px;
  color: var(--c-gold);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.mobile-nav-close:hover {
  background: rgba(255,195,0,0.25);
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
  /* Fix logo overlap dengan hamburger */
  .navbar { padding: 0 16px; }
  .logo-text { font-size: 1.3rem; }
  .logo-img { height: 34px; }
  .mobile-overlay { display: block; }
  .nav-links { display: none; }
  .slide-body { left: 6%; right: 6%; }
  .slide-body h1, .slide-body h2 { font-size: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat-item:nth-child(2)::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .whyus-section { padding: 80px 0; }
  .testi-wrapper { height: 340px; }
  .testi-card { padding: 36px 28px; }
  .maps-inner { grid-template-columns: 1fr; }
  .maps-info { padding: 40px 24px; }
  .maps-embed { min-height: 280px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .slider-btn { display: none; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-section {
  padding: 0 0 80px;
  position: relative;
  z-index: 5;
}
.faq-section .section-label { display: block; margin-bottom: 10px; }
.faq-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 40px;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(0, 29, 61, 0.5);
  border: 1px solid rgba(255, 195, 0, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: rgba(255, 195, 0, 0.4); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--c-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.faq-item.open .faq-question { color: var(--c-gold); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 195, 0, 0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--c-gold);
  color: var(--c-black);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p {
  font-size: 0.9rem;
  color: var(--c-gray);
  line-height: 1.75;
}
.faq-category { margin-bottom: 56px; }
.faq-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 195, 0, 0.15);
}
.faq-cat-icon { font-size: 1.8rem; }
.faq-cat-header h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  margin: 0;
}
.faq-cta {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, var(--c-navy), rgba(0,53,102,0.5));
  border: 1px solid rgba(255,195,0,0.15);
  border-radius: var(--radius);
  margin-top: 20px;
}
.faq-cta p {
  font-size: 1.1rem;
  color: var(--c-gray2);
  margin-bottom: 20px;
}

/* ================================================================
   INNER PAGES (ABOUT, SERVICES, ARTICLES)
   ================================================================ */
.page-header {
  padding: 180px 0 80px; /* adjusted padding to sit below fixed header */
  background: rgba(0, 8, 20, 0.4);
  text-align: center;
  border-bottom: 1px solid rgba(255, 195, 0, 0.15);
  margin-bottom: 60px;
}
.page-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--c-white);
}
.page-subtitle {
  font-size: 1.2rem;
  color: var(--c-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.content-section {
  padding: 0 0 100px;
  min-height: 50vh;
}
.content-card {
  background: rgba(0, 29, 61, 0.6);
  border: 1px solid rgba(255, 195, 0, 0.15);
  border-radius: 20px;
  padding: 60px;
  backdrop-filter: blur(10px);
}
.content-card h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  margin-top: 40px;
  color: var(--c-gold);
}
.content-card h2:first-child {
  margin-top: 0;
}
.content-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--c-gray2);
  margin-bottom: 20px;
}
.content-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}
.content-card ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--c-gray2);
  line-height: 1.6;
}
.content-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-gold);
  font-weight: bold;
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.article-card {
  background: rgba(0, 29, 61, 0.6);
  border: 1px solid rgba(255, 195, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.article-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 195, 0, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.article-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid var(--c-gold);
  background: var(--c-navy);
}
.article-content {
  padding: 30px;
}
.article-date {
  font-size: 0.85rem;
  color: var(--c-gold);
  margin-bottom: 10px;
  display: block;
}
.article-title {
  font-size: 1.4rem;
  color: var(--c-white);
  margin-bottom: 15px;
  line-height: 1.4;
}
.article-excerpt {
  color: var(--c-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.btn-read-more {
  color: var(--c-gold);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-read-more:hover {
  gap: 12px;
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .page-header { padding: 140px 0 60px; }
  .page-title { font-size: 2.2rem; }
  .content-card { padding: 24px; overflow: hidden; }
  .content-card h2 { font-size: 1.8rem; }
  .content-card .btn-primary,
  .content-card .btn-whatsapp,
  .content-card .btn-secondary,
  .faq-cta .btn-primary,
  .faq-cta .btn-whatsapp {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    font-size: 0.88rem;
    padding: 13px 20px;
  }
}

/* ---- Exit Intent Popup ---- */
.exit-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.78);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}
.exit-popup-overlay.show { opacity: 1; visibility: visible; }
.exit-popup {
  background: linear-gradient(135deg, var(--c-navy) 0%, #002347 100%);
  border: 1px solid rgba(255,195,0,0.3);
  border-radius: 16px;
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
}
.exit-popup-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  color: var(--c-gray);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.exit-popup-close:hover { color: var(--c-white); }
.exit-popup-emoji { font-size: 2.6rem; margin-bottom: 12px; }
.exit-popup h3 { font-size: 1.55rem; font-weight: 800; color: var(--c-white); margin-bottom: 10px; }
.exit-popup > p { color: var(--c-gray2); font-size: 0.94rem; line-height: 1.6; margin-bottom: 22px; }
.exit-popup > p strong { color: var(--c-gold); }
.exit-popup form { display: flex; flex-direction: column; gap: 11px; }
.exit-popup form input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,195,0,0.2);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--c-white);
  font-family: Montserrat, sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}
.exit-popup form input::placeholder { color: var(--c-gray); }
.exit-popup form input:focus { border-color: var(--c-gold); }
.exit-submit-btn {
  background: var(--c-gold);
  color: var(--c-black);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-family: Montserrat, sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.exit-submit-btn:hover { background: var(--c-yellow); }
.exit-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.exit-popup-note { font-size: 0.76rem !important; color: var(--c-gray) !important; margin-top: 12px !important; margin-bottom: 0 !important; }
.exit-popup-success { padding: 10px 0; }
.exit-popup-success .exit-popup-emoji { font-size: 3rem; }
.exit-popup-success h3 { color: var(--c-gold); }
.exit-popup-success p { color: var(--c-gray2); }
