/* ── BASE (from site-head.ejs) ── */
:root {
  --brand:       #ff5635;
  --brand-dark:  #e04020;
  --brand-light: #ff7a5f;
  --navy:        #192a45;
  --navy-mid:    #243a5e;
  --slate:       #3d5170;
  --slate-light: #6b7fa0;
  --muted:       #9aabc0;
  --border:      #e4eaf2;
  --bg:          #f7f9fc;
  --bg2:         #eef2f8;
  --white:       #ffffff;
  --gold:        #f59e0b;
  --card-shadow:       0 2px 20px rgba(25,42,69,0.07);
  --card-shadow-hover: 0 10px 40px rgba(25,42,69,0.14);
  --radius:    16px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.68;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── FOOTER ── */
.site-footer {
  background: #1B293F;
  color: #CBD5E1;
  padding: 54px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.35fr 1fr 1.15fr;
  gap: 48px;
  padding-bottom: 40px;
}
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col--brand { grid-column: auto; }
}

.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-img  { width: 76px; height: 76px; object-fit: contain; background-color: white; border-radius: 50px; padding: 2px;}
.footer-brand-name { font-size: 19px; font-weight: 800; color: #fff; line-height: 1.2;}
.footer-license    { font-size: 10px; color: rgba(255,255,255,0.36); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; font-style: normal; }
.footer-ci { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.6; color: #94A3B8; }
.footer-ci-icon { flex-shrink: 0; margin-top: 2px; color: #ff5635; }
.footer-ci-icon svg { width: 14px; height: 14px; fill: currentColor; display: block; }
.footer-ci a { color: #94A3B8; transition: color 0.2s; }
.footer-ci a:hover { color: #fff; }

.footer-tursab { display: inline-block; }
.footer-tursab-img { height: 42px; width: auto; object-fit: contain; opacity: 0.78; transition: opacity 0.25s; display: block; }
.footer-tursab:hover .footer-tursab-img { opacity: 1; }

.footer-heading {
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: #fff; margin-bottom: 16px;
}

.footer-link-list { list-style: none; display: flex; flex-direction: column; gap: 11px; line-height: 1.4; }
.footer-link-list a { font-size: 14px; color: #94A3B8; display: inline-block; transition: color 0.22s, padding-left 0.22s; }
.footer-link-list a:hover { color: #fff; padding-left: 4px; }

.footer-social-grid { display: grid; grid-template-columns: repeat(2, 42px); gap: 10px; }
.social-circle {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: #94A3B8;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.social-circle:hover { background: #ff5635; border-color: #ff5635; color: #fff; transform: translateY(-2px); }
.social-circle svg { width: 16px; height: 16px; fill: currentColor; display: block; }

.footer-payment-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.footer-payment-row  { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-pay-logo { height: 26px; width: auto; object-fit: contain; opacity: 0.8; filter: brightness(1.1); transition: opacity 0.2s; padding: 2px; border-radius: 2px; background-color: white;}
.footer-pay-logo:hover { opacity: 1; }

.footer-ssl-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: #4ADE80;
  letter-spacing: 0.025em;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 20px; padding: 5px 11px;
}
.footer-ssl-badge svg { width: 11px; height: 11px; fill: currentColor; flex-shrink: 0; }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 0; }
.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 0;
  font-size: 12px; color: rgba(255,255,255,0.28);
  letter-spacing: 0.01em; text-align: center;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 var(--border);
}
.header-topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-topbar a { color: rgba(255,255,255,0.85); }
.topbar-social { display: flex; gap: 12px; align-items: center; }
.topbar-social a { display: flex; align-items: center; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.topbar-social a:hover { color: #fff; }
.topbar-social svg { width: 13px; height: 13px; fill: currentColor; display: block; }
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px;
  max-width: 1200px;
  margin: 0 auto;
  height: 82px;
}
.header-logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo-group img.logo-main   { height: 70px; width: auto; transition: transform 0.6s; }
.header-logo-group img.logo-main:hover { transform: scale(1.03) rotate(4deg); }
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: 8px;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--brand); background: rgba(255,86,53,0.06); }
.btn-nav-book {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 9px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-nav-book:hover { background: var(--brand); color: #fff; transform: translateY(-1px); }

/* ── HOME ── */
/* Slideshow */
.slideshow {
  position: relative;
  width: 100%;
  height: 310px;
  overflow: hidden;
  background: var(--navy);
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.26s ease;
  z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(25,42,69,0.65) 40%, rgba(25,42,69,0.2) 100%);
  display: flex;
  align-items: center;
}
.slide-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}
.slide-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 10px;
}
.slide-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(31px, 4.1vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.slide-subtitle {
  font-size: clamp(17px, 1.8vw, 20px);
  color: rgba(255,255,255,0.78);
  line-height: 1.72;
  margin-bottom: 20px;
}
.slide-btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 24px;
  border-radius: 9px;
  transition: background 0.2s, transform 0.15s;
}
.slide-btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: none;
  color: #fff;
  width: 40px; height: 40px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.slide-arrow:hover { background: rgba(255,255,255,0.28); }
.slide-arrow.prev { left: 0; border-radius: 0 50% 50% 0; }
.slide-arrow.next { right: 0; border-radius: 50% 0 0 50%; }
.slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 7px;
}
.slide-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.slide-dots .dot.active { background: #fff; transform: scale(1.25); }
.slide-tursab { position: absolute; top: 20px; left: 0; right: 0; z-index: 5; pointer-events: none; }
.slide-tursab-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: flex-end; }
.slide-tursab-inner a { pointer-events: auto; display: flex; align-items: center; }
.tursab-slide-img { height: 38px; width: auto; opacity: 0.88; transition: opacity 0.2s; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35)); }
.tursab-slide-img:hover { opacity: 1; }
@media (max-width: 600px) {
  .slide-content { padding: 0 28px; }
  .slide-arrow { width: 32px; height: 32px; font-size: 14px; }
}

/* Tours section */
#tours { background: var(--bg); padding: 66px 0; }
.section-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Tour card */
.tour-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.tour-card:hover { transform: translateY(-2px); box-shadow: var(--card-shadow-hover); }
.tour-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.tour-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.425s ease;
}
.tour-card:hover .tour-card-img { transform: scale(1.08); }
.tour-type-badge {
  position: absolute;
  top: 12px; left: 12px;
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.tour-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 11px;
}
.tour-card-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-rating { display: flex; align-items: center; gap: 6px; }
.stars { display: flex; gap: 1px; }
.star { width: 13px; height: 13px; fill: var(--gold); }
.rating-score { font-size: 13px; font-weight: 700; color: var(--navy); }
.rating-count { font-size: 12px; color: var(--slate-light); }
.tour-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tour-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
}
.tc0 { background: #ffe8e6; color: #b73e2e; }
.tc1 { background: #e8f4fd; color: #1a5276; }
.tc2 { background: #e9f7ef; color: #1e6b3e; }
.tc3 { background: #fef9e7; color: #7d6608; }
.tc4 { background: #f4ecf7; color: #5b2c6f; }
.tc5 { background: #fef0e7; color: #784212; }
.tour-meta { display: flex; flex-direction: column; gap: 6px; }
.tour-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.4;
}
.meta-icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tour-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.tour-price-label { display: block; font-size: 10px; font-weight: 500; color: var(--slate-light); letter-spacing: 0.04em; margin-bottom: 2px; }
.tour-price { font-size: 20px; font-weight: 800; color: var(--navy); }
.btn-book {
  background: var(--brand);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  border-radius: 9px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-book:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* Why Us */
#why-us { background: #fff; padding: 80px 0 96px; }
.why-header { text-align: center; margin-bottom: 8px; }
.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.why-section:last-child { border-bottom: none; padding-bottom: 0; }
.why-visual { }
.why-section.img-first .why-visual { order: -1; }
.why-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.why-heading {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.why-body {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 22px;
}
.why-name { font-weight: 700; color: var(--navy); font-size: 15px; margin-top: 4px; }
.why-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.why-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--slate); }
.bullet-dot {
  width: 20px; height: 20px;
  background: rgba(255,86,53,0.1);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.bullet-dot::after { content: ''; width: 7px; height: 7px; background: var(--brand); border-radius: 50%; }
.why-steps { display: flex; flex-direction: column; gap: 24px; }
.why-step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.step-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-text p  { font-size: 14px; color: var(--slate); line-height: 1.65; }
.why-img-single {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(25,42,69,0.12);
}
.why-img-single img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.why-img-single:hover img { transform: scale(1.04); }
.why-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 420px;
}
.why-collage > div { border-radius: 12px; overflow: hidden; }
.why-collage > div:first-child { grid-row: 1 / 3; }
.why-collage img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.why-collage > div:hover img { transform: scale(1.05); }

/* Testimonials */
#testimonials {
  background: var(--bg2);
  padding: 80px 0;
  text-align: center;
}
.testimonials-coming { margin-top: 16px; color: var(--slate-light); font-size: 14px; font-style: italic; }

/* Home responsive */
@media (max-width: 960px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .why-section,
  .why-section.img-first { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
  .why-section.img-first .why-visual { order: 0; }
  .why-collage { height: 260px; }
}
@media (max-width: 600px) {
  .tours-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-topbar { display: none; }
  .header-main   { padding: 0 16px; height: 60px; }
  .header-nav    { display: none; }
}
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ── TOURS PAGE ── */
.tours-hero {
  background: var(--navy);
  padding: 36px 0 32px;
}
.tours-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.tours-hero-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-light);
  margin-bottom: 12px;
}
.tours-hero-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.tours-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.7;
}
.tours-page-section {
  background: var(--bg);
  padding: 56px 0 96px;
}
.tour-card-desc {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 960px) { .tours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tours-grid { grid-template-columns: 1fr; } }

/* ── TOUR DETAIL ── */
.tour-page { padding: 48px 0 80px; }
.tour-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
}
.tour-content { display: flex; flex-direction: column; gap: 32px; }
.tour-meta-header { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.tour-title-main {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.tour-rating-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.stars { display: flex; gap: 2px; }
.star { width: 16px; height: 16px; fill: var(--gold); }
.rating-score { font-size: 14px; font-weight: 700; color: var(--navy); }
.rating-sep   { color: var(--muted); }
.rating-count { font-size: 13px; color: var(--slate-light); }

/* Gallery */
.gallery-wrap {
  height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 3fr 1.3fr 1.3fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 100%;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg2);
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25,42,69,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.gallery-single { height: 350px; border-radius: var(--radius); overflow: hidden; }
.gallery-single img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,15,25,0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-close:hover { color: #fff; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 18px;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 12px; }

/* Tabs */
.tour-tabs-wrap {}
.tab-buttons {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}
.tab-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-light);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.tab-btn:hover   { color: var(--navy); }
.tab-btn.active  { color: var(--brand); border-bottom-color: var(--brand); }
.tab-panel       { display: none; }
.tab-panel.active { display: block; }
.tab-panel .ql-content {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.8;
}
.tab-panel .ql-content p    { margin-bottom: 12px; }
.tab-panel .ql-content ul,
.tab-panel .ql-content ol   { padding-left: 22px; margin-bottom: 12px; }
.tab-panel .ql-content li   { margin-bottom: 6px; }
.tab-panel .ql-content h2,
.tab-panel .ql-content h3   { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; color: var(--navy); margin-bottom: 10px; margin-top: 18px; }
.tab-empty { color: var(--muted); font-size: 14px; font-style: italic; }

/* Reviews */
.reviews-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.reviews-card-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.review-item:last-child { border-bottom: none; padding-bottom: 0; }
.review-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.reviewer-info { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--slate);
  flex-shrink: 0;
}
.reviewer-name  { font-size: 14px; font-weight: 700; color: var(--navy); }
.reviewer-date  { font-size: 12px; color: var(--slate-light); }
.review-stars   { display: flex; gap: 2px; }
.review-star    { width: 13px; height: 13px; fill: var(--gold); }
.review-text    { font-size: 14px; color: var(--slate); line-height: 1.7; }
.btn-load-more {
  width: 100%;
  margin-top: 20px;
  padding: 11px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-load-more:hover { background: var(--bg); color: var(--navy); }

/* Booking card */
.tour-sidebar { position: sticky; top: 88px; }
.booking-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: visible;
}
.booking-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 2px; }
.booking-price-label { font-size: 13px; font-weight: 500; color: var(--slate-light); }
.booking-price {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}
.booking-price-sub { font-size: 12px; color: var(--slate-light); margin-bottom: 22px; }
.booking-divider   { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.booking-field { margin-bottom: 0; }
.booking-field-label { font-size: 11.5px; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: 0.06em; }
.booking-inline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.booking-inline-row:last-of-type { border-bottom: none; }
.guest-counter-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.guest-counter-row .guest-btn {
  width: 36px;
  background: var(--bg);
  border: none;
  border-radius: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.guest-counter-row .guest-btn:hover { background: var(--bg2); }
.guest-count-val {
  width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
}
.guest-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 11px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.date-input-wrap {  }
.date-display-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-light);
  cursor: pointer;
  transition: border-color 0.2s;
  text-align: left;
}
.date-display-btn.has-value { color: var(--navy); }
.date-display-btn:hover     { border-color: var(--brand); }
.date-display-btn svg { width: 16px; height: 16px; stroke: var(--slate-light); flex-shrink: 0; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.calendar-popup {
  display: none;
  position: absolute;
  right: calc(100% + 10px);
  top: 0;
  z-index: 200;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 48px rgba(25,42,69,0.18);
  padding: 20px;
  width: 300px;
  border: 1px solid var(--border);
}
.calendar-popup.open { display: block; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-month-label { font-size: 15px; font-weight: 700; color: var(--navy); }
.cal-nav-btn { width: 30px; height: 30px; border: none; background: var(--bg); border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--slate); transition: background 0.15s; font-size: 14px; }
.cal-nav-btn:hover { background: var(--bg2); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 6px; }
.cal-weekday { text-align: center; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; padding: 4px 0; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  border-radius: 8px;
  cursor: default;
  color: var(--muted);
  font-weight: 500;
}
.cal-day.available { color: var(--navy); cursor: pointer; font-weight: 600; }
.cal-day.available:hover { background: rgba(255,86,53,0.1); color: var(--brand); }
.cal-day.selected  { background: var(--brand); color: #fff !important; }
.cal-day.today     { border: 1px solid var(--border); }
.cal-day.empty     { }
.time-selector { margin-top: 0; display: none; border-top: 1px solid var(--border); padding-top: 4px; }
.time-slots { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 6px; margin-bottom: 12px; }
.time-slot {
  padding: 8px 14px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.time-slot:hover   { border-color: var(--brand); color: var(--brand); }
.time-slot.active  { border-color: var(--brand); background: var(--brand); color: #fff; }
.btn-book-now {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--brand);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 18px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255,86,53,0.3);
}
.btn-book-now:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,86,53,0.4); }
.trust-badges {
  display: flex;
  justify-content: space-around;
  gap: 4px;
  margin-top: 14px;
  padding: 10px 8px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  color: var(--slate);
  text-align: center;
  line-height: 1.3;
}
.trust-badge-icon { font-size: 18px; line-height: 1; }

/* Tour detail responsive */
@media (max-width: 960px) {
  .tour-layout { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .calendar-popup { right: auto; left: 0;}
}
@media (max-width: 768px) {
  .header-topbar { display: none; padding: 1px 0;}
  .header-main   { padding: 0 16px; height: 60px; }
  .header-nav    { display: none; }
  .gallery-grid  { grid-template-columns: 2fr 1fr; }
  .gallery-item:nth-child(n+3) { display: none; }
}

/* ── TOUR RESERVE ── */
.reserve-hero {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.reserve-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; color: #fff; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.reserve-hero-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -0.015em;
}
.progress-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.progress-inner {
  max-width: 700px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.step {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.step.active  { color: var(--brand); }
.step.done    { color: var(--navy); }
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  color: var(--muted); background: #fff;
  flex-shrink: 0;
}
.step.active .step-num  { border-color: var(--brand); color: var(--brand); }
.step.done   .step-num  { border-color: var(--navy); background: var(--navy); color: #fff; }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 8px; max-width: 60px; }
.step-line.done { background: var(--navy); }
.reserve-page { padding: 48px 0 80px; }
.reserve-layout {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-card-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group  { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-label  { display: block; font-size: 12.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.form-label span.req { color: var(--brand); margin-left: 2px; }
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--navy);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255,86,53,0.1); }
.form-input.error { border-color: #e74c3c; }
textarea.form-input { resize: vertical; min-height: 90px; }
.country-hint { font-size: 11.5px; color: var(--slate-light); margin-top: 6px; display: flex; align-items: center; gap: 5px; min-height: 18px; }
/* intl-tel-input overrides */
.iti { width: 100%; }
.iti__flag-container { top: 50%; transform: translateY(-50%); }
.policy-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  margin-bottom: 20px;
}
.policy-title { font-size: 11px; font-weight: 700; color: var(--navy); margin-bottom: 10px; display: flex; align-items: center; gap: 7px; }
.policy-list  { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.policy-list li { font-size: 11px; color: var(--slate); display: flex; gap: 8px; line-height: 1.1; }
.policy-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex-shrink: 0; margin-top: 5px; }
.agree-row  { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 5px; }
.agree-row input[type=checkbox] { width: 15px; height: 15px; margin-top: 2px; accent-color: #ab6a5d; flex-shrink: 0; cursor: pointer; }
.agree-row label { font-size: 12px; color: var(--slate); line-height: 1.55; cursor: pointer; }
.form-alert {
  background: #fdf0ef;
  border: 1px solid #f5c6c2;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 13.5px;
  color: #c0392b;
  display: flex; align-items: flex-start; gap: 10px;
}
.btn-reserve {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255,86,53,0.3);
}
.btn-reserve:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,86,53,0.4); }
.summary-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--card-shadow);
  position: sticky;
  top: 88px;
}
.summary-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 10px; margin-bottom: 16px; }
.summary-tour-name { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.35; }
.summary-row { display: flex; justify-content: space-between; gap: 8px; font-size: 13px; margin-bottom: 9px; }
.summary-row .lbl { color: var(--slate-light); }
.summary-row .val { font-weight: 600; color: var(--navy); text-align: right; }
.summary-row-stepper { align-items: center; margin-bottom: 12px; }
.summary-stepper { display: flex; align-items: center; gap: 8px; }
.summary-stepper .guest-btn { width: 28px; height: 28px; font-size: 15px; border-width: 1.5px; }
.summary-stepper-count { font-size: 15px; font-weight: 700; color: var(--navy); min-width: 22px; text-align: center; }
.summary-divider { border: none; border-top: 1px solid var(--border); margin: 14px 0; }
.summary-total-row { display: flex; justify-content: space-between; align-items: baseline; }
.summary-total-lbl { font-size: 13px; font-weight: 700; color: var(--navy); }
.summary-total-val { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 22px; font-weight: 700; color: var(--brand); }

