/* ==========================================================================
   Marokko Tur — global stylesheet
   ========================================================================== */

:root {
  --c-bg: #ffffff;
  --c-bg-soft: #faf8f5;
  --c-text: #1a1a1a;
  --c-muted: #6b6b6b;
  --c-border: #e6e6e6;
  --c-border-soft: #f0f0f0;
  --c-primary: #ff5533;
  --c-primary-dark: #cc3311;
  --c-accent: #0e7490;         /* deep teal */
  --c-gold: #d4a017;
  --c-rating: #f59e0b;
  --c-success: #16a34a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.10);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --header-h: 72px;
  --maxw: 1200px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--c-primary); }

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.5px;
  white-space: nowrap;
}
.logo-mark { color: var(--c-primary); }
.logo-tail { color: var(--c-text); }
.logo:hover { color: inherit; }

.search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
  max-width: 560px;
  transition: box-shadow .15s, border-color .15s;
}
.search:focus-within {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(255,85,51,.12);
  background: #fff;
}
.search svg { color: var(--c-muted); flex-shrink: 0; }
.search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 14px;
}
.search button {
  background: var(--c-primary);
  color: #fff;
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 14px;
  transition: background .15s;
}
.search button:hover { background: var(--c-primary-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.link-soft {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
}
.link-soft:hover { color: var(--c-primary); }

/* category strip */
.cat-nav {
  border-top: 1px solid var(--c-border-soft);
  background: #fff;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner {
  display: flex;
  gap: 8px;
  padding: 10px 20px;
  white-space: nowrap;
}
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  background: transparent;
  border: 1px solid transparent;
  transition: background .15s, border-color .15s;
}
.cat-link:hover {
  background: var(--c-bg-soft);
  border-color: var(--c-border);
  color: var(--c-text);
}
.cat-link.active {
  background: #fff;
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.cat-link svg { color: currentColor; }
.cat-link em { color: var(--c-muted); font-style: normal; font-weight: 400; }

/* ==========================================================================
   HERO (homepage)
   ========================================================================== */

.hero {
  position: relative;
  background: var(--c-bg-soft);
  padding: 56px 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(194,65,12,.08), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(14,116,144,.06), transparent 40%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.hero-content { color: var(--c-text); }
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin: 0 0 14px;
  line-height: 1.1;
}
.hero p {
  font-size: 18px;
  margin: 0 0 28px;
  color: var(--c-muted);
}
.hero-search-wrap {
  position: relative;
  max-width: 560px;
}
.hero-search {
  display: flex;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}

/* Live search dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  z-index: 300;
  overflow: hidden;
}
.sd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--c-border-soft);
  transition: background .1s;
}
.sd-item:last-child { border-bottom: none; }
.sd-item:hover { background: var(--c-bg-soft); }
.sd-item img {
  width: 52px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.sd-info { flex: 1; min-width: 0; }
.sd-title {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sd-meta { font-size: 12px; color: var(--c-muted); margin-top: 2px; }
.sd-cat {
  font-size: 11px;
  font-weight: 700;
  background: var(--c-bg-soft);
  color: var(--c-primary);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}
.sd-empty { padding: 18px; text-align: center; font-size: 14px; color: var(--c-muted); }
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 18px;
  font-size: 15px;
  color: var(--c-text);
}
.hero-search button {
  background: var(--c-primary);
  color: #fff;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 15px;
}
.hero-search button:hover { background: var(--c-primary-dark); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text);
}
.hero-stats span {
  font-size: 13px;
  color: var(--c-muted);
}

/* hero gallery — 1 tall left + 4 photos right (2×2) */
.hero-gallery {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10px;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hg-tall {
  overflow: hidden;
  background: var(--c-bg-soft);
}
.hg-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.hg-tall:hover img { transform: scale(1.04); }

.hg-squares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 100%;
}
.hg-sq {
  overflow: hidden;
  background: var(--c-bg-soft);
  border-radius: 8px;
  min-height: 0;
}
.hg-sq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.hg-sq:hover img { transform: scale(1.07); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
  padding: 32px 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}
.section-head h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -.3px;
}
.section-head p {
  margin: 0;
  color: var(--c-muted);
  font-size: 15px;
}
.section-head a.see-all {
  font-weight: 600;
  color: var(--c-primary);
  font-size: 14px;
  flex-shrink: 0;
}

/* ==========================================================================
   TABS
   ========================================================================== */

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--c-border);
  margin: 24px 0 0;
}
.tab-btn {
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.tab-btn:hover { color: var(--c-text); }
.tab-btn.active {
  color: var(--c-primary);
  border-bottom-color: var(--c-primary);
}

.tab-panel { display: none; padding: 28px 0 0; }
.tab-panel.active { display: block; }

/* overview */
.tab-panel h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
}
.tab-panel h2:not(:first-child) { margin-top: 28px; }
.tab-panel > p { color: #444; line-height: 1.75; margin: 0 0 6px; }

/* itinerary */
.itinerary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.itinerary-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 18px;
  padding-bottom: 28px;
  position: relative;
}
.itinerary-list li::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--c-border);
}
.itinerary-list li:last-child::before { display: none; }
.itin-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.itin-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.itin-time {
  font-size: 11px;
  color: var(--c-muted);
  text-align: center;
  font-weight: 600;
}
.itin-body { padding-top: 6px; }
.itin-body h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}
.itin-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* includes */
.inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.inc-heading {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.inc-heading::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.inc-yes::before { background: var(--c-success)
  url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>")
  center/13px no-repeat; }
.inc-no::before { background: #dc2626
  url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M19 6.4 17.6 5 12 10.6 6.4 5 5 6.4 10.6 12 5 17.6 6.4 19 12 13.4 17.6 19 19 17.6 13.4 12z'/></svg>")
  center/11px no-repeat; }
.inc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.inc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
.inc-list li .ico {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 1px;
}
.inc-list.yes .ico { background: rgba(22,163,74,.12); color: var(--c-success); }
.inc-list.no  .ico { background: rgba(220,38,38,.10); color: #dc2626; }

/* map */
.map-wrap { border-radius: var(--radius); overflow: hidden; }

@media (max-width: 640px) {
  .inc-grid { grid-template-columns: 1fr; gap: 24px; }
  .tab-btn { padding: 10px 14px; font-size: 14px; }
}

/* ==========================================================================
   PRODUCT CARD GRID
   ========================================================================== */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
@media (max-width: 640px) {
  .grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .grid .card {
    flex: 0 0 78vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  overflow: hidden;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-color: #c8c8c8;
}
.card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-bg-soft);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.card:hover .card-img img { transform: scale(1.04); }
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: rgba(0,0,0,.65);
}
.card-badge--tour     { background: #c2410c; }
.card-badge--trip     { background: #0369a1; }
.card-badge--activity { background: #15803d; }
.card-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
}
.card-body {
  padding: 14px 16px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-loc {
  font-size: 12px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 4px;
}
.card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--c-border);
}
.card-duration {
  font-size: 13px;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-price {
  font-size: 12px;
  color: var(--c-muted);
  text-align: right;
  line-height: 1.2;
}
.card-price strong {
  display: block;
  color: var(--c-primary);
  font-size: 18px;
  font-weight: 700;
}
.card-check {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
}

/* ==========================================================================
   LIST PAGE
   ========================================================================== */

.list-head {
  padding: 32px 0 16px;
}
.list-head h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -.3px;
}
.list-head .subtitle {
  color: var(--c-muted);
  margin: 0;
}
.list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 24px;
  flex-wrap: wrap;
}
.count { color: var(--c-muted); font-size: 14px; }
.sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.sort select {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}

/* ==========================================================================
   PRODUCT DETAIL — gallery (the screenshot layout)
   ========================================================================== */

.product-page { padding-bottom: 64px; }

.product-head {
  padding-top: 22px;
  padding-bottom: 12px;
}
.breadcrumb {
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 10px;
}
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb .sep { margin: 0 6px; }

.product-title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -.3px;
}
.product-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--c-muted);
}
.product-meta-row .stars { color: var(--c-rating); font-weight: 700; }
.product-meta-row .dot { color: var(--c-border); }
.badge-soft {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
  color: var(--c-text);
}

