/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f5f7fa;
  color: #1f2933;
  overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

/* HEADER */
.header {
  margin-top: 20px;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
}

.logo span {
  color: #18a999;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  font-size: 15px;
  color: #4b5563;
  transition: 0.2s;
}

.nav a:hover,
.nav .active {
  color: #18a999;
}

/* MOBILE MENU BUTTON */
.menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-btn div {
  width: 24px;
  height: 3px;
  background: #111827;
  margin: 4px 0;
  border-radius: 4px;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 220px;
  height: 100vh;
  background: #111827;
  padding-top: 80px;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.3s ease;
  z-index: 9999;
}

.mobile-menu a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 16px;
}

.mobile-menu.open {
  right: 0;
}

/* HERO */
.hero {
  margin-top: 40px;
  background: linear-gradient(135deg, #18a999, #3b82f6);
  border-radius: 24px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  color: #f9fafb;
}

.hero-text h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 17px;
  max-width: 480px;
}

.hero-img img {
  max-width: 360px;
  border-radius: 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.primary-btn {
  background: #ffffff;
  color: #111827;
}

.primary-btn:hover {
  background: #e5e7eb;
}

.ghost-btn {
  border: 1px solid #18a999;
  color: #18a999;
  background: transparent;
}

.ghost-btn:hover {
  background: #e0f2f1;
}

/* FEATURES */
.features h2,
.routes-preview h2,
.how-it-works h2,
.contact-box h2,
.sub-hero h1,
.page h1,
.page h2,
.map-section h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.features h2,
.routes-preview h2,
.how-it-works h2 {
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card,
.route-card,
.step-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.icon {
  font-size: 30px;
  color: #18a999;
  margin-bottom: 10px;
}

.route-card .tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: #e0f2fe;
  color: #1d4ed8;
}

.center {
  text-align: center;
  margin-top: 20px;
}

/* HOW IT WORKS */
.step-card {
  text-align: left;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #18a999;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

/* PAGE CONTENT */
.page {
  max-width: 800px;
  margin: 30px auto 40px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.page p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page ul {
  margin-left: 18px;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* CONTACT BOX */
.contact-box {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.contact-img img {
  max-width: 320px;
  border-radius: 14px;
}

/* CONTACT PAGE */
.contact-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 30px;
}

.contact-form,
.contact-info-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.contact-form h2 {
  margin-bottom: 10px;
}

.contact-form label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
}

/* FOOTER */
footer {
  margin-top: 40px;
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

.footer-links {
  margin-bottom: 8px;
}

.footer-links a {
  color: #18a999;
  text-decoration: none;
  margin: 0 6px;
  font-size: 13px;
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  z-index: 9999;
}

.cookie-box {
  background: #111827;
  color: #e5e7eb;
  padding: 16px;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
}

.cookie-box button {
  margin-top: 10px;
  width: 100%;
  padding: 8px 0;
  border-radius: 999px;
  border: none;
  background: #18a999;
  color: #111827;
  font-weight: 600;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .hero {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 15px;
    margin: 0 auto;
  }

  .hero-img img {
    max-width: 260px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .contact-box {
    flex-direction: column;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .container {
    width: 92%;
  }
}

@media (max-width: 600px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 26px;
  }
}
