/* Pricing Page Specific Styles */

/* Pricing Header */
.pricing-header {
  background: linear-gradient(135deg, #007bf7 0%, #003366 100%);
  color: white;
  padding: 120px 10% 100px;
  text-align: center;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.pricing-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: cover;
}

.pricing-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.pricing-hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

/* Pricing Content */
.pricing-content {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
}

.pricing-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L0,100 Z" fill="rgba(0,123,247,0.03)"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-intro h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

.pricing-intro h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #007bf7, #003366);
  border-radius: 2px;
}

.pricing-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Pricing Filters */
.pricing-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 12px 25px;
  background: white;
  border: 2px solid #007bf7;
  color: #007bf7;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #007bf7;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 247, 0.3);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.pricing-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;
  max-width: 380px; /* Added max-width constraint */
  margin: 0 auto; /* Center the card */
}

.pricing-card.popular {
  border: 2px solid #007bf7;
  transform: scale(1.03);
  max-width: 400px; /* Slightly larger for popular card */
}

/* Rest of the CSS remains unchanged */


.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #007bf7;
  color: white;
  padding: 8px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 123, 247, 0.3);
}

.card-header {
  padding: 40px 30px 30px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.card-header h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.price {
  margin-bottom: 20px;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #007bf7;
}

.duration {
  font-size: 1rem;
  color: #6c757d;
}

.package-desc {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
}

.card-features {
  padding: 30px;
}

.card-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.card-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: #555;
}

.card-features i {
  color: #28a745;
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

.card-footer {
  padding: 0 30px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, #007bf7, #003366);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 247, 0.4);
}

.btn-details {
  color: #007bf7;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-details:hover {
  color: #0056b3;
  text-decoration: underline;
}

.btn-outline {
  border: 2px solid #007bf7;
  color: #007bf7;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  background: transparent;
}

.btn-outline:hover {
  background: #007bf7;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 247, 0.3);
}

/* Included Section */
.included-section {
  margin-bottom: 80px;
}

.included-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 50px;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

.included-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #007bf7, #003366);
  border-radius: 2px;
}

.included-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.included-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.included-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.included-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #007bf7, #003366);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.included-item h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.included-item p {
  color: #6c757d;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M100,0 L100,100 L0,100 Z" fill="rgba(0,123,247,0.03)"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.faq-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 50px;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

.faq-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #007bf7, #003366);
  border-radius: 2px;
}

.faq-grid {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #007bf7;
  box-shadow: 0 5px 15px rgba(0, 123, 247, 0.1);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question h4 {
  color: #2c3e50;
  margin: 0;
  font-size: 1.1rem;
}

.faq-question i {
  color: #007bf7;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding: 20px 0;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Back to Home */
.back-to-home {
  padding: 60px 0;
  background: #f8f9fa;
  text-align: center;
}

.back-to-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #007bf7, #003366);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 123, 247, 0.3);
}

.back-to-home .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 247, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .pricing-hero h1 {
    font-size: 2.8rem;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .pricing-header {
    padding: 100px 5% 80px;
  }
  
  .pricing-hero h1 {
    font-size: 2.2rem;
  }
  
  .pricing-hero p {
    font-size: 1.1rem;
  }
  
  .pricing-content {
    padding: 80px 0;
  }
  
  .pricing-intro h2,
  .included-section h2,
  .faq-section h2 {
    font-size: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
  
  .custom-tour {
    padding: 30px 20px;
  }
  
  .included-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .pricing-hero h1 {
    font-size: 1.8rem;
  }
  
  .pricing-hero p {
    font-size: 1rem;
  }
  
  .pricing-intro h2,
  .included-section h2,
  .faq-section h2 {
    font-size: 1.8rem;
  }
  
  .pricing-intro p {
    font-size: 1rem;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .card-header {
    padding: 30px 20px 20px;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .card-features {
    padding: 20px;
  }
  
  .card-footer {
    padding: 0 20px 30px;
  }
  
  .faq-question h4 {
    font-size: 1rem;
  }
}