
/* ====== Equal Height Cards Layout ====== */
.plans-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}



/* Each plan card */
.plan-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  padding: 30px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Ensure all cards same height */
.plan-card h3 {
  margin-bottom: 15px;
  color: #007bff;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  flex-grow: 1; /* Forces all cards to stretch equally */
}

.plan-card ul li {
  margin-bottom: 10px;
  color: #333;
}

.plan-card .price {
  font-size: 22px;
  font-weight: bold;
  color: #222;
}

/* Buttons fix */
.plan-card .btn {
  background: #007bff;
  color: white;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.plan-card .btn:hover {
  background: #0056b3;
}

/* Hover effect */
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Popular Plan highlight */
.plan-card.popular {
  border: 2px solid #007bff;
  position: relative;
  overflow: hidden;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
}

.plan-card.popular::before {
  content: "🔥 Most Popular";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #ff7b00, #ffb700);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 8px rgba(255, 165, 0, 0.4);
}


/* ====== Gradient Light Sweep Hover Effect ====== */
.plan-card {
  position: relative;
  overflow: hidden;
}

.plan-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease-in-out;
}

.plan-card:hover::after {
  left: 100%;
}


/* ====== Gradient Light Sweep Hover Effect ====== */
.plan-card {
  position: relative;
  overflow: hidden;
}

.plan-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease-in-out;
}

.plan-card:hover::after {
  left: 100%;
}


/* ======== Responsive ======== */
@media (max-width: 992px) {
  .plans-container {
    flex-direction: column;
    align-items: center;
  }
  .plan-card {
    width: 90%;
  }
}

/* ===== DESKTOP NAVIGATION ===== */
.darhost-navbar {
  text-align: center;
  background: #fff;
  padding: 10px 0;
  position: relative;
}

.darhost-navbar .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.darhost-navbar .nav-menu li {
  display: inline-block;
  margin: 0 15px;
}

.darhost-navbar .nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.darhost-navbar .nav-menu a:hover {
  color: #0073e6;
}

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 26px;
  position: absolute;
  right: 20px;
  top: 12px;
}

/* ===== RESPONSIVE (MOBILE) ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .darhost-navbar .nav-menu {
    display: none;
    width: 100%;
    text-align: center;
  }

  .darhost-navbar .nav-menu.active {
    display: block;
  }

  .darhost-navbar .nav-menu li {
    display: block;
    margin: 10px 0;
  }
}
