:root {
  --red: #c4122f;
  --red-dark: #9c0e25;
  --navy: #0b1f4a;
  --navy-mid: #16315f;
  --orange: #e85d04;
  --wa: #25d366;
  --wa-dark: #1da851;
  --bg: #f3f5f8;
  --white: #ffffff;
  --text: #1a2332;
  --muted: #5b6576;
  --line: #e2e6ee;
  --shadow: 0 8px 24px rgba(11, 31, 74, 0.07);
  --shadow-hover: 0 16px 36px rgba(11, 31, 74, 0.12);
  --radius: 14px;
  --max: 1180px;
  --header: 76px;
  --announce: 34px;
  --bottom: 72px;
  --sans: 'Poppins', 'Noto Sans Devanagari', system-ui, sans-serif;
  --mr: 'Noto Sans Devanagari', 'Poppins', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

body.menu-lock {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--red);
}

h1,
h2,
h3,
h4 {
  font-family: var(--sans);
  color: var(--navy);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0 0 0.55em;
}

p {
  margin: 0 0 1em;
}

[lang='mr'],
.mr-line {
  font-family: var(--mr);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--red);
  color: var(--white);
  padding: 8px 14px;
  z-index: 2000;
}

.skip-link:focus {
  left: 8px;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.container.narrow {
  width: min(760px, calc(100% - 32px));
}

.app-shell {
  min-height: 100vh;
  padding-bottom: var(--bottom);
}

main {
  min-height: 50vh;
}

.announce {
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  min-height: var(--announce);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
  text-transform: uppercase;
}

.announce-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 6px 20px rgba(11, 31, 74, 0.06);
}

.header-bar {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  min-width: 0;
}

.brand:hover {
  color: var(--navy);
}

.brand img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.brand-text small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}

.desktop-nav a {
  padding: 8px 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.16s ease;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--red);
  background: transparent;
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-family: inherit;
  font-size: 14.5px;
  border: 0;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-sm {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 13.5px;
}

.btn-lg {
  min-height: 56px;
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-call {
  background: var(--red);
  color: var(--white);
}

.btn-call:hover {
  background: var(--red-dark);
  color: var(--white);
}

.btn-wa {
  background: var(--wa);
  color: #07351c;
}

.btn-wa:hover {
  background: var(--wa-dark);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-mid);
  color: var(--white);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.mobile-drawer.open {
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 16, 38, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mobile-drawer.open .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 92vw);
  height: 100%;
  background: var(--white);
  padding: 88px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  overflow: auto;
}

.mobile-drawer.open .drawer-panel {
  transform: none;
}

.drawer-panel a {
  padding: 11px 8px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.drawer-panel a.active {
  color: var(--red);
}

.drawer-panel .btn {
  border-bottom: 0;
  margin-top: 8px;
  width: 100%;
}

.drawer-policies {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
}

.hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  color: var(--white);
  padding: 52px 0 64px;
  border-bottom: 4px solid var(--red);
}

.hero h1,
.hero .eyebrow,
.hero p {
  color: var(--white);
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11.5px;
  margin-bottom: 10px;
}

.eyebrow.light,
.hero .eyebrow,
.page-hero .eyebrow,
.home-service-band .eyebrow {
  color: #f3c19a;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  margin-bottom: 14px;
  max-width: 16ch;
}

.hero-sub {
  font-size: 1.08rem;
  color: #d7e1f4 !important;
  max-width: 42ch;
}

.hero-mr {
  font-size: 1.05rem;
  max-width: 36ch;
}

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 22px;
}

.trust-row li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: #e8eef9;
}

.hero-owner {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.hero-owner p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel {
  background: var(--white);
  color: var(--navy);
  border-radius: 20px;
  padding: 28px 24px 24px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  border-top: 5px solid var(--red);
}

.hero-panel img {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
}

.hero-panel p {
  color: var(--navy) !important;
  margin: 0 0 6px;
}

.hero-panel-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.hero-panel-mr {
  color: var(--muted) !important;
  font-size: 0.92rem;
}

.hero-panel .hero-owner {
  text-align: left;
  background: var(--bg);
  border-radius: 12px;
  padding: 12px 14px;
}

.hero-panel-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--bg);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}

