/* ==========================================================================
   NUSATAKA ERP — PREMIUM SaaS LANDING PAGE CSS
   Theme: ERP dari Nusantara untuk Nusantara
   ========================================================================== */

/* 1. LOCAL FONTS CONFIGURATION (@font-face) */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/poppins/poppins-v24-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins/poppins-v24-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins/poppins-v24-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins/poppins-v24-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins/poppins-v24-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins/poppins-v24-latin-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter/inter-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter/inter-v20-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter/inter-v20-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/inter/inter-v20-latin-800.woff2') format('woff2');
}

/* 2. DESIGN TOKENS & SYSTEM */
:root {
  --primary: #0F61AF;        /* Deep Tech Blue from Logo */
  --primary-rgb: 15, 97, 175;
  --secondary: #8ABAE6;      /* Sky Tech Blue from Logo */
  --secondary-rgb: 138, 186, 230;
  --dark-blue: #0B2347;      /* Corporate Nusantara Navy */
  --dark-blue-rgb: 11, 35, 71;
  --light-bg: #F8FAFC;       /* Soft Light Gray */
  --text-main: #334155;      /* Slate 700 */
  --text-muted: #64748B;     /* Slate 500 */
  --white: #FFFFFF;
  --whatsapp: #25D366;       /* Official WhatsApp Green */
  --whatsapp-glow: rgba(37, 211, 102, 0.4);

  --font-headings: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --gradient-brand: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 50%, var(--secondary) 100%);
  --gradient-cyan-blue: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-dark-glow: linear-gradient(180deg, #09172E 0%, #030A14 100%);
  --gradient-soft: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
  
  --shadow-sm: 0 2px 4px rgba(11, 35, 71, 0.04);
  --shadow-md: 0 10px 30px rgba(11, 35, 71, 0.06);
  --shadow-lg: 0 20px 40px rgba(11, 35, 71, 0.1);
  --shadow-glow: 0 0 30px rgba(138, 186, 230, 0.25);
  --shadow-wa: 0 10px 25px rgba(37, 211, 102, 0.3);

  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* 3. BASE STYLES */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--dark-blue);
}

.text-gradient {
  background: var(--gradient-cyan-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-padding {
  padding: 100px 0;
}

.bg-soft {
  background: var(--gradient-soft);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* 4. PREMIUM BUTTONS & BADGES */
.btn-premium {
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  padding: 12px 28px;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.btn-premium-primary {
  background: var(--gradient-cyan-blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 163, 224, 0.25);
}

.btn-premium-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 163, 224, 0.35);
  color: var(--white);
}

.btn-premium-secondary {
  background: rgba(var(--dark-blue-rgb), 0.05);
  color: var(--dark-blue);
  border: 1px solid rgba(var(--dark-blue-rgb), 0.1);
}

.btn-premium-secondary:hover {
  background: rgba(var(--dark-blue-rgb), 0.08);
  transform: translateY(-3px);
  color: var(--dark-blue);
}

.btn-premium-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-premium-outline-white:hover {
  background: var(--white);
  color: var(--dark-blue);
  transform: translateY(-3px);
  border-color: var(--white);
}

.btn-premium-wa {
  background-color: var(--whatsapp);
  color: var(--white);
  box-shadow: var(--shadow-wa);
}

.btn-premium-wa:hover {
  background-color: #20BA56;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.badge-tech {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--secondary);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  margin-bottom: 20px;
}

.badge-tech-white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* 5. STICKY STYLED NAVBAR */
.navbar-nusataka {
  padding: 20px 0;
  transition: var(--transition-normal);
  z-index: 1050;
  background: transparent;
}

.navbar-nusataka.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(var(--dark-blue-rgb), 0.05);
}

.navbar-nusataka .navbar-brand {
  width: 170px;
  transition: var(--transition-normal);
}

.navbar-nusataka .nav-link {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 12px;
  transition: var(--transition-fast);
  position: relative;
  color: var(--dark-blue); /* Default on mobile/fallback */
}

/* Desktop-only transparent state color adapt (prevents leakage to white mobile toggle) */
@media (min-width: 992px) {
  .navbar-nusataka .nav-link {
    color: rgba(255, 255, 255, 0.9); /* Legible high-contrast text on transparent dark background */
  }
  .navbar-nusataka .nav-link:hover,
  .navbar-nusataka .nav-link.active {
    color: var(--secondary) !important; /* Secondary cyan glow when hovering on dark header */
  }
}

.navbar-nusataka .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-cyan-blue);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.navbar-nusataka .nav-link:hover::after,
.navbar-nusataka .nav-link.active::after {
  width: 80%;
}

/* Scrolled state adapts links to dark navy text on white backdrop */
.navbar-nusataka.scrolled .nav-link {
  color: var(--dark-blue);
}