/* Tour reserve responsive */
@media (max-width: 760px) {
  .reserve-layout { grid-template-columns: 1fr; }
  .summary-card   { position: static; }
  .form-row       { grid-template-columns: 1fr; }
  .header-topbar  { display: none; }
  .header-main    { padding: 0 16px; height: 60px; }
  .header-nav     { display: none; }
}

/* ── PAYMENT ── */
.booking-strip { display: flex; align-items: center; gap: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; margin-bottom: 24px; }
.booking-strip-img { width: 72px; height: 54px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.booking-strip-info { flex: 1; min-width: 0; }
.booking-strip-name { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.booking-strip-meta { font-size: 12.5px; color: var(--slate-light); }
.guest-section { margin-bottom: 24px; }
.guest-label { font-size: 12.5px; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
.guest-stepper { display: flex; align-items: center; gap: 12px; }
.guest-btn { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--border); background: #fff; color: var(--navy); font-size: 18px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s; user-select: none; }
.guest-btn:hover { border-color: var(--brand); background: rgba(255,86,53,0.06); color: var(--brand); }
.guest-count { font-size: 17px; font-weight: 700; color: var(--navy); min-width: 32px; text-align: center; }
.guest-sub { font-size: 12px; color: var(--slate-light); margin-left: 4px; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.section-heading { font-size: 11.5px; font-weight: 700; color: #4a5361; letter-spacing: 0.04em; text-transform: uppercase; padding-bottom: 11px; /*border-bottom: 1px solid var(--border);*/ display: flex; align-items: center; gap: 8px; margin-top:24px; }
.agree-row a { color: var(--brand); font-weight: 600; text-decoration: none; }
.agree-row a:hover { text-decoration: underline; }
.card-input-wrap { position: relative; }
.card-input-wrap .card-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.payment-trust { margin-top: 16px; padding: 13px 14px 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 11px; text-align: center; }
.payment-trust-label { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 11px; }
.payment-logos { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.plogo { display: flex; align-items: center; justify-content: center; width: 49px; height: 41px; background: #fff; border: 1px solid var(--border); border-radius: 6px; flex-shrink: 0; }
.plogo img { width: 37px; height: 34px; object-fit: contain; }
.plogo-wide { width: 70px; }
.plogo-wide img { width: 57px; height: 24px; }
.btn-pay { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; padding: 16px; background: var(--brand); color: #fff; font-size: 16px; font-weight: 800; letter-spacing: 0.06em; border: none; border-radius: 12px; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(255,86,53,0.3); margin-top: 26px; }
.btn-pay:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,86,53,0.4); }
.summary-note { font-size: 11.5px; color: var(--slate-light); margin-top: 12px; text-align: center; line-height: 1.5; }

/* ── DRAFT / RESUME BANNER ── */
.draft-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fffbea;
  border: 1px solid #f0d47a;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 24px;
}
.draft-banner-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  border-radius: 50%;
  padding: 0;
  line-height: 1;
  transition: color 0.15s, background 0.15s;
}
.draft-banner-close:hover { color: var(--slate); background: rgba(0,0,0,0.06); }
.draft-banner-top { display: flex; align-items: flex-start; gap: 12px; }
.draft-banner-icon { color: var(--gold); flex-shrink: 0; line-height: 0; margin-top: 2px; }
.draft-banner-body { flex: 1; min-width: 0; }
.draft-banner-title { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.draft-banner-details { font-size: 12px; color: var(--slate-light); display: flex; flex-wrap: wrap; gap: 4px; align-items: center; line-height: 1.5; }
.draft-banner-details .dot { color: var(--border); }
.draft-banner-actions { display: flex; gap: 8px; align-items: center; margin-top: 10px; }
.draft-btn {
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.draft-btn-continue { background: var(--navy); color: #fff; border: none; }
.draft-btn-continue:hover { background: var(--navy-mid); color: #fff; }
.draft-btn-discard { background: transparent; color: var(--slate); border: 1.5px solid var(--border); }
.draft-btn-discard:hover { border-color: var(--muted); color: var(--navy); }
.draft-btn-cancel { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.draft-btn-cancel:hover { background: var(--bg2); color: var(--slate); }

/* ── CUSTOMER SNAPSHOT (payment page, readonly) ── */
.customer-snapshot {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 14px;
  margin-bottom: 6px;
}
.customer-snapshot-row { display: flex; align-items: baseline; gap: 12px; padding: 9px 0; }
.customer-snapshot-row + .customer-snapshot-row { border-top: 1px solid var(--border); }
.customer-snapshot-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  min-width: 44px;
}
.customer-snapshot-value { font-size: 13.5px; font-weight: 600; color: var(--navy); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── LEGAL MODALS ── */
.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(15,23,42,0.52);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
  padding: 40px 20px;
}
.legal-modal.is-open { display: flex; align-items: flex-start; justify-content: center; }
.legal-modal-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  box-shadow: 0 24px 64px rgba(15,23,42,0.18);
  overflow: hidden;
  animation: modalIn 0.22s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)  scale(1); }
}
.legal-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 18px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.legal-modal-title {
  font-size: 18px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; margin: 0;
}
.legal-modal-close {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--slate);
  font-size: 17px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
  line-height: 1;
}
.legal-modal-close:hover { background: var(--bg2); border-color: var(--muted); }
.legal-modal-content {
  padding: 4px 30px 32px;
  max-height: 68vh;
  overflow-y: auto;
}
.legal-modal-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.legal-modal-section:last-child { border-bottom: none; padding-bottom: 0; }
.legal-modal-section:first-child { padding-top: 22px; }
.legal-modal-sec-head {
  display: flex; align-items: flex-start; gap: 13px; margin-bottom: 10px;
}
.legal-modal-num {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: rgba(255,86,53,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 800; color: var(--brand);
  margin-top: 1px;
}
.legal-modal-sec-title {
  font-size: 14.5px; font-weight: 700; color: var(--navy); margin: 0;
  letter-spacing: -0.01em; line-height: 1.3; padding-top: 5px;
}
.legal-modal-text { font-size: 14px; color: var(--slate); line-height: 1.75; margin: 0; }
.legal-modal-text + .legal-modal-text { margin-top: 9px; }
.legal-modal-text a { color: var(--brand); text-decoration: underline; }
.legal-modal-text strong { color: var(--navy); }
.legal-link {
  background: none; border: none; padding: 0; margin: 0;
  color: #ab6a5d; font-weight: 600; font-size: inherit;
  font-family: inherit; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.legal-link:hover { color: var(--brand-dark); }
@media (max-width: 600px) {
  .legal-modal { padding: 0; align-items: flex-end !important; }
  .legal-modal-box { border-radius: 20px 20px 0 0; }
  .legal-modal-content { max-height: 70vh; }
  .legal-modal-head { padding: 18px 20px 14px; }
  .legal-modal-content { padding: 0 20px 28px; }
}

/* ── PAYMENT CONFIRMATION ── */
.confirm-page { padding: 56px 0 100px; background: var(--bg); min-height: 60vh; }
.confirm-wrap { max-width: 640px; margin: 0 auto; padding: 0 28px; }
.success-icon-wrap { text-align: center; margin-bottom: 24px; }
.success-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px; border-radius: 50%;
  background: #edfaf3;
  border: 3px solid #27ae60;
}
.confirm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  margin-bottom: 20px;
}
.confirm-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 28px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.015em; margin-bottom: 10px;
}
.confirm-subtitle { font-size: 15px; color: var(--slate); line-height: 1.72; margin-bottom: 28px; }
.confirm-subtitle strong { color: var(--navy); }
.code-box {
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 28px;
}
.code-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 6px; }
.code-value { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 26px; font-weight: 700; color: var(--brand); letter-spacing: 0.08em; }
.details-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 36px;
  margin-bottom: 20px;
  text-align: left;
}
.details-title { font-size: 13px; font-weight: 800; color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.detail-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--bg2); }
.detail-row:last-child { border-bottom: none; }
.detail-row .lbl { font-size: 13px; color: var(--slate-light); }
.detail-row .val { font-size: 13px; font-weight: 600; color: var(--navy); text-align: right; }
.detail-row.total .lbl { font-weight: 700; color: var(--navy); }
.detail-row.total .val { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 18px; font-weight: 700; color: var(--brand); }
.next-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 36px;
  margin-bottom: 28px;
  text-align: left;
}
.next-title { font-size: 13px; font-weight: 800; color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.next-list { display: flex; flex-direction: column; gap: 14px; }
.next-item { display: flex; gap: 12px; align-items: flex-start; }
.next-num { width: 24px; height: 24px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.next-text { font-size: 13.5px; color: var(--slate); line-height: 1.55; }
.next-text strong { color: var(--navy); }
.action-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-home { flex: 1; padding: 14px 20px; background: var(--navy); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; border: none; border-radius: 10px; text-align: center; cursor: pointer; transition: background 0.2s; min-width: 160px; }
.btn-home:hover { background: var(--navy-mid); }
.btn-more { flex: 1; padding: 14px 20px; background: #fff; color: var(--brand); font-size: 14px; font-weight: 700; letter-spacing: 0.04em; border: 2px solid var(--brand); border-radius: 10px; text-align: center; cursor: pointer; transition: background 0.2s, color 0.2s; min-width: 160px; }
.btn-more:hover { background: var(--brand); color: #fff; }

/* Payment confirmation responsive */
@media (max-width: 600px) {
  .confirm-card, .details-card, .next-card { padding: 24px 20px; }
  .header-topbar { display: none; }
  .header-main   { padding: 0 16px; height: 60px; }
  .header-nav    { display: none; }
  .action-row    { flex-direction: column; }
}

/* ── CONTACT ── */
.contact-hero {
  background: var(--navy);
  padding: 36px 0 32px;
  text-align: center;
}
.contact-hero-inner { max-width: 640px; margin: 0 auto; padding: 0 28px; }
.hero-eyebrow { font-size: 11.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.hero-title { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.1; letter-spacing: -0.02em; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.contact-page { padding: 56px 0 96px; background: var(--bg); }
.contact-layout {
  max-width: 1060px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 32px; align-items: start;
}
.form-card-sub { font-size: 14px; color: var(--slate-light); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
textarea.form-input { resize: vertical; min-height: 90px; }
.form-alert.error   { background: #fdf0ef; border: 1px solid #f5c6c2; color: #c0392b; }
.form-alert.success { background: #edfaf3; border: 1px solid #a7f3c7; color: #166534; }
.btn-send { display: block; width: 100%; padding: 15px; background: var(--brand); color: #fff; font-size: 15px; font-weight: 800; letter-spacing: 0.08em; border: none; border-radius: 12px; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(255,86,53,0.3); margin-top: 8px; }
.btn-send:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,86,53,0.4); }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; position: sticky; top: 88px; }
.info-card-title { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,86,53,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-label { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info-value { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.5; }
.info-value a { color: var(--brand); font-weight: 700; text-decoration: none; }
.info-value a:hover { text-decoration: underline; }
.map-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-card iframe { display: block; width: 100%; height: 240px; border: none; }

/* Contact responsive */
@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; }
  .info-card      { position: static; }
  .form-row       { grid-template-columns: 1fr; }
  .hero-title     { font-size: 26px; }
  .header-topbar  { display: none; }
  .header-main    { padding: 0 16px; height: 80px; }
  .header-nav     { display: none; }
}

/* ── 404 PAGE ── */
.error-page {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 24px;
  background: var(--bg);
}
.error-inner { max-width: 620px; }
.error-emoji {
  font-size: clamp(72px, 12vw, 108px);
  display: block;
  margin-bottom: 8px;
  animation: sway 2.4s ease-in-out infinite;
  line-height: 1;
}
@keyframes sway {
  0%,100% { transform: rotate(-10deg) scale(1); }
  50%      { transform: rotate(10deg) scale(1.07); }
}
.error-code {
  font-size: clamp(88px, 16vw, 148px);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 24px;
  opacity: 0.15;
  position: relative;
}
.error-code-wrap {
  position: relative;
  margin-bottom: 28px;
}
.error-code-wrap .error-emoji-over {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  font-size: clamp(60px, 10vw, 90px);
  animation: sway 2.4s ease-in-out infinite;
  line-height: 1;
}
.error-title {
  font-size: clamp(17px, 2.4vw, 23px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.45;
  margin-bottom: 14px;
}
.error-subtitle {
  font-size: 16px;
  color: var(--slate);
  margin-bottom: 28px;
  line-height: 1.6;
}
.error-countdown {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}
.error-countdown .tick {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 8px;
  text-align: center;
  margin: 0 4px;
  vertical-align: middle;
}
.btn-guide {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(255,86,53,0.28);
}
.btn-guide:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,86,53,0.38);
  color: #fff;
}

/* ── ABOUT ── */
.about-hero {
  background: var(--navy);
  padding: 36px 0 32px;
  text-align: center;
}
.about-hero-inner { max-width: 800px; margin: 0 auto; padding: 0 28px; }
.about-page { background: var(--bg); }
.about-section-heading {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* Story */
.about-story { padding: 80px 0; background: #fff; }
.about-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-body { font-size: 16px; color: var(--slate); line-height: 1.8; margin-bottom: 18px; }
.about-body:last-of-type { margin-bottom: 28px; }
.about-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--brand);
}
.about-sig-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,86,53,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}
.about-sig-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.about-sig-role { font-size: 12px; color: var(--slate-light); margin-top: 2px; }
.about-story-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(25,42,69,0.12); }
.about-story-img img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.about-story-img:hover img { transform: scale(1.03); }

/* Trust */
.about-trust { padding: 80px 0 72px; background: var(--bg); }
.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.trust-badge-item:hover { box-shadow: 0 8px 32px rgba(25,42,69,0.1); transform: translateY(-2px); }
.trust-badge-item img { height: 64px; width: auto; object-fit: contain; }
.trust-badge-label { font-size: 11px; font-weight: 700; color: var(--slate); letter-spacing: 0.06em; text-transform: uppercase; }
.about-trust-body { max-width: 720px; margin: 0 auto; text-align: center; font-size: 15.5px; color: var(--slate); line-height: 1.8; }

/* Features */
.about-features { padding: 80px 0 88px; background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(25,42,69,0.09); transform: translateY(-3px); border-color: rgba(255,86,53,0.22); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(255,86,53,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  margin-bottom: 20px;
}
.feature-title { font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.3; }
.feature-body  { font-size: 14.5px; color: var(--slate); line-height: 1.75; }

/* Closing */
.about-closing { margin-top: 56px; text-align: center; padding-top: 48px; border-top: 1px solid var(--border); }
.about-closing-text { max-width: 680px; margin: 0 auto 32px; font-size: 16px; color: var(--slate); line-height: 1.8; }

/* About responsive */
@media (max-width: 900px) {
  .about-story-content { grid-template-columns: 1fr; gap: 40px; }
  .about-story-img img  { height: 280px; }
  .features-grid        { grid-template-columns: 1fr; }
  .about-trust          { padding: 56px 0; }
  .about-features       { padding: 56px 0 64px; }
}
@media (max-width: 600px) {
  .about-hero    { padding: 28px 0 24px; }
  .about-story   { padding: 52px 0; }
  .trust-badge-item { padding: 20px 24px; }
  .trust-badge-item img { height: 48px; }
}
.btn-guide:active { transform: translateY(0); }

/* ─── CANCELLATION POLICY PAGE — shared components ──────────────────────── */

/* Policy bullet list */
.cancel-policy-list {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}
.cancel-policy-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15.5px;
  color: var(--slate);
  line-height: 1.82;
  margin-bottom: 8px;
}
.cancel-policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}
.cancel-policy-list li:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════════
   PRIVACY POLICY PAGE
   ══════════════════════════════════════════════════════════════ */

/* ─── Hero ─── */
.pp-hero {
  background: var(--navy);
  padding: 32px 28px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pp-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pp-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,86,53,0.18);
  color: #ff8c74;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pp-hero-sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.pp-hero-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
  line-height: 1;
}

/* ─── Main ─── */
.pp-main {
  background: #F8FAFC;
  padding: 48px 28px 80px;
}
.pp-wrap {
  max-width: 820px;
  margin: 0 auto;
}

/* ─── Single card ─── */
.pp-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
}

/* ─── Each section row ─── */
.pp-section {
  padding: 28px 36px;
  border-bottom: 1px solid #F1F5F9;
}
.pp-section:last-child { border-bottom: none; }

.pp-section-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.pp-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #CBD5E1;
  flex-shrink: 0;
  padding-top: 1px;
}
.pp-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #3B3F4A;
  margin: 0;
  line-height: 1.35;
}
.pp-body {
  font-size: 14px;
  color: #64748B;
  line-height: 1.75;
  margin: 0;
  padding-left: 28px;
}
.pp-body + .pp-body { margin-top: 8px; }
.pp-body a {
  color: #2563EB;
  text-decoration: none;
}
.pp-body a:hover { text-decoration: underline; }