.section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  margin-bottom: 10px;
}

.section-head h2::after {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  background: var(--red);
  margin: 12px auto 0;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-icon-panel {
  background: var(--navy);
  min-height: 92px;
  display: grid;
  place-items: center;
}

.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
}

.card-media {
  position: relative;
  background: #eef1f6;
  display: block;
}

.card-media img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.gallery-item img,
.mini-gallery img,
.carousel img {
  object-fit: contain;
}

.icon-badge {
  position: absolute;
  left: 12px;
  bottom: -16px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
}

.card-body {
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-body h3 {
  margin: 0;
  font-size: 1.06rem;
}

.card-body p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.mr-line {
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 0.92rem !important;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  align-items: center;
}

.text-link {
  font-weight: 700;
  color: var(--red);
  font-size: 14px;
}

.blog-card-top {
  background: var(--navy);
  padding: 18px 18px 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
}

.chip-static,
.blog-card-top .chip {
  cursor: default;
  background: rgba(255, 255, 255, 0.12);
  border-color: transparent;
  color: var(--white);
}

.chip.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.home-service-band,
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 44px 0;
}

.home-service-band h2,
.cta-band h2,
.cta-band p,
.home-service-band p {
  color: var(--white);
}

.band-inner,
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.cta-phone {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 4px 0 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-preview {
  display: grid;
  gap: 28px;
  align-items: center;
}

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

.stat-list li {
  background: var(--bg);
  border-radius: 14px;
  padding: 18px 20px;
  border-left: 4px solid var(--red);
}

.stat-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f8e8eb;
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pill-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
  color: var(--navy);
  min-height: 56px;
  box-shadow: var(--shadow);
}

.pill-card:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.pill-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.preowned-preview {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  max-width: 760px;
}

.center-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.qr-card {
  min-height: 96px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 8px;
  font-size: 0.86rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.qr-card:hover {
  transform: translateY(-2px);
}

.qr-navy {
  background: var(--navy);
  color: var(--white);
}

.qr-navy:hover {
  color: var(--white);
}

.qr-red {
  background: var(--red);
  color: var(--white);
}

.qr-red:hover {
  color: var(--white);
}

.qr-wa {
  background: var(--wa);
  color: #07351c;
}

.qr-wa:hover {
  color: #07351c;
}

.qr-soft {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.qr-soft:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.qr-grid.large .qr-card {
  min-height: 112px;
  font-size: 0.9rem;
}

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 40px 0 44px;
  border-bottom: 4px solid var(--red);
}

.page-hero h1,
.page-hero p,
.page-hero .eyebrow {
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  max-width: 18ch;
}

.page-hero-mr {
  font-size: 1.12rem;
}

.lead {
  color: #d4deef !important;
  max-width: 58ch;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 6px;
  color: #9aa3b5;
}

.notice {
  background: #fff7eb;
  border: 1px solid #efd4aa;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.meta-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin: 0;
}

.meta-list div {
  background: var(--bg);
  border-radius: 10px;
  padding: 8px 10px;
}

.meta-list dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.meta-list dd {
  margin: 0;
  font-weight: 600;
}

.stock-pill {
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.gallery-grid {
  columns: 1;
  column-gap: 14px;
}

.gallery-item {
  width: 100%;
  border: 0;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  margin: 0 0 14px;
  break-inside: avoid;
  box-shadow: var(--shadow);
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: auto;
}

.gallery-item span {
  display: block;
  padding: 10px 14px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
}

.lightbox.open {
  display: grid;
}

.icon-wrap .bi,
.why-icon .bi,
.pill-icon .bi,
.qr-card .bi {
  font-size: 1.35rem;
}

.btn .bi {
  font-size: 1rem;
}

.container.narrow {
  max-width: 760px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 16, 38, 0.84);
}

.lightbox-frame {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 24px));
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
}

.lightbox-frame img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  margin: 0 auto;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: var(--navy);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-close {
  top: 8px;
  right: 8px;
}

.lightbox-nav.prev {
  left: 8px;
  top: 45%;
}

.lightbox-nav.next {
  right: 8px;
  top: 45%;
}

.video-grid {
  display: grid;
  gap: 18px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #101b36;
  display: grid;
  place-items: center;
  color: var(--white);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.play-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
}

