/* -------------------------------
   Juarawin168 - Style CSS
   Tema: Biru lembut, modern minimalis
   Valid CSS3, tanpa vendor warning
--------------------------------*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1d1f21;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Container umum */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header & Navigasi */
header {
  background-color: #e9f3ff;
  border-bottom: 1px solid #d0e3f7;
  padding: 12px 0;
}

.logo {
  font-size: 1.5rem;
  color: #2563eb;
  font-weight: 700;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2563eb;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
}

.hero-text {
  flex: 1 1 480px;
  padding-right: 20px;
}

.hero-text h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #334155;
}




.btn-primary {
  display: inline-block;
  background-color: #2563eb;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
  text-align: center;
  padding: 60px 0;
}

.features h3 {
  font-size: 1.8rem;
  color: #1e3a8a;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background-color: #f8fbff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.feature-item h4 {
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #475569;
}

/* Footer */
footer {
  background-color: #e9f3ff;
  padding: 40px 0 20px;
  margin-top: 60px;
  border-top: 1px solid #d0e3f7;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-brand h4 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.footer-links a {
  display: block;
  color: #334155;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #2563eb;
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
}

/* Responsif */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
  }

  .hero-image {
    margin-top: 20px;
  }

  .nav-links {
    gap: 1rem;
  }
}

.disclaimer {
  margin-top: 24px;
  padding: 16px;
  background: #f8fbff;
  border: 1px solid #dceafd;
  border-radius: 8px;
}
.disclaimer h3 {
  margin-bottom: 8px;
  color: #1e3a8a;
}
