/* ============================================
   Travel Hub Central - Global Stylesheet
   ============================================ */

:root {
  --color-bg: #ffffff;
  --color-surface: #f8fafc;
  --color-surface-alt: #f1f5f9;
  --color-primary: #0e7490;        /* deep teal */
  --color-primary-dark: #0b5a71;
  --color-accent: #f97316;         /* coral / orange */
  --color-accent-dark: #ea580c;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-border: #e2e8f0;
  --color-success: #16a34a;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow-md: 0 4px 16px rgba(15,23,42,.08);
  --shadow-lg: 0 12px 40px rgba(15,23,42,.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --container: 1200px;
  --header-h: 82px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --transition: 300ms cubic-bezier(.2,.7,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--color-text); }
h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.35rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.section-title { margin-bottom: 12px; }
.section-sub { color: var(--color-text-muted); max-width: 680px; margin-bottom: 48px; font-size: 1.02rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: .95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--color-text); transform: translateY(-2px); }
.btn-dark { background: var(--color-primary); color: #fff; }
.btn-dark:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { color: var(--color-primary); }
.btn-ghost:hover { color: var(--color-primary-dark); }
.btn-block { width: 100%; justify-content: center; }

/* ================= HEADER ================= */
.site-header {
  position: sticky; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-mark { font-family: var(--font-heading); font-size: 1.55rem; font-weight: 700; color: var(--color-text); letter-spacing: -.5px; }
.logo-mark span { color: var(--color-accent); font-style: italic; }
.logo-tag { font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--color-text-muted); margin-top: 4px; }

.nav-list { display: flex; gap: 34px; list-style: none; align-items: center; }
.nav-list a {
  font-weight: 500; font-size: .95rem; color: var(--color-text);
  position: relative; padding: 6px 0;
}
.nav-list a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: var(--color-accent);
  transition: width var(--transition);
}
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }
.nav-list a.active { color: var(--color-primary); }

.mobile-toggle { display: none; font-size: 1.5rem; color: var(--color-text); }

@media (max-width: 900px) {
  .nav-list {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 24px;
    gap: 20px; align-items: stretch;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%); transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav-list.open { transform: translateY(0); }
  .mobile-toggle { display: block; }
}

/* ================= HERO SLIDER ================= */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 560px;
  max-height: 780px;
  background: #0f172a;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1200ms ease;
  overflow: hidden;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.35) 0%, rgba(15,23,42,.55) 60%, rgba(15,23,42,.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column; justify-content: center;
  color: #fff; max-width: 760px;
}
.hero-eyebrow {
  display: inline-block; width: fit-content;
  padding: 8px 18px; border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius-pill);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero-title {
  color: #fff; font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05; margin-bottom: 20px;
  animation: fadeUp 800ms ease both;
}
.hero-title em { color: #fdba74; font-style: italic; }
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.9);
  margin-bottom: 34px; max-width: 620px;
  animation: fadeUp 900ms 100ms ease both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 900ms 200ms ease both; }

.hero-nav {
  position: absolute; bottom: 40px; right: 40px;
  display: flex; gap: 12px; z-index: 3;
}
.hero-dot {
  width: 40px; height: 4px; background: rgba(255,255,255,.35);
  border-radius: 4px; cursor: pointer; transition: background var(--transition);
}
.hero-dot.active { background: var(--color-accent); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Search bar overlaying hero */
.hero-search {
  position: absolute; left: 50%; bottom: -50px;
  transform: translateX(-50%);
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 28px;
  width: min(720px, 92%);
  display: flex; gap: 12px; align-items: center;
  z-index: 4;
}
.hero-search-input {
  flex: 1; border: none; outline: none;
  font-family: var(--font-body); font-size: 1rem;
  padding: 12px 8px; background: transparent; color: var(--color-text);
}
.hero-search .btn { padding: 12px 24px; }
.hero-search-icon { color: var(--color-primary); font-size: 1.2rem; }

.search-results {
  position: absolute; left: 50%; top: calc(100% + 6px);
  transform: translateX(-50%);
  width: min(720px, 92%);
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 320px; overflow-y: auto;
  z-index: 5; display: none;
}
.search-results.open { display: block; }
.search-result-item {
  padding: 14px 20px; display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--color-border); transition: background var(--transition);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--color-surface); }
.search-result-item img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; }
.search-result-item .r-title { font-weight: 600; }
.search-result-item .r-sub { font-size: .82rem; color: var(--color-text-muted); }