/* gallery — 1 big + 4 small (2x2) */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 24px;
}
.gallery .g-img {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--c-bg-soft);
}
.gallery .g-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s, filter .15s;
}
.gallery .g-img:hover img { transform: scale(1.03); filter: brightness(.96); }
.gallery .g-main {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.gallery .g-more {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.gallery .g-more img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .g-more::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.gallery .g-more span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* product layout */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.product-main h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 28px 0 10px;
}
.product-main h2:first-child { margin-top: 0; }
.product-main p { color: #333; line-height: 1.7; }
.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.highlight-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
}
.highlight-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--c-primary);
  background: var(--c-primary)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>")
    center/12px no-repeat;
}

.book-card {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.book-type {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 6px;
}
.book-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
}
.book-price .from { color: var(--c-muted); font-size: 14px; }
.book-price strong { font-size: 30px; font-weight: 800; }

/* participant counters */
.participants {
  background: var(--c-bg-soft);
  border-radius: var(--radius-sm);
  padding: 4px 0;
  margin-bottom: 16px;
}
.participant-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
}
.participant-row + .participant-row {
  border-top: 1px solid var(--c-border-soft);
}
.p-info { display: flex; align-items: baseline; gap: 5px; }
.p-label { font-size: 14px; font-weight: 600; }
.p-sub { font-size: 13px; color: var(--c-muted); }
.counter {
  display: flex;
  align-items: center;
  gap: 14px;
}
.counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  background: #fff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-text);
  transition: border-color .15s, background .15s;
}
.counter-btn:hover:not(:disabled) {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.counter-btn:disabled { opacity: .35; cursor: not-allowed; }
.counter-val { font-size: 16px; font-weight: 700; min-width: 18px; text-align: center; }

.book-row { margin-bottom: 16px; }
.book-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.book-row input {
  width: 100%;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  transition: border-color .15s;
}
.book-row input:focus { outline: none; border-color: var(--c-primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .1s;
  text-decoration: none;
}
.btn-primary {
  background: var(--c-primary);
  color: #fff;
}
.btn-primary:hover { background: #b91c1c; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-book {
  width: 100%;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  border: none;
}
.btn-book:hover { background: var(--c-primary-dark); transform: translateY(-1px); }
.btn-book:active { transform: translateY(0); }
.btn-book-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; }
.btn-book-text strong { font-size: 16px; font-weight: 700; }
.btn-book-text em { font-size: 12px; font-style: normal; opacity: .85; }

.book-trust {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 5px;
  text-align: center;
}
.book-trust li {
  font-size: 12px;
  color: var(--c-muted);
}

/* ==========================================================================
   PRODUCT DETAIL — cars2-style redesign
   ========================================================================== */

/* Category pill */
.detail-cat-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* Spec chips row */
.detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.detail-spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
}
.detail-spec-chip svg { color: var(--c-primary); flex-shrink: 0; }

