/* Pricing Page Specific Styles */

/* Override main-content height for pricing page */
.main-content {
  min-height: 60vh;
  padding-top: 110px;
  padding-bottom: 0;
}

/* Pricing Hero Section */
.pricing-hero {
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: 64px;
  font-weight: 900;
  color: #000;
  line-height: 0.95;
  margin-bottom: 20px;
  letter-spacing: -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Pricing Section */
.pricing-section {
  padding: 20px 0 80px 0;
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Pricing Cards */
.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  position: relative;
  transition: all 0.3s ease;
  height: fit-content;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
  border-color: #333;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Card Header */
.card-header {
  text-align: center;
  margin-bottom: 40px;
}

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

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
}

.currency {
  font-size: 32px;
  font-weight: 600;
  color: #666;
}

.amount {
  font-size: 56px;
  font-weight: 900;
  color: #333;
  margin-left: 4px;
}

.plan-subtitle {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

/* Card Body */
.card-body {
  margin-bottom: 40px;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.5;
}

.check {
  color: #28a745;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Card Footer */
.card-footer {
  text-align: center;
}

.plan-btn {
  display: inline-block;
  width: 100%;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.basic-btn {
  background: #f8f9fa;
  color: #333;
  border: 2px solid #e9ecef;
}

.basic-btn:hover {
  background: #e9ecef;
  border-color: #333;
}

.premium-btn {
  background: #333;
  color: white;
  border: 2px solid #333;
}

.premium-btn:hover {
  background: #000;
}

.business-btn {
  background: #f8f9fa;
  color: #333;
  border: 2px solid #e9ecef;
}

.business-btn:hover {
  background: #333;
  color: white;
}

/* Additional Services Section */
.additional-services {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

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

.service-item {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
}

.service-name {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.service-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: #333;
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.cta-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: white;
  color: #333;
}

.cta-btn.primary:hover {
  background: #f0f0f0;
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #333;
}

/* Navigation Active State */
.nav-link.active {
  color: #333;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-title {
    font-size: 48px;
    letter-spacing: -1px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }

  .plan-price .amount {
    font-size: 42px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .pricing-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 32px;
  }
}
