:root {
  --ink: #172027;
  --muted: #5f6d76;
  --line: #d9e1e5;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --red: #c9302c;
  --red-dark: #9f2220;
  --gold: #f4b83f;
  --blue: #1f78a6;
  --charcoal: #25313a;
  --shadow: 0 22px 60px rgba(23, 32, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--red);
}

.header-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 11px 16px;
  color: #fff;
  background: linear-gradient(135deg, #111820 0%, #25313a 46%, #9f2220 100%);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  border: 1px solid rgba(244, 184, 63, 0.46);
  box-shadow: 0 10px 24px rgba(201, 48, 44, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  animation: phoneButtonFocus 2.45s ease-in-out infinite;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(244, 184, 63, 0.18) 36%, rgba(255, 255, 255, 0.45) 50%, rgba(244, 184, 63, 0.18) 64%, transparent 100%);
  translate: -120% 0;
  animation: phoneShine 2.45s ease-in-out infinite;
}

.header-cta::after {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  border: 1px solid rgba(244, 184, 63, 0.42);
  border-radius: 6px;
  opacity: 0.7;
  animation: phoneInnerPulse 2.45s ease-in-out infinite;
}

.phone-letter {
  display: inline-block;
  transform-origin: 50% 80%;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.phone-digit,
.phone-plus {
  color: #fff8d6;
  text-shadow: 0 0 8px rgba(244, 184, 63, 0.55), 0 1px 0 rgba(0, 0, 0, 0.26);
  animation: phoneDigitDance 1.45s cubic-bezier(0.33, 1, 0.68, 1) infinite;
  animation-delay: calc(var(--i) * 0.075s);
}

.phone-space {
  min-width: 0.25em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  min-height: calc(100vh - 77px);
  background:
    linear-gradient(90deg, rgba(23, 32, 39, 0.9) 0%, rgba(23, 32, 39, 0.76) 42%, rgba(23, 32, 39, 0.1) 72%),
    image-set(url("assets/car-carrier-hero.webp") type("image/webp"), url("assets/car-carrier-hero.png") type("image/png")) center / cover no-repeat;
}

.hero-copy {
  align-self: center;
  max-width: 820px;
  padding: clamp(56px, 7vw, 108px) clamp(20px, 5vw, 72px);
  color: #fff;
}

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

.hero .eyebrow,
.route-band .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  overflow-wrap: anywhere;
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red-dark);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.button.secondary.dark-text {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 850px;
  margin: 36px 0 0;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.trust-strip div {
  padding: 18px;
  background: rgba(23, 32, 39, 0.58);
}

.trust-strip dt {
  margin-bottom: 4px;
  font-weight: 900;
}

.trust-strip dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.quote-panel {
  align-self: center;
  margin: 36px clamp(20px, 4vw, 64px) 36px 0;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-copy .quote-panel {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--ink);
}

.hero-copy .quote-panel .eyebrow {
  color: var(--red);
}

.panel-heading h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.quote-form {
  display: grid;
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 14px;
}

.field-group.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 6px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
}

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 48, 44, 0.18);
  border-color: var(--red);
}

.form-submit {
  width: 100%;
}

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

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

.thank-you {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin: 28px clamp(20px, 4vw, 64px) 0;
  padding: clamp(22px, 3vw, 34px);
  color: #fff;
  background: var(--charcoal);
  border-radius: 8px;
}

.thank-you[hidden] {
  display: none;
}

.thank-you h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 38px);
}