/* Description accent box */
.detail-desc {
  padding: 16px 20px;
  background: #f9fafc;
  border-left: 3px solid var(--c-primary);
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 28px;
}

/* Generic section blocks */
.detail-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
}
.detail-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 20px;
}
.detail-section-title svg { color: var(--c-primary); flex-shrink: 0; }

/* Features / highlights box */
.detail-features-box {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 20px;
}
.detail-features-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--c-primary);
  margin: 0 0 14px;
}
.detail-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.detail-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #334;
  font-weight: 500;
}

/* Includes / excludes two-column */
.detail-inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}
.detail-inc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}
.detail-inc-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #334;
}

/* Booking card — new design */
.bk-price-block { margin-bottom: 14px; }
.bk-price-label { font-size: 12px; font-weight: 600; color: var(--c-muted); display: block; margin-bottom: 2px; }
.bk-price-value { font-size: 28px; font-weight: 900; color: var(--c-primary); }
.bk-price-value strong { font-size: inherit; font-weight: inherit; }

.bk-free-cancel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #edfbf3;
  color: #16a34a;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.bk-trust-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.bk-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #667;
  background: var(--c-bg-soft);
  padding: 5px 10px;
  border-radius: 999px;
}
.bk-trust-row svg { color: var(--c-primary); }

