/* ROOT WARNA */
:root {
  --primary: #0d6efd;
  --secondary: #4facfe;
  --dark: #0f172a;
  --bg: #f8fafc;
}

/* GLOBAL */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg);
  margin: 0;
}

/* NAVBAR */
.main-navbar {
  backdrop-filter: blur(10px);
}

.logo {
  height: 50px;
  transition: 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* HERO */
.hero-section {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  padding: 80px 20px;
}

.hero-section h1 {
  font-weight: bold;
}

.hero-section p {
  max-width: 600px;
  margin: 10px auto;
}

/* KONTAK CARD */
.contact-card {
  background: white;
  border-radius: 10px;
}

.contact-item i {
  font-size: 24px;
  margin-bottom: 5px;
}

.contact-item a {
  text-decoration: none;
  color: #333;
}

.contact-item a:hover {
  color: var(--primary);
}

/* MAP */
.map-container iframe {
  width: 100%;
  border-radius: 10px;
}

/* FLOATING WA */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 24px;
  z-index: 1000;
  transition: 0.3s;
}

.wa-float:hover {
  transform: scale(1.1);
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: white;
  padding: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.social-icons a {
  color: white;
  margin-left: 12px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffd43b;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .hero-section {
    padding: 60px 20px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .social-icons a {
    margin: 0 8px;
  }

}