/* ========== TRAVEL INFORMATION PAGE STYLES ========== */

/* Travel Hero Icon */
.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);
  animation: fadeInDown 0.8s ease-out;
}

.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;
}

/* Container fix for all info sections */
.info-section .row {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.info-section .row > * {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  max-width: 100%;
}

/* Ensure all text content wraps properly */
.info-section * {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.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;
}

.info-content p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* Info Cards */
.info-card {
  background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid rgba(78, 14, 16, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: #fff;
  border-color: var(--brand-light-gold);
  box-shadow: 0 4px 20px rgba(78, 14, 16, 0.1);
  transform: translateY(-3px);
}

.card-heading {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--brand-light-gold);
}

/* Requirement List */
.requirement-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid #2e7d32;
  transition: all 0.3s ease;
}

.requirement-item:hover {
  background: #e8f5e9;
  transform: translateX(5px);
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.15);
}

.req-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.req-icon.valid {
  background: #2e7d32;
  color: #fff;
}

.req-icon i {
  font-size: 1.25rem;
}

.req-content strong {
  display: block;
  color: var(--brand-burgundy);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.req-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Alert Boxes */
.alert-warning-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-radius: 12px;
  border-left: 4px solid #ff9800;
}

.alert-warning-info i {
  font-size: 1.5rem;
  color: #f57c00;
  flex-shrink: 0;
}

.alert-warning-info strong {
  display: block;
  color: var(--brand-burgundy);
  margin-bottom: 0.5rem;
}

.alert-warning-info p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.alert-warning-info a {
  color: #f57c00;
  font-weight: 600;
  text-decoration: none;
}

.alert-warning-info a:hover {
  text-decoration: underline;
}

/* Visa Types */
.visa-types {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.visa-type-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 12px;
  border: 2px solid rgba(78, 14, 16, 0.08);
  transition: all 0.3s ease;
}

.visa-type-card:hover {
  border-color: var(--brand-gold);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(78, 14, 16, 0.1);
}

.visa-badge {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
}

.visa-badge.visa-free {
  background: #e8f5e9;
  color: #2e7d32;
}

.visa-badge.visa-arrival {
  background: #e3f2fd;
  color: #1976d2;
}

.visa-badge.visa-eta {
  background: #fff3e0;
  color: #f57c00;
}

.visa-badge.visa-embassy {
  background: #fce4ec;
  color: #c62828;
}

.visa-type-card strong {
  display: block;
  color: var(--brand-burgundy);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.visa-type-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Helpful Link Box */
.helpful-link-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 12px;
  border-left: 4px solid #2196f3;
}

.helpful-link-box i {
  font-size: 1.75rem;
  color: #1976d2;
  flex-shrink: 0;
}

.helpful-link-box strong {
  display: block;
  color: var(--brand-burgundy);
  margin-bottom: 0.5rem;
}

.helpful-link-box ul {
  margin: 0;
  padding-left: 1.25rem;
}

.helpful-link-box li {
  margin-bottom: 0.25rem;
}

.helpful-link-box a {
  color: #1976d2;
  text-decoration: none;
  font-weight: 500;
}

.helpful-link-box a:hover {
  text-decoration: underline;
}

/* Important Notice Box */
.important-notice-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
  border-radius: 16px;
  border: 3px solid #e91e63;
}

.important-notice-box i {
  font-size: 2.5rem;
  color: #c2185b;
  flex-shrink: 0;
}

.important-notice-box h5 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.important-notice-box p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.05rem;
}

/* Insurance Mandatory Banner */
.insurance-mandatory-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-radius: 16px;
  border: 3px solid #ff9800;
  margin-bottom: 2rem;
}

.insurance-mandatory-banner i {
  font-size: 3rem;
  color: #f57c00;
  flex-shrink: 0;
}

.insurance-mandatory-banner h4 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.insurance-mandatory-banner p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.05rem;
}

/* Coverage Checklist */
.coverage-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coverage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 10px;
  border-left: 3px solid #2e7d32;
  transition: all 0.3s ease;
}

.coverage-item:hover {
  background: #e8f5e9;
  transform: translateX(5px);
}

.coverage-item i {
  font-size: 1.25rem;
  color: #2e7d32;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.coverage-item strong {
  display: block;
  color: var(--brand-burgundy);
  margin-bottom: 0.25rem;
}

.coverage-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Consideration List */
.consideration-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.consideration-item {
  padding: 1.25rem;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--brand-gold);
  transition: all 0.3s ease;
}

