/* ============================================================
   TOUR.CSS — all 22 tour detail pages
   ============================================================ */

/* TOUR HERO */
.tour-hero { padding-top: var(--nav-h); position: relative; height: 70vh; min-height: 500px; overflow: hidden; display: flex; align-items: flex-end; }
.tour-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 8s ease; }
.tour-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.4) 55%, rgba(0,0,0,.1) 100%); }
.tour-hero:hover .tour-hero-bg { transform: scale(1); }
.tour-hero-content { position: relative; z-index: 2; width: 100%; padding: 0 32px 60px; }
.hero-badge { display: inline-block; font-family: 'Google Sans Flex', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; background: var(--gold); color: var(--deep); padding: 5px 14px; border-radius: 2px; margin-bottom: 16px; }
.hero-type { font-family: 'Google Sans Flex', sans-serif; font-size: .7rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.tour-hero-content h1 { color: var(--white); margin-bottom: 20px; max-width: 720px; }
.stops-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.stop-chip { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.2); padding: 5px 12px; border-radius: 20px; backdrop-filter: blur(4px); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* BREADCRUMB BAR */
.breadcrumb-bar { background: var(--sand); border-bottom: 1px solid rgba(0,0,0,.07); padding: 14px 0; }
.breadcrumb-bar .breadcrumb { justify-content: flex-start; }

/* TOUR BODY */
.tour-body { padding: 80px 0; background: var(--white); }
.tour-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.tour-description { font-size: 1.05rem; line-height: 1.8; color: var(--text); margin-bottom: 56px; font-weight: 300; max-width: 640px; }
.highlights-title { font-family: 'Roboto Serif', serif; font-size: 2rem; color: var(--deep); margin-bottom: 32px; }
.highlight-item { display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start; }
.hi-dot { flex-shrink: 0; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; margin-top: 8px; }
.hi-content h4 { font-family: 'Roboto Serif', serif; font-size: 1.25rem; font-weight: 600; color: var(--deep); margin-bottom: 6px; }
.hi-content p { font-size: .9rem; }

/* SIDEBAR */
.sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }
.sidebar-card { background: var(--sand); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.sidebar-book { background: var(--deep); padding: 28px 28px 24px; }
.sidebar-book h3 { font-family: 'Roboto Serif', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 6px; }
.sidebar-book p { font-size: .82rem; color: var(--white); margin-bottom: 20px; }
.sidebar-book .btn-primary { width: 100%; justify-content: center; font-size: .72rem; }
.sidebar-wa { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25d366; color: var(--white); padding: 12px 20px; font-family: 'Google Sans Flex', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-top: 10px; border-radius: var(--radius); transition: background .2s; }
.sidebar-wa:hover { background: #1fb858; }
.sidebar-details { padding: 24px 28px; }
.detail-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,.07); }
.detail-row:last-child { border: none; }
.detail-label { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); flex-shrink: 0; width: 100px; }
.detail-value { font-size: .88rem; font-weight: 500; color: var(--deep); text-align: right; }
.sidebar-note { background: rgba(201,168,76,.1); border-left: 3px solid var(--gold); padding: 14px 16px; margin-top: 4px; border-radius: 0 var(--radius) var(--radius) 0; }
.sidebar-note p { font-size: .8rem; color: var(--mid); }

/* GALLERY */
.gallery-section { padding: 0 0 80px; background: var(--white); }
.gallery-title { font-family: 'Roboto Serif', serif; font-size: 2rem; color: var(--deep); margin-bottom: 28px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.gallery-item { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }

/* PREV/NEXT NAV */
.tour-nav { background: var(--deep); padding: 32px 0; }
.tour-nav-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.tour-nav-link { font-family: 'Google Sans Flex', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--white); transition: color .25s; display: flex; align-items: center; gap: 8px; }
.tour-nav-link:hover { color: var(--gold); }
.tour-nav-link.next { text-align: right; flex-direction: row-reverse; }

/* YOU MAY ALSO LIKE */
.also-section { padding: 72px 0; background: var(--sand); }
.also-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.also-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.07); transition: transform .3s, box-shadow .3s; }
.also-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.also-card-img { height: 160px; overflow: hidden; }
.also-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.also-card:hover .also-card-img img { transform: scale(1.06); }
.also-card-body { padding: 18px 20px; }
.also-card-code { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.also-card-body h4 { font-family: 'Roboto Serif', serif; font-size: 1.1rem; color: var(--deep); margin-bottom: 6px; }
.also-card-body p { font-size: .8rem; line-height: 1.6; }
.also-card-footer { padding: 12px 20px; border-top: 1px solid var(--light); display: flex; justify-content: space-between; align-items: center; }
.also-tag { font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.also-arrow { color: var(--azure); font-size: .9rem; transition: color .2s; }
.also-card:hover .also-arrow { color: var(--gold); }

/* TOUR FOOTER (simplified) */
.footer-bottom-simple { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-simple p { font-size: .78rem; color: var(--white); }

/* RESPONSIVE */
@media(max-width: 1024px) {
  .tour-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .also-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width: 768px) {
  .tour-hero { height: 55vh; }
  .also-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .tour-nav-inner { flex-direction: column; align-items: flex-start; }
  .tour-nav-link.next { flex-direction: row; text-align: left; }
}
