* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

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

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: #0f172a;
  color: white;
  position: sticky;
  top: 0;
}

.header a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.cta {
  background: #22c55e;
  padding: 8px 14px;
  border-radius: 6px;
}

.hero {
  height: 90vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 8%;
  color: white;
}

.hero-text h1 {
  font-size: 48px;
}

.tagline {
  margin: 10px 0;
  font-weight: bold;
}

.section {
  padding: 60px 8%;
  text-align: center;
}

.gray {
  background: #f8fafc;
}

.card img {
  width: 280px;
  border-radius: 12px;
  margin: 15px 0;
}

.plans {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.plan {
  background: white;
  padding: 25px;
  border-radius: 12px;
  width: 260px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #0f172a;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

.secondary {
  background: #22c55e;
}

.why {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-weight: bold;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

.reviews {
  max-width: 700px;
  margin: auto;
}

.review {
  margin: 15px 0;
  font-style: italic;
}

footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 15px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.menu-card {
  background: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  text-align: center;
}

.menu-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.menu-card span {
  display: block;
  font-weight: bold;
  margin: 8px 0;
  font-size: 18px;
}
.why div {
  background: white;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.contact-form {
  max-width: 500px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-form button {
  border: none;
  cursor: pointer;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 26px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.reviews {
  max-width: 800px;
  margin: auto;
}

.review {
  margin: 15px 0;
  font-style: italic;
  background: #f8fafc;
  padding: 15px;
  border-radius: 10px;
}
/* =========================
   MOBILE RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {

  /* Header */
  .header {
    flex-direction: column;
    gap: 10px;
    padding: 12px 5%;
  }

  .header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .logo {
    font-size: 20px;
  }

  /* Hero section */
  .hero {
    height: auto;
    padding: 60px 6%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  /* Sections */
  .section {
    padding: 40px 6%;
  }

  .section h1 {
    font-size: 26px;
  }

  .section h2 {
    font-size: 22px;
  }

  /* Cards */
  .plans, .why {
    flex-direction: column;
    align-items: center;
  }

  .plan {
    width: 100%;
    max-width: 320px;
  }

  .menu-card {
    padding: 16px;
  }

  /* Reviews */
  .reviews {
    padding: 0 5%;
  }

  /* Contact form */
  .contact-form {
    width: 100%;
  }

  /* Floating WhatsApp */
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    font-size: 24px;
    padding: 12px 14px;
  }
}
.menu-title {
  text-align: center;
  font-size: 36px;
  margin: 40px 0 10px;
}

.menu-section-title {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 26px;
  color: #1f8f4a;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0 8%;
}

.menu-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.menu-card span {
  font-weight: 700;
  color: #0f9d58;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
