/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Pricing Page Styles
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Pricing Hero */
.pricing-hero {
  padding: 12rem 2rem 6rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  text-align: center;
}

.pricing-hero .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.pricing-hero .hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  font-weight: 300;
}

/* Pricing Guide */
.pricing-guide {
  padding: 8rem 2rem;
}

.pricing-guide .section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 4rem;
  line-height: 1.8;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: #1a1a1a;
}

.pricing-card.featured {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  border: none;
  transform: scale(1.05);
}

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

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.pricing-card.featured .card-icon {
  color: #f5f5f5;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.card-price {
  margin-bottom: 2rem;
}

.price-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.price-duration {
  display: block;
  font-size: 1rem;
  opacity: 0.7;
}

.card-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}

.pricing-card.featured .card-description {
  opacity: 0.9;
}

/* What's Included */
.whats-included {
  padding: 6rem 2rem;
  background: #f8f8f8;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.included-item {
  text-align: center;
}

.included-item i {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.included-item h3 {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

.included-note {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.95rem;
  color: #666;
}

/* Case Study */
.case-study {
  padding: 8rem 2rem;
}

.case-study-label {
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 1.5rem;
}

.case-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin: 2rem 0 4rem;
}

.itinerary {
  max-width: 900px;
  margin: 0 auto;
}

.itinerary-day {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.itinerary-day:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: #ccc;
}

.day-header h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.day-activities {
  list-style: none;
  padding: 0;
}

.day-activities li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.day-activities li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-weight: 500;
}

/* Team Section */
.team-section {
  padding: 8rem 2rem;
  background: #f8f8f8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.member-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f0f0f0;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.member-title {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.member-credential {
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-hero {
    padding: 10rem 1.5rem 4rem;
  }

  .pricing-hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .pricing-hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

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

  .itinerary-day {
    padding: 2rem 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .member-image {
    width: 160px;
    height: 160px;
  }
}