/* ================= FEATURES STRIP ================= */
.features { padding-top: 120px; }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.feature-card {
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  background: #fff;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--color-primary); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,116,144,.09); color: var(--color-primary);
  font-size: 1.5rem; margin: 0 auto 18px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.feature-card p { color: var(--color-text-muted); font-size: .92rem; }

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

/* ================= DESTINATIONS GRID ================= */
.dest-tabs {
  display: flex; justify-content: center; gap: 12px; margin-bottom: 40px;
  flex-wrap: wrap;
}
.dest-tab {
  padding: 10px 22px; border-radius: var(--radius-pill);
  border: 1px solid var(--color-border); background: #fff;
  font-weight: 600; font-size: .9rem; color: var(--color-text-muted);
  transition: all var(--transition);
}
.dest-tab.active, .dest-tab:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.dest-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}
.dest-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border);
  display: flex; flex-direction: column;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card-img {
  position: relative; height: 220px; overflow: hidden;
}
.dest-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms ease;
}
.dest-card:hover .dest-card-img img { transform: scale(1.08); }
.dest-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.95); padding: 6px 14px;
  border-radius: var(--radius-pill); font-size: .75rem; font-weight: 700;
  color: var(--color-primary); letter-spacing: .06em; text-transform: uppercase;
}
.dest-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.dest-card h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 6px; }
.dest-meta {
  color: var(--color-text-muted); font-size: .88rem; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.dest-desc { color: var(--color-text-muted); font-size: .92rem; margin-bottom: 20px; flex: 1; }
.dest-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--color-border);
}
.dest-price { display: flex; flex-direction: column; }
.dest-price small { font-size: .72rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: .1em; }
.dest-price strong { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-accent); font-weight: 700; }
.dest-view {
  font-weight: 600; font-size: .88rem; color: var(--color-primary);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.dest-view:hover { gap: 12px; }

/* ================= WHY US / STATS ================= */
.stats {
  background: linear-gradient(135deg, #0e7490 0%, #164e63 100%);
  color: #fff; padding: 70px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-num { font-family: var(--font-heading); font-size: 3rem; color: #fdba74; font-weight: 700; line-height: 1; }
.stat-label { text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; margin-top: 10px; color: rgba(255,255,255,.85); }

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
}

/* ================= PARTNERS STRIP ================= */
.partners {
  padding: 70px 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
}
.partners-header { text-align: center; margin-bottom: 42px; }
.partners-header .eyebrow { margin-bottom: 6px; }
.partners-header h3 {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 700;
  letter-spacing: .06em; color: var(--color-text);
}
.partners-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 56px;
}
.partner-logo img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .55;
  transition: filter 300ms ease, opacity 300ms ease, transform 300ms ease;
}
.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.06);
}
@media (max-width: 1024px) {
  .partners-strip { grid-template-columns: repeat(4, 1fr); row-gap: 44px; }
}
@media (max-width: 640px) {
  .partners-strip { grid-template-columns: repeat(2, 1fr); row-gap: 36px; gap: 30px; }
  .partner-logo { height: 44px; }
}

