/* style.css - Final Fix (Hamburger + Hero Button Center + Footer Kiri) */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1e293b;
  scroll-behavior: smooth;
  line-height: 1.5;
  overflow-x: hidden;
}

:root {
  --primary: #203178;
  --primary-dark: #0a2c2d;
  --secondary: #e67e22;
  --secondary-light: #f39c12;
  --gray-light: #f8fafc;
  --gray-border: #e2e8f0;
  --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --radius: 1.25rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sec { height: 70vh; }
.sec2 { min-height: 100vh; padding: 6rem 0rem; 
}

.sec3 { min-height: 100vh; padding: 0rem 3rem 0rem; }
.seclast { padding: 8rem 3rem 0rem; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  z-index: 50;
  border-bottom: 1px solid var(--gray-border);
  padding: 0.75rem 0;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  background: url('../img/ldvlb.png');
  width: 42px;
  height: 42px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--primary);
}

.logo-text span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #5b6e8c;
}

/* Hamburger button */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary);
  line-height: 1;
  padding: 0;
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #334155;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--secondary); }

.btn-wa-nav {
  background: #25d366;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-wa-nav:hover { background: #20b859; }

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 60px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 0.7rem 1.6rem;
  border-radius: 60px;
  font-weight: 600;
  transition: 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  /* background: linear-gradient(135deg, #fef9f0, #fff); */
  background: linear-gradient(135deg, #ffffff, #dcedff);
}
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.hero-content { flex: 1; }
.hero-badge {
  background: #eef2ff;
  color: var(--primary);
  display: inline-block;
  border-radius: 60px;
  padding: 0.3rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #0f172a;
}
.hero-content p {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 2rem;
  max-width: 90%;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #0f172a;
}
.section-sub {
  text-align: center;
  color: #5b6e8c;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.package-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: all 0.3s ease;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.card-header { padding: 1.5rem 1.5rem 0.5rem; }
.package-name { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.package-price { font-size: 1.6rem; font-weight: 800; color: var(--primary); margin: 0.75rem 0; }
.card-body { padding: 1rem 1.5rem 1.5rem; }
.feature-list { list-style: none; margin: 1rem 0; }
.feature-list li { margin-bottom: 0.65rem; display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; }
.feature-list i { color: var(--secondary); width: 20px; }
.bonus-badge {
  background: #fef3c7;
  color: #b45309;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 0.5rem;
}
.card-footer {
  padding: 1rem 1.5rem 1.8rem;
  border-top: 1px solid var(--gray-border);
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.benefit-card {
  background: var(--gray-light);
  padding: 1.5rem;
  border-radius: 1.5rem;
}
.benefit-icon {
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 1rem;
}
.pillar {
  background: #fff;
  border-radius: 1rem;
  padding: 1.3rem;
  box-shadow: var(--shadow-sm);
}
.pillar h4 i { color: var(--secondary); margin-right: 0.5rem; }
.cta-section {
  /* background: linear-gradient(110deg, #0f3b3c, #1a5a5c); */
  background: linear-gradient(110deg, #222C74, #3c9aff);
  border-radius: 2rem;
  padding: 3rem;
  margin: 2rem 0;
  text-align: center;
  color: #fff;
}

footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid #1e293b;
}

/* Floating WA */
.wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: 0.2s;
}
.wa-float:hover { transform: scale(1.08); background: #20b859; }

/* ========== RESPONSIVE MOBILE (Fix All) ========== */
@media (max-width: 768px) {
  .nav-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .hamburger {
    display: block;
    margin-left: auto;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding: 1rem 0;
    background: rgba(255,255,255,0.98);
    border-radius: 1rem;
    margin-top: 1rem;
  }
  .nav-links.show {
    display: flex;
  }
  .btn-wa-nav {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

  .hero-grid {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .hero-content p {
    max-width: 100%;
    font-size: 1rem;
  }
  .hero-content div[style*="display: flex"] {
    justify-content: center !important;
    width: 100%;
  }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-grid > div:last-child {
    display: none;
  }

  /* Container & padding */
  .container {
    padding: 0 1.2rem;
  }
  .sec {
    height: auto;
    padding: 2rem 1rem;
  }
  .sec2 {
    min-height: auto;
    padding: 3rem 1rem;
  }
  .sec3 {
    min-height: auto;
    padding: 2rem 1rem;
  }
  .seclast {
    padding: 3rem 1rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
  .section-sub {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  /* Cards */
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .package-name {
    font-size: 1.5rem;
  }
  .package-price {
    font-size: 1.3rem;
  }
  .card-body {
    padding: 1rem;
  }
  .feature-list li {
    font-size: 0.85rem;
  }

  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .benefit-card {
    text-align: center;
  }
  .benefit-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .three-col {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  
  .cta-section {
    padding: 2rem 1.2rem;
    margin: 2rem 0;
  }
  .cta-section h2 {
    font-size: 1.5rem !important;
  }
  .cta-section a {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }

  footer > .container > div:first-child {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
  footer .logo-icon {
    margin-left: 0;
    margin-right: 0;
  }

  .wa-float {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    bottom: 20px;
    right: 20px;
  }
}


@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .btn-primary, .btn-outline {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .package-price {
    font-size: 1.2rem;
  }
  .hero-stats div {
    font-size: 0.85rem;
  }
}


@media (max-width: 768px) {
  .logo-text h1 {
    font-size: 1.2rem !important; 
  }
  .logo-text{
    gap: 0px;
    display: flex ;
    flex-direction: column;
  }
  .logo-text span {
    font-size: 0.6rem !important; 
  }
  .logo-icon {
    width: 34px !important;
    height: 34px !important;
  }
  
  .hero-badge {
    font-size: 0.7rem !important;
  }
}

@media (max-width: 480px) {
  .logo-text h1 {
    font-size: 1.1rem !important;
  }
 
}