.navbar-nusataka.scrolled .nav-link:hover,
.navbar-nusataka.scrolled .nav-link.active {
  color: var(--primary) !important; /* Primary royal blue on white scrolled navbar */
}

/* Mobile Toggle Hamburger */
.navbar-toggler-nusataka {
  border: none;
  background: transparent;
  padding: 5px;
}
.navbar-toggler-nusataka:focus {
  box-shadow: none;
}
.navbar-toggler-nusataka span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--dark-blue);
  margin: 6px 0;
  transition: var(--transition-normal);
}
.navbar-toggler-nusataka.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.navbar-toggler-nusataka.open span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler-nusataka.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

@media (max-width: 991.98px) {
  .navbar-nusataka {
    background: var(--white) !important;
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
  }
  .navbar-nusataka .nav-link {
    padding: 12px 20px;
    margin: 4px 0;
    border-radius: 8px;
  }
  .navbar-nusataka .nav-link:hover {
    background: rgba(var(--primary-rgb), 0.05);
  }
  .navbar-nusataka .nav-link::after {
    display: none;
  }
}

/* 6. HERO SECTION */
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 80px;
  background-color: #030A16;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 201, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 91, 148, 0.18) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  overflow: hidden;
  color: var(--white);
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.hero-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 25px;
  color: var(--white);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: #94A3B8;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Mockup Presentation */
.hero-mockup-container {
  position: relative;
  width: 100%;
}

.hero-mockup-frame {
  position: relative;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.6);
  padding: 6px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  backdrop-filter: blur(10px);
  z-index: 2;
  overflow: hidden;
}

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

/* Floating Badges in Hero */
.floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-normal);
  animation: floatCard 4s ease-in-out infinite alternate;
}

.floating-badge-1 {
  top: 15%;
  left: -8%;
  animation-delay: 0.5s;
}

.floating-badge-2 {
  bottom: 12%;
  right: -5%;
  animation-delay: 1.5s;
}

.floating-badge:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--primary);
}

.floating-badge .icon-container {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cyan-blue);
  color: var(--white);
  font-size: 1.2rem;
}

.floating-badge .badge-text h6 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.floating-badge .badge-text span {
  font-size: 0.75rem;
  color: #94A3B8;
}

/* Counter Metrics in Hero */
.hero-metrics {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 25px 30px;
  margin-top: 50px;
}

.metric-item {
  text-align: center;
}

.metric-number {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94A3B8;
  font-weight: 600;
  margin: 0;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

@media (max-width: 991.98px) {
  .hero-wrapper {
    padding-top: 120px;
    text-align: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-desc {
    font-size: 1.05rem;
  }
  .hero-mockup-container {
    margin-top: 55px;
  }
  .floating-badge {
    display: none; /* Hide floating items on mobile/tablet to avoid congestion */
  }
}

/* 7. KEUNGGULAN SECTION */
.keunggulan-card {
  background: var(--white);
  border: 1px solid rgba(var(--dark-blue-rgb), 0.04);
  border-radius: var(--border-radius-md);
  padding: 35px 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.keunggulan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-cyan-blue);
  transition: var(--transition-normal);
}

.keunggulan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.keunggulan-card:hover::before {
  height: 100%;
}

.keunggulan-card .icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-sm);
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  transition: var(--transition-normal);
}

.keunggulan-card:hover .icon-box {
  background: var(--gradient-cyan-blue);
  color: var(--white);
  transform: scale(1.05);
}

.keunggulan-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.keunggulan-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* 8. MODUL ERP SECTION */
.module-grid-card {
  background: var(--white);
  border: 1px solid rgba(var(--dark-blue-rgb), 0.06);
  border-radius: var(--border-radius-md);
  padding: 24px 20px;
  height: 100%;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.module-grid-card:hover {
  transform: scale(1.03) translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.module-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.module-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(var(--dark-blue-rgb), 0.04);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition-normal);
}

.module-grid-card:hover .module-icon-box {
  background: var(--gradient-cyan-blue);
  color: var(--white);
}

.module-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.badge-ent {
  background-color: rgba(11, 35, 71, 0.08);
  color: var(--dark-blue);
}

.badge-med {
  background-color: rgba(220, 38, 38, 0.08);
  color: #DC2626;
}

.badge-rtl {
  background-color: rgba(245, 158, 11, 0.08);
  color: #D97706;
}

.badge-mfg {
  background-color: rgba(16, 185, 129, 0.08);
  color: #059669;
}

.module-grid-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.module-grid-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* 9. SOLUSI INDUSTRI SECTION */
.industry-tab-container {
  margin-top: 50px;
}

.industry-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(var(--dark-blue-rgb), 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.industry-img-box {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: var(--dark-blue);
}

.industry-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  opacity: 0.85;
}

.industry-card:hover .industry-img-box img {
  transform: scale(1.08);
  opacity: 0.7;
}