.article-hero {
  width: 100%;
  border-radius: 16px;
  margin: 12px 0 20px;
  background: var(--bg);
}

.policy-body h2 {
  margin-top: 1.4em;
}

.policy-body ul,
.plain-list {
  padding-left: 1.1em;
}

.contact-grid {
  display: grid;
  gap: 24px;
}

.contact-card,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  min-height: 44px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 31, 74, 0.12);
}

.form-error {
  color: var(--red);
  font-weight: 600;
}

.form-ok {
  color: #157347;
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.site-footer {
  background: #071536;
  color: #c9d4e8;
  padding: 48px 0 108px;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  color: var(--white);
  align-items: center;
  margin-bottom: 14px;
}

.footer-brand:hover {
  color: var(--white);
}

.footer-brand img {
  width: 56px;
  height: 56px;
}

.footer-brand small {
  display: block;
  font-family: var(--mr);
  color: #9eb0cc;
}

.site-footer h2 {
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a {
  color: #c9d4e8;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-address,
.site-footer p {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-owner {
  font-weight: 700;
  color: var(--white);
}

.footer-phone {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-connect-copy {
  display: block;
  margin-bottom: 12px;
}

.footer-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 32px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
}

.footer-bottom p {
  margin: 0;
  display: block;
}

.footer-credit a {
  color: #ffffff;
  font-weight: 700;
}

.footer-credit a:hover {
  color: var(--orange);
}

.floating-wa {
  position: fixed;
  right: 16px;
  bottom: 88px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #07351c;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  z-index: 60;
}

.floating-wa:hover {
  color: #07351c;
}

.floating-tooltip {
  position: absolute;
  right: 66px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.floating-wa:hover .floating-tooltip,
.floating-wa:focus-visible .floating-tooltip {
  opacity: 1;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: var(--white);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: var(--bottom);
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  min-height: 56px;
}

.bottom-nav-item.active {
  color: var(--red);
}

.bottom-nav-wa {
  color: #07351c;
}

.wa-orb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-top: -18px;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}

.visit-hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 40px 16px 44px;
  border-bottom: 4px solid var(--red);
}

.visit-hero h1,
.visit-hero p {
  color: var(--white);
}

.visit-hero img {
  width: 112px;
  height: 112px;
  margin: 0 auto 12px;
}

.visit-owner {
  font-weight: 700;
  font-size: 1.1rem;
}

.visit-band {
  background: var(--bg);
}

.carousel {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.carousel img {
  width: 100%;
  height: min(52vw, 420px);
  object-fit: contain;
  background: #eef1f6;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #c5cddb;
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--red);
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.mini-gallery img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  background: #eef1f6;
}

.subhead {
  margin: 28px 0 12px;
}

.center-copy {
  text-align: center;
  padding: 40px 0;
}

@media (min-width: 600px) {
  .card-grid,
  .why-grid,
  .video-grid,
  .pill-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-grid {
    columns: 2;
  }

  .qr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero-grid,
  .about-preview,
  .contact-grid,
  .cta-inner,
  .band-inner {
    display: grid;
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .about-preview,
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .cta-inner,
  .band-inner {
    grid-template-columns: 1fr auto;
  }

  .hero {
    padding: 80px 0 88px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .mini-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  }

  .preowned-preview {
    padding: 44px 40px;
  }
}

@media (min-width: 1024px) {
  .card-grid,
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pill-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .qr-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .gallery-grid {
    columns: 3;
  }

  .menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  .desktop-nav a {
    padding: 8px 8px;
    font-size: 13px;
  }

  .header-phone {
    display: none;
  }

  .floating-wa {
    bottom: 24px;
  }

  .bottom-nav {
    display: none;
  }

  .app-shell,
  .site-footer {
    padding-bottom: 48px;
  }
}

@media (min-width: 1200px) {
  .desktop-nav a {
    padding: 8px 11px;
    font-size: 14px;
  }

  .header-phone {
    display: inline-flex;
    margin-right: 4px;
  }

  .header-actions .btn-call {
    display: none;
  }
}

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

  .header-actions .btn span {
    display: none;
  }

  .container,
  .container.narrow {
    width: calc(100% - 20px);
  }

  .btn {
    padding: 10px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
