/* =========================================================
   FlyGo — Inner Pages CSS (extends style.css)
   ========================================================= */

/* ---- Page Hero Banner ---- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  color: white;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,20,43,.88) 0%, rgba(10,29,58,.65) 60%, rgba(7,20,43,.4) 100%);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  background: none; padding: 0; margin: 0 0 12px;
  display: flex; gap: 10px; align-items: center;
  font-size: 13.5px; color: rgba(255,255,255,.75);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.75); }
.page-hero .breadcrumb a:hover { color: var(--orange-300); }
.page-hero .breadcrumb .sep { opacity: .5; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  font-weight: 800;
  margin: 0 0 14px;
  color: white;
}
.page-hero p.lead {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  opacity: .9;
  max-width: 560px;
  margin: 0;
}
.hero-eyebrow-sm {
  font-family: "Caveat", cursive;
  font-size: 26px;
  color: var(--orange-400);
  margin-bottom: 4px;
  display: block;
}

/* ---- Quick-info bar ---- */
.pkg-info-bar {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin-top: -44px;
  position: relative;
  z-index: 5;
}
.pkg-info-cell {
  flex: 1 1 160px;
  padding: 22px 24px;
  border-right: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 14px;
}
.pkg-info-cell:last-child { border-right: 0; }
.pkg-info-cell .ic {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gray-100);
  color: var(--orange-500);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.pkg-info-cell .val {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 4px;
}
.pkg-info-cell .lbl { font-size: 12.5px; color: var(--gray-500); }

/* ---- Tour detail layout ---- */
.tour-detail { padding: 50px 0 80px; }
.tour-main { }
.tour-sticky-sidebar { position: sticky; top: 90px; }

/* ---- Booking widget ---- */
.booking-widget {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.booking-widget-head {
  background: var(--navy-800);
  padding: 22px 24px;
  color: white;
}
.booking-widget-head .price {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 800;
}
.booking-widget-head .price small { font-size: 13px; font-weight: 400; opacity: .7; }
.booking-widget-head .orig { font-size: 13px; opacity: .6; text-decoration: line-through; margin-top: 3px; }
.booking-widget-body { padding: 22px 24px; }
.form-fg label { font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-fg input,
.form-fg select,
.form-fg textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: white;
  transition: border-color .2s ease;
  outline: none;
}
.form-fg input:focus,
.form-fg select:focus,
.form-fg textarea:focus { border-color: var(--orange-400); }
.form-fg .row-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.form-fg .field { margin-bottom: 14px; }
.booking-widget .submit-btn {
  width: 100%;
  background: var(--grad-orange);
  color: white; border: 0;
  border-radius: 10px;
  padding: 14px;
  font-family: inherit;
  font-size: 15px; font-weight: 600;
  box-shadow: var(--shadow-glow);
  transition: transform .25s ease;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.booking-widget .submit-btn:hover { transform: translateY(-2px); }
.booking-widget .guarantee {
  text-align: center;
  font-size: 12px; color: var(--gray-500);
  margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.booking-widget .guarantee i { color: var(--green-700); }

/* ---- Itinerary accordion ---- */
.itinerary-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .25s;
}
.itinerary-item.open { border-color: rgba(245,123,28,.3); }
.itinerary-q {
  width: 100%; background: none; border: 0;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  text-align: left; cursor: pointer; font-family: inherit;
}
.itinerary-q .day-badge {
  min-width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--orange-500);
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  transition: background .25s, color .25s;
}
.itinerary-q .day-badge .d { font-size: 18px; font-weight: 700; line-height: 1; }
.itinerary-q .day-badge .lbl { font-size: 9px; font-weight: 600; letter-spacing: .06em; opacity: .8; }
.itinerary-item.open .day-badge { background: var(--orange-500); color: white; }
.itinerary-q .q-text { flex: 1; }
.itinerary-q .q-title { font-size: 15.5px; font-weight: 600; color: var(--ink); margin: 0 0 3px; }
.itinerary-q .q-sub { font-size: 12.5px; color: var(--gray-500); }
.itinerary-q .ic-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gray-100);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gray-600);
  font-size: 11px;
  transition: transform .3s, background .25s, color .25s;
}
.itinerary-item.open .ic-toggle { transform: rotate(180deg); background: var(--orange-500); color: white; }
.itinerary-body {
  max-height: 0; overflow: hidden;
  transition: max-height .38s ease;
}
.itinerary-body-inner {
  padding: 0 22px 20px 90px;
  font-size: 14.5px; color: var(--gray-600); line-height: 1.75;
}
.itinerary-body-inner ul { padding-left: 18px; margin: 10px 0; }
.itinerary-body-inner ul li { margin-bottom: 6px; }
.itinerary-body-inner .meal-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gray-100);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500; color: var(--gray-700);
  margin-right: 6px; margin-top: 10px;
}
.itinerary-body-inner .meal-tag i { color: var(--orange-500); }

