* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body {
  font-family: "Poppins", sans-serif;
  background: #1e1e1e;
  color: #f2f2f2;
}
a { text-decoration: none; color: inherit; }

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(30,30,30,0.95);
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,215,0,0.2);
}
header .brand {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 800;
}
nav a {
  margin-left: 22px;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover { color: #ffd700; }

main { padding-top: 78px; }

.hero {
  min-height: 92vh;
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?auto=format&fit=crop&w=1600&q=60')
    center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #ffd700;
  margin-bottom: 16px;
}
.hero p {
  max-width: 820px;
  font-size: 1.15rem;
  line-height: 1.65;
  color: #eaeaea;
}

.cta {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  background: #ffd700;
  color: #1e1e1e;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 800;
  transition: all 0.25s;
  display: inline-block;
}
.btn:hover {
  background: #f5e342;
  transform: translateY(-2px);
}
.btn.secondary {
  background: transparent;
  color: #ffd700;
  border: 1px solid #ffd700;
}
.btn.secondary:hover { background: rgba(255,215,0,0.14); }

section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}
.section-title {
  text-align: center;
  color: #ffd700;
  font-size: 2rem;
  margin-bottom: 26px;
}
p { line-height: 1.75; color: #ddd; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}
.card {
  background: #2a2a2a;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #3a3a3a;
}
.card h2, .card h3 {
  color: #ffd700;
  margin-bottom: 12px;
}
.card ul { margin-left: 18px; margin-top: 10px; }
.card li { margin: 8px 0; color: #ddd; }

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-box {
  background: #2a2a2a;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #3a3a3a;
  transition: transform 0.25s, border-color 0.25s;
  text-align: left;
}
.service-box:hover {
  transform: translateY(-4px);
  border-color: #ffd700;
}
.service-box h3 { color: #ffd700; margin-bottom: 10px; }

.kicker {
  display: inline-block;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.25);
  color: #ffd700;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-info {
  text-align: center;
  font-size: 1.05rem;
  line-height: 2;
}
.contact-info a { color: #ffd700; }

footer {
  background: #111;
  padding: 25px;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

.wa-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #25D366;
  color: #1e1e1e;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  z-index: 1200;
}

.breadcrumbs {
  max-width: 1100px;
  margin: 92px auto 0;
  padding: 0 20px;
  color: #bbb;
  font-size: 0.95rem;
}
.breadcrumbs a { color: #ffd700; }

@media (max-width: 800px) {
  header { flex-direction: column; padding: 10px 16px; }
  nav { margin-top: 8px; }
  .hero h1 { font-size: 2.1rem; }
  .grid-2 { grid-template-columns: 1fr; }
}