.consideration-item:hover {
  background: var(--brand-light-gold);
  transform: translateX(5px);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.consideration-item strong {
  display: block;
  color: var(--brand-burgundy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.consideration-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA Insurance Box */
.cta-insurance-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-dark) 100%);
  border-radius: 12px;
  border: 2px solid var(--brand-gold);
}

.cta-insurance-box i {
  font-size: 2rem;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.cta-insurance-box strong {
  display: block;
  color: var(--brand-gold);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.cta-insurance-box p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Health Cards */
.health-card {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid rgba(78, 14, 16, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.health-card:hover {
  background: #fff;
  border-color: var(--brand-light-gold);
  box-shadow: 0 8px 30px rgba(78, 14, 16, 0.12);
  transform: translateY(-5px);
}

.health-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
}

.health-card-icon.vaccinations {
  background: linear-gradient(135deg, #7b1fa2 0%, #4a148c 100%);
}

.health-card-icon.medical {
  background: linear-gradient(135deg, #0288d1 0%, #01579b 100%);
}

.health-card-icon.safety {
  background: linear-gradient(135deg, #388e3c 0%, #1b5e20 100%);
}

.health-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.health-card > p {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.health-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.health-item {
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 8px;
  color: var(--text-dark);
  font-size: 0.95rem;
  border-left: 3px solid var(--brand-gold);
}

.health-link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--brand-burgundy);
  color: var(--brand-gold);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.health-link:hover {
  background: var(--brand-gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* FCDO Warning Box */
.fcdo-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 16px;
  border: 3px solid #2196f3;
}

.fcdo-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1976d2;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
}

.fcdo-warning-box h5 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.fcdo-warning-box p {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.fcdo-list {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--text-dark);
}

.fcdo-list li {
  margin-bottom: 0.5rem;
}

/* Documents Grid */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.document-card {
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 2px solid rgba(78, 14, 16, 0.08);
  transition: all 0.3s ease;
}

.document-card:hover {
  border-color: var(--brand-gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(78, 14, 16, 0.12);
}

.doc-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-light-gold) 0%, #fff9e6 100%);
  border-radius: 50%;
  border: 3px solid var(--brand-gold);
}

.doc-icon i {
  font-size: 1.75rem;
  color: var(--brand-burgundy);
}

.document-card h5 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.document-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.document-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.document-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-gold);
  font-weight: 700;
}

/* Pro Tip Box */
.pro-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, #fff9e6 0%, var(--brand-light-gold) 100%);
  border-radius: 16px;
  border: 2px solid var(--brand-gold);
}

.pro-tip-box i {
  font-size: 2rem;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.pro-tip-box strong {
  display: block;
  color: var(--brand-burgundy);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.pro-tip-box p {
  margin: 0;
  color: var(--text-dark);
}

/* Packing Categories */
.packing-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 1.5rem 0;
}

.pack-category h5 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--brand-light-gold);
}

.pack-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pack-item {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: #fff;
  border: 2px solid var(--brand-light-gold);
  border-radius: 50px;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.pack-item:hover {
  background: var(--brand-light-gold);
  border-color: var(--brand-gold);
  transform: translateY(-2px);
}

/* Luggage Info */
.luggage-info {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.luggage-section {
  padding: 1.25rem;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.luggage-section:last-of-type {
  margin-bottom: 1.5rem;
}

.luggage-section strong {
  display: block;
  color: var(--brand-burgundy);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.luggage-tips {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.tip-item {
  padding: 0.5rem 0.75rem;
  background: #e3f2fd;
  border-radius: 6px;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.prohibited-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.prohibited-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.prohibited-item i {
  color: #c62828;
  font-size: 1.1rem;
}

.luggage-link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--brand-burgundy);
  color: var(--brand-gold);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.luggage-link:hover {
  background: var(--brand-gold);
  color: #fff;
  transform: translateY(-2px);
}

/* Packing Tip Box */
.packing-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 16px;
  border: 3px solid #2e7d32;
}

.tip-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2e7d32;
  border-radius: 50%;
  color: #fff;
  font-size: 1.75rem;
}

.packing-tip-box strong {
  display: block;
  color: var(--brand-burgundy);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.packing-tip-box ul {
  margin: 0;
  padding-left: 1.5rem;
  color: var(--text-dark);
}

.packing-tip-box li {
  margin-bottom: 0.5rem;
}



/* Info Section Container - Ensure proper containment */
.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; /* Important: contain all content */
  max-width: 100%;
}

.info-content {
  color: var(--text-dark);
  line-height: 1.8;
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* Contain overflowing content */
}

/* Responsive Fixes */
@media (max-width: 1200px) {
  .airport-timeline {
    padding-left: 2.5rem;
  }
  
  .step-marker {
    left: -2.5rem;
  }
  
  .step-content {
    padding: 1.25rem;
  }
  
  .step-content h5 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .info-section {
    padding: 2rem;
  }
  
  .airport-timeline {
    padding-left: 2rem;
  }
  
  .airport-timeline::before {
    left: 20px;
  }
  
  .step-marker {
    left: -2rem;
  }
  
  .step-marker i {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .step-time {
    font-size: 0.7rem;
    max-width: 70px;
  }
}

@media (max-width: 768px) {
  .info-section {
    padding: 1.5rem;
  }
  
  .airport-timeline {
    padding-left: 0;
    padding-top: 1rem;
  }
  
  .airport-timeline::before {
    display: none;
  }
  
  .timeline-step {
    margin-bottom: 2rem;
  }
  
  .step-marker {
    position: static;
    margin-bottom: 0.75rem;
    flex-direction: row;
    justify-content: center;
  }
  
  .step-content {
    padding: 1.25rem;
  }
  
  .step-content h5 {
    font-size: 1.05rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .step-tips span {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
  }
}

@media (max-width: 576px) {
  .info-section {
    padding: 1.25rem;
  }
  
  .step-content {
    padding: 1rem;
  }
  
  .step-marker i {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .step-tips {
    gap: 0.4rem;
  }
  
  .step-tips span {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }
}

/* Airport Tip Card */
.airport-tip-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  border: 2px solid rgba(78, 14, 16, 0.08);
  transition: all 0.3s ease;
}

.airport-tip-card:hover {
  background: var(--brand-light-gold);
  border-color: var(--brand-gold);
  transform: translateY(-3px);
}

.airport-tip-card i {
  font-size: 1.75rem;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.airport-tip-card strong {
  display: block;
  color: var(--brand-burgundy);
  margin-bottom: 0.35rem;
}

.airport-tip-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Currency Options */
.currency-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.currency-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 12px;
  border: 2px solid rgba(78, 14, 16, 0.08);
  transition: all 0.3s ease;
}

.currency-option:hover {
  border-color: var(--brand-light-gold);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(78, 14, 16, 0.1);
}

.option-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem;
  border-radius: 8px;
  min-width: 90px;
  text-align: center;
}

.option-rating.rating-good {
  background: #e8f5e9;
  color: #2e7d32;
}

.option-rating.rating-okay {
  background: #fff3e0;
  color: #f57c00;
}

.option-rating.rating-poor {
  background: #ffebee;
  color: #c62828;
}

.option-rating i {
  font-size: 1.75rem;
}

.option-rating span {
  font-size: 0.85rem;
  font-weight: 700;
}

.currency-option strong {
  display: block;
  color: var(--brand-burgundy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.currency-option p {
  margin: 0 0 0.35rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.currency-option .small {
  color: var(--text-muted);
  font-style: italic;
}

/* Money Tip */
.money-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 10px;
}

.money-tip i {
  font-size: 1.25rem;
  color: #1976d2;
  flex-shrink: 0;
}

.money-tip p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Card Types */
.card-types {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.card-type {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 12px;
  border: 2px solid rgba(78, 14, 16, 0.08);
}

.card-badge {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
}

.card-badge.credit {
  background: #e8f5e9;
  color: #2e7d32;
}

.card-badge.debit {
  background: #e3f2fd;
  color: #1976d2;
}

.card-badge.prepaid {
  background: #fff3e0;
  color: #f57c00;
}

.card-type strong {
  display: block;
  color: var(--brand-burgundy);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.card-type ul {
  margin: 0;
  padding-left: 1.25rem;
}

.card-type li {
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

/* Money Advice Card */
.money-advice-card {
  padding: 1.5rem;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  border: 2px solid rgba(78, 14, 16, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.money-advice-card:hover {
  background: #fff;
  border-color: var(--brand-light-gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(78, 14, 16, 0.1);
}

.money-advice-card i {
  font-size: 2rem;
  color: var(--brand-gold);
  margin-bottom: 1rem;
  display: block;
}

.money-advice-card strong {
  display: block;
  color: var(--brand-burgundy);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.money-advice-card ul {
  margin: 0;
  padding-left: 1.25rem;
}

.money-advice-card li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* Emergency Cards */
.emergency-card {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid rgba(78, 14, 16, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.emergency-card.primary {
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-dark) 100%);
  border-color: var(--brand-gold);
}

.emergency-card:hover {
  border-color: var(--brand-gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(78, 14, 16, 0.15);
}

.emergency-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--brand-light-gold);
}

.emergency-card.primary .emergency-header {
  border-bottom-color: var(--brand-gold);
}

.emergency-header i {
  font-size: 2rem;
  color: var(--brand-gold);
}

.emergency-card.primary .emergency-header i {
  color: var(--brand-gold);
}

.emergency-header h4 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}

.emergency-card.primary .emergency-header h4 {
  color: var(--brand-gold);
}

.emergency-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.emergency-item strong {
  display: block;
  color: var(--brand-burgundy);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.emergency-card.primary .emergency-item strong {
  color: var(--brand-gold);
}

.emergency-item span,
.emergency-item a {
  display: block;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.emergency-card.primary .emergency-item span,
.emergency-card.primary .emergency-item a {
  color: rgba(255, 255, 255, 0.9);
}

.emergency-item a {
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.emergency-item a:hover {
  color: var(--brand-gold);
}

.emergency-card.primary .emergency-item a:hover {
  color: #fff;
}

.emergency-item ul {
  margin: 0.5rem 0 0 0;
  padding-left: 1.25rem;
}

.emergency-item li {
  margin-bottom: 0.35rem;
}

.emergency-note {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-gold);
  font-size: 0.95rem;
}

.emergency-note i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Contact Quick Card */
.contact-quick-card {
  padding: 1.5rem;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  border: 2px solid rgba(78, 14, 16, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.contact-quick-card:hover {
  background: #fff;
  border-color: var(--brand-gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(78, 14, 16, 0.1);
}

.contact-quick-card i {
  font-size: 2rem;
  color: var(--brand-gold);
  margin-bottom: 1rem;
  display: block;
}

.contact-quick-card strong {
  display: block;
  color: var(--brand-burgundy);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.contact-quick-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--brand-burgundy);
  transform: translateX(3px);
}

.emergency-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.emergency-numbers span {
  color: var(--text-dark);
  font-size: 0.9rem;
}

.contact-quick-card ul {
  margin: 0.5rem 0 0 0;
  padding-left: 1.25rem;
}

.contact-quick-card li {
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Emergency App Box */
.emergency-app-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 16px;
  border: 3px solid #2e7d32;
}

.app-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2e7d32;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
}

.emergency-app-box h5 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-burgundy);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.emergency-app-box p {
  color: var(--text-dark);
  margin: 0;
}

.app-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.app-tag {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: #fff;
  border-radius: 50px;
  color: var(--text-dark);
  font-size: 0.95rem;
  border: 2px solid #2e7d32;
  transition: all 0.3s ease;
}

.app-tag:hover {
  background: #2e7d32;
  color: #fff;
  transform: translateY(-2px);
}

/* Travel CTA Section */
.travel-cta-section {
  margin-top: 3rem;
}

.travel-cta-card {
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, var(--brand-dark) 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(78, 14, 16, 0.3);
  border: 3px solid var(--brand-gold);
  position: relative;
  overflow: hidden;
}

.travel-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cta-content i {
  font-size: 4rem;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.cta-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-gold);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline-light {
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--brand-gold);
  color: var(--brand-burgundy);
  border-color: var(--brand-gold);
}

/* Responsive Design */
@media (max-width: 992px) {
  .info-section {
    padding: 2rem;
  }
  
  .info-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .quick-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .airport-timeline {
    padding-left: 2.5rem;
  }
  
  .airport-timeline::before {
    left: 20px;
  }
  
  .step-marker {
    left: -2.5rem;
  }
  
  .step-marker i {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .travel-hero-icon {
    width: 70px;
    height: 70px;
  }
  
  .travel-hero-icon i {
    font-size: 2rem;
  }
  
  .info-section {
    padding: 1.5rem;
  }
  
  .info-icon {
    width: 60px;
    height: 60px;
  }
  
  .info-icon i {
    font-size: 1.75rem;
  }
  
  .info-title {
    font-size: 1.75rem;
  }
  
  .documents-grid {
    grid-template-columns: 1fr;
  }
  
  .airport-timeline {
    padding-left: 0;
  }
  
  .airport-timeline::before {
    display: none;
  }
  
  .step-marker {
    position: static;
    margin-bottom: 0.75rem;
  }
  
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-content i {
    font-size: 3rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .important-notice-box,
  .insurance-mandatory-banner,
  .fcdo-warning-box,
  .emergency-app-box,
  .packing-tip-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quick-link-card i {
    font-size: 2rem;
  }
  
  .quick-link-card span {
    font-size: 0.85rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .requirement-item,
  .consideration-item,
  .currency-option {
    flex-direction: column;
    text-align: center;
  }
  
  .travel-cta-card {
    padding: 2rem 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}



/* Info Section Container - Ensure proper containment */
.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; /* Important: contain all content */
  max-width: 100%;
}

.info-content {
  color: var(--text-dark);
  line-height: 1.8;
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* Contain overflowing content */
}



@media (max-width: 992px) {
  .info-section {
    padding: 2rem;
  }
  
  .airport-timeline {
    padding-left: 2rem;
  }
  
  .airport-timeline::before {
    left: 20px;
  }
  
  .step-marker {
    left: -2rem;
  }
  
  .step-marker i {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .step-time {
    font-size: 0.7rem;
    max-width: 70px;
  }
}

@media (max-width: 768px) {
  .info-section {
    padding: 1.5rem;
  }
  
  .airport-timeline {
    padding-left: 0;
    padding-top: 1rem;
  }
  
  .airport-timeline::before {
    display: none;
  }
  
  .timeline-step {
    margin-bottom: 2rem;
  }
  
  .step-marker {
    position: static;
    margin-bottom: 0.75rem;
    flex-direction: row;
    justify-content: center;
  }
  
  .step-content {
    padding: 1.25rem;
  }
  
  .step-content h5 {
    font-size: 1.05rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .step-tips span {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
  }
}

@media (max-width: 576px) {
  .info-section {
    padding: 1.25rem;
  }
  
  .step-content {
    padding: 1rem;
  }
  
  .step-marker i {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .step-tips {
    gap: 0.4rem;
  }
  
  .step-tips span {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }
}

css
.timeline-item {
  display: flex;
  position: relative;
}

.timeline-marker {
  width: 60px;  /* adjust size as needed */
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Center on the vertical line */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;  /* adjust thickness */
  transform: translateX(-50%);
}

.timeline-content {
  margin-left: 40px;  /* space away from marker */
  padding-left: 20px;  /* additional breathing room */
}

.airport-timeline::before {
  left: 50%;
  transform: translateX(-50%);
}

.step-marker {
  left: 50%;
  transform: translateX(-50%);
  width: 60px; /* Explicit width for centering */
}

.step-content {
  width: calc(100% - 3rem);
  margin-left: 3rem;
}


/* Mobile: stacked layout */
.airport-timeline {
  padding-left: 0;
  padding-top: 1rem;
}

.airport-timeline::before {
  display: none;
}

.step-marker {
  position: static;
  flex-direction: row;
}

.step-content {
  width: 100%;
  margin-left: 0;
}

/* Desktop: centered timeline */
@media (min-width: 769px) {
  .airport-timeline {
    padding-left: 0;
    position: relative;
  }
  
  .airport-timeline::before {
    display: block;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .step-content {
    width: calc(100% - 3rem);
    margin-left: 3rem;
  }
}

/* ========== AIRPORT TIMELINE - CLEAN MOBILE-FIRST APPROACH ========== */

/* Mobile: Stacked layout without vertical line */
.airport-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
  position: relative;
  padding-left: 0;
}

.airport-timeline::before {
  display: none; /* Hide line on mobile */
}

.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: Centered timeline with vertical line */
@media (min-width: 769px) {
  .airport-timeline {
    padding-left: 0;
    position: relative;
  }
  
  .airport-timeline::before {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    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: 2rem;
  }
  
  .step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 60px;
  }
  
  .step-marker i {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    border-width: 4px;
  }
  
  .step-time {
    font-size: 0.75rem;
    text-align: center;
  }
  
  .step-content {
    width: calc(100% - 3rem);
    margin-left: 3rem;
    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 (max-width: 768px) {
  .airport-timeline {
    padding-left: 0;
  }
  
  .step-marker {
    position: static;
    flex-direction: row;
  }
  
  .step-content {
    width: 100%;
    margin-left: 0;
    padding: 1.25rem;
  }
  
  .step-content h5 {
    font-size: 1.05rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .step-marker i {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    border-width: 2px;
  }
  
  .step-content {
    padding: 1rem;
  }
  
  .step-content h5 {
    font-size: 0.9rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .step-tips span {
    font-size: 0.7rem;
    padding: 0.3rem 0.65rem;
  }
}
