/* Experience Pages Base Styles - Shared across all experience pages */

/* Hero Section */
.experience-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

.experience-hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.experience-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
}

.experience-hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
}

.experience-hero-content {
  color: white;
}

.experience-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}

.experience-hero p {
  font-size: 20px;
  margin-bottom: 0;
  opacity: 0.95;
}

/* Overview Section */
.experience-overview {
  background: #f8f9fa;
  border-top: 12px solid;
}

.overview-content {
  margin-bottom: 60px;
}

.section-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.overview-lead {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

.highlight-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.highlight-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Itinerary Timeline */
.experience-itinerary {
  background: #f8f9fa;
}

.itinerary-header {
  margin-bottom: 60px;
  text-align: center;
}

.itinerary-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-secondary), transparent);
}

.itinerary-day {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: center;
}

.itinerary-day:nth-child(even) {
  direction: rtl;
}

.itinerary-day:nth-child(even) > * {
  direction: ltr;
}

.day-marker {
  display: flex;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  padding: 40px 20px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.day-marker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.day-number {
  background: white;
  border: 3px solid;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.day-marker:hover .day-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.day-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.day-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.day-location {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.day-details {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.day-details p {
  margin-bottom: 10px;
}

.day-details ul {
  margin: 12px 0;
  padding-left: 24px;
  list-style-type: disc;
}

.day-details li {
  margin-bottom: 6px;
}

.optional-section {
  padding: 12px;
  border-left: 3px solid;
  border-radius: 4px;
  margin: 12px 0;
}

.meals {
  font-weight: 600;
  margin-top: 12px;
}

/* Responsive Itinerary */
@media (max-width: 768px) {
  .itinerary-timeline::before {
    left: 25px;
  }

  .itinerary-day {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .itinerary-day:nth-child(even) {
    direction: ltr;
  }

  .day-marker {
    position: absolute;
    left: 0;
    top: 0;
  }

  .day-number {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }

  .day-content {
    margin-left: 80px;
  }
}

/* What's Included Section */
.experience-included {
  background: white;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.included-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.included-item:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.included-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}

.included-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.included-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Highlights Section */
.experience-highlights {
  background: #f8f9fa;
}

.highlights-section-header {
  margin-bottom: 60px;
  text-align: center;
}

.highlights-list {
  max-width: 900px;
  margin: 0 auto;
}

.highlight-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid;
}

.highlight-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.highlight-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.highlight-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.highlight-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Pricing Section */
.experience-pricing {
  background: white;
}

.pricing-header {
  margin-bottom: 60px;
  text-align: center;
}

.pricing-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.pricing-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.segment-badge {
  display: inline-block;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.pricing-card .location {
  font-size: 13px;
  color: #888;
  font-weight: 500;
  margin-bottom: 16px;
}

.price-range {
  padding: 16px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  color: white;
}

.price-range .amount {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.pricing-card .includes {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.pricing-card .includes li {
  font-size: 13px;
  color: #555;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.pricing-card .includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* Pricing Activity Costs */
.pricing-activity-costs {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.pricing-activity-costs h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.activity-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.activity-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.activity-item li {
  font-size: 13px;
  padding: 6px 0;
  color: #555;
}

/* Pricing Summary */
.pricing-summary {
  color: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.summary-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: white;
}

.summary-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.summary-price .label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
}

.summary-price .amount {
  font-size: 24px;
  font-weight: 800;
}

.summary-note {
  text-align: center;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.pricing-notes {
  background: rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.pricing-notes h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.pricing-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-notes li {
  font-size: 13px;
  padding: 6px 0;
  opacity: 0.9;
}

.pricing-disclaimer {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 3px solid white;
}

.pricing-disclaimer p {
  font-size: 13px;
  margin: 0;
  opacity: 0.95;
}

/* CTA Section */
.experience-cta {
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  /* background: white; */
  border-color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: rgba(20, 20, 20, 0.11);
  color: white;
}

/* Section Padding */
.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .experience-hero h1 {
    font-size: 42px;
  }

  .section-title {
    font-size: 32px;
  }

  .highlights-list {
    max-width: 100%;
  }

  .highlight-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .highlight-number {
    font-size: 36px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }
}