/* ================= TESTIMONIALS ================= */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.testimonial-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 30px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #fbbf24; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: var(--color-text); font-size: .98rem; line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: .95rem; }
.testimonial-author small { color: var(--color-text-muted); font-size: .82rem; }

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ================= CTA BAND ================= */
.cta-band {
  background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&auto=format&fit=crop') center/cover;
  padding: 100px 0; position: relative; color: #fff; text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,116,144,.9), rgba(15,23,42,.75));
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { max-width: 620px; margin: 0 auto 28px; opacity: .95; font-size: 1.1rem; }

/* ================= FOOTER ================= */
.site-footer {
  background: #0f172a; color: #cbd5e1; padding: 70px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-mark { color: #fff; }
.footer-brand p { margin-top: 16px; color: #94a3b8; font-size: .93rem; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-body); font-size: .95rem; font-weight: 700;
  color: #fff; margin-bottom: 20px; letter-spacing: .05em; text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #94a3b8; font-size: .93rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--color-accent); }
.footer-contact { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: .92rem; color: #94a3b8; }
.footer-contact i { color: var(--color-accent); margin-top: 3px; }
.footer-bottom {
  padding: 24px 0; text-align: center; font-size: .85rem; color: #64748b;
}
.footer-bottom a { color: #94a3b8; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ================= PAGE HERO (interior pages) ================= */
.page-hero {
  height: 380px;
  background: linear-gradient(135deg, rgba(14,116,144,.85), rgba(15,23,42,.85)),
              url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&auto=format&fit=crop') center/cover;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero .breadcrumb { color: rgba(255,255,255,.8); font-size: .92rem; }
.page-hero .breadcrumb a { color: #fdba74; }
.page-hero .breadcrumb a:hover { color: #fff; }

/* ================= FORMS ================= */
.form-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-title { margin-bottom: 8px; }
.form-sub { color: var(--color-text-muted); margin-bottom: 30px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .82rem; font-weight: 600; color: var(--color-text);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem;
  background: #fff; color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(14,116,144,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.trip-type-toggle {
  display: inline-flex; padding: 6px; background: var(--color-surface);
  border-radius: var(--radius-pill); margin-bottom: 24px;
}
.trip-type-toggle button {
  padding: 10px 24px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: .88rem; color: var(--color-text-muted);
  transition: all var(--transition);
}
.trip-type-toggle button.active { background: var(--color-primary); color: #fff; }

.form-success, .form-error {
  padding: 18px 22px; border-radius: var(--radius-sm); margin-bottom: 20px;
  display: none; font-size: .95rem;
}
.form-success { background: #dcfce7; color: #166534; border-left: 4px solid var(--color-success); }
.form-error { background: #fee2e2; color: #991b1b; border-left: 4px solid #dc2626; }
.form-success.show, .form-error.show { display: block; }

@media (max-width: 720px) {
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
}

/* ================= CONTACT LAYOUT ================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start;
}
.contact-info {
  background: linear-gradient(135deg, #0e7490 0%, #164e63 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 40px;
}
.contact-info h2 { color: #fff; margin-bottom: 14px; }
.contact-info p { opacity: .9; margin-bottom: 30px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-item-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: #fdba74; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 700; margin-bottom: 4px; }
.contact-item span { opacity: .85; font-size: .92rem; line-height: 1.5; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ================= TOUR DETAIL PAGE ================= */
.tour-hero {
  height: 480px; position: relative; overflow: hidden;
}
.tour-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.tour-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.3) 0%, rgba(15,23,42,.75) 100%);
}
.tour-hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 50px; color: #fff;
}
.tour-hero-content h1 { color: #fff; margin-bottom: 10px; }
.tour-hero-meta { display: flex; gap: 24px; flex-wrap: wrap; font-size: .95rem; opacity: .9; }
.tour-hero-meta span i { color: #fdba74; margin-right: 6px; }

.tour-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px;
  margin-top: 60px; margin-bottom: 90px;
  align-items: start;
}
.tour-main h2 { font-size: 1.8rem; margin-bottom: 16px; }
.tour-main h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.tour-main p { color: var(--color-text-muted); margin-bottom: 16px; line-height: 1.8; }

.highlights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 20px 0 40px; }
.highlight {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--color-surface);
  border-radius: var(--radius-sm); font-size: .94rem;
}
.highlight i { color: var(--color-primary); }

.itinerary { margin: 30px 0 40px; }
.day {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}
.day:last-child { border-bottom: none; }
.day-num {
  flex-shrink: 0; width: 66px; height: 66px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff; border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; line-height: 1;
}
.day-num small { font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin-bottom: 2px; }
.day-num strong { font-size: 1.5rem; }
.day-body h4 { font-size: 1.1rem; margin-bottom: 6px; }
.day-body p { font-size: .95rem; color: var(--color-text-muted); margin-bottom: 0; }

.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 20px 0; }
.inc-list { list-style: none; }
.inc-list li { padding: 8px 0; padding-left: 28px; position: relative; font-size: .94rem; }
.inc-list.included li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; color: var(--color-success);
}
.inc-list.excluded li::before {
  content: '\f00d'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; color: #dc2626;
}

.tour-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.booking-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-md);
}
.booking-price {
  padding-bottom: 20px; border-bottom: 1px solid var(--color-border);
  margin-bottom: 22px;
}
.booking-price small { font-size: .78rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: .1em; }
.booking-price strong { display: block; font-family: var(--font-heading); font-size: 2.4rem; color: var(--color-accent); font-weight: 700; }
.booking-price em { font-style: normal; color: var(--color-text-muted); font-size: .88rem; }

@media (max-width: 900px) {
  .tour-layout { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .inclusions-grid, .highlights-grid { grid-template-columns: 1fr; }
}

/* ================= MISC ================= */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-6 { margin-top: 48px; }
.divider { height: 1px; background: var(--color-border); margin: 40px 0; }

/* Category chips (Europe/N. America headings on Tour Packages page) */
.category-header {
  display: flex; align-items: baseline; gap: 16px;
  margin: 50px 0 30px;
}
.category-header h2 { font-size: 2rem; }
.category-header .count {
  color: var(--color-text-muted); font-size: .95rem;
  padding: 4px 12px; background: var(--color-surface); border-radius: var(--radius-pill);
}
