/* ============================================
   TRAVEL HEALTH PAGE STYLES
   All classes use travel- prefix except shared components
   Terracotta warm colour system
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.travel-hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 20px 0 80px;
  overflow: hidden;
  background: #fdf5f3;
}

/* Decorative warm glows instead of photo overlay */
.travel-hero-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196, 122, 101, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.travel-hero-overlay {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 144, 124, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.travel-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196, 122, 101, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 2;
  pointer-events: none;
}

.travel-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .travel-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left Content */
.travel-hero-content {
  text-align: center;
  color: var(--text-dark);
}

@media (min-width: 1024px) {
  .travel-hero-content {
    text-align: left;
  }
}

.travel-hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
}

.travel-hero-title .gradient-text {
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.travel-hero-title .hero-accent-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  color: var(--text-dark);
  -webkit-text-fill-color: var(--text-dark);
}

@media (min-width: 768px) {
  .travel-hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .travel-hero-title {
    font-size: 5.5rem;
  }
}

.travel-hero-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

@media (max-width: 1023px) {
  .travel-hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .travel-hero-description {
    font-size: 1.25rem;
  }
}

.travel-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .travel-hero-actions {
    flex-direction: row;
  }
}

@media (max-width: 1023px) {
  .travel-hero-actions {
    justify-content: center;
  }
}

/* Hero CTA overrides — terracotta */
.travel-hero-section .primary-cta {
  background: linear-gradient(135deg, #C47A65, #B8694F);
  box-shadow: 0 10px 25px -3px rgba(196, 122, 101, 0.35), 0 4px 10px -2px rgba(196, 122, 101, 0.15);
}

.travel-hero-section .primary-cta:hover {
  background: linear-gradient(135deg, #B8694F, #A85D43);
  box-shadow: 0 14px 30px -3px rgba(196, 122, 101, 0.45), 0 6px 14px -2px rgba(196, 122, 101, 0.2);
  transform: translateY(-2px);
}

.travel-hero-section .secondary-cta {
  color: var(--text-dark);
  border: 2px solid rgba(196, 122, 101, 0.3);
}

.travel-hero-section .secondary-cta:hover {
  background: rgba(196, 122, 101, 0.08);
  border-color: rgba(196, 122, 101, 0.5);
}

/* Trust Badges */
.travel-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .travel-hero-trust {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}

.travel-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(196, 122, 101, 0.12);
  box-shadow: 0 2px 8px rgba(196, 122, 101, 0.06);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.travel-hero-trust-item:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(196, 122, 101, 0.1);
}

.travel-hero-trust-item i {
  color: #7A9E7E;
  font-size: 1rem;
}

.travel-hero-trust-item span {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}


/* ============================================
   HERO RIGHT VISUAL (Image Card + Floating Badges)
   ============================================ */
.travel-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.travel-hero-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 122, 101, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Main image card */
.travel-hero-image-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 640px;
  border-radius: 2.5rem;
  box-shadow: 0 40px 100px rgba(196, 122, 101, 0.2),
              0 0 0 1px rgba(196, 122, 101, 0.08) inset;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  z-index: 1;
  margin: 0 auto;
}

@media (max-width: 639px) {
  .travel-hero-image-card {
    height: 500px;
    max-width: 100%;
  }
}

.travel-hero-image-inner {
  position: absolute;
  inset: 0;
  border-radius: 2.5rem;
  overflow: hidden;
  z-index: 0;
}

.travel-hero-image-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.travel-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.travel-hero-image-card:hover .travel-hero-image {
  transform: scale(1.05);
}

