/* ===== PREMIUM PLANS PAGE ===== */
.premium-hero {
  background: linear-gradient(135deg, #05694f 0%, #043928 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.premium-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../Images/pattern.svg") repeat;
  opacity: 0.1;
  pointer-events: none;
}

.premium-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.premium-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.contact-info-banner {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 25px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item i {
  font-size: 1.2rem;
  color: #f0b824;
}

.contact-item span {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Included Features */
.included-banner {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 50px 0;
  border-bottom: 1px solid #dee2e6;
}

.included-banner h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #05694f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.included-banner h2 i {
  color: #28a745;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.included-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.included-item:hover {
  transform: translateY(-5px);
}

.included-item i {
  font-size: 2rem;
  color: #05694f;
  margin-bottom: 10px;
}

.included-item span {
  font-weight: 600;
  color: #333;
}

.no-fee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  margin: 20px auto 0;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.no-fee-badge i {
  font-size: 1.2rem;
}

/* Individual Plan Cards */
.premium-plans-section {
  padding: 80px 0;
}

.plan-cards-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.plan-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
  z-index: 2;
}

.silver-badge {
  background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
  color: #333;
}

.gold-badge {
  background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
  color: #333;
}

.platinum-badge {
  background: linear-gradient(135deg, #e5e4e2 0%, #d4d4d4 100%);
  color: #333;
}

.recommended .popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f0b824;
  color: #000;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.85rem;
  z-index: 2;
}

.plan-content {
  padding: 40px;
}

.plan-header {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.plan-header h2 {
  font-size: 2rem;
  color: #05694f;
  margin-bottom: 15px;
}

.price-section {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}

.monthly-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #05694f;
}

.month-text {
  font-size: 1.2rem;
  color: #666;
}

.cash-price {
  color: #666;
  font-size: 1.1rem;
}

.cash-price strong {
  color: #333;
}

.plan-features {
  margin-bottom: 30px;
}

.plan-features h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features h3 i {
  color: #f0b824;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list i {
  color: #28a745;
  width: 20px;
}

.plan-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-select {
  flex: 1;
  min-width: 200px;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
}

.btn-whatsapp:hover {
  background: #1da851;
}

.btn-call {
  background: #05694f;
  color: white;
  border: none;
}

.btn-call:hover {
  background: #043928;
}

/* Waiting Period Banner */
.waiting-period {
  background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
  color: #333;
  padding: 40px 0;
  text-align: center;
  margin-top: 50px;
}

.waiting-period h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.waiting-period p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .premium-title {
    font-size: 2.2rem;
  }

  .premium-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .contact-info-banner {
    gap: 15px;
    padding: 0 20px;
  }

  .contact-item {
    padding: 10px 20px;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 20px;
  }

  .plan-content {
    padding: 30px 25px;
  }

  .plan-header h2 {
    font-size: 1.8rem;
  }

  .monthly-price {
    font-size: 2.2rem;
  }

  .plan-actions {
    flex-direction: column;
  }

  .btn-select {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .premium-title {
    font-size: 1.8rem;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .plan-badge {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    margin-bottom: 15px;
  }

  .recommended .popular-badge {
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
    margin-left: 10px;
  }
}
