/* Physical Server Packages CSS */

.physical-server-packages-section {
  padding: 0;
}

.physical-server-features-header {
  background: #f8f9fa;
  padding: 15px 0;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
}

.physical-server-features-header h6 {
  font-weight: 600;
  color: #495057;
  margin: 0;
  font-size: 14px;
}

.plan-rows {
  margin-top: 30px;
}

.plan-row {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.plan-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: #007bff;
}

.plan-name h5 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.plan-name img {
  width: 150px;
  height: auto;
}

.plan-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-badge:not(.popular) {
  background: #f8f9fa;
  color: #6c757d;
}

.plan-badge.popular {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

.plan-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spec-value {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.spec-detail {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
}

.plan-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: #007bff;
  line-height: 1;
}

.period {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
}

.plan-action .btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.plan-action .btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: none;
}

.plan-action .btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
}

.plan-action .btn-outline-primary {
  border: 2px solid #007bff;
  color: #007bff;
  background: transparent;
}

.plan-action .btn-outline-primary:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .plan-row {
    padding: 20px 15px;
  }
  
  .plan-name h5 {
    font-size: 20px;
  }
  
  .spec-value {
    font-size: 16px;
  }
  
  .price {
    font-size: 28px;
  }
  
  .plan-action .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .plan-row .row > .col {
    margin-bottom: 15px;
  }
  
  .plan-row .row > .col:last-child {
    margin-bottom: 0;
  }
}
