:root {
  --gold: #ffd700;
  --black: #000000;
  --dark: #111111;
  --light: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden; /* ✅ Prevent 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;
  font-size: clamp(13px, 1.4vw, 16px); /* ✅ Responsive font */
}

/* LINKS */
a {
  color: inherit;
  text-decoration: none;
}

/* ===== HEADER ===== */
header {
  background: radial-gradient(circle at top left, var(--gold), #333);
  padding: clamp(50px, 8vw, 80px) 20px clamp(40px, 6vw, 60px);
  text-align: center;
}

header h1 {
  font-size: clamp(22px, 5vw, 30px);
  margin-bottom: 8px;
  color: var(--gold);
}

header h2 {
  font-size: clamp(14px, 3.5vw, 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: clamp(11px, 2.5vw, 13px);
}

.badge {
  border-radius: 999px;
  border: 1px solid #ffffff33;
  padding: 6px 12px;
  background: #00000066;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: clamp(10px, 2.8vw, 14px) clamp(16px, 4vw, 22px);
  font-size: clamp(12px, 3vw, 14px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-weight: 600;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-ghost {
  border: 1px solid var(--gold);
  color: var(--light);
}

/* ===== MAIN CONTENT ===== */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(24px, 6vw, 40px) clamp(12px, 4vw, 16px) clamp(60px, 8vw, 80px);
}

.section {
  margin-bottom: clamp(30px, 8vw, 50px);
}

.section-title {
  font-size: clamp(18px, 4vw, 24px);
  color: var(--gold);
  text-align: center;
  margin-bottom: clamp(12px, 3vw, 16px);
}

.section-subtitle {
  font-size: clamp(12px, 3vw, 14px);
  text-align: center;
  color: #cccccc;
  margin-bottom: clamp(20px, 4vw, 28px);
}

/* ===== TWO COLUMN SECTION ===== */
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 4vw, 30px);
  align-items: center;
}

.two-column .col {
  flex: 1 1 260px;
  min-width: 0; /* ✅ Prevent flex overflow */
}

/* ===== IMAGE CARDS ===== */
.image-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ffffff22;
  background: #000;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.image-caption {
  padding: 12px 14px;
  font-size: clamp(11px, 2.8vw, 13px);
  color: #cccccc;
}

/* ===== PACKAGE GRID ===== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(14px, 3vw, 18px);
}

.package-card {
  background: var(--dark);
  border-radius: 14px;
  padding: clamp(14px, 3vw, 18px);
  border: 1px solid #ffffff22;
  transition: 0.2s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px #000000aa;
  border-color: var(--gold);
}

.package-card h3 {
  margin-bottom: 8px;
  font-size: clamp(14px, 3.5vw, 16px);
  color: var(--gold);
}

.package-card p {
  margin-bottom: 10px;
  font-size: clamp(12px, 2.8vw, 13px);
  color: #dddddd;
}

/* ===== WHY LIST ===== */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  padding: 8px 0;
  border-bottom: 1px solid #ffffff22;
  font-size: clamp(12px, 3vw, 14px);
  display: flex;
  gap: 8px;
}

.why-list span.icon {
  color: var(--gold);
  margin-top: 2px;
}

/* ===== CTA BAND ===== */
.cta-band {
  margin-top: 12px;
  padding: clamp(16px, 4vw, 24px);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffd700, #9b7b00);
  color: #000;
  text-align: center;
}

.cta-band h3 {
  margin-bottom: 10px;
  font-size: clamp(16px, 4vw, 18px);
}

.cta-band p {
  margin-bottom: 16px;
  font-size: clamp(12px, 3vw, 14px);
}

/* ===== MAP + ADDRESS ===== */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ffffff22;
  background: #000;
}

iframe {
  width: 100%;
  height: clamp(220px, 35vw, 320px);
  border: 0;
  display: block;
}

.address {
  text-align: center;
  font-size: clamp(12px, 3vw, 14px);
  margin-top: 10px;
  color: #dddddd;
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  border-top: 1px solid #ffffff22;
  padding: clamp(12px, 3vw, 16px);
  text-align: center;
  font-size: clamp(11px, 2.8vw, 12px);
  color: #aaaaaa;
}

/* ===== STICKY BAR (Mobile Only) ===== */
.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;
}

.sticky-btn {
  flex: 1;
  margin: 0 4px;
  background: var(--gold);
  color: #000;
  border-radius: 999px;
  padding: 8px 6px;
  font-size: clamp(12px, 3vw, 13px);
  text-align: center;
  font-weight: 600;
  word-break: break-word;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 767px) {
  header {
    padding: 60px 16px 40px;
  }

  main {
    padding: 24px 12px 70px;
  }

  .two-column {
    flex-direction: column;
    gap: 20px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 16px 12px;
  }

  .sticky-bar {
    display: flex;
  }
}

@media (min-width: 768px) {
  .sticky-bar {
    display: none;
  }
}
