/* ========================================
   MAHARAJAH TOURS - TRAVEL INFO PAGE
   Timeline, Quick Links, Info Sections
   ======================================== */

/* ========== TRAVEL HERO ========== */
.travel-hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 3px solid var(--brand-gold);
}

.travel-hero-icon i {
  font-size: 2.5rem;
  color: var(--brand-gold);
}

/* ========== QUICK LINKS GRID ========== */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  border-radius: 12px;
  text-decoration: none;
  color: var(--brand-burgundy);
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(78, 14, 16, 0.08);
}

.quick-link-card:hover {
  background: var(--brand-light-gold);
  border-color: var(--brand-gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  color: var(--brand-burgundy);
}

.quick-link-card i {
  font-size: 2.5rem;
  color: var(--brand-gold);
  transition: all 0.3s ease;
}

.quick-link-card:hover i {
  transform: scale(1.15);
  color: var(--brand-burgundy);
}

.quick-link-card span {
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.3;
}

/* ========== INFO SECTIONS ========== */
.info-section {
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 30px rgba(78, 14, 16, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  scroll-margin-top: 80px;
  overflow: hidden;
  max-width: 100%;
}

.info-section:hover {
  border-color: var(--brand-light-gold);
  box-shadow: 0 8px 40px rgba(78, 14, 16, 0.15);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--brand-light-gold);
}

.info-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-gold) 0%, #c09b2d 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.info-icon i {
  font-size: 2rem;
  color: #fff;
}

.info-title {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.info-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

.info-content {
  color: var(--text-dark);
  line-height: 1.8;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.info-content p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* ========== AIRPORT TIMELINE ========== */
.airport-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
  position: relative;
  padding-left: 0;
}

.airport-timeline::before {
  display: none;
}

.timeline-step {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-marker {
  position: static;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.step-marker i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-burgundy);
  color: var(--brand-gold);
  border-radius: 50%;
  font-size: 1rem;
  border: 3px solid #fff;
  box-shadow: 0 4px 15px rgba(78, 14, 16, 0.3);
  flex-shrink: 0;
}

.step-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-burgundy);
  line-height: 1.2;
  white-space: nowrap;
}

.step-content {
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  border: 2px solid var(--brand-light-gold);
  transition: all 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-content:hover {
  border-color: var(--brand-gold);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
  transform: translateX(5px);
}

.step-content h5 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.step-content p {
  color: var(--text-muted);
  margin: 0 0 0.75rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.step-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.step-tips span {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--brand-light-gold);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--brand-burgundy);
  font-weight: 500;
}

/* Tablet & Desktop: Left-aligned timeline */
@media (min-width: 769px) {
  .airport-timeline {
    padding-left: 0;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .airport-timeline::before {
    display: block;
    content: '';
    position: absolute;
    left: 80px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, var(--brand-gold) 0%, var(--brand-burgundy) 100%);
  }
  
  .timeline-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding-left: 0;
  }
  
  .step-marker {
    position: absolute;
    left: 80px;
    transform: translateX(-50%);
    top: 0;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    z-index: 10;
  }
  
  .step-marker i {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    border-width: 4px;
  }
  
  .step-time {
    font-size: 0.7rem;
    text-align: center;
    white-space: nowrap;
    max-width: 70px;
    line-height: 1.3;
  }
  
  .step-content {
    width: calc(100% - 140px);
    margin-left: 140px;
    padding: 1.5rem;
  }
  
  .step-content h5 {
    font-size: 1.2rem;
  }
  
  .step-content p {
    font-size: 0.95rem;
  }
  
  .step-tips span {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (min-width: 992px) {
  .airport-timeline {
    max-width: 1000px;
  }
  
  .airport-timeline::before {
    left: 100px;
  }
  
  .step-marker {
    left: 100px;
  }
  
  .step-time {
    font-size: 0.75rem;
    max-width: 80px;
  }
  
  .step-content {
    width: calc(100% - 180px);
    margin-left: 180px;
  }
}