/* ─── Footer note ─── */
.pp-footer-note {
  margin-top: 20px;
  font-size: 12.5px;
  color: #94A3B8;
  text-align: center;
  line-height: 1.6;
}

/* ─── Responsive ─── */
@media (max-width: 640px) {
  .pp-hero { padding: 24px 18px 20px; }
  .pp-hero-title { font-size: 17px; }
  .pp-main { padding: 32px 16px 64px; }
  .pp-section { padding: 22px 20px; }
  .pp-body { padding-left: 0; }
}

/* ══════════════════════════════════════════════════════════════
   IMPRINT PAGE
   ══════════════════════════════════════════════════════════════ */
.imprint-main {
  background: #F8FAFC;
  padding: 64px 28px 80px;
}
.imprint-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.imprint-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 36px 40px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.imprint-card:hover {
  box-shadow: 0 6px 28px rgba(25,42,69,0.07);
  border-color: #CBD5E1;
}
.imprint-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F1F5F9;
}
.imprint-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FFF1ED 0%, #FFEDE8 100%);
  border: 1px solid rgba(255,86,53,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
}
.imprint-card-title-wrap { flex: 1; }
.imprint-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 3px;
}
.imprint-card-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #0F172A;
  margin: 0;
  line-height: 1.25;
}
.imprint-rows { display: flex; flex-direction: column; }
.imprint-row {
  display: flex;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid #F8FAFC;
}
.imprint-row:last-child  { border-bottom: none; padding-bottom: 0; }
.imprint-row:first-child { padding-top: 0; }
.imprint-row-label {
  width: 190px;
  min-width: 190px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #94A3B8;
  padding-top: 1px;
  line-height: 1.5;
}
.imprint-row-value {
  flex: 1;
  font-size: 14.5px;
  font-weight: 500;
  color: #334155;
  line-height: 1.55;
}
.imprint-row-value a { color: #2563EB; text-decoration: none; transition: color 0.2s; }
.imprint-row-value a:hover { color: #1D4ED8; text-decoration: underline; }
.imprint-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.18);
  color: #1D4ED8;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  padding: 3px 10px;
  letter-spacing: .02em;
}
.imprint-badge-green {
  background: rgba(22,163,74,0.08);
  border-color: rgba(22,163,74,0.2);
  color: #15803D;
}
.imprint-legal-items { display: flex; flex-direction: column; }
.imprint-legal-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid #F8FAFC;
}
.imprint-legal-item:first-child { padding-top: 0; }
.imprint-legal-item:last-child  { border-bottom: none; padding-bottom: 0; }
.imprint-legal-dot {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.imprint-legal-text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.imprint-legal-text p {
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}
.imprint-copyright {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: none;
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
}
.imprint-copyright .copy-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin: 0 0 6px;
  line-height: 1.6;
}
.imprint-copyright .copy-brand {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.imprint-copyright .copy-brand span { color: var(--brand); }
.imprint-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #E2E8F0 20%, #E2E8F0 80%, transparent);
  margin: 4px 0;
  border: none;
}
@media (max-width: 640px) {
  .imprint-main { padding: 40px 16px 64px; }
  .imprint-card { padding: 26px 22px; }
  .imprint-copyright { padding: 28px 22px; }
  .imprint-row { flex-direction: column; gap: 4px; }
  .imprint-row-label { width: auto; min-width: auto; }
}