.bk-book-btn {
  width: 100%;
  background: var(--c-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  margin-top: 4px;
}
.bk-book-btn:hover { background: var(--c-primary-dark); transform: translateY(-1px); }
.bk-book-btn:active { transform: translateY(0); }
.bk-submit-btn { background: var(--c-primary); margin-top: 6px; }
.bk-submit-btn:hover { background: #b91c1c; }

/* Step 2 form */
.bk-step-summary {
  background: var(--c-bg-soft);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 16px;
}
.bk-field { margin-bottom: 11px; }
.bk-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
}
.bk-field label .req { color: var(--c-primary); }
.bk-field label .opt { font-weight: 400; color: var(--c-muted); }
.bk-field input,
.bk-field textarea {
  width: 100%;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  font-size: 14px;
  color: var(--c-text);
  background: #fafafa;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
  font-family: inherit;
}
.bk-field input:focus,
.bk-field textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,85,51,.10);
}
.bk-field input.error,
.bk-field textarea.error { border-color: #dc2626; }
.bk-field textarea { resize: vertical; }
.field-err {
  display: block;
  font-size: 11px;
  color: #dc2626;
  margin-top: 3px;
  min-height: 14px;
}
.bk-back-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  font-size: 13px;
  color: var(--c-muted);
  cursor: pointer;
  padding: 10px;
  margin-top: 4px;
  text-decoration: underline;
  text-align: center;
}
.bk-back-btn:hover { color: var(--c-text); }

/* Booking success state */
.bk-success-wrap {
  text-align: center;
  padding: 28px 12px;
}
.bk-success-wrap svg { color: #16a34a; margin-bottom: 12px; }
.bk-success-wrap h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.bk-success-wrap p { font-size: 14px; color: var(--c-muted); line-height: 1.5; }

/* Mobile sticky bar */
.sticky-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: #fff;
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 16px rgba(0,0,0,.1);
  z-index: 200;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-book-bar.hidden { display: none !important; }
.sticky-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  min-width: 0;
}
.sticky-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-duration {
  font-size: 12px;
  color: var(--c-muted);
}
.bk-book-btn-sm {
  background: var(--c-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

/* ==========================================================================
   BOOKING MODAL
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px);
  transition: transform .2s;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-text);
  border: none;
  transition: background .15s;
}
.modal-close:hover { background: var(--c-border); }

.modal-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.modal-head h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 4px;
}
.modal-head p {
  margin: 0;
  font-size: 14px;
  color: var(--c-muted);
}

.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-row label span[aria-hidden] { color: var(--c-primary); margin-left: 2px; }
.optional { font-weight: 400; color: var(--c-muted); }
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  transition: border-color .15s;
  resize: vertical;
  box-sizing: border-box;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(194,65,12,.10);
}
.form-row input.error,
.form-row textarea.error { border-color: #dc2626; }
.field-err {
  display: block;
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
  min-height: 16px;
}

.btn-modal-submit {
  width: 100%;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  margin-top: 4px;
  transition: background .15s, transform .1s;
}
.btn-modal-submit:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-modal-submit:active { transform: translateY(0); }

/* ==========================================================================
   HOME GALLERY SLIDER
   ========================================================================== */

.gallery-slider-section {
  padding: 32px 0;
  background: var(--c-bg-soft);
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-primary);
  margin: 0 0 12px;
}
.gallery-title {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -.3px;
}
.gallery-sub { color: var(--c-muted); margin: 0; font-size: 16px; }

.gslider-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.gslider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 0;
  scrollbar-width: none;
}
.gslider-track::-webkit-scrollbar { display: none; }

.gslider-item {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.gslider-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.gslider-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.gslider-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  font-size: 28px;
  line-height: 1;
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
  user-select: none;
}
.gslider-btn:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.gslider-btn:disabled { opacity: .3; cursor: default; pointer-events: none; }
.gslider-prev { left: 14px; }
.gslider-next { right: 14px; }

@media (max-width: 640px) {
  .gslider-item { flex: 0 0 180px; }
  .gslider-item img { height: 240px; }
  .gallery-title { font-size: 26px; }
  .gslider-track { padding: 12px 0; }
}

/* ==========================================================================
   BLOG
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.blog-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-bg-soft);
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 999px;
}
.blog-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.blog-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
}
.blog-excerpt {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.65;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--c-muted);
  border-top: 1px solid var(--c-border-soft);
  padding-top: 12px;
}
.blog-read { font-weight: 600; }

@media (max-width: 960px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   BLOG POST PAGE
   ========================================================================== */