.thank-you p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.enquiry-badge {
  min-width: 240px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.enquiry-badge span,
.enquiry-badge strong {
  display: block;
}

.enquiry-badge span {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.enquiry-badge strong {
  font-size: clamp(18px, 2vw, 24px);
  overflow-wrap: anywhere;
}

.enquiry-badge.light {
  margin: 26px 0;
  color: var(--ink);
  background: var(--soft);
  border-color: var(--line);
}

.section {
  padding: clamp(56px, 7vw, 104px) clamp(20px, 4vw, 64px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--soft);
}

.intro-band p:last-child {
  color: var(--muted);
  font-size: 19px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.center {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.service-grid article,
.contact-grid article,
.review-card,
.photo-card,
.proof-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

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

.proof-card {
  min-height: 170px;
  background: var(--soft);
}

.proof-card strong,
.review-card strong,
.photo-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.review-card {
  min-height: 210px;
}

.review-source {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.photo-card {
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(23, 32, 39, 0.88), rgba(31, 120, 166, 0.72)),
    image-set(url("assets/car-carrier-hero.webp") type("image/webp"), url("assets/car-carrier-hero.png") type("image/png")) center / cover no-repeat;
  color: #fff;
}

.photo-card p,
.review-card p,
.proof-card p {
  color: var(--muted);
}

.photo-card p {
  color: rgba(255, 255, 255, 0.82);
}

.video-proof-section {
  background: var(--soft);
}

.video-grid,
.verified-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.video-card,
.verified-review-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(23, 32, 39, 0.1);
}

.video-card video {
  display: block;
  width: 100%;
  height: clamp(420px, 56vw, 620px);
  object-fit: contain;
  background: var(--ink);
}

.video-card > div,
.verified-review-card {
  padding: clamp(22px, 3vw, 32px);
}

.proof-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card p,
.verified-review-card p,
.review-disclaimer {
  color: var(--muted);
}

.verified-review-card {
  min-height: 330px;
}

.verified-review-card .button {
  margin-top: 10px;
}

.google-source {
  background: #1a73e8;
}

.justdial-source {
  background: #ef6c00;
}

.review-stars {
  margin: 6px 0 14px;
  color: #f5a623;
  font-size: 28px;
  letter-spacing: 4px;
}

.rating-line {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 4px 0 18px;
}

.rating-line strong {
  color: var(--ink);
  font-size: 40px;
  line-height: 1;
}

.rating-line strong span {
  font-size: 18px;
}

.rating-line > span {
  color: var(--muted);
  font-weight: 800;
}

.review-disclaimer {
  margin: 18px 0 0;
  font-size: 13px;
}

@media (max-width: 760px) {
  .video-grid,
  .verified-review-grid {
    grid-template-columns: 1fr;
  }

  .video-card video {
    height: auto;
    aspect-ratio: 9 / 16;
  }
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.cta-panel h2 {
  margin-bottom: 8px;
}

.cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 34px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.service-grid p,
.contact-grid p,
.steps p {
  color: var(--muted);
}

.process {
  color: #fff;
  background: var(--ink);
}

.process .section-heading p {
  color: var(--gold);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.route-band {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(31, 120, 166, 0.88), rgba(23, 32, 39, 0.94)),
    image-set(url("assets/car-carrier-hero.webp") type("image/webp"), url("assets/car-carrier-hero.png") type("image/png")) center 62% / cover no-repeat;
}

.route-band div {
  max-width: 820px;
}

.route-actions {
  margin: 0;
}

.strategy-grid-section {
  background: #fff;
}

.estimate-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.4fr);
  gap: 18px;
  align-items: stretch;
}

.estimate-form,
.estimate-result {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.estimate-result {
  display: grid;
  align-content: center;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.15;
}

.estimate-result small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-pages {
  background: var(--soft);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--red);
  font-weight: 900;
}

.odisha-pages {
  background: var(--soft);
}

.district-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.district-link-grid a {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.district-link-grid a:hover,
.district-link-grid a:focus-visible {
  border-color: var(--red);
  box-shadow: 0 14px 36px rgba(23, 32, 39, 0.12);
}

.district-link-grid strong {
  font-size: 19px;
}

.district-link-grid span {
  color: var(--muted);
  font-size: 13px;
}

.district-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  min-height: 560px;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 64px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 32, 39, 0.92), rgba(23, 32, 39, 0.42)),
    image-set(url("assets/car-carrier-hero.webp") type("image/webp"), url("assets/car-carrier-hero.png") type("image/png")) center / cover no-repeat;
}

.district-hero-copy {
  max-width: 860px;
}

.district-hero h1 {
  max-width: 820px;
}

.district-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.district-summary {
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.district-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.district-summary strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.05;
}

.district-summary p {
  margin-bottom: 0;
  font-size: 15px;
}

.service-grid.compact article {
  min-height: 210px;
}

.district-form-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.68fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--ink);
  color: #fff;
}

.district-form-band p {
  color: rgba(255, 255, 255, 0.75);
}

