/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  line-height: 1.6;
  color: #111;
}

/* HERO */
.hero {
  min-height: 100vh;
  background-image: url("images/background.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* CTA */
.cta {
  display: inline-block;
  background: #ffffff;
  color: #000;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.cta.secondary {
  background: #000;
  color: #fff;
  margin-top: 1rem;
}

/* SECTIONS */
.section {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: auto;
}

.section.alt {
  background: #f5f5f5;
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.center {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* CONTACT */
.contact {
  text-align: center;
  margin-bottom: 2.5rem;
}

.payment {
  text-align: center;
}

/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 1.2rem;
  }
}
