/* ===== Travel Page Specific Styles ===== */

/* Hero */
.travel-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
  background: linear-gradient(135deg, #042a0c 0%, #073d12 100%);
}

.travel-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.travel-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 60px 0;
}

.travel-hero-text {
  flex: 1;
  max-width: 560px;
}

.travel-hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.travel-hero-text .hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 16px;
}

.travel-hero-text .hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.travel-hero-visual {
  flex: 0 0 460px;
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.travel-hero-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: #212529;
  box-shadow: 0 3px 7px rgba(0,0,0,0.12);
}

.btn-white:hover {
  background: #f1f3f5;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Offline to Online Section */
.offline-online-section {
  background: #fff;
  text-align: center;
}

.oo-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}

.oo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.oo-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(47, 177, 71, 0.08);
  border: 2px solid rgba(47, 177, 71, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.2s, border-color 0.2s;
}

.oo-step:hover .oo-icon-wrap {
  background: rgba(47, 177, 71, 0.15);
  border-color: #2fb147;
}

.oo-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: #2fb147;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.oo-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #042a0c;
  margin-bottom: 6px;
}

.oo-step p {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.55;
}

.oo-arrow {
  flex-shrink: 0;
  padding: 0 8px;
  margin-bottom: 48px; /* align arrow with icon centres */
}

@media (max-width: 640px) {
  .oo-steps {
    flex-direction: column;
    gap: 4px;
  }
  .oo-arrow {
    transform: rotate(90deg);
    margin-bottom: 0;
    margin-right: 0;
  }
  .oo-step {
    max-width: 100%;
  }
}

/* AI Section */
.ai-section {
  background: #fff;
  text-align: center;
}

.ai-inner {
  max-width: 800px;
}

.section-desc {
  font-size: 1.05rem;
  color: #495057;
  line-height: 1.7;
  text-align: center;
  max-width: 650px;
  margin: -30px auto 40px;
}

.ai-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.ai-stat {
  text-align: center;
  min-width: 130px;
}

.ai-stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #2fb147;
  line-height: 1;
}

.ai-stat-suffix {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #2fb147;
}

.ai-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #495057;
  font-weight: 500;
}

/* Steps Section */
.steps-section {
  position: relative;
  overflow: hidden;
}

.steps-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.steps-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 42, 12, 0.88);
}

.steps-inner {
  position: relative;
  z-index: 1;
}

.steps-title {
  color: #fff;
}

.cta-buttons {
  justify-content: center;
}

.steps-video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.steps-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Features */
.features-section {
  background: #f8fdf9;
}

.travel-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.travel-feature-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.tf-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(47, 177, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.travel-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #212529;
}

.travel-feature-card p {
  font-size: 0.93rem;
  color: #495057;
  line-height: 1.6;
}

/* Gallery */
.gallery-section {
  background: #fff;
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
  .travel-hero {
    min-height: auto;
  }

  .travel-hero-inner {
    flex-direction: column;
    gap: 32px;
    padding: 48px 0 0;
    text-align: center;
  }

  .travel-hero-text {
    max-width: 100%;
  }

  .travel-hero-text .hero-buttons {
    justify-content: center;
  }

  .travel-hero-visual img {
    max-height: 340px;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }

  .travel-features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-stats {
    gap: 24px;
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
