/* ============================
   RESET & BASE
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: #050507;
  color: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* ============================
   CONTAINERS & SECTIONS
============================ */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: radial-gradient(circle at top, #15162c 0%, #050507 70%);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-header p {
  color: #bfbfcd;
  font-size: 0.95rem;
}

/* ============================
   HEADER
============================ */
.header {
  position: sticky;
  top: 0;
  background: rgba(5, 5, 7, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #f5b301, #ff5b5b);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.logo-text {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  color: #e2e2f0;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav a:hover {
  opacity: 0.7;
}

/* ============================
   BUTTONS
============================ */
.btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #f5b301, #ff5b5b);
  color: #000;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.outline {
  border: 1px solid #f5b301;
  color: #f5b301;
}

.btn.block {
  width: 100%;
}


/* ============================
   HERO
============================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.35),
      rgba(5,5,7,0.9)
    ),
    url("public_html/assets/skyline1.jpg");  /* <-- put your bridge file here */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  padding: 100px 0 80px;
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.85));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}


/* ============================
   GRID SYSTEM
============================ */
.grid {
  display: grid;
  gap: 30px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================
   FEATURE & PACKAGE CARDS
============================ */
.card {
  background: rgba(15, 16, 25, 0.96);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: #cfcfe0;
  font-size: 0.92rem;
}

.package-price {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 10px 0;
}

/* ============================
   STEPS
============================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step {
  background: rgba(15, 16, 25, 0.96);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step span {
  color: #f5b301;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

/* ============================
   FAQ
============================ */
.faq {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.faq div {
  background: rgba(15, 16, 25, 0.96);
  padding: 22px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================
   CTA
============================ */
.cta {
  background: linear-gradient(135deg, #f5b301, #ff5b5b);
  color: #000;
  padding: 80px 0;
}

.cta-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* ============================
   FOOTER
============================ */
.footer {
  padding: 35px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #9a9aad;
  font-size: 0.8rem;
}

/* ============================
   MOBILE RESPONSIVENESS
============================ */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .steps {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }
}
.hero {
  background: url('assets/skyline.jpg') center center / cover no-repeat;
  position: relative;
  color: white;
  padding: 100px 0 80px;
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.85));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.calendar-week {
  margin-bottom: 40px;
}

.calendar-week h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #111;
}

.calendar-list {
  list-style: none;
  padding-left: 0;
}

.calendar-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  color: #333;
}

.calendar-list li strong {
  color: #000;
  font-weight: 600;
}

.calendar-cta {
  text-align: center;
  margin-top: 40px;
}