.post-hero {
  height: 420px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-bg-soft);
}
.post-wrap {
  max-width: 780px;
  padding-top: 40px;
  padding-bottom: 80px;
}
.post-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
}
.post-excerpt {
  font-size: 17px;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0 0 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
}
.post-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-text);
}
.post-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--c-text);
}
.post-content p { margin: 0 0 18px; }
.post-content ul, .post-content ol {
  margin: 0 0 18px;
  padding-left: 24px;
}
.post-content li { margin-bottom: 8px; }
.post-content strong { font-weight: 700; }
.post-content em { font-style: italic; color: var(--c-muted); }
@media (max-width: 640px) {
  .post-hero { height: 240px; }
  .post-wrap { padding-top: 24px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-section { background: var(--c-bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  align-items: start;
}
.faq-col { display: grid; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item:first-child { border-top: 1px solid var(--c-border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.4;
  transition: color .15s;
}
.faq-q:hover { color: var(--c-primary); }
.faq-icon {
  flex-shrink: 0;
  color: var(--c-muted);
  transition: transform .2s;
}
.faq-item.open .faq-q { color: var(--c-primary); }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--c-primary); }
.faq-a {
  padding: 0 4px 18px;
  animation: fadeIn .15s ease;
}
.faq-a p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .faq-col:last-child .faq-item:first-child { border-top: none; }
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */

.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.lb-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.lb-img-wrap {
  max-width: 90vw;
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  transition: opacity .18s;
}
.lb-img-wrap img.fading { opacity: 0; }

.lb-close {
  position: fixed;
  top: 16px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background .15s;
  z-index: 1;
}
.lb-close:hover { background: rgba(255,255,255,.25); }

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background .15s, opacity .15s;
  z-index: 1;
}
.lb-arrow:hover { background: rgba(255,255,255,.28); }
.lb-arrow:disabled { opacity: .2; cursor: default; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

.lb-counter {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  background: rgba(0,0,0,.4);
  padding: 4px 14px;
  border-radius: 999px;
}

/* make gallery images show a zoom cursor */
.g-img { cursor: zoom-in; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #1a1a1a;
  color: #d6d6d6;
  margin-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 20px 36px;
}
.foot-col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 16px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot-col a { color: #b8b8b8; font-size: 14px; }
.foot-col a:hover { color: #fff; }
.foot-tag { color: #b8b8b8; font-size: 14px; max-width: 380px; }
.logo-foot .logo-mark { color: var(--c-gold); }
.logo-foot .logo-tail { color: #fff; }
.foot-bottom {
  border-top: 1px solid #2c2c2c;
  padding: 18px 0;
  font-size: 13px;
  color: #888;
}

/* ==========================================================================
   STATES
   ========================================================================== */

.empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--c-muted);
}
.skeleton-card {
  background: var(--c-bg-soft);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 960px) {
  .header-inner { gap: 12px; }
  .header-actions { display: none; }
  .hero { padding: 40px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 36px; }
  .hero-gallery { height: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .book-card { position: static; }
  .gallery { height: 380px; }
  .detail-inc-grid { grid-template-columns: 1fr; }
  .detail-features-list { grid-template-columns: 1fr; }
  .sticky-book-bar { display: flex; }
  .product-page { padding-bottom: 80px; }
}
@media (max-width: 640px) {
  .search { display: none; }
  .header-inner { justify-content: space-between; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-gallery { grid-template-columns: 1fr; }
  .hg-tall { min-height: 220px; }
  .hg-squares { grid-template-columns: repeat(4, 1fr); }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 100px 100px;
    height: auto;
  }
  .gallery .g-main { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery .g-img:nth-child(n+6) { display: none; }
  .product-title { font-size: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 28px; }
  .section { padding: 24px 0; }
}

/* ==========================================================================
   STATIC PAGES (about, contact, help, terms, privacy, post)
   ========================================================================== */

.static-hero {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  padding: 60px 0 48px;
  text-align: center;
}
.static-hero h1 { font-size: 36px; font-weight: 700; margin: 0 0 10px; }
.static-hero p  { font-size: 17px; opacity: .88; margin: 0; }

.static-wrap { padding: 56px 0 72px; max-width: 860px; }

.static-section { margin-bottom: 48px; }
.static-section h2 { font-size: 22px; font-weight: 700; margin: 0 0 14px; color: var(--c-text); }
.static-section p, .static-section li { font-size: 15px; line-height: 1.75; color: var(--c-muted); margin: 0 0 10px; }
.static-section ul { padding-left: 20px; }
.static-section li { margin-bottom: 6px; }

.static-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.static-value-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}
.static-value-card .svc-icon { font-size: 28px; margin-bottom: 10px; }
.static-value-card h3 { font-size: 15px; font-weight: 700; margin: 0 0 8px; }
.static-value-card p  { font-size: 14px; color: var(--c-muted); margin: 0; }

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 12px;
  transition: box-shadow .15s;
}
.contact-channel:hover { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.cc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-channel > div:last-child { display: flex; flex-direction: column; gap: 2px; }
.contact-channel strong { font-size: 14px; font-weight: 600; }
.contact-channel span   { font-size: 13px; color: var(--c-muted); }
.contact-hours { margin-top: 24px; }
.contact-hours h3 { font-size: 15px; font-weight: 700; margin: 0 0 10px; }
.contact-hours ul { padding-left: 18px; margin: 0; }
.contact-hours li { font-size: 13px; color: var(--c-muted); line-height: 1.7; }

/* Help page */
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.help-section h2 { font-size: 20px; font-weight: 700; margin: 0 0 18px; padding-bottom: 10px; border-bottom: 2px solid var(--c-primary); }
.help-qa { margin-bottom: 20px; }
.help-qa h3 { font-size: 15px; font-weight: 600; margin: 0 0 6px; color: var(--c-text); }
.help-qa p  { font-size: 14px; line-height: 1.7; color: var(--c-muted); margin: 0; }

/* Legal pages (terms, privacy) */
.legal-content h2 { font-size: 18px; font-weight: 700; margin: 32px 0 10px; color: var(--c-text); }
.legal-content p, .legal-content li { font-size: 15px; line-height: 1.75; color: var(--c-muted); margin: 0 0 10px; }
.legal-content ul { padding-left: 20px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--c-primary); }

/* Blog post page */
.post-hero {
  height: 340px;
  background: center/cover no-repeat;
  position: relative;
}
.post-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.18) 0%, rgba(0,0,0,.55) 100%);
}
.post-wrap { max-width: 760px; padding: 48px 0 72px; }
.post-breadcrumb { font-size: 13px; color: var(--c-muted); margin-bottom: 16px; }
.post-breadcrumb a { color: var(--c-primary); text-decoration: none; }
.post-title { font-size: 32px; font-weight: 800; line-height: 1.25; margin: 12px 0 16px; }
.post-excerpt { font-size: 17px; color: var(--c-muted); line-height: 1.65; margin-bottom: 32px; border-left: 3px solid var(--c-primary); padding-left: 16px; }
.post-content h2 { font-size: 20px; font-weight: 700; margin: 32px 0 10px; }
.post-content p  { font-size: 15px; line-height: 1.8; color: var(--c-muted); margin-bottom: 14px; }
.post-content ul, .post-content ol { padding-left: 20px; margin-bottom: 14px; }
.post-content li { font-size: 15px; line-height: 1.7; color: var(--c-muted); margin-bottom: 6px; }
.post-content strong { color: var(--c-text); }

/* Responsive static pages */
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .static-grid-3 { grid-template-columns: 1fr 1fr; }
  .help-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .static-hero h1 { font-size: 26px; }
  .static-grid-3 { grid-template-columns: 1fr; }
  .post-title { font-size: 24px; }
}

/* ==========================================================================
   Language switcher
   ========================================================================== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: 1px solid transparent;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  color: var(--c-muted);
  cursor: pointer;
  border-radius: 6px;
  transition: color .15s, background .15s, border-color .15s;
  line-height: 1;
}
.lang-btn:hover {
  color: var(--c-primary);
  background: rgba(255,85,51,.07);
}
.lang-btn.active {
  color: var(--c-primary);
  border-color: var(--c-primary);
  background: rgba(255,85,51,.08);
}
.lang-sep {
  color: var(--c-border);
  font-size: 11px;
  line-height: 1;
  user-select: none;
}
