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

body {
  font-family: 'Poppins', sans-serif;
  color: #1c1c1c;
  line-height: 1.6;
  background: #fff;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { font-weight: 700; line-height: 1.2; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #0a0a0a;
  color: #fff;
}
.btn-primary:hover { background: #d4af37; color: #0a0a0a; }

.btn-outline {
  background: transparent;
  border: 2px solid #0a0a0a;
  color: #0a0a0a;
}
.btn-outline:hover { background: #0a0a0a; color: #fff; }

.full-width { width: 100%; text-align: center; }

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  color: #0a0a0a;
}
.logo span { color: #d4af37; }

.nav { display: flex; gap: 28px; }
.nav a { font-weight: 600; font-size: 15px; }
.nav a:hover { color: #d4af37; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 3px; background: #0a0a0a;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #262626 100%);
  color: #fff;
  padding: 180px 0 100px;
  text-align: center;
}
.hero h1 { font-size: 46px; margin-bottom: 20px; }
.hero h1 span { color: #d4af37; }
.hero p { max-width: 600px; margin: 0 auto 30px; font-size: 18px; color: #ddd; }

/* SECTIONS */
section { padding: 90px 0; }
section h2 { text-align: center; font-size: 34px; margin-bottom: 10px; }
.section-sub { text-align: center; color: #666; margin-bottom: 50px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform .3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.card .icon { font-size: 40px; margin-bottom: 15px; }
.card h3 { margin-bottom: 10px; font-size: 19px; }
.card p { color: #666; font-size: 15px; }

/* O NAMA */
.o-nama { background: #f5f2ec; }
.o-nama-inner { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.o-nama-text { flex: 2; min-width: 280px; }
.o-nama-text p { color: #555; margin-bottom: 20px; }
.checklist li { padding: 8px 0; padding-left: 28px; position: relative; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: #d4af37; font-weight: 700; }

.o-nama-stats { flex: 1; display: flex; flex-direction: column; gap: 25px; min-width: 200px; }
.stat { text-align: center; background: #fff; padding: 25px; border-radius: 12px; }
.stat span { font-size: 32px; font-weight: 700; color: #0a0a0a; display: block; }
.stat p { color: #666; margin-top: 5px; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.gallery-item {
  height: 220px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
.g1 { background: linear-gradient(135deg, #d4af37, #333); }
.g2 { background: linear-gradient(135deg, #333, #666); }
.g3 { background: linear-gradient(135deg, #666, #d4af37); }
.g4 { background: linear-gradient(135deg, #111, #d4af37); }
.g5 { background: linear-gradient(135deg, #d4af37, #111); }
.g6 { background: linear-gradient(135deg, #444, #999); }

/* PRICING */
.cjenik { background: #f9f9f9; }
.price-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: transform .3s ease;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured { border: 2px solid #d4af37; }
.price-card h3 { margin-bottom: 15px; }
.price-card .price { font-size: 28px; font-weight: 700; color: #d4af37; margin-bottom: 20px; }
.price-card ul { margin-bottom: 25px; }
.price-card ul li { padding: 6px 0; color: #555; }

/* CONTACT */
.kontakt-inner {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.kontakt-info { flex: 1; min-width: 280px; }
.kontakt-info h2 { text-align: left; margin-bottom: 15px; }
.info-item { margin: 12px 0; }
.social-links { margin-top: 20px; display: flex; gap: 15px; flex-wrap: wrap; }
.social-links a { font-weight: 600; color: #0a0a0a; border-bottom: 2px solid #d4af37; padding-bottom: 2px; }

.kontakt-form {
  flex: 1;
  min-width: 280px;
  background: #f5f2ec;
  padding: 30px;
  border-radius: 12px;
}
.kontakt-form h3 { margin-bottom: 20px; }
.kontakt-form label { display: block; margin: 12px 0 6px; font-weight: 600; font-size: 14px; }
.kontakt-form input, .kontakt-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
}
.kontakt-form button { margin-top: 20px; }
.form-status { margin-top: 15px; font-weight: 600; text-align: center; }

/* FOOTER */
.footer { background: #0a0a0a; color: #ccc; padding: 60px 0 20px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}
.footer .logo { color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom { text-align: center; padding-top: 20px; font-size: 13px; color: #888; }

/* LEGAL PAGE */
.legal { padding: 160px 0 80px; max-width: 800px; margin: 0 auto; }
.legal h1 { margin-bottom: 20px; }
.legal h2 { text-align: left; font-size: 22px; margin: 30px 0 10px; }
.legal p { color: #444; margin-bottom: 10px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav { position: fixed; top: 70px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; gap: 15px; display: none; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
  .nav.active { display: flex; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .o-nama-inner, .kontakt-inner { flex-direction: column; }
}