.district-form {
  padding: clamp(22px, 3vw, 32px);
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.district-nearby {
  background: var(--soft);
}

.district-select {
  max-width: 520px;
}

.odisha-index-hero {
  grid-template-columns: 1fr;
  min-height: 460px;
}

.contact {
  background: var(--soft);
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-grid article {
  min-height: 170px;
  background: var(--paper);
}

.contact a {
  color: var(--red);
  font-weight: 900;
}

.contact-link {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.secondary-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.compact-form {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

address {
  color: var(--muted);
  font-style: normal;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: #10171d;
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: #fff;
  font-weight: 900;
}

.thanks-card a {
  color: var(--red);
  font-weight: 900;
}

.thanks-address {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.floating-actions {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.floating-action {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(16, 23, 29, 0.26);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  animation: contactFloat 2.4s ease-in-out infinite;
}

.floating-action.whatsapp {
  background: #24d366;
}

.floating-action.call {
  background: var(--red);
  animation-delay: 0.42s;
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: scale(1.08);
}

.mobile-sticky-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 35;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #10171d;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 -10px 30px rgba(16, 23, 29, 0.22);
}

.mobile-sticky-bar a {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 10px 8px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.mobile-sticky-bar a:nth-child(2) {
  background: #168a48;
}

.mobile-sticky-bar a:nth-child(3) {
  background: var(--red);
  border-right: 0;
}

.legal-hero {
  min-height: 340px;
}

.content-page {
  max-width: 980px;
  margin: 0 auto;
}

.content-page h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3vw, 34px);
}

.content-page p,
.content-page li {
  color: var(--muted);
}

.content-page ul,
.content-page ol {
  padding-left: 22px;
}

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

.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

@keyframes contactFloat {
  0%,
  100% {
    translate: 0 -8px;
  }
  50% {
    translate: 0 8px;
  }
}

@keyframes phoneButtonFocus {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(201, 48, 44, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    transform: translateY(0) scale(1);
  }
  42% {
    box-shadow: 0 14px 30px rgba(201, 48, 44, 0.38), 0 0 20px rgba(244, 184, 63, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    transform: translateY(-1px) scale(1.025);
  }
}

@keyframes phoneShine {
  0%,
  36% {
    translate: -120% 0;
  }
  62%,
  100% {
    translate: 120% 0;
  }
}

@keyframes phoneInnerPulse {
  0%,
  100% {
    opacity: 0.48;
    scale: 1;
  }
  44% {
    opacity: 1;
    scale: 0.985;
  }
}

@keyframes phoneDigitDance {
  0%,
  100% {
    color: #fff8d6;
    scale: 1;
    translate: 0 0;
    rotate: 0deg;
  }
  18% {
    color: #f4b83f;
    scale: 1.18;
    translate: 0 -4px;
    rotate: -4deg;
  }
  34% {
    color: #ffffff;
    scale: 0.98;
    translate: 0 2px;
    rotate: 3deg;
  }
  52% {
    color: #ffe9a8;
    scale: 1.08;
    translate: 0 -2px;
    rotate: 0deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta,
  .header-cta::before,
  .header-cta::after,
  .phone-letter,
  .floating-action {
    animation: none;
  }
}

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

  .nav {
    grid-column: 1 / -1;
    order: 3;
    row-gap: 12px;
  }

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

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(23, 32, 39, 0.9), rgba(23, 32, 39, 0.46)),
    image-set(url("assets/car-carrier-hero.webp") type("image/webp"), url("assets/car-carrier-hero.png") type("image/png")) center / cover no-repeat;
}

.thanks-hero {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 77px);
  padding: clamp(28px, 5vw, 72px);
}

.thanks-card {
  width: min(780px, 100%);
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 68px);
}

.thanks-card p {
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .district-hero,
  .district-form-band {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    margin: 0 clamp(20px, 5vw, 56px) 48px;
  }

  .district-summary {
    max-width: 520px;
  }

  .estimate-panel {
    grid-template-columns: 1fr;
  }

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

  .review-grid,
  .photo-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .floating-actions {
    display: none;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0 -16px;
    padding: 0 16px 4px;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .nav a {
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(23, 32, 39, 0.94) 0%, rgba(23, 32, 39, 0.78) 58%, rgba(23, 32, 39, 0.42) 100%),
      image-set(url("assets/car-carrier-hero.webp") type("image/webp"), url("assets/car-carrier-hero.png") type("image/png")) center / cover no-repeat;
  }

  h1 {
    font-size: clamp(34px, 10vw, 56px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(26px, 8vw, 40px);
  }

  .hero-copy {
    padding-top: 48px;
    padding-bottom: 38px;
  }

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

  .button {
    width: 100%;
  }

  .trust-strip div {
    padding: 15px;
  }

  .trust-strip,
  .intro-band,
  .steps,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .field-group.two {
    grid-template-columns: 1fr;
  }

  .district-hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 54px;
    background:
      linear-gradient(180deg, rgba(23, 32, 39, 0.94), rgba(23, 32, 39, 0.68)),
      image-set(url("assets/car-carrier-hero.webp") type("image/webp"), url("assets/car-carrier-hero.png") type("image/png")) center / cover no-repeat;
  }

  .district-summary {
    width: 100%;
    max-width: none;
  }

  .district-form,
  .estimate-form,
  .estimate-result,
  .compact-form,
  .service-grid article,
  .contact-grid article,
  .steps li {
    padding: 20px;
  }

  .secondary-form-grid {
    grid-template-columns: 1fr;
  }

  .thank-you,
  .route-band,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    padding-bottom: 92px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .brand strong {
    max-width: 138px;
    font-size: 14px;
    line-height: 1.15;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    max-width: 126px;
    padding: 9px 10px;
    font-size: 12px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .hero-copy,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quote-panel {
    margin-left: 16px;
    margin-right: 16px;
    padding: 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .review-grid,
  .photo-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .contact-grid article,
  .review-card,
  .photo-card,
  .proof-card {
    min-height: auto;
  }

  .district-link-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-bar {
    display: grid;
  }

  body {
    padding-bottom: 62px;
  }
}

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

  .header-cta {
    width: 100%;
    max-width: none;
  }

  h1 {
    font-size: 32px;
  }

  .hero-copy,
  .section,
  .district-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .quote-panel {
    margin-left: 14px;
    margin-right: 14px;
  }
}