.travel-hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating Yellow Fever badge */
.travel-hero-badge-yf {
  position: absolute;
  top: 2rem;
  right: -2rem;
  background: linear-gradient(135deg, #C47A65, #B8694F);
  padding: 1rem 1.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 15px 40px rgba(196, 122, 101, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.travel-hero-image-card:hover .travel-hero-badge-yf {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 50px rgba(196, 122, 101, 0.5);
}

@media (max-width: 1023px) {
  .travel-hero-badge-yf {
    right: 1rem;
  }
}

@media (max-width: 639px) {
  .travel-hero-badge-yf {
    top: 1rem;
    right: 1rem;
    padding: 0.75rem 1rem;
  }
}

.travel-hero-badge-yf > i {
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0.9;
}

.travel-hero-badge-yf-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.travel-hero-badge-yf-label {
  font-size: 0.6875rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.travel-hero-badge-yf-value {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Testimonial card */
.travel-hero-testimonial-card {
  position: absolute;
  bottom: -3rem;
  left: -3rem;
  width: 380px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 1.75rem;
  box-shadow: 0 25px 60px rgba(196, 122, 101, 0.15),
              0 0 0 1px rgba(196, 122, 101, 0.06) inset;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20;
}

.travel-hero-testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #C47A65, #D4907C);
  border-radius: 0 0 1.75rem 1.75rem;
}

.travel-hero-visual:hover .travel-hero-testimonial-card {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(196, 122, 101, 0.2);
}

@media (max-width: 1023px) {
  .travel-hero-testimonial-card {
    left: 0;
    right: 0;
    bottom: -2rem;
    width: calc(100% - 2rem);
    margin: 0 1rem;
  }
}

@media (max-width: 639px) {
  .travel-hero-testimonial-card {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 1.5rem;
  }

  .travel-hero-visual:hover .travel-hero-testimonial-card {
    transform: translateY(-6px);
  }
}

.travel-hero-quote-icon {
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #C47A65, #B8694F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(196, 122, 101, 0.4);
  font-size: 0.875rem;
}

.travel-hero-quote-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: #1f2937;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.travel-hero-quote-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.travel-hero-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.travel-hero-author-name {
  font-weight: 800;
  color: #111827;
  font-size: 0.9375rem;
  display: block;
  letter-spacing: -0.01em;
}

.travel-hero-stars {
  display: flex;
  gap: 0.125rem;
}

.travel-hero-stars i {
  font-size: 0.75rem;
  color: #f59e0b;
}

.travel-hero-dest-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #C47A65, #B8694F);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(196, 122, 101, 0.3);
  letter-spacing: -0.01em;
}

.travel-hero-dest-badge i {
  font-size: 0.75rem;
}


/* ============================================
   STATS BAR
   ============================================ */
.travel-stats-section {
  position: relative;
  background: #fdf5f3;
  padding: 2.5rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(196, 122, 101, 0.12);
}

@media (min-width: 768px) {
  .travel-stats-section {
    padding: 2rem 0;
  }
}

.travel-stats-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(196, 122, 101, 0.04), transparent);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Mobile: 2x2 premium card grid */
.travel-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .travel-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Mobile: vertical card layout, Desktop: horizontal inline */
.travel-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(196, 122, 101, 0.12);
  transition: all 0.3s ease;
}

.travel-stat-item:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(196, 122, 101, 0.1);
}

@media (min-width: 768px) {
  .travel-stat-item {
    flex-direction: row;
    text-align: left;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    gap: 1rem;
  }

  .travel-stat-item:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
  }
}

/* Hide image wrappers entirely — icons used instead */
.travel-stat-image-wrapper {
  display: none;
}

/* Icon circle for stats */
.travel-stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(196, 122, 101, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(196, 122, 101, 0.2);
  box-shadow: 0 0 20px rgba(196, 122, 101, 0.08);
}

.travel-stat-icon i {
  font-size: 1.25rem;
  color: #C47A65;
}

@media (min-width: 768px) {
  .travel-stat-icon {
    width: 4rem;
    height: 4rem;
  }

  .travel-stat-icon i {
    font-size: 1.5rem;
  }
}

.travel-stat-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.travel-stat-icon-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.travel-stat-icon-fallback i {
  font-size: 1.5rem;
  color: #C47A65;
}

.travel-stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.travel-stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .travel-stat-number {
    font-size: 1.75rem;
  }
}

.travel-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .travel-stat-label {
    font-size: 0.8125rem;
  }
}


/* ============================================
   WHY CHOOSE US (PREMIUM IMAGE CARDS)
   ============================================ */
.travel-why-section {
  padding: 6rem 0;
  background: var(--brand-light);
}

.travel-why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.travel-why-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.travel-why-title .gradient-text {
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .travel-why-title {
    font-size: 3rem;
  }
}

