.server-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}






.server-plan-card {
  background: var(--background-secondary);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  padding: 24px;
  width: 100%;
  text-align: left;
  font-family: Arial, sans-serif;
  text-align: left;
}



.server-plan-card h2 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--text-color);
}

.server-plan-card .location {
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 10px;
}

.server-plan-card .price {
  font-size: 22px;
  color: var(--accent-primary);
  font-weight: bold;
  margin: 0;
  margin-bottom: 15px;
  text-align: left;
}

.server-plan-card .price span {
  font-size: 14px;
  color: var(--text-color);
  margin-left: 4px;
}

.server-plan-card .divider {
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
  width: 100%;
}

.server-plan-card .description {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
  text-align: left;
}

.server-plan-card .features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
  color: var(--text-color);
}

/* .server-plan-card .features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
} */
.server-plan-card .features li i {
  color: var(--accent-primary);
}
/* .server-plan-card .features li::before {
  content: "✔";
  color: var(--accent-primary);
  margin-right: 8px;
} */

.server-plan-card .order-btn {
  background: var(--gradient);
  color: var(--text-color);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  width: 100%;
}

/* Optional: Make it responsive */
@media (max-width: 1024px) {
  .server-plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .server-plans {
    grid-template-columns: 1fr;
  }
}


/********************* Colocation *********************/
.colocation-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  
}

.colocation-card {
  background: var(--background-secondary);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 20px;
  width: 100%; /* ✅ Full width inside grid */
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.colocation-card:hover {
  transform: translateY(-5px);
}

.card-header h3 {
  font-size: 1.5rem;
}

.colocation-card .features li {
  font-size: 0.95rem;
  line-height: 1.5;
}

.colocation-card .card-header h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 15px;
}

.colocation-card .price-box {
  background: var(--background-dark);
  border: 2px solid rgba(64, 80, 93, 0.4);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
  width: 90%;
}

.colocation-card .price-box p {
  color: var(--text-color);
  font-size: 0.875rem;
}

.colocation-card .price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.colocation-card .amount {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent-primary);
}

.colocation-card .price small {
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--text-color);
  text-transform: uppercase;
}

.colocation-card .features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.colocation-card .features li {
  display: flex;
  align-items: center;
  color: var(--text-color);
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.colocation-card .check-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: var(--accent-primary);
}

.colocation-card .order-button {
  width: 95%;
  display: flex;
  justify-content: center;
}

.colocation-card .order-button button {
  background: var(--gradient);
  color: var(--text-color);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  width: 100%;
}

/* "Most Popular" Badge */
.colocation-card .most-popular-badge {
  background-color: var(--accent-primary);
  color: var(--text-color);
  font-weight: bold;
  font-size: 0.875rem;
  padding: 5px 10px;
  border-radius: 12px;
  position: absolute;
  top: -5px;
  right: 10px;
  transform: translate(0, -10px);
  z-index: 10;
}

/* Styling for the Most Popular Plan */
.colocation-card.most-popular {
  border: 2px solid var(--accent-primary);
  position: relative;
}

@media (max-width: 1024px) {
  .colocation-plan {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .colocation-plan {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    max-width: 100%;
  }

  .colocation-card {
    width: 100%;
  }
}
