:root {
  --ink: #121820;
  --muted: #5b6672;
  --line: #dde4ea;
  --paper: #f7f8f5;
  --white: #ffffff;
  --blue: #155ea8;
  --blue-dark: #0d3e6e;
  --green: #5f7f50;
  --gold: #d8a441;
  --danger: #b84c3f;
  --shadow: 0 18px 50px rgba(18, 24, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(18, 24, 32, 0.78);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 206px;
  height: 72px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  gap: 6px;
}

.lang-button {
  min-width: 44px;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 18, 24, 0.9) 0%, rgba(12, 18, 24, 0.72) 38%, rgba(12, 18, 24, 0.1) 100%),
    linear-gradient(0deg, rgba(12, 18, 24, 0.72) 0%, rgba(12, 18, 24, 0.02) 45%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 118px 0 44px;
  color: var(--white);
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(300px, 340px);
  align-items: center;
  max-width: 930px;
  gap: clamp(24px, 3.4vw, 50px);
  margin-bottom: 34px;
}

.hero-copy-column {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5.8vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-quote-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 610px;
  margin-bottom: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-quote-card strong {
  margin-right: 4px;
}

.hero-quote-card span {
  padding: 7px 10px;
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.hero-video-card {
  position: relative;
  right: auto;
  top: auto;
  bottom: auto;
  width: 100%;
  margin: 0;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(18, 24, 32, 0.78);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.hero-video-card div {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.hero-video-card div::after {
  content: "AUTO";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 11px;
  font-weight: 950;
}

.hero-video-card strong,
.hero-video-card span {
  display: block;
}

.hero-video-card strong {
  padding-right: 54px;
  font-size: 18px;
}

.hero-video-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.hero-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ink);
}

.hero-video-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(216, 164, 65, 0.7), rgba(21, 94, 168, 0.55));
  filter: blur(14px);
  opacity: 0.72;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stats div {
  padding: 18px 20px 0 0;
}

.hero-stats dt {
  color: var(--gold);
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.trust-strip {
  padding: 20px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: var(--green);
}

.trust-strip p {
  max-width: 1120px;
  margin: 0 auto;
  font-weight: 800;
  text-align: center;
}

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

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.split p,
.quote-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-grid article {
  min-height: 248px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(18, 24, 32, 0.05);
}

.service-index {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-weight: 900;
}

.service-grid p,
.process-list p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.service-catalog-section {
  padding-top: 0;
}

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

.service-catalog-grid article {
  min-height: 360px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(18, 24, 32, 0.06);
}

.service-catalog-grid h3 {
  min-height: 54px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--blue-dark);
  font-size: 20px;
}

.service-catalog-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-catalog-grid li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
}

.service-catalog-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.advantage-section {
  width: 100%;
  max-width: none;
  padding: 84px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: var(--ink);
}

.advantage-section .section-heading,
.advantage-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.advantage-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.advantage-grid article {
  min-height: 270px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.advantage-grid strong {
  display: block;
  margin-bottom: 40px;
  color: var(--gold);
}

.advantage-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: 52px;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(18, 24, 32, 0.04);
}

.media-frame {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.media-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-frame figcaption {
  padding: 14px 16px;
  color: var(--white);
  font-weight: 700;
}

.maintenance-section {
  padding-top: 0;
}

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

.maintenance-grid div {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-dark);
  font-weight: 900;
}

.maintenance-grid div:nth-child(2),
.maintenance-grid div:nth-child(5) {
  background: var(--green);
}

.maintenance-grid div:nth-child(3),
.maintenance-grid div:nth-child(6) {
  color: var(--ink);
  background: var(--gold);
}

.video-section {
  width: 100%;
  max-width: none;
  padding: 84px clamp(18px, 4vw, 54px);
  background: #e7edf1;
}

.video-section .section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 34px;
}

.video-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(18, 24, 32, 0.18);
}

.quote-ready-section {
  width: 100%;
  max-width: none;
  padding: 0 clamp(18px, 4vw, 54px) 84px;
  background: #e7edf1;
}

.quote-ready-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18, 24, 32, 0.12);
}

.quote-ready-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.quote-ready-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quote-ready-card li {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-left: 4px solid var(--blue);
  background: #f3f6f8;
  font-weight: 900;
}

.process-section {
  width: min(1120px, calc(100% - 36px));
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--white);
}