.travel-why-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Premium Image Card Grid */
.travel-why-grid-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .travel-why-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .travel-why-grid-premium {
    grid-template-columns: repeat(4, 1fr);
  }
}

.travel-why-card-premium {
  display: block;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(196, 122, 101, 0.12);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: var(--white);
  text-decoration: none;
}

.travel-why-card-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(196, 122, 101, 0.2);
  border-color: #C47A65;
}

.travel-why-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
}

.travel-why-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.travel-why-card-premium:hover .travel-why-card-image {
  transform: scale(1.1);
}

.travel-why-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 24, 39, 0.95) 0%,
    rgba(196, 122, 101, 0.25) 50%,
    transparent 100%
  );
  opacity: 0.9;
  transition: opacity 0.5s ease;
}

.travel-why-card-premium:hover .travel-why-card-overlay {
  opacity: 1;
}

.travel-why-card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 20;
}

.travel-why-card-premium:hover .travel-why-card-hover {
  opacity: 1;
}

.travel-why-card-button {
  background: var(--white);
  color: #B8694F;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.travel-why-card-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.travel-why-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  z-index: 10;
}

.travel-why-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.travel-why-card-premium:hover .travel-why-card-title {
  transform: translateY(-8px);
}

.travel-why-card-subtitle {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.travel-why-card-premium:hover .travel-why-card-subtitle {
  transform: translateY(-8px);
}

.travel-why-card-line {
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, #C47A65, #D4907C);
  border-radius: 9999px;
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.travel-why-card-premium:hover .travel-why-card-line {
  width: 5rem;
}


/* ============================================
   SERVICES SECTION (PREMIUM UPGRADE)
   ============================================ */
.travel-services-section {
  padding: 6rem 0;
  background: var(--brand-light);
}

.travel-services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.travel-services-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.travel-services-title .gradient-text {
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .travel-services-title {
    font-size: 3rem;
  }
}

.travel-services-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .travel-services-description {
    font-size: 1.25rem;
  }
}

.travel-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .travel-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .travel-services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Premium Image Card Styles */
.travel-service-card-premium {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(196, 122, 101, 0.12);
}

.travel-service-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(196, 122, 101, 0.18);
  border-color: #C47A65;
}

.travel-service-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.travel-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.travel-service-card-premium:hover .travel-service-image {
  transform: scale(1.1);
}

.travel-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.05), transparent);
  pointer-events: none;
}

.travel-service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}

.travel-service-icon-small {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #C47A65, #B8694F);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -3rem; /* Pull icon up to overlap image */
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(196, 122, 101, 0.25);
  border: 3px solid var(--white);
  position: relative;
  z-index: 10;
}

.travel-service-icon-small i {
  font-size: 1.25rem;
  color: var(--white);
}

.travel-service-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.travel-service-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.6;
}


/* ============================================
   VACCINATIONS GRID
   ============================================ */
.travel-vaccines-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.travel-vaccines-blob-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196, 122, 101, 0.06) 0%, transparent 70%);
  transform: translate(-30%, -30%);
  pointer-events: none;
  z-index: 0;
}

.travel-vaccines-blob-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 105, 79, 0.04) 0%, transparent 70%);
  transform: translate(30%, 30%);
  pointer-events: none;
  z-index: 0;
}

.travel-vaccines-section .section-container {
  position: relative;
  z-index: 1;
}

.travel-vaccines-header {
  text-align: center;
  margin-bottom: 4rem;
}

.travel-vaccines-header .section-badge {
  margin-bottom: 1.5rem;
}

.travel-vaccines-title {
  font-size: 2rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.03em;
}

.travel-vaccines-title .gradient-text {
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .travel-vaccines-title {
    font-size: 2.5rem;
  }
}

.travel-vaccines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .travel-vaccines-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .travel-vaccines-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.travel-vaccine-card {
  background: var(--white);
  border: 1px solid rgba(196, 122, 101, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px -5px rgba(196, 122, 101, 0.06);
}

.travel-vaccine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -5px rgba(196, 122, 101, 0.15);
  border-color: #C47A65;
}

