:root {
  --ink: #13243a;
  --muted: #64748b;
  --line: #d8e3ee;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --charcoal: #0b1830;
  --green: #174d84;
  --green-dark: #0b3764;
  --yellow: #d9a441;
  --coral: #d85b47;
  --sky: #e8f1fb;
  --navy: #103b6d;
  --shadow: 0 22px 55px rgba(23, 33, 43, 0.12);
  --font-ui: "Inter", "Noto Sans Thai", "Noto Sans SC", system-ui, sans-serif;
  --font-display: "Inter", "Noto Sans Thai", "Noto Sans SC", system-ui, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ui);
  background: var(--paper);
  font-feature-settings: "liga" 1, "kern" 1;
  text-rendering: optimizeLegibility;
}

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

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

code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(31, 138, 112, 0.1);
  color: var(--green-dark);
  font-family: var(--font-mono);
  font-size: 0.9em;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand strong,
h1,
h2,
h3,
.button,
.filter,
.trust-strip strong,
.feature-card strong,
.price-table th {
  font-family: var(--font-display);
}

.brand-logo {
  width: 132px;
  height: 46px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  padding: 4px 8px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-weight: 650;
}

.main-nav a {
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--yellow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: currentColor;
  background: transparent;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 3;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .language-switcher,
.site-header.menu-open .language-switcher {
  border-color: var(--line);
  background: var(--soft);
}

.lang-button {
  min-width: 38px;
  height: 32px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: currentColor;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-button.active {
  background: var(--yellow);
  color: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 43, 0.94) 0%, rgba(12, 43, 79, 0.72) 43%, rgba(13, 53, 96, 0.16) 100%),
    linear-gradient(0deg, rgba(7, 20, 43, 0.36), rgba(7, 20, 43, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 86px;
  padding-bottom: clamp(34px, 7vh, 82px);
  color: #fff;
}

.hero-logo {
  width: min(310px, 68vw);
  height: auto;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.4rem, 11vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions,
.contact-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button[hidden] {
  display: none !important;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg,
.service-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 138, 112, 0.25);
}

.primary:hover {
  background: var(--green-dark);
}

.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.line {
  background: var(--charcoal);
  color: #fff;
}

.map {
  background: #fff;
  color: var(--green-dark);
  border: 1px solid rgba(31, 138, 112, 0.28);
}

.facebook {
  background: #1b4f91;
  color: #fff;
}

.ghost {
  background: #fff;
  color: var(--charcoal);
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 600px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  font-size: 1.5rem;
  font-weight: 750;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 36px));
  margin: 28px auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(23, 77, 132, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(23, 33, 43, 0.1);
}

.trust-strip svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: var(--green);
}

.trust-strip strong {
  line-height: 1.25;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.quick-booking {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.booking-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.booking-support article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(23, 77, 132, 0.16);
  border-radius: 8px;
  background: var(--soft);
}

.booking-support span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 750;
}

.booking-support strong {
  color: var(--ink);
  line-height: 1.3;
}

.booking-support p,
.booking-doc-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.booking-doc-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  padding: 13px 15px;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 8px;
  background: rgba(217, 164, 65, 0.1);
}

.booking-doc-note svg {
  width: 22px;
  height: 22px;
  color: var(--green-dark);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.wide-field {
  grid-column: span 2;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 138, 112, 0.18);
  border-color: var(--green);
}

.wide-row {
  grid-column: 1 / -1;
}

.form-group-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0 2px;
  color: var(--ink);
}

.form-group-title strong {
  font-size: 1.04rem;
}

.form-group-title span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(23, 77, 132, 0.18);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  line-height: 1.55;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.booking-result {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(31, 138, 112, 0.22);
  border-radius: 8px;
  background: rgba(31, 138, 112, 0.08);
}

.booking-result p {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1.65;
}

.booking-summary {
  max-height: 280px;
  overflow: auto;
  margin: 0 0 14px;
  padding: 14px;
  border: 1px solid rgba(23, 77, 132, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  white-space: pre-wrap;
  font: 0.9rem/1.6 var(--font-mono);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-section {
  padding: 82px max(18px, calc((100% - 1180px) / 2));
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(16, 24, 32, 0.78);
  font-weight: 700;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.gallery-main {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-main,
.gallery-main img {
  min-height: 534px;
}

.feature-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.policy-grid article:hover,
.info-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 77, 132, 0.32);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--green);
}

.feature-icon svg {
  width: 34px;
  height: 34px;
}

.feature-card h3 {
  margin: 4px 0 0;
  font-size: 1.35rem;
}

.feature-card p {
  margin-bottom: auto;
  color: var(--muted);
  line-height: 1.7;
}

.feature-card strong {
  color: var(--green-dark);
}

.price-section {
  padding: 82px max(18px, calc((100% - 1180px) / 2));
  background: var(--soft);
}

.price-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.filter {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px 14px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.filter.active {
  background: var(--charcoal);
  color: #fff;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.08);
}

.price-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.price-table th {
  position: sticky;
  top: 0;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.price-table tbody tr:hover {
  background: rgba(31, 138, 112, 0.06);
}

.price-table td:first-child {
  min-width: 280px;
  white-space: normal;
}

.price-table td strong,
.price-table td span,
.price-table td small {
  display: block;
}

.price-table td span,
.price-table td small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.price-notes {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.price-notes p {
  margin: 0;
}

.policy-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0;
}

.customer-info-section {
  padding: 82px max(18px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(232, 241, 251, 0.78), rgba(255, 255, 255, 0.96)),
    var(--sky);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.info-grid article {
  min-height: 248px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.info-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 750;
}

.info-grid h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.info-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.license-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.license-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(23, 77, 132, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(232, 241, 251, 0.62), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.08);
}

.license-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--green);
}

.license-grid h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.license-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 700;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.75;
}