.industry-img-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.industry-content {
  padding: 30px;
}

.industry-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.industry-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.industry-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-features-list li {
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.industry-features-list li i {
  color: var(--primary);
  font-size: 0.95rem;
}

/* 10. FITUR UNGGULAN SECTION (Alternating) */
.feature-alternating-row {
  margin-bottom: 80px;
  align-items: center;
}

.feature-alternating-row:last-child {
  margin-bottom: 0;
}

.feature-text-block {
  padding: 20px;
}

.feature-text-block h3 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.feature-text-block p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.feature-bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feature-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-bullet-item i {
  color: var(--primary);
  font-size: 1rem;
}

.feature-mockup-wrapper {
  position: relative;
  background: var(--light-bg);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(var(--dark-blue-rgb), 0.04);
}

.feature-mockup-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-mockup-wrapper img {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px rgba(11, 35, 71, 0.1);
}

/* 11. TIMELINE IMPLEMENTASI SECTION */
.timeline-container {
  position: relative;
  padding: 40px 0;
}

/* Horizontal Track (Desktop) */
.timeline-track-horizontal {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(var(--dark-blue-rgb), 0.08);
  z-index: 1;
}

.timeline-track-progress {
  width: 100%;
  height: 100%;
  background: var(--gradient-cyan-blue);
}

.timeline-item-h {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 15px;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid rgba(var(--dark-blue-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark-blue);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.timeline-item-h:hover .timeline-dot {
  background: var(--gradient-cyan-blue);
  color: var(--white);
  border-color: var(--white);
  transform: scale(1.15);
  box-shadow: var(--shadow-glow);
}

.timeline-step {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: block;
}

.timeline-item-h h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-item-h p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Vertical timeline (Mobile fallback) */
@media (max-width: 991.98px) {
  .timeline-track-horizontal {
    display: none;
  }
  .timeline-container {
    position: relative;
    padding-left: 30px;
  }
  .timeline-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 4px;
    height: 100%;
    background: rgba(var(--dark-blue-rgb), 0.08);
  }
  .timeline-item-h {
    text-align: left;
    padding: 0 0 35px 25px;
  }
  .timeline-dot {
    position: absolute;
    left: -24px;
    top: -2px;
    margin: 0;
  }
}

/* 12. TESTIMONIALS SECTION */
.testimonial-swiper {
  padding-bottom: 60px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(var(--dark-blue-rgb), 0.05);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.1);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 3rem;
  color: rgba(var(--primary-rgb), 0.08);
}

.testimonial-rating {
  margin-bottom: 20px;
  color: #F59E0B;
}

.testimonial-rating i {
  font-size: 0.95rem;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-cyan-blue);
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.testimonial-info h4 {
  font-size: 1.05rem;
  margin: 0 0 3px 0;
}

.testimonial-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* 13. PRICING SECTION */
.pricing-card {
  background: var(--white);
  border: 1px solid rgba(var(--dark-blue-rgb), 0.06);
  border-radius: var(--border-radius-lg);
  padding: 50px 35px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.pricing-popular-badge {
  position: absolute;
  top: 25px;
  right: -35px;
  background: var(--gradient-cyan-blue);
  color: var(--white);
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 35px;
  transform: rotate(45deg);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-price {
  margin: 20px 0;
  font-family: var(--font-headings);
}

.pricing-price .currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-blue);
  vertical-align: top;
  position: relative;
  top: 5px;
}

.pricing-price .amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark-blue);
}

