/* ============================================
   ROUTES/TOURS SECTION STYLES
   ============================================ */

.routes-section {
  padding: 160px 20px 100px;
  background: white;
}

.routes-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 4rem;
}

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

.tour-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tour-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.05);
}

.tour-header,
.tour-description,
.tour-pricing,
.tour-cta {
  padding: 0 30px;
}

.tour-header {
  padding-top: 25px;
}

.tour-header h3 {
  font-size: 1.8rem;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.tour-tagline {
  font-size: 1.1rem;
  color: #888;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.tour-description {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.tour-description p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

/* Tour Pricing Summary */
.tour-pricing-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: white;
  border-top: 1px solid #eee;
  margin-bottom: 0;
}

.price-from {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
}

.duration-range {
  font-size: 1rem;
  color: #666;
}

/* Tour CTA Link */
.tour-cta-link {
  display: block;
  padding: 18px 30px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0 0 15px 15px;
}

.tour-cta-link:hover {
  background: linear-gradient(135deg, #ff8c42 0%, #ffa555 100%);
  transform: translateY(-2px);
}

.tour-pricing {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.tour-pricing h4 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.price-options {
  display: grid;
  gap: 10px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f5f5f5;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.price-item:hover {
  background: #ebebeb;
}

.price-item .duration {
  font-weight: 500;
  color: #555;
}

.price-item .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6b35;
}

.price-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #888;
  font-style: italic;
}

.tour-cta {
  display: block;
  text-align: center;
  padding: 15px 30px;
  margin: 0 30px 15px 30px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.tour-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.tour-details-link {
  display: block;
  text-align: center;
  padding: 12px 30px;
  margin: 0 30px 30px 30px;
  background: transparent;
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #ff6b35;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.tour-details-link:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }

  .routes-section h2 {
    font-size: 2rem;
  }

  .tour-header h3 {
    font-size: 1.5rem;
  }
}

/* ============================================
   ATTRACTION CARD STYLES
   ============================================ */

.tour-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tour-content h3 {
  font-size: 2rem;
  color: #ff6b35;
  margin: 0;
}

.tour-location {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

.tour-content .tour-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin: 10px 0;
  padding: 0;
}

.tour-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}

.highlight-item {
  font-size: 1rem;
  color: #444;
  padding: 8px 12px;
  background: white;
  border-radius: 8px;
  border-right: 3px solid #ff6b35;
}

.tour-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-align: center;
  margin-top: 10px;
}

.tour-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #ff8c42 0%, #ffa555 100%);
}

@media (max-width: 768px) {
  .tour-content h3 {
    font-size: 1.6rem;
  }

  .tour-highlights {
    gap: 8px;
  }

  .highlight-item {
    font-size: 0.95rem;
  }
}
