/* =========================================================
   Taxi JAM Mali Lošinj — design tokens
   Palette: deep Adriatic teal + warm island terracotta + sand
   Type: Libre Baskerville (display) / Inter (body) / JetBrains Mono (data)
   Signature: "route stop" kickers + dashed route segments,
   echoing a taxi/transfer route between places.
   ========================================================= */

:root {
  --ink: #0e2e2c;
  --ink-soft: #123a37;
  --sea: #2f9e93;
  --sea-light: #bfe6e0;
  --terracotta: #c9683f;
  --terracotta-dark: #a8532f;
  --sand: #f3ecdd;
  --paper: #fffdf9;
  --gold: #d9a441;
  --line: rgba(14, 46, 44, 0.14);
  --text: #17211f;
  --text-soft: #4b5c58;
  --text-on-ink: #eef5f3;
  --text-on-ink-soft: #a9c4c0;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 12px 30px rgba(14, 46, 44, 0.12);
  --shadow-sm: 0 4px 14px rgba(14, 46, 44, 0.08);
  --maxw: 1180px;
  --focus: #d9a441;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: "Roboto", Georgia, "Times New Roman", serif;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--ink);
  font-weight: 600;
}
p {
  margin: 0 0 1em;
}
ul {
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  z-index: 999;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5.5rem 0;
}
.section--tight {
  padding: 4rem 0;
}
.section--ink {
  background: var(--ink);
  color: var(--text-on-ink);
}
.section--ink h2,
.section--ink h3 {
  color: var(--text-on-ink);
}
.section--sand {
  background: var(--sand);
}

/* ---------- route kicker (signature element) ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin-bottom: 0.9rem;
}
.section--ink .kicker,
.section--gold .kicker {
  color: var(--gold);
}
.kicker__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terracotta);
  flex: none;
}
.section--ink .kicker__dot {
  background: var(--gold);
}
.kicker__seg {
  display: inline-block;
  width: 34px;
  height: 0;
  border-top: 2px dashed currentColor;
  opacity: 0.55;
}
.section-head {
  max-width: 62ch;
  margin-bottom: 2.75rem;
}
.section-head p {
  color: var(--text-soft);
  font-size: 1.06rem;
}
.section--ink .section-head p {
  color: var(--text-on-ink-soft);
}

.eyebrow-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
  min-height: 48px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--terracotta);
  color: #fff9f2;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
}
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
.section:not(.section--ink) .btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}
.section:not(.section--ink) .btn-outline:hover {
  background: rgba(14, 46, 44, 0.06);
}
.btn-block {
  width: 100%;
}
.btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}

/* ---------- nav ---------- */
.brand__logo {
  width: 80px;
  height: 38px;
  flex: none;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.navbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: "Roboto", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
}
.brand__mark {
  width: 38px;
  height: 38px;
  flex: none;
}
.brand__name span {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--terracotta-dark);
  font-weight: 600;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 600;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  padding: 0.3rem 0.1rem;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover {
  border-bottom-color: var(--terracotta);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.lang-switch {
  display: flex;
  gap: 0.3rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
}
.lang-switch a {
  text-decoration: none;
  color: var(--text-soft);
  padding: 0.4rem 0.55rem;
  border-radius: 7px;
  border: 1.5px solid transparent;
  min-width: 40px;
  text-align: center;
}
.lang-switch a[aria-current="true"] {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--sand);
}
.lang-switch a:hover {
  border-color: var(--line);
}
.nav-cta {
  padding: 0.62rem 1.1rem;
  font-size: 0.9rem;
  min-height: auto;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 900px) {
  .navbar .wrap {
    position: relative;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    /*right: 1.5rem;*/
    left: auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem;
    gap: 0.2rem;
    font-size: 1rem;
    min-width: 300px;
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.15s ease,
      transform 0.15s ease;
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a {
    padding: 0.7rem 0.8rem;
    border-radius: 8px;
    border-bottom: none;
    display: block;
  }
  .nav-links a:hover {
    background: var(--sand);
  }
  .nav-toggle {
    display: block;
  }
  .nav-cta {
    display: none;
  }
}
/* ---------- hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(
    120% 140% at 15% -10%,
    #164944 0%,
    var(--ink) 55%,
    #081e1c 100%
  );
  color: var(--text-on-ink);
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(217, 164, 65, 0.14);
  border: 1px solid rgba(217, 164, 65, 0.45);
  color: var(--gold);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--sea-light);
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--text-on-ink-soft);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.86rem;
  color: var(--text-on-ink-soft);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.03em;
}
.hero-trust li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex: none;
}

.hero-art {
  position: relative;
}
.route-svg {
  width: 100%;
  height: auto;
}

/* ---------- route rail kicker used inline in text (mobile-safe) ---------- */
.route-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2.5rem 0;
  color: var(--line);
}
.route-line::before,
.route-line::after {
  content: "";
  flex: 1;
  height: 0;
  border-top: 2px dashed var(--line);
}
.route-line svg {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
  flex: none;
}

