body {
  background: red !important;
}
* {
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  margin: 0;
  background: #020617;
  color: #e5e7eb;
}

.container {
  width: 90%;
  margin: auto;
}

.navbar {
  background: rgba(2,6,23,.9);
  padding: 15px;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
}

.logo {
  color: #38bdf8;
  font-weight: bold;
}

nav a, nav button {
  color: white;
  margin-left: 15px;
  background: none;
  border: none;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  padding: 120px 20px;
  text-align: center;

  background:
    linear-gradient(rgba(6,10,30,0.88), rgba(6,10,30,0.88)),
    url("../../images/hero.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn-primary {
  background: #38bdf8;
  color: #020617;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  padding: 50px 0;
}

.service-card {
  background: #020617;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.1);
  text-align: center;
}

.footer {
  text-align: center;
  padding: 20px;
}

.page-title {
  text-align: center;
  margin-top: 40px;
}

.contact-form {
  max-width: 500px;
  margin: auto;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  padding: 14px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 24px;
}