.process-list li {
  min-height: 240px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  display: block;
  margin-bottom: 48px;
  color: var(--gold);
  font-weight: 900;
}

.audience-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

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

.audience-grid div {
  min-height: 138px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  background: var(--blue-dark);
}

.audience-grid div:nth-child(2) {
  background: var(--green);
}

.audience-grid div:nth-child(3) {
  background: var(--blue);
}

.audience-grid div:nth-child(4) {
  color: var(--ink);
  background: var(--gold);
}

.coverage-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: start;
}

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

.channel-grid article {
  min-height: 200px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-dark);
}

.channel-grid article:nth-child(2) {
  background: var(--green);
}

.channel-grid article:nth-child(3) {
  color: var(--ink);
  background: var(--gold);
}

.channel-grid p {
  color: inherit;
  opacity: 0.82;
}

.faq-section {
  width: min(980px, calc(100% - 36px));
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  padding: 0 20px 20px;
  margin: 0;
}

.contact-section {
  width: min(1180px, calc(100% - 36px));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.contact-card {
  min-height: 300px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 24, 32, 0.08);
}

.contact-label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.mobile-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--ink);
}

.mobile-card a {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 950;
  line-height: 1;
}

.mobile-card p {
  color: rgba(255, 255, 255, 0.72);
}

.qr-card {
  display: grid;
  grid-template-columns: 0.8fr minmax(150px, 0.9fr);
  gap: 18px;
  align-items: center;
}

.qr-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.qr-card p {
  color: var(--muted);
}

.qr-card img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  border-radius: 8px;
  background: #f7f7f7;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
  padding: 86px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: var(--ink);
}

.quote-copy h2,
.quote-copy p {
  max-width: 640px;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list span {
  padding: 12px 14px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.quote-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 12px;
  color: var(--ink);
  background: #fbfcfd;
}

.quote-form button {
  grid-column: 1 / -1;
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
  cursor: pointer;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1.2fr;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

.chatbot-widget {
  position: fixed;
  z-index: 30;
  right: 20px;
  bottom: 20px;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}

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

.chat-toggle {
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(18, 24, 32, 0.26);
  font-weight: 950;
  cursor: pointer;
}

.chat-panel {
  width: min(380px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(18, 24, 32, 0.12);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(18, 24, 32, 0.3);
}

.chat-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--ink);
}

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

.chat-panel header small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.chat-panel header button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow: auto;
  padding: 16px;
  background: #f4f7f9;
}

.chat-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.chat-message.bot {
  justify-self: start;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.chat-message.user {
  justify-self: end;
  color: var(--white);
  background: var(--blue);
}

.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 4px;
}

.chat-actions button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.chat-actions button:hover {
  border-color: var(--blue);
}

.chat-book-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 10px 16px 8px;
  border-radius: 4px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 950;
}

.chat-note {
  margin: 0;
  padding: 0 16px 14px;
  color: var(--muted);
  font-size: 12px;
}

.anywhere-book-now-button {
  position: fixed;
  right: 0;
  top: 25%;
  z-index: 29;
  transform: translate(30%, 0) rotate(-90deg);
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  color: var(--white);
  background: #000;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(18, 24, 32, 0.24);
}

.anywhere-book-now-button:hover {
  background: var(--blue-dark);
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(12, 18, 24, 0.88) 0%, rgba(12, 18, 24, 0.52) 100%);
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }

  .hero-video-card {
    width: min(520px, 100%);
    margin: 0;
  }

  .hero-stats,
  .service-grid,
  .service-catalog-grid,
  .video-grid,
  .process-list,
  .advantage-grid,
  .maintenance-grid,
  .quote-ready-card,
  .quote-ready-card ul,
  .coverage-section,
  .channel-grid,
  .audience-section,
  .contact-grid,
  .quote-section,
  .site-footer,
  .split {
    grid-template-columns: 1fr;
  }

  .process-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .video-grid video {
    max-height: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: 158px;
    height: 56px;
  }

  .brand strong {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    display: none;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 104px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section,
  .process-section,
  .faq-section {
    width: calc(100% - 28px);
    padding: 62px 0;
  }

  .audience-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .qr-card {
    grid-template-columns: 1fr;
  }

  .qr-card img {
    max-height: none;
  }

  .chatbot-widget {
    right: 12px;
    bottom: 12px;
  }

  .anywhere-book-now-button {
    top: 36%;
  }
}