/* ---------- services ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-dark);
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}
.service-card p {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin-bottom: 0;
}
.service-card__tag {
  margin-top: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 700;
}

/* ---------- destinations ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.dest-card {
  background: var(--ink-soft);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.8rem;
  color: var(--text-on-ink);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.dest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 90% at 100% 0%,
    rgba(47, 158, 147, 0.35),
    transparent 60%
  );
  pointer-events: none;
}
.dest-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.dest-card__icon svg {
  width: 100%;
  height: 100%;
}
.dest-card h3 {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}
.dest-card p {
  color: var(--text-on-ink-soft);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---------- booking ---------- */
.booking {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.4rem;
  align-items: start;
}
.booking-copy h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
}
.booking-perks {
  list-style: none;
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.booking-perks li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text-soft);
}
.booking-perks svg {
  width: 20px;
  height: 20px;
  color: var(--sea);
  flex: none;
  margin-top: 2px;
}
.booking-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
}
.form-field .req {
  color: var(--terracotta);
}
.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-size: 0.98rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sea);
}
.form-field textarea {
  resize: vertical;
  min-height: 80px;
}
.radio-group {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.radio-chip {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-soft);
  position: relative;
}
.radio-chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.radio-chip:has(input:checked) {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 0.8rem;
}
.form-status {
  font-size: 0.88rem;
  margin-top: 0.8rem;
  min-height: 1.2em;
  color: var(--terracotta-dark);
  font-weight: 600;
}

/* ---------- price tables ---------- */
.price-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-card__head {
  background: var(--ink);
  color: #fff;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Roboto", Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}
.price-card__head span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}
table.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.92rem;
}
table.price-table td {
  padding: 0.85rem 1.5rem;
  border-bottom: 1px dashed var(--line);
}
table.price-table tr:last-child td {
  border-bottom: none;
}
table.price-table td:first-child {
  color: var(--text-soft);
}
table.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--ink);
}
tr.price-row--minimum td {
  background: var(--sand);
}
.price-flat {
  margin: 1.4rem 1.5rem 1.6rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: var(--sand);
  font-size: 0.9rem;
  color: var(--text);
}
.price-flat strong {
  color: var(--terracotta-dark);
}
.price-disclaimer {
  grid-column: 1 / -1;
  font-size: 0.86rem;
  color: var(--text-soft);
  background: var(--sand);
  border-radius: 12px;
  padding: 1rem 1.3rem;
}

/* shared taxi schedule */
.shuttle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.shuttle-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.shuttle-card__head {
  padding: 1.2rem 1.4rem;
  background: var(--sea);
  color: #06231f;
}
.shuttle-card__head h4 {
  font-family: "Roboto", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  margin: 0 0 0.2rem;
  color: #06231f;
}
.shuttle-card__price {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 1.05rem;
}
.stop-list {
  list-style: none;
  padding: 1rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.stop-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.55rem;
}
.stop-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.stop-list time {
  font-family: "JetBrains Mono", monospace;
  color: var(--terracotta-dark);
  font-weight: 700;
  flex: none;
}
.shuttle-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  padding: 0 1.4rem 1.3rem;
}

