/* ==========================================================================
   Panj Travel — main stylesheet
   Brand colors: green, blue, white, orange (accent)
   ========================================================================== */

:root {
  --green: #1F9D55;
  --green-dark: #167A42;
  --green-light: #E7F7EE;
  --blue: #1C6FB0;
  --blue-dark: #14507F;
  --blue-light: #EAF4FC;
  --orange: #F2994A;
  --orange-dark: #D97B26;
  --white: #FFFFFF;
  --off-white: #F7FAFB;
  --text-dark: #1E293B;
  --text-muted: #5C6B7A;
  --border: #E3E9ED;
  --shadow: 0 10px 30px rgba(20, 50, 70, 0.08);
  --shadow-sm: 0 4px 14px rgba(20, 50, 70, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --max-width: 1180px;
  --font: "Segoe UI", "Poppins", Arial, Helvetica, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }

.section { padding: 72px 0; }
.section-alt { background: var(--white); }

.section-tag {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--blue-dark);
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(242, 153, 74, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--blue-dark); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(28, 111, 176, 0.3);
}
.btn-blue:hover { background: var(--blue-dark); }

.btn-ghost {
  background: var(--blue-light);
  color: var(--blue-dark);
}
.btn-ghost:hover { background: var(--border); }

.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--blue-dark);
}
.brand img { height: 46px; width: 46px; object-fit: contain; border-radius: 50%; }
.brand span small { display: block; font-size: 0.7rem; font-weight: 500; color: var(--green); letter-spacing: 1px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
}

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--blue-dark); border-radius: 3px; }

/* ---------- Hero / Slideshow ---------- */
.hero-slideshow {
  position: relative;
  height: 88vh;
  min-height: 520px;
  max-height: 760px;
  overflow: hidden;
  color: var(--white);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; visibility: visible; z-index: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 40, 60, 0.35) 0%, rgba(8, 33, 48, 0.75) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.slide-content .eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.slide-content h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  max-width: 780px;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.slide-content p {
  max-width: 560px;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.92);
}

.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.slide-dots {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.slide-dots button {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.slide-dots button.active { background: var(--orange); border-color: var(--orange); }

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.slide-arrow:hover { background: rgba(255,255,255,0.35); }
.slide-arrow.prev { left: 24px; }
.slide-arrow.next { right: 24px; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 0;
  text-align: center;
}
.trust-grid .num { font-size: 1.6rem; font-weight: 800; color: var(--blue); }
.trust-grid .label { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- Tour cards ---------- */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.tour-card .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.tour-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.tour-card:hover .thumb img { transform: scale(1.06); }

.badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}
.badge.blue { background: var(--blue); }
.badge.green { background: var(--green); }

.price-tag {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--blue-dark);
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  z-index: 2;
}

.tour-card .body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.tour-meta span { display: flex; align-items: center; gap: 5px; }

.tour-card h3 {
  font-size: 1.15rem;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.tour-card p.desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
  flex: 1;
}

.tour-card .card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* ---------- About / split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split .media { position: relative; }
.split .media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }

.stat-chip {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--blue);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  text-align: center;
}
.stat-chip .n { font-size: 1.6rem; font-weight: 800; }
.stat-chip .l { font-size: 0.75rem; opacity: 0.9; }

.feature-list { margin-top: 24px; display: grid; gap: 16px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-item .icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
}
.feature-item h4 { font-size: 1rem; margin-bottom: 4px; color: var(--text-dark); }
.feature-item p { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 44px; width: 44px; border-radius: 50%; background: var(--white); }
.footer-brand span { font-weight: 800; font-size: 1.1rem; color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 11px; font-size: 0.92rem; }
.footer-col ul li a:hover { color: var(--orange); }

.footer-col address { font-style: normal; font-size: 0.92rem; line-height: 1.8; }

.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover { background: var(--orange); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; fill: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,0.65);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue) 60%, var(--green-dark));
  color: var(--white);
  padding: 90px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto; }
.breadcrumb { margin-top: 18px; font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--orange); }

/* ---------- Filters (tours page) ---------- */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-bar button {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s ease;
}
.filter-bar button:hover { border-color: var(--blue); color: var(--blue); }
.filter-bar button.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ---------- Tour detail page ---------- */
.tour-hero {
  position: relative;
  height: 46vh;
  min-height: 340px;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.tour-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tour-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,30,45,0.25), rgba(8,25,38,0.85)); }
.tour-hero .inner { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; padding: 40px 24px; width: 100%; }
.tour-hero .breadcrumb { margin-top: 0; margin-bottom: 14px; }
.tour-hero h1 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); max-width: 760px; }

.tour-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 44px;
  align-items: start;
}

.quickfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}
.quickfacts .fact { text-align: center; }
.quickfacts .fact .icon { color: var(--blue); margin-bottom: 6px; }
.quickfacts .fact .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-muted); }
.quickfacts .fact .val { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); }

.content-block { margin-bottom: 40px; }
.content-block h2 {
  font-size: 1.4rem;
  color: var(--blue-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.content-block h2::before {
  content: "";
  width: 6px; height: 22px;
  background: var(--orange);
  border-radius: 4px;
  display: inline-block;
}
.content-block > p { color: var(--text-muted); }

.itinerary { display: grid; gap: 14px; }
.day-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
}
.day-card .day-num {
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 8px 0;
}
.day-card .day-num span { font-size: 1.35rem; display: block; }
.day-card h4 { font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; }
.day-card p { font-size: 0.9rem; color: var(--text-muted); }

.inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.inclusions .box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.inclusions h4 { margin-bottom: 12px; font-size: 0.95rem; }
.inclusions.included h4, .inc-title { color: var(--green-dark); }
.inclusions .box.excluded h4 { color: var(--orange-dark); }
.inclusions ul li { position: relative; padding-left: 24px; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 10px; }
.inclusions .box:not(.excluded) ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.inclusions .box.excluded ul li::before { content: "✕"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }

.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; background: var(--white); }
.accordion-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.accordion-head .chev { transition: transform 0.25s ease; color: var(--blue); }
.accordion-item.open .accordion-head .chev { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.open .accordion-body { max-height: 900px; }
.accordion-body-inner { padding: 0 20px 18px; font-size: 0.87rem; color: var(--text-muted); }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 96px;
}
.sidebar-card .price-line { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.sidebar-card .price-line .amount { font-size: 1.9rem; font-weight: 800; color: var(--blue-dark); }
.sidebar-card .price-line .unit { color: var(--text-muted); font-size: 0.85rem; }
.sidebar-card .note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.sidebar-card .mini-list { margin: 18px 0; display: grid; gap: 10px; }
.sidebar-card .mini-list li { display: flex; justify-content: space-between; font-size: 0.86rem; color: var(--text-muted); border-bottom: 1px dashed var(--border); padding-bottom: 8px; }
.sidebar-card .mini-list li b { color: var(--text-dark); }

.related-tours { margin-top: 16px; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { font-size: 0.76rem; color: var(--green-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.05rem; color: var(--blue-dark); margin-bottom: 10px; }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; flex: 1; }
.blog-card .read-more { font-weight: 700; color: var(--orange); font-size: 0.85rem; }

.blog-post-hero { }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body img.cover { border-radius: var(--radius); margin-bottom: 30px; aspect-ratio: 16/8; object-fit: cover; width: 100%; }
.post-body h2 { color: var(--blue-dark); font-size: 1.3rem; margin: 30px 0 14px; }
.post-body p { color: var(--text-muted); margin-bottom: 16px; }
.post-body ul { margin: 0 0 16px 0; }
.post-body ul li { color: var(--text-muted); padding-left: 22px; position: relative; margin-bottom: 8px; }
.post-body ul li::before { content: "—"; position: absolute; left: 0; color: var(--orange); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--green-dark), var(--green) 55%, var(--blue));
  color: var(--white);
  border-radius: var(--radius);
  padding: 50px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: 1.6rem; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.9); }

/* ---------- About page extras ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.value-card .icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text-dark); }
.value-card p { font-size: 0.88rem; color: var(--text-muted); }

.team-note {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  gap: 22px;
  align-items: center;
}
.team-note .icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; }
.team-note p { color: var(--green-dark); font-weight: 600; }

/* ---------- Contact table (About Us) ---------- */
.contact-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.contact-table { width: 100%; border-collapse: collapse; }
.contact-table tr { border-bottom: 1px solid var(--border); }
.contact-table tr:last-child { border-bottom: none; }
.contact-table td { padding: 20px 24px; vertical-align: middle; }
.contact-table .ct-method {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}
.contact-table .ct-method .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.contact-table .ct-detail { color: var(--text-muted); font-size: 0.92rem; }
.contact-table .ct-action { text-align: right; }

@media (max-width: 640px) {
  .contact-table td { padding: 16px; }
  .contact-table .ct-detail { display: none; }
}