.travel-vaccine-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, rgba(196, 122, 101, 0.12), rgba(184, 105, 79, 0.08));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.travel-vaccine-icon i {
  font-size: 1.25rem;
  color: #C47A65;
}

.travel-vaccine-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

/* Yellow Fever Special Card */
.travel-vaccine-card-yellow {
  background: linear-gradient(135deg, #fcc926, #f59f00);
  border: none;
  position: relative;
  overflow: hidden;
}

.travel-vaccine-card-yellow .travel-vaccine-icon {
  background: rgba(255, 255, 255, 0.2);
}

.travel-vaccine-card-yellow .travel-vaccine-icon i {
  color: var(--white);
}

.travel-vaccine-card-yellow .travel-vaccine-name {
  color: var(--white);
  font-size: 1.125rem;
}

.travel-vaccine-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ============================================
   PROCESS SECTION
   ============================================ */
.travel-process-section {
  padding: 6rem 0;
  background: var(--white);
}

.travel-process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.travel-process-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.travel-process-title .gradient-text {
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .travel-process-title {
    font-size: 3rem;
  }
}

/* Timeline container */
.travel-process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Each process card */
.travel-process-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

/* Step number circle */
.travel-process-card-number {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #C47A65, #B8694F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(196, 122, 101, 0.3);
  position: relative;
  z-index: 2;
  margin-top: 1.75rem;
}

.travel-process-card-number span {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

/* Connecting line between steps */
.travel-process-card:not(:last-child) .travel-process-card-number::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 2rem);
  background: linear-gradient(180deg, #C47A65, rgba(196, 122, 101, 0.15));
  z-index: 1;
}

/* Card body (text + image side by side on desktop) */
.travel-process-card-body {
  flex: 1;
  background: var(--white);
  border: 1px solid rgba(196, 122, 101, 0.1);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.travel-process-card-body:hover {
  box-shadow: 0 12px 40px rgba(196, 122, 101, 0.12);
  border-color: rgba(196, 122, 101, 0.2);
  transform: translateY(-4px);
}

@media (min-width: 768px) {
  .travel-process-card-body {
    display: flex;
    align-items: stretch;
    max-height: 220px;
  }
}

/* Text portion */
.travel-process-card-text {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .travel-process-card-text {
    flex: 1.2;
    padding: 2.5rem;
  }
}

.travel-process-step-title {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #111827;
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .travel-process-step-title {
    font-size: 1.75rem;
  }
}

.travel-process-step-description {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .travel-process-step-description {
    font-size: 1.0625rem;
  }
}

.travel-process-step-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fdf5f3;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(196, 122, 101, 0.12);
  width: fit-content;
}

.travel-process-step-meta i {
  color: #C47A65;
  font-size: 0.9375rem;
}

.travel-process-step-meta span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

/* Image portion */
.travel-process-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

@media (min-width: 768px) {
  .travel-process-card-image {
    flex: 0.8;
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.travel-process-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.travel-process-card-body:hover .travel-process-card-image img {
  transform: scale(1.05);
}

/* Hide number circle on mobile, show inline badge instead */
@media (max-width: 767px) {
  .travel-process-card {
    flex-direction: column;
    gap: 0;
  }

  .travel-process-card-number {
    width: 2.75rem;
    height: 2.75rem;
    margin-top: 0;
    margin-bottom: -1.375rem;
    margin-left: 1.5rem;
    z-index: 3;
  }

  .travel-process-card-number span {
    font-size: 1.125rem;
  }

  .travel-process-card:not(:last-child) .travel-process-card-number::after {
    display: none;
  }
}


/* ============================================
   POPULAR DESTINATIONS
   ============================================ */
.travel-destinations-section {
  padding: 6rem 0;
  background: var(--brand-light);
}

.travel-destinations-header {
  text-align: center;
  margin-bottom: 4rem;
}

.travel-destinations-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.travel-destinations-title .gradient-text {
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .travel-destinations-title {
    font-size: 3rem;
  }
}

.travel-destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .travel-destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .travel-destinations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.travel-destination-card {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.5s ease, transform 0.3s ease;
  text-decoration: none;
}

.travel-destination-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-0.5rem);
}

.travel-destination-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
}