/* ---------- why us ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.feature {
  padding: 1.6rem;
}
.feature__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature__icon svg {
  width: 100%;
  height: 100%;
}
.feature h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.feature p {
  color: var(--text-on-ink-soft);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---------- fleet ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.fleet-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.fleet-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--sand);
}
.fleet-card__body {
  padding: 1.1rem 1.3rem;
}
.fleet-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.fleet-card__body p {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.contact-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 600;
  flex: none;
}
.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}
.contact-card__role {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 700;
  margin-bottom: 0.7rem;
  display: block;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.92rem;
}
.contact-links a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}
.contact-links a:hover {
  color: var(--terracotta-dark);
}
.contact-links svg {
  width: 16px;
  height: 16px;
  color: var(--sea);
  flex: none;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-panel address {
  font-style: normal;
  font-size: 1rem;
}
.contact-panel h4 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  display: block;
}

/* ---------- footer ---------- */
footer.site-footer {
  background: #081e1c;
  color: var(--text-on-ink-soft);
  padding: 3.4rem 0 1.6rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid h4 {
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-grid a {
  color: var(--text-on-ink-soft);
  text-decoration: none;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-brand p {
  color: var(--text-on-ink-soft);
  font-size: 0.9rem;
  max-width: 32ch;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 1.4rem;
  font-size: 0.82rem;
  color: rgba(238, 245, 243, 0.55);
}

/* ---------- floating whatsapp ---------- */
.floating-wa {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #fff;
}
.floating-wa svg {
  width: 30px;
  height: 30px;
}
.floating-wa:hover {
  transform: scale(1.06);
}

/* ---------- responsive ---------- */
@media (max-width: 1050px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-tables {
    grid-template-columns: 1fr;
  }
  .shuttle-grid {
    grid-template-columns: 1fr;
  }
  .booking {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }
  .card-grid,
  .dest-grid,
  .feature-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 3.6rem 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ---------- gallery slider ---------- */
.gallery-slider-wrap {
  position: relative;
  padding: 0 0 1rem;
}
.gallery-controls-wrap {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.gallery-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-btn:hover {
  background: var(--sand);
}
.gallery-slider {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 1.5rem 0.5rem;
  scrollbar-width: thin;
}
.gallery-slider::-webkit-scrollbar {
  height: 8px;
}
.gallery-slider::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}
.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background: var(--sand);
  cursor: zoom-in;
  padding: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 1rem;
  background: linear-gradient(to top, rgba(14, 46, 44, 0.85), transparent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 30, 28, 0.94);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] {
  display: none;
}
.lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.8rem;
}
.lightbox-nav.prev {
  left: 1.2rem;
}
.lightbox-nav.next {
  right: 1.2rem;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 640px) {
  .gallery-item {
    width: 240px;
    height: 180px;
  }
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }
}
.hero-art {
  position: relative;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    165deg,
    rgba(14, 46, 44, 0.75),
    rgba(14, 46, 44, 0.35) 55%,
    rgba(14, 46, 44, 0.15) 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid rgba(217, 164, 65, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: block;
  filter: saturate(0.7) contrast(1.05) brightness(0.85);
}
.hero-photo-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(14, 46, 44, 0.85);
  color: #fff;
  border: 1px solid rgba(217, 164, 65, 0.5);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 2;
}
/* =========================================================
   MOBILE FIXES — appended at the end of the file
   ========================================================= */

/* logo in navbar and footer — key fix, without this the logo
   image can render huge and break the whole header layout */
.brand__logo {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex: none;
}

@media (max-width: 900px) {
  .brand__logo {
    height: 32px;
  }
  .brand__name {
    font-size: 1.05rem;
  }
  .brand__name span {
    font-size: 0.56rem;
  }
}

/* hero photo + badge on smaller screens */
@media (max-width: 760px) {
  .hero-art {
    max-width: 100%;
  }
  .hero-photo {
    aspect-ratio: 16 / 10;
  }
  .hero-photo-badge {
    bottom: 0.8rem;
    left: 0.8rem;
    font-size: 0.72rem;
    padding: 0.4rem 0.7rem;
  }
  .hero-badge {
    font-size: 0.68rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .hero-trust {
    flex-direction: column;
    gap: 0.6rem;
  }
}

/* price list — keep rows from feeling cramped on narrow screens */
@media (max-width: 480px) {
  table.price-table td {
    padding: 0.7rem 1rem;
    font-size: 0.84rem;
  }
  .price-card__head {
    padding: 1rem 1.1rem;
    font-size: 1.02rem;
  }
  .stop-list li {
    font-size: 0.82rem;
  }
  .shuttle-card__head {
    padding: 1rem 1.1rem;
  }
}

/* contact cards — avatar + text shouldn't get squeezed */
@media (max-width: 480px) {
  .contact-card {
    flex-direction: column;
    text-align: left;
  }
  .contact-card__avatar {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }
}

/* gallery — slightly narrower cards on very small screens so the
   next photo "peeks" in (signals there's more to scroll to) */
@media (max-width: 480px) {
  .gallery-item {
    width: 78vw;
    height: 220px;
  }
}

/* general spacing on very small screens */
@media (max-width: 480px) {
  .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section {
    padding: 3rem 0;
  }
  h1 {
    font-size: 1.9rem;
  }
  .eyebrow-title {
    font-size: 1.5rem;
  }
}

/* footer — prevent columns from feeling cramped on small screens */
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}
.lang-dropdown {
  position: relative;
}
.lang-dropdown summary {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  user-select: none;
}
.lang-dropdown summary::-webkit-details-marker {
  display: none;
}
.lang-dropdown summary::marker {
  content: "";
}
.lang-dropdown svg {
  width: 14px;
  height: 14px;
  transition: transform 0.15s ease;
}
.lang-dropdown[open] svg {
  transform: rotate(180deg);
}
.lang-dropdown[open] summary {
  border-color: var(--ink);
}
.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-width: 90px;
  z-index: 50;
}
.lang-dropdown__menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.lang-dropdown__menu a:hover {
  background: var(--sand);
}
@media (max-width: 760px) {
  .gallery-controls-wrap {
    display: none;
  }
}
.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-ink-soft);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