/* ---------- Booking form ---------- */
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 34px;
  max-width: 860px;
  margin: 0 auto;
}
.booking-summary {
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 26px;
  display: grid;
  gap: 4px;
  font-size: 0.92rem;
}
.booking-summary b { color: var(--blue-dark); }
.booking-card h3 { color: var(--blue-dark); font-size: 1.05rem; margin: 26px 0 14px; }
.bk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bk-field { display: flex; flex-direction: column; gap: 6px; }
.bk-field.full { grid-column: 1 / -1; }
.bk-field[hidden] { display: none; }
.bk-field label { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
.bk-field input[type="text"], .bk-field input[type="email"], .bk-field input[type="tel"],
.bk-field input[type="date"], .bk-field select, .bk-field textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--off-white);
  color: var(--text-dark);
}
.bk-field textarea { min-height: 90px; resize: vertical; }
.bk-field input:focus, .bk-field select:focus, .bk-field textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.bk-check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--text-muted); }
.bk-check input { margin-top: 4px; width: 17px; height: 17px; flex-shrink: 0; }
.bk-check a { color: var(--blue); text-decoration: underline; }
.bk-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.bk-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 14px; }
.bk-message { border-radius: var(--radius-sm); padding: 18px 22px; margin-bottom: 20px; font-size: 0.92rem; }
.bk-message.success { background: var(--green-light); color: var(--green-dark); }
.bk-message.error { background: #FFF7ED; border: 1px solid #FED7AA; color: #9A3412; }
.bk-message a { text-decoration: underline; font-weight: 700; }
@media (max-width: 640px) { .bk-grid { grid-template-columns: 1fr; } .booking-card { padding: 22px; } }

/* ---------- Utilities ---------- */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { position: fixed; top: 78px; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 18px; box-shadow: var(--shadow); transform: translateY(-130%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-cta .btn span.txt { display: none; }
  .tours-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tour-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .tours-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quickfacts { grid-template-columns: repeat(2, 1fr); }
  .inclusions { grid-template-columns: 1fr; }
  .day-card { grid-template-columns: 70px 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .slide-arrow { display: none; }
}

/* ---------- Language switch (EN / RU / DE) ---------- */
.lang-switch {
  display: flex;
  border: 1.5px solid var(--blue);
  border-radius: 50px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  border: none;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.5px;
  padding: 7px 10px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn + .lang-btn { border-left: 1.5px solid var(--blue); }
.lang-btn:hover { background: var(--blue-light); }
.lang-btn.active { background: var(--blue); color: var(--white); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: sticky;
  top: 96px;
}
.contact-info-card .intro { padding: 26px 26px 6px; color: var(--text-muted); font-size: 0.92rem; }
.contact-info-list { padding: 10px 26px 20px; display: grid; gap: 4px; }

.ci-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.ci-row:last-child { border-bottom: none; }
.ci-row .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}
.ci-row .label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 3px; }
.ci-row .value { font-size: 0.96rem; color: var(--text-dark); font-weight: 600; line-height: 1.5; }
.ci-row .value a:hover { color: var(--blue); }
.ci-row .sub { font-size: 0.82rem; color: var(--text-muted); font-weight: 400; margin-top: 2px; }

.ci-quick-actions { display: flex; gap: 10px; padding: 0 26px 22px; flex-wrap: wrap; }
.ci-quick-actions .btn { flex: 1; justify-content: center; white-space: normal; }

.contact-map { width: 100%; aspect-ratio: 16/11; border: none; display: block; filter: saturate(0.85); }
.contact-map-wrap { border-top: 1px solid var(--border); }

.contact-social { display: flex; gap: 10px; padding: 4px 26px 26px; }
.contact-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-social a:hover { background: var(--orange); transform: translateY(-3px); }
.contact-social svg { width: 18px; height: 18px; fill: var(--blue-dark); }
.contact-social a:hover svg { fill: var(--white); }

.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 32px; }
.contact-form-card h3 { color: var(--blue-dark); font-size: 1.15rem; margin-bottom: 6px; }
.contact-form-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}
@media (max-width: 640px) {
  .ci-quick-actions { flex-direction: column; }
  .contact-form-card { padding: 22px; }
}

/* ---------- Gallery ---------- */
.gallery-grid {
  column-count: 3;
  column-gap: 18px;
}
.gallery-item {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  break-inside: avoid;
  border: none;
  padding: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; display: block; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 30, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox[hidden] { display: none; }
.lightbox-inner { max-width: 1000px; width: 100%; text-align: center; }
.lightbox-inner img { max-width: 100%; max-height: 74vh; margin: 0 auto; border-radius: var(--radius-sm); display: block; }
.lightbox-caption { color: rgba(255,255,255,0.9); margin-top: 16px; font-size: 0.95rem; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

@media (max-width: 900px) { .gallery-grid { column-count: 2; } }
@media (max-width: 560px) { .gallery-grid { column-count: 1; } .lightbox-nav { width: 40px; height: 40px; } }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-quote { color: var(--text-dark); font-size: 0.96rem; font-style: italic; margin-bottom: 14px; }
.review-who { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