.travel-destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.travel-destination-card:hover .travel-destination-image {
  transform: scale(1.1);
}

.travel-destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(196, 122, 101, 0.15) 50%, transparent);
  opacity: 0.9;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.travel-destination-card:hover .travel-destination-overlay {
  opacity: 1;
}

.travel-destination-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 10;
}

.travel-destination-name {
  font-family: var(--font-primary);
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.travel-destination-card:hover .travel-destination-name {
  transform: translateY(-0.25rem);
}


/* ============================================
   FAQ SECTION (PREMIUM EDITORIAL STYLE)
   ============================================ */
.travel-faq-section {
  padding: 7rem 0;
  background: var(--brand-light);
  position: relative;
  overflow: hidden;
}

.travel-faq-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.travel-faq-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.travel-faq-title .gradient-text {
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .travel-faq-title {
    font-size: 3.5rem;
  }
}

.travel-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.travel-faq-item {
  background: var(--white);
  border: 1px solid rgba(196, 122, 101, 0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.travel-faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(196, 122, 101, 0.1);
  border-color: rgba(196, 122, 101, 0.2);
}

.travel-faq-item.travel-faq-active {
  box-shadow: 0 25px 50px rgba(196, 122, 101, 0.12);
  border-color: #C47A65;
}

.travel-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.travel-faq-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  transition: all 0.3s ease;
  width: 2rem; /* Fixed width for alignment */
  flex-shrink: 0;
}

.travel-faq-item:hover .travel-faq-number,
.travel-faq-item.travel-faq-active .travel-faq-number {
  opacity: 1;
  transform: scale(1.1);
}

.travel-faq-question-text {
  flex: 1;
  font-family: var(--font-heading); /* Premium Serif Font */
  font-size: 1.375rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.3s ease;
}

.travel-faq-item:hover .travel-faq-question-text,
.travel-faq-item.travel-faq-active .travel-faq-question-text {
  color: #C47A65;
}

@media (min-width: 768px) {
  .travel-faq-question-text {
    font-size: 1.5rem;
  }
}

.travel-faq-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(196, 122, 101, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C47A65;
  font-size: 1rem;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.travel-faq-item:hover .travel-faq-icon {
  background: #C47A65;
  color: var(--white);
}

.travel-faq-item.travel-faq-active .travel-faq-icon {
  background: #C47A65;
  color: var(--white);
  transform: rotate(45deg);
}

.travel-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.5s ease;
}

.travel-faq-item.travel-faq-active .travel-faq-answer {
  max-height: 500px;
  padding: 0 2.5rem 2.5rem 5.5rem; /* Indented to align with text */
}

.travel-faq-answer p {
  font-size: 1.125rem;
  color: #4b5563; /* Darker grey for better readability */
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 639px) {
  .travel-faq-question {
    padding: 1.5rem;
    gap: 1rem;
  }

  .travel-faq-number {
    font-size: 1.25rem;
    width: 1.5rem;
  }

  .travel-faq-question-text {
    font-size: 1.125rem;
  }

  .travel-faq-item.travel-faq-active .travel-faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}


/* ============================================
   FINAL CTA SECTION
   ============================================ */
.travel-cta-section {
  position: relative;
  background: linear-gradient(135deg, #6B4FA0 0%, #8B6BBF 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.travel-cta-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(100px);
}

.travel-cta-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(80px);
}

.travel-cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.travel-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.travel-cta-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.travel-cta-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.travel-cta-badge i {
  font-size: 1.125rem;
  color: var(--white);
}

.travel-cta-badge span {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
}

.travel-cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .travel-cta-title {
    font-size: 3.5rem;
  }
}

.travel-cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
  .travel-cta-description {
    font-size: 1.25rem;
  }
}

.travel-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .travel-cta-actions {
    flex-direction: row;
  }
}

.travel-cta-button-white {
  background: linear-gradient(135deg, #C47A65, #B8694F);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.travel-cta-button-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.travel-cta-button-outlined {
  color: #2D1B4E;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.travel-cta-button-outlined:hover {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.travel-cta-checks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.travel-cta-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.travel-cta-check i {
  font-size: 1.125rem;
  color: var(--white);
}

.travel-cta-check span {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
