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

body {
  width: 100%;
  height: auto;
  background-color: #f8fafc;
  display: grid;
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    sans-serif;
  overflow: scroll;
}

header {
  width: 100%;
  height: auto;
}

header > nav {
  width: 100%;
  height: 100%;
}

nav {
  background-color: #071620;
  position: sticky;
  top: 0;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  z-index: 100;
  gap: 16px;
}

.logo {
  background-image: url(./assets/ChatGPT\ Image\ Feb\ 11\,\ 2026\,\ 03_46_34\ PM.png);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
}

.menu {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

/* remove the old per-item width override */
.menu > .menu-list {
  width: auto;
}

.menu-list {
  padding: 8px 16px;
  list-style: none;
  color: #ffffff;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.menu-list:hover {
  color: #c0392b;
  background: rgba(255, 255, 255, 0.06);
}

.menu-list:focus {
  color: #1c2e3d;
}

/* style the anchor tags inside menu items */
.menu-list .item {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.item:active {
  color: #1c2e3d;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background-color: #c0392b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 1;
}

.cta-btn:hover {
  background-color: #a93226;
  transform: translateY(-2px);
}

.home {
  width: 100%;
  height: 69vh;
  color: #ffffff;
  text-align: center;
  position: relative;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.text-home {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 90%;
}

section {
  text-align: center;
  background-color: #ffffff;
}

.intro {
  margin: 20px;
  font-weight: 700;
  font-size: 1.7rem;
  color: #b3d711;
}

.dispatch {
  margin: 20px;
  font-weight: 1000;
  font-size: 3.2rem;
  text-shadow: 2px 5px 2px #1c2e3d;
}

.offer {
  width: 100%;
  height: auto;
  min-height: 400px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 90px;
  gap: 20px;
}

.container {
  width: 350px;
  height: 250px;
  background-color: #c0392b;
  border-radius: 20px;
  position: relative;
  padding: 5px;
}

.innerContainer {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.step-circle {
  width: 50px;
  height: 50px;
  border: 1px solid #071620;
  text-align: center;
  border-radius: 50%;
  place-items: center;
  box-shadow: 1px 2px #f8fafc;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px;
}

p {
  margin: 20px;
  text-align: center;
}

.card {
  width: 350px;
  height: 250px;
  background-color: #1c2e3d29;
  border-radius: 20px;
  position: relative;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 17px;
  gap: 1rem;
}

.contact {
  width: 100%;
  height: auto;
  background-color: #1c2e3d;
  color: #ffffff;
  text-align: center;
  padding: 20px;
}

.inner-contact {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.fa-whatsapp {
  color: #ffffff;
  font-size: 26px;
}

.htext {
  margin-top: 25px;
  margin-bottom: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f8fafc;
  transition: background 0.2s ease;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

#videobg {
  background: url(video.jpg) no-repeat;
  background-size: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.fa-shield-halved,
.fa-tag,
.fa-bolt {
  font-size: 1.5rem;
}

.map {
  width: 100%;
  height: 300px;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .menu-list {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .offer {
    padding: 40px 20px;
  }

  .dispatch {
    font-size: 2.2rem;
  }

  .intro {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  nav {
    flex-wrap: wrap;
    padding: 10px 14px;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .menu {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
  }

  .menu-list {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .home {
    height: 85vh;
  }

  .dispatch {
    font-size: 1.6rem;
  }

  .intro {
    font-size: 1.1rem;
  }

  .text-home p {
    font-size: 0.9rem;
  }

  .container,
  .card {
    width: 90%;
    height: auto;
    min-height: 220px;
  }

  .innerContainer {
    width: 100%;
    height: auto;
    min-height: 210px;
    padding-bottom: 15px;
  }

  .offer {
    padding: 30px 15px;
    flex-direction: column;
    align-items: center;
  }
}