/* ===== General ===== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8fafc;
  color: #1f2937;
  margin: 0;
  padding: 0;
}

/* ===== Hero Section ===== */
.hero.section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #eff6ff, #ffffff);
  text-align: center;
  padding: 120px 20px;
}

.hero.section h2 {
  font-size: 3.5rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero.section p {
  font-size: 1.25rem;
  color: #475569;
  max-width: 600px;
}

/* Button */
.btn-get-started {
  background: #2563eb;
  color: #fff;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 30px;
  transition: all 0.3s ease-in-out;
  border: none;
}

.btn-get-started:hover {
  background: #1e40af;
  transform: translateY(-3px);
}

/* ===== About Section ===== */
#about {
  background: #ffffff;
  padding: 100px 0;
}

#about h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 20px;
}

#about h2 span {
  color: #2563eb;
}

#about p {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Media Online Cards ===== */
.card {
  border: none;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ===== Jam Layanan (Info Box) ===== */
.info-box {
  background: #e0f2fe;
  border-left: 6px solid #2563eb;
  padding: 24px;
  border-radius: 14px;
  color: #1e293b;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ===== Testimonial (Meja PTSP) ===== */
.testimonials .testimonial-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-8px);
}

/* ===== Team Section ===== */
.team.section {
  background: #f1f5f9;
  padding: 100px 0;
}

.team-img-hover {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

.team-img-hover:hover {
  transform: scale(1.08);
}

/* ===== Footer ===== */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 80px 20px 40px;
  text-align: center;
  position: relative;
}

.footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.footer .footer-top div {
  min-width: 180px;
}

.footer .footer-top h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer .footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top ul li {
  margin-bottom: 12px;
}

.footer .footer-top ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer .footer-top ul li a:hover {
  color: #3b82f6;
}

.footer .social-links {
  margin-top: 30px;
}

.footer .social-links a {
  display: inline-block;
  margin: 0 10px;
  color: #94a3b8;
  font-size: 1.2rem;
  transition: color 0.3s, transform 0.3s;
}

.footer .social-links a:hover {
  color: #3b82f6;
  transform: translateY(-4px);
}

.footer .copyright {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #64748b;
}

/* ===== Extra Smooth Section Transition ===== */
section {
  padding-top: 100px;
  padding-bottom: 100px;
}

    .navmenu {
      margin-right: 75px;
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      background: #fff;
      position: absolute;
      top: 70px;
      right: 15px;
      left: 15px;
      z-index: 9999;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .mobile-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mobile-nav ul li {
      margin-bottom: 15px;
    }

    .mobile-nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      display: block;
    }

    .mobile-nav-toggle.active {
      color: #0d6efd;
    }
 
 /* Hero section tetap full screen */
section.hero.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Hero jangan ada padding tambahan */
}

/* Semua section lain */
section.section {
  padding: 80px 0;
  min-height: auto;
}

/* Responsif di mobile */
@media (max-width: 768px) {
  section.section {
    padding: 60px 0;
  }
}

/* Section dengan background */
section.section[style*="background"] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Pastikan container tetap center */
.section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

  

