:root {
  --gold: #ffd700;
  --black: #000000;
  --dark: #111111;
  --light: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%; /* prevents oversized elements */
}

html, body {
  width: 100%;
  overflow-x: hidden; /* fully disable horizontal scroll */
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--black);
  color: var(--light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- HEADER ---------- */
header {
  background: radial-gradient(circle at top left, var(--gold), #333);
  padding: 80px 20px 60px;
  text-align: center;
  width: 100%;
  overflow-x: hidden;
}

header h1 {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--gold);
}

header h2 {
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--light);
}

/* ---------- BADGES ---------- */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  overflow-x: hidden;
}

.badge {
  border-radius: 999px;
  border: 1px solid #ffffff33;
  padding: 6px 12px;
  background: #00000066;
  text-align: center;
  white-space: nowrap;
}

/* ---------- CTA BUTTONS ---------- */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  overflow-x: hidden;
}

.btn-primary,
.btn-ghost {
  max-width: 100%;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.btn-primary:hover {
  background: #ffea70;
}

.btn-ghost {
  border-radius: 999px;
  border: 1px solid var(--gold);
  padding: 11px 18px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---------- MAIN ---------- */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px 80px;
  overflow-x: hidden;
  width: 100%;
}

.section {
  margin-bottom: 50px;
}

.section-title {
  font-size: 24px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 14px;
  text-align: center;
  color: #cccccc;
  margin-bottom: 28px;
}

/* ---------- TWO COLUMN ---------- */
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  overflow-x: hidden;
}

.two-column .col {
  flex: 1 1 260px;
  min-width: 0;
}

/* ---------- SERVICES ---------- */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  width: 100%;
}

.service-block {
  background: var(--dark);
  border-radius: 14px;
  padding: 16px 16px 18px;
  border: 1px solid #ffffff22;
  transition: 0.2s ease;
  max-width: 100%;
  overflow-wrap: break-word;
}

.service-block:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 25px #000000aa;
}

.service-block h3 {
  margin-bottom: 6px;
  font-size: 16px;
  color: var(--gold);
}

.service-block p {
  margin-bottom: 8px;
  font-size: 13px;
  color: #dddddd;
}

.service-meta {
  font-size: 12px;
  color: #bbbbbb;
}

.cta-mini {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

/* ---------- MAP ---------- */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ffffff22;
  background: #000;
  max-width: 100%;
}

iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* ---------- ADDRESS ---------- */
.address {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  color: #dddddd;
  word-wrap: break-word;
}

/* ---------- FOOTER ---------- */
footer {
  background: #000;
  border-top: 1px solid #ffffff22;
  padding: 16px;
  text-align: center;
  font-size: 12px;
  color: #aaaaaa;
  overflow-x: hidden;
}

/* ---------- STICKY BAR ---------- */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000ee;
  border-top: 1px solid #ffffff33;
  display: flex;
  justify-content: space-around;
  padding: 8px 10px;
  z-index: 999;
  overflow-x: hidden;
}

.sticky-btn {
  flex: 1;
  margin: 0 4px;
  background: var(--gold);
  color: #000;
  border-radius: 999px;
  padding: 8px 6px;
  font-size: 13px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* ---------- MEDIA QUERIES ---------- */
@media (min-width: 768px) {
  header h1 {
    font-size: 34px;
  }

  header h2 {
    font-size: 20px;
  }

  iframe {
    height: 320px;
  }

  .sticky-bar {
    display: none;
  }
}

@media (max-width: 480px) {
  header {
    padding: 60px 15px 40px;
  }

  header h1 {
    font-size: 24px;
  }

  header h2 {
    font-size: 16px;
  }

  .section-title {
    font-size: 20px;
  }

  .two-column {
    gap: 20px;
  }

  .service-block {
    padding: 14px;
  }
}
