/* Travel Page Specific Styles */

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--text-sub);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb-separator {
  color: var(--text-sub);
  opacity: 0.5;
}

/* Travel Hero */
.travel-hero {
  background: linear-gradient(135deg, rgba(255,192,203,0.85), rgba(180,212,230,0.75)),
              url('../../assets/images/travelhero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 60px;
  position: relative;
}

.travel-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.travel-hero .hero-lead {
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 600px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
}

.travel-hero .breadcrumb a,
.travel-hero .breadcrumb-separator,
.travel-hero .breadcrumb span {
  color: rgba(255,255,255,0.9);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

/* Introduction Section */
.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  text-align: left;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-header .section-subtitle {
  font-size: 1rem;
  color: var(--text-sub);
}

/* Program Grid */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.program-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255,145,175,0.08);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,145,175,0.25);
  border-color: var(--accent-gold-soft);
}

.program-header {
  padding: 24px;
  background: linear-gradient(135deg, rgba(180,212,230,0.15), rgba(152,216,200,0.15));
  border-bottom: 1px solid var(--border-soft);
}

.program-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
  margin-bottom: 8px;
  font-weight: 700;
}

.program-header h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--text-main);
}

.program-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.program-content > p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-sub);
  margin-bottom: 20px;
}

.program-highlights {
  margin-top: auto;
}

.program-highlights h4 {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.program-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-highlights li {
  font-size: 0.85rem;
  color: var(--text-sub);
  padding: 8px 0 8px 20px;
  position: relative;
  line-height: 1.6;
}

.program-highlights li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-matcha);
  font-weight: bold;
}

/* Services List */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.service-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--accent-gold-soft);
  box-shadow: 0 4px 16px rgba(255,145,175,0.15);
  transform: translateX(4px);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-matcha));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
}

.service-text h4 {
  font-size: 1rem;
  margin: 0 0 6px 0;
  color: var(--text-main);
}

.service-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-sub);
  margin: 0;
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.reason-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-matcha));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.reason-card:hover::before {
  transform: scaleX(1);
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,145,175,0.2);
}

.reason-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  opacity: 0.25;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

.reason-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.reason-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-sub);
  margin: 0;
}

/* Process Timeline */
.process-timeline {
  max-width: 900px;
  margin: 40px auto 0;
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 80px;
  width: 2px;
  height: calc(100% - 40px);
  background: linear-gradient(180deg, var(--accent-blue), var(--border-soft));
}

.step-marker {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-matcha));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(180,212,230,0.4);
}

.step-content {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px 28px;
  transition: all 0.3s ease;
}

.step-content:hover {
  background: rgba(255,255,255,1);
  box-shadow: 0 8px 24px rgba(255,145,175,0.15);
  border-color: var(--accent-gold-soft);
}

.step-content h3 {
  font-size: 1.15rem;
  margin: 0 0 12px 0;
  color: var(--text-main);
}

.step-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-sub);
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(180,212,230,0.2), rgba(152,216,200,0.15));
  padding: 80px 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.cta-content p {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .travel-hero h1 {
    font-size: 1.8rem;
  }

  .travel-hero .hero-lead {
    font-size: 1rem;
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .process-step:not(:last-child)::before {
    left: 29px;
    top: 70px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .services-list {
    gap: 16px;
  }

  .service-item {
    padding: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