.reviews-section {
  padding: 0 max(18px, calc((100% - 1180px) / 2)) 82px;
  background: #fff;
}

.reviews-card {
  display: grid;
  grid-template-columns: 1fr auto minmax(220px, 0.7fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(23, 77, 132, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(232, 241, 251, 0.95), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: var(--shadow);
}

.reviews-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.reviews-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.rating-box {
  min-width: 170px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.rating-box strong {
  display: block;
  color: var(--navy);
  font-size: 3rem;
  line-height: 1;
}

.rating-box span {
  display: block;
  margin: 8px 0 6px;
  color: var(--yellow);
  letter-spacing: 0;
}

.rating-box small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.review-snippets {
  display: grid;
  gap: 10px;
}

.review-snippets blockquote {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  background: #fff;
}

.review-snippets p {
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.review-snippets cite {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.45;
}

.review-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.policy-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.08);
}

.policy-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--green);
}

.policy-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.policy-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-list svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--green);
}

.service-list strong {
  font-size: 1.05rem;
}

.service-list span {
  color: var(--muted);
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 74px;
  padding: 38px;
  border-radius: 8px;
  background: var(--sky);
}

.contact-section h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.contact-logo {
  width: min(280px, 100%);
  margin-bottom: 18px;
  border-radius: 8px;
  background: #fff;
}

.contact-section p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-section .contact-actions {
  max-width: 520px;
  justify-content: flex-end;
}

.contact-panel {
  display: grid;
  gap: 14px;
  width: min(520px, 100%);
}

.map-frame {
  width: 100%;
  min-height: 245px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.08);
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: min(360px, calc(100vw - 36px));
  pointer-events: none;
}

.chat-widget.chat-mobile-hidden {
  display: none;
}

.chat-toggle,
.chat-panel {
  pointer-events: auto;
}

.chat-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(11, 24, 48, 0.26);
}

.chat-toggle svg,
.chat-header svg,
.chat-form svg {
  width: 20px;
  height: 20px;
}

.chat-panel {
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid rgba(23, 77, 132, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  background: var(--charcoal);
  color: #fff;
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.chat-header button,
.chat-form button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
  padding: 14px;
  background: var(--soft);
}

.chat-messages p {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  line-height: 1.55;
}

.chat-messages .bot {
  background: #fff;
  color: var(--ink);
}

.chat-messages .user {
  justify-self: end;
  background: var(--green);
  color: #fff;
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px 0;
}

.chat-quick button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 14px 14px;
}

.chat-form input {
  min-height: 42px;
}

.chat-form button {
  width: 42px;
  height: 42px;
  background: var(--green);
  color: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.75);
  background: var(--charcoal);
}

.site-footer strong {
  color: #fff;
}

@media (max-width: 1100px) {
  .booking-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .header-tools {
    margin-left: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 830px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(11, 19, 27, 0.88) 0%, rgba(11, 19, 27, 0.68) 48%, rgba(11, 19, 27, 0.3) 100%);
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 78px;
    padding-bottom: 42px;
  }

  .booking-form,
  .fleet-grid,
  .gallery-grid,
  .policy-grid,
  .info-grid,
  .license-grid,
  .faq-section,
  .reviews-card,
  .split {
    grid-template-columns: 1fr;
  }

  .review-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .gallery-main {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-main,
  .gallery-main img {
    min-height: 300px;
  }

  .wide-field {
    grid-column: auto;
  }

  .quick-booking {
    margin-top: 0;
  }

  .contact-section,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .brand-logo {
    width: 104px;
    height: 38px;
  }

  .language-switcher {
    gap: 2px;
    padding: 3px;
  }

  .lang-button {
    min-width: 32px;
    height: 30px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 790px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .quick-booking,
  .contact-section {
    padding: 20px;
  }

  .section,
  .price-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .button {
    width: 100%;
  }

  .segmented,
  .price-controls {
    width: 100%;
  }

  .filter {
    flex: 1 1 auto;
  }

  .chat-widget {
    position: static;
    width: min(360px, calc(100% - 36px));
    margin: 0 auto 22px;
    pointer-events: auto;
  }

  .chat-widget.chat-open {
    width: min(360px, calc(100% - 36px));
  }

  .chat-toggle {
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 8px;
    margin-left: 0;
  }

  .chat-widget.chat-open .chat-toggle {
    width: 100%;
    border-radius: 8px;
  }

  .chat-toggle span {
    display: inline;
  }

  .chat-widget.chat-open .chat-toggle span {
    display: inline;
  }

  .chat-panel {
    width: 100%;
  }
}
