* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0f1115;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 8%;
  background: rgba(15, 17, 21, 0.72);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-size: 1.1rem;
  font-weight: 800;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.82;
  transition: 0.25s ease;
}

nav a:hover {
  opacity: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45),
    rgba(15,17,21,1)
  );
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 850px;
}

.hero-locations {
  position: absolute;
  bottom: 30px;

  width: 100%;
  text-align: center;

  font-size: 0.95rem;
  font-weight: 500;

  color: rgba(255,255,255,0.85);

  letter-spacing: 1px;
}

.tag {
  color: #7dd3fc;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.hero-text {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  max-width: 700px;
  margin: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 1rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.primary-btn {
  background: white;
  color: black;
}

.primary-btn:hover {
  transform: translateY(-3px);
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  background: rgba(255,255,255,0.03);
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.06);
}

.section {
  padding: 8rem 8%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section + .section {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.section:nth-child(even) {
  background: rgba(255,255,255,0.015);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title p {
  color: #7dd3fc;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-title h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.card-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.card,
.price-card,
.contact-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.card:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(125,211,252,0.35);
}

.card h3,
.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}


/* ADD-ONS BOX */
.add-ons-box {
  width: 100%;
  max-width: 1100px;

  margin: 3rem auto 1.5rem auto;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 28px;
  padding: 2.5rem;

  backdrop-filter: blur(10px);
}

.add-ons-box h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

/* INDIVIDUAL ADD-ONS */
.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1rem 0;

  border-bottom: 1px solid rgba(255,255,255,0.08);

  color: rgba(255,255,255,0.85);

  font-size: 1.05rem;
}

.addon-item:last-child {
  border-bottom: none;
}

/* DISCLAIMER */
.pricing-disclaimer {
  max-width: 700px;

  margin: 1.5rem auto 0 auto;

  text-align: center;

  background: rgba(255,255,255,0.025);

  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 20px;

  padding: 1.5rem;
}

.pricing-disclaimer h3 {
  margin-bottom: 0.75rem;
}

.pricing-disclaimer p {
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.dark-section {
  background: linear-gradient(
    to bottom,
    #101217,
    #0b0d12
  );
}

.price {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 1rem 0;
}

.price-card ul {
  margin-top: 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.featured {
  position: relative;
  overflow: hidden;
}

.featured-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;

  padding: 0.35rem 0.8rem;
  border-radius: 999px;

  background: #7dd3fc;
  color: black;

  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.contact-section {
  padding-top: 6rem;
}

.contact-box {
  max-width: 700px;
  margin: auto;
  text-align: center;
  padding: 3rem;
}

.contact-box p {
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 2rem;

  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 24px;

  padding: 2rem;

  backdrop-filter: blur(10px);
}

.testimonial-card p {
  color: rgba(255,255,255,0.76);

  line-height: 1.8;

  margin-bottom: 1.5rem;

  font-style: italic;
}

.testimonial-card h4 {
  color: #7dd3fc;

  font-size: 0.95rem;
}

.review-buttons {
  display: flex;

  justify-content: center;

  gap: 1rem;

  flex-wrap: wrap;
}

.about-box {
  max-width: 900px;

  margin: auto;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 28px;

  padding: 2.5rem;

  backdrop-filter: blur(10px);
}

.about-box p {
  color: rgba(255,255,255,0.74);

  line-height: 1.9;

  margin-bottom: 1.5rem;

  font-size: 1.05rem;
}

.about-box p:last-child {
  margin-bottom: 0;
}

footer {
  text-align: center;
  padding: 2.5rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-socials {
  display: flex;

  justify-content: center;

  gap: 1.5rem;

  margin-bottom: 1rem;

  flex-wrap: wrap;
}

.footer-socials a {
  color: rgba(255,255,255,0.7);

  text-decoration: none;

  transition: 0.25s ease;
}

.footer-socials a:hover {
  color: #7dd3fc;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .section {
    padding: 6rem 1.5rem;
    min-height: auto;
  }

  .featured {
    transform: none;
  }
}
