/* ================== Membership Styles ================== */

.membership-container {
  padding: 20px;
  border-radius: 80px;
  background-color: white;
  text-align: center;
  border-top: 3px solid #4cadff;
  border-bottom: 3px solid #4cadff;
  max-width: 1200px;
  margin: auto;
}

.hh1 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: white;
  margin-bottom: 15px;
  font-weight: 1000;
  width: 80%;
  max-width: 400px;
  height: auto;
  border: 3px solid;
  margin-left: auto;
  margin-right: auto;
  background-color: #4cadff;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}

.membership-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.plan {
  background: white;
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: white;
}

.plan:hover {
  transform: scale(1.05);
}

.plan img {
  width: 100%;
  border-radius: 15px;
}

.hh2 {
  font-size: 24px;
  color: black;
  margin: 15px 0 10px;
}

.pp1 {
  font-size: 16px;
  color: black;
  line-height: 1.6;
}

.price {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  color: white;
  font-size: 20px;
  padding: 10px;
  border-radius: 25px;
  margin-top: 20px;
  font-weight: bold;
}

.contact-box {
  background: linear-gradient(135deg, #43cea2, #185a9d);
  padding: 20px;
  border: 2px solid black;
  max-width: 90%;
  margin: 30px auto;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  color: white;
}

.buttons a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.3s;
  margin: 10px;
}

.call-btn {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.call-btn:hover {
  background: linear-gradient(135deg, #2b8bc6, #497acb);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #1da851, #0f6c5f);
}

@media (max-width: 768px) {
  .membership-container {
    padding: 15px;
  }

  .membership-plans {
    flex-direction: column;
    align-items: center;
  }

  .plan {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .hh1 {
    font-size: 1.4rem;
  }
  .plan {
    padding: 20px;
  }
  .contact-box {
    font-size: 12px;
  }
  .buttons a {
    font-size: 10px;
    padding: 8px 16px;
  }
}
