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

body {
  background: #000;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

/* Fade-in Animation */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-section.visible { opacity: 1; transform: translateY(0); }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url("hero.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}
.hero h1 {
  font-size: 4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #ddd;
}

.cta {
  display: inline-block;
  border: 1px solid #f5f5f5;
  color: #f5f5f5;
  padding: 0.9rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
  border-radius: 999px;
}
.cta:hover {
  background: #f5f5f5;
  color: #000;
  box-shadow: 0 0 15px #e6e6e6;
}

/* Sections */
section {
  padding: 7rem 10%;
}
.packages {
  background: #000;
  text-align: center;
}
.packages h2 {
  font-size: 2.4rem;
  margin-bottom: 5rem;
}

.package {
  max-width: 850px;
  margin: 0 auto 6rem auto;
  text-align: left;
  border-top: 1px solid #1c1c1c;
  padding-top: 3.5rem;
}
.package h3 {
  font-size: 1.9rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.package .tagline {
  color: #999;
  font-style: italic;
  margin-bottom: 1.4rem;
}
.package p {
  color: #ccc;
  margin-bottom: 1.2rem;
}
.package ul {
  margin: 1.5rem 0;
  list-style: none;
}
.package ul li {
  margin-bottom: 0.6rem;
  padding-left: 18px;
  position: relative;
}
.package ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #777;
}
.package .price {
  color: #ccc;
  font-weight: bold;
  margin-top: 1.5rem;
  letter-spacing: 0.5px;
}

/* About */
.about {
  background: #000;
  text-align: center;
  border-top: 1px solid #111;
}
.about h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.about p {
  color: #ccc;
  max-width: 820px;
  margin: 0.5rem auto 0;
  line-height: 1.9;
}

/* CTA Section */
.cta-section {
  background: #111;
  text-align: center;
  padding: 6rem 2rem;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

/* CONTACT */
.contact {
  background: #000;
  text-align: center;
  padding: 6rem 2rem;
  border-top: 1px solid #111;
}
.contact h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.contact p {
  color: #ccc;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.contact form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: flex;
  gap: 1rem;
}
.form-row input {
  flex: 1;
}
.contact input,
.contact textarea,
.contact select {
  background: #0b0b0b;
  border: 1px solid #f5f5f540;
  color: #fff;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}
.contact input::placeholder,
.contact textarea::placeholder {
  color: #8e8e8e;
}
.contact input:focus,
.contact textarea:focus,
.contact select:focus {
  border-color: #ffffff;
  background: #111;
  box-shadow: 0 0 8px #c0c0c0;
}
.contact button.cta {
  background: transparent;
  border: 1px solid #f5f5f5;
  color: #f5f5f5;
  padding: 0.9rem 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.contact button.cta:hover {
  background: #f5f5f5;
  color: #000;
  box-shadow: 0 0 18px #d9d9d9;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #111;
}

/* BACK TO TOP */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #f5f5f5;
  color: #fff;
  font-size: 1.2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#backToTop.show {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .form-row {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  section {
    padding: 5rem 6%;
  }
}

    /* A LA CARTE SERVICES GRID */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .service-card {
      background: #0b0b0b;
      border: 1px solid #1c1c1c;
      border-radius: 10px;
      padding: 2rem;
      text-align: left;
      position: relative;
      transition: border-color 0.3s ease, transform 0.3s ease;
    }
    .service-card:hover {
      border-color: #24c45c;
      transform: translateY(-6px);
    }
    .service-card h3 {
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      color: #f5f5f5;
    }
    .service-card .tagline {
      color: #999;
      font-style: italic;
      margin-bottom: 1rem;
    }
    .service-card p {
      color: #ccc;
      margin-bottom: 1rem;
    }
    .service-card .price {
      font-weight: bold;
      color: #ccc;
    }

    @media (max-width: 900px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 600px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }

/* EVENT COVERAGE PACKAGES GRID */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.package-card {
  background: #0b0b0b;
  border: 1px solid #1c1c1c;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.package-card:hover {
  border-color: #24c45c;
  transform: translateY(-6px);
}
.package-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #f5f5f5;
}
.package-card .tagline {
  color: #999;
  font-style: italic;
  margin-bottom: 1rem;
}
.package-card p {
  color: #ccc;
  margin-bottom: 1rem;
}
.package-card ul {
  margin: 1rem 0;
  list-style: none;
  padding-left: 0;
}
.package-card ul li {
  margin-bottom: 0.6rem;
  padding-left: 1rem;
  position: relative;
}
.package-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #777;
}
.package-card .price {
  color: #ccc;
  font-weight: bold;
  margin-top: 1.2rem;
}
.package-card.premium {
  border: 2px solid #24c45c;
}
.package-card.premium .price {
  color: #24c45c;
}
@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}