.pricing-price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.pricing-features-list li {
  font-size: 0.9rem;
  color: var(--text-main);
  padding: 10px 0;
  border-bottom: 1px solid rgba(var(--dark-blue-rgb), 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features-list li:last-child {
  border-bottom: none;
}

.pricing-features-list li.disabled {
  color: #94A3B8;
  text-decoration: line-through;
}

.pricing-features-list li i {
  font-size: 1rem;
}

.pricing-features-list li i.fa-check-circle {
  color: var(--primary);
}

.pricing-features-list li i.fa-times-circle {
  color: #E2E8F0;
}

/* Premium B2B Pricing Highlights & Unlimited User Badges */
.badge-unlimited-user-premium {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-cyan-blue);
  color: var(--white);
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(15, 97, 175, 0.25);
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.pricing-badge-value {
  background: var(--white);
  border: 1px solid rgba(var(--dark-blue-rgb), 0.06);
  border-radius: var(--border-radius-sm);
  padding: 16px 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.pricing-badge-value:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.pricing-badge-value i {
  transition: transform var(--transition-fast);
}

.pricing-badge-value:hover i {
  transform: scale(1.1);
}

.pricing-badge-value h6 {
  font-size: 0.76rem;
  font-weight: 700;
  margin: 0;
  color: var(--dark-blue);
  line-height: 1.35;
}

.pricing-features-list li.feature-highlight-unlimited {
  background: rgba(15, 97, 175, 0.04);
  border: 1px dashed rgba(15, 97, 175, 0.25);
  border-radius: var(--border-radius-sm);
  padding: 8px 12px;
  margin-bottom: 12px;
  color: var(--primary);
  box-shadow: inset 0 0 10px rgba(15, 97, 175, 0.02);
}

.pricing-features-list li.feature-highlight-unlimited i {
  color: #10B981 !important; /* Rich green check double */
}

.pricing-cta-note {
  background: rgba(15, 97, 175, 0.03);
  border: 1px solid rgba(15, 97, 175, 0.12);
  border-radius: var(--border-radius-md);
  padding: 18px 25px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.pricing-cta-note i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pricing-cta-note span {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .pricing-cta-note {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
}

/* 14. CTA SECTION */
.cta-wrapper {
  background: var(--gradient-brand);
  border-radius: var(--border-radius-lg);
  padding: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 180%;
  background: radial-gradient(circle, rgba(0, 201, 255, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.cta-wrapper h2 {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-wrapper p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* 15. CONTACT & HUBUNGI KAMI SECTION */
.contact-info-card {
  background: var(--gradient-dark-glow);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  color: var(--white);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 25px;
}

.contact-info-card p {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.contact-method-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-method-item:last-child {
  margin-bottom: 0;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-method-details h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin: 0 0 5px 0;
}

.contact-method-details p,
.contact-method-details a {
  color: #94A3B8;
  font-size: 0.92rem;
  margin: 0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-method-details a:hover {
  color: var(--primary);
}

/* Business Hours Card Inside Form */
.wa-hours-badge {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 15px 20px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.wa-hours-badge i {
  color: var(--whatsapp);
  font-size: 1.75rem;
}

.wa-hours-text h6 {
  margin: 0 0 3px 0;
  color: var(--white);
  font-size: 0.9rem;
}

.wa-hours-text p {
  margin: 0;
  font-size: 0.8rem;
  color: #94A3B8;
}

/* Interactive Consult Form */
.consultation-form-card {
  background: var(--white);
  border: 1px solid rgba(var(--dark-blue-rgb), 0.06);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
}

.consultation-form-card h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.consultation-form-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 35px;
}

.form-group-nusataka {
  margin-bottom: 25px;
  position: relative;
}

.form-group-nusataka label {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
  display: block;
}

.form-control-nusataka {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  border: 1.5px solid #E2E8F0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-normal);
  background: var(--light-bg);
}

.form-control-nusataka:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 163, 224, 0.15);
}

.map-placeholder-frame {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 250px;
  border: 1px solid #E2E8F0;
  margin-top: 35px;
  position: relative;
}

.map-placeholder-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 991.98px) {
  .contact-info-card,
  .consultation-form-card {
    padding: 30px 20px;
  }
  .cta-wrapper {
    padding: 50px 20px;
  }
  .cta-wrapper h2 {
    font-size: 2rem;
  }
}

/* 16. FLOATING WHATSAPP BUTTON WITH PULSE EFFECT */
.floating-wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp);
  color: var(--white) !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: var(--shadow-wa);
  z-index: 999;
  transition: var(--transition-normal);
  cursor: pointer;
  text-decoration: none !important;
}

.floating-wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.floating-wa-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--whatsapp);
  z-index: -1;
  animation: waPulse 2s ease-out infinite;
}

.floating-wa-tooltip {
  position: absolute;
  right: 75px;
  background: var(--dark-blue);
  color: var(--white);
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition-fast);
}

.floating-wa-btn:hover .floating-wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* 17. FOOTER SECTION */
.footer-nusataka {
  background-color: #030A14;
  color: #94A3B8;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-logo {
  width: 160px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #64748B;
}

.footer-heading {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gradient-cyan-blue);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  text-decoration: none !important;
  transition: var(--transition-normal);
}

.footer-social-btn:hover {
  background: var(--gradient-cyan-blue);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  color: #64748B;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

.footer-bottom-links a {
  color: #64748B;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

@media (max-width: 767.98px) {
  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
  .footer-nusataka {
    text-align: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-social-icons {
    justify-content: center;
  }
}

/* ==========================================================================
   RESPONSIVE LOGO STYLING
   ========================================================================== */

/* Responsive Logo Core Rules */
.logo-responsive {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-normal), max-height var(--transition-normal);
}

.logo-responsive:hover {
  transform: translateY(-1px) scale(1.02);
}

/* In the Footer */
.footer-brand-logo {
  max-height: 52px;
  width: auto;
  margin-bottom: 25px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.footer-brand-logo:hover {
  transform: scale(1.02);
}

/* Custom transitions to the navbar scrolled state logo size */
.navbar-nusataka.scrolled .logo-responsive {
  max-height: 36px;
}