/* ---- Incl / Excl ---- */
.incl-excl {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 28px;
}
.incl-excl-head {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--gray-100);
}
.incl-excl-head span {
  padding: 14px 22px;
  font-size: 15px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.incl-excl-head span:first-child { border-right: 1px solid var(--gray-100); }
.incl-excl-head span i.inc { color: var(--green-700); }
.incl-excl-head span i.exc { color: #e23b59; }
.incl-excl-body { display: grid; grid-template-columns: 1fr 1fr; }
.incl-col, .excl-col {
  padding: 18px 22px;
  list-style: none; margin: 0;
}
.incl-col { border-right: 1px solid var(--gray-100); }
.incl-col li, .excl-col li {
  padding: 6px 0;
  font-size: 13.5px; color: var(--gray-600);
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.incl-col li:last-child, .excl-col li:last-child { border-bottom: 0; }
.incl-col li i { color: var(--green-700); margin-top: 3px; font-size: 12px; }
.excl-col li i { color: #e23b59; margin-top: 3px; font-size: 12px; }

/* ---- Section title card ---- */
.content-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 26px;
  margin-bottom: 24px;
}
.content-card h3 {
  font-size: 20px; font-weight: 700; color: var(--ink);
  margin: 0 0 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 10px;
}
.content-card h3 i { color: var(--orange-500); font-size: 16px; }
.content-card p { font-size: 14.5px; color: var(--gray-600); line-height: 1.75; margin: 0; }

/* ---- Listing grid (tour cards — reuse pkg-card) ---- */
.listing-section { padding: 60px 0 80px; }
.listing-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: white;
  border: 1.5px solid var(--gray-200);
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--orange-500); color: white; border-color: var(--orange-500);
}

/* ---- About page ---- */
.about-story p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.value-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
  border-top: 3px solid var(--orange-500);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .v-ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(245,123,28,.1);
  color: var(--orange-500);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 16px;
}
.value-card h4 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.value-card p { font-size: 13px; color: var(--gray-500); margin: 0; line-height: 1.6; }

.team-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: center;
  transition: transform .3s ease;
}
.team-card:hover { transform: translateY(-4px); }
.team-card .avatar {
  width: 100%; aspect-ratio: 1;
  background-size: cover; background-position: center top;
  background-color: var(--gray-200);
}
.team-card .team-info { padding: 18px; }
.team-card h4 { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.team-card span { font-size: 13px; color: var(--orange-500); }

.award-badge {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  display: flex; align-items: center; gap: 16px;
  height: 100%;
}
.award-badge .a-ic {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(245, 179, 1, .12);
  color: var(--gold);
  font-size: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.award-badge h4 { font-size: 15px; font-weight: 700; margin: 0 0 3px; color: var(--ink); }
.award-badge p { font-size: 12.5px; color: var(--gray-500); margin: 0; }

/* ---- Contact page ---- */
.contact-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  height: 100%;
}
.contact-card .c-ic {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(245,123,28,.1);
  color: var(--orange-500);
  font-size: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.contact-card h4 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.contact-card p { font-size: 14px; color: var(--gray-500); margin: 0; line-height: 1.7; }
.contact-card a { color: var(--ink); }
.contact-card a:hover { color: var(--orange-500); }

.contact-form-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 36px;
}
.contact-form-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 22px; }

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 380px;
  background: var(--gray-100);
  position: relative;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: white; gap: 12px;
}
.map-placeholder i { font-size: 48px; opacity: .6; }
.map-placeholder p { font-size: 15px; opacity: .7; margin: 0; }

/* ---- Spiritual tour badge ---- */
.spiritual-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,123,28,.1);
  color: var(--orange-500);
  border: 1px solid rgba(245,123,28,.3);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .incl-excl-body { grid-template-columns: 1fr; }
  .incl-col { border-right: 0; border-bottom: 1px solid var(--gray-100); }
  .pkg-info-bar { flex-direction: column; }
  .pkg-info-cell { border-right: 0; border-bottom: 1px solid var(--gray-100); }
  .itinerary-body-inner { padding-left: 22px; }
}
@media (max-width: 767px) {
  .contact-form-card { padding: 22px; }
  .incl-excl-head { grid-template-columns: 1fr; }
  .incl-excl-head span:first-child { border-right: 0; border-bottom: 1px solid var(--gray-100); }
  .form-fg .row-fields { grid-template-columns: 1fr; }
  #fgNav .container{justify-content: space-between;}

}
