:root {
  --ivory: #faf7f0;
  --white: #ffffff;
  --silver: #e8eaed;
  --graphite: #2f3437;
  --navy: #1f2a33;
  --gold: #c9a44c;
  --teal: #2f7d7e;
  --caramel: #b77a3b;
  --ink: #172027;
  --muted: #65707a;
  --line: rgba(31, 42, 51, 0.12);
  --shadow: 0 18px 50px rgba(31, 42, 51, 0.12);
  --soft-shadow: 0 10px 28px rgba(31, 42, 51, 0.08);
  --radius: 8px;
  --container: min(1180px, calc(100% - 32px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.98), rgba(255, 255, 255, 0.96) 34%, rgba(250, 247, 240, 0.98)),
    var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(31, 42, 51, 0.1);
  background: rgba(250, 247, 240, 0.84);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #ead99c 52%, var(--teal));
  border: 1px solid rgba(31, 42, 51, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(201, 164, 76, 0.24);
}

.brand small {
  display: block;
  margin-top: -3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 11px;
  border-radius: var(--radius);
  color: rgba(31, 42, 51, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--navy);
  background: rgba(47, 125, 126, 0.1);
  outline: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.btn-primary {
  color: #151a1d;
  background: linear-gradient(135deg, #d7b85e, var(--gold) 52%, var(--caramel));
  box-shadow: 0 14px 26px rgba(183, 122, 59, 0.24);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 42, 51, 0.2);
}

.btn-teal {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #255f61);
  box-shadow: 0 14px 26px rgba(47, 125, 126, 0.2);
}

.btn-small {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 0.9rem;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(790px, 86svh);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(31, 42, 51, 0.92) 0%, rgba(31, 42, 51, 0.8) 42%, rgba(31, 42, 51, 0.2) 100%),
    url("../images/mahalaxmi-motors-premium-car-service-hero.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(250, 247, 240, 0.92));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: min(790px, 86svh);
  padding: clamp(78px, 10vw, 128px) 0 76px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #f4dfa2;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  font-weight: 900;
}

.hero .lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.03rem, 1.6vw, 1.24rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 880px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  font-size: 0.88rem;
  font-weight: 750;
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(232, 234, 237, 0.38), rgba(250, 247, 240, 0.68));
}

.section-dark {
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(140deg, rgba(31, 42, 51, 0.97), rgba(47, 52, 55, 0.95)),
    var(--navy);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-kicker,
.section-dark .section-text,
.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head.center {
  display: block;
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-text {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.media-frame {
  overflow: hidden;
  border: 1px solid rgba(31, 42, 51, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.filter-btn {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(31, 42, 51, 0.14);
  border-radius: var(--radius);
  color: rgba(31, 42, 51, 0.72);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover,
.filter-btn:focus-visible {
  color: var(--white);
  background: var(--teal);
  outline: 0;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  padding: 22px;
  border: 1px solid rgba(31, 42, 51, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(47, 125, 126, 0.22);
  box-shadow: var(--shadow);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.service-card.is-hidden {
  display: none;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--navy);
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.24), rgba(47, 125, 126, 0.12));
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3 {
  font-size: 1.08rem;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.category-panel {
  overflow: hidden;
  border: 1px solid rgba(31, 42, 51, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.category-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.category-body {
  padding: 24px;
}

.tag-list,
.check-list,
.footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.check-list li {
  padding: 8px 10px;
  border: 1px solid rgba(31, 42, 51, 0.12);
  border-radius: var(--radius);
  color: rgba(31, 42, 51, 0.76);
  background: rgba(250, 247, 240, 0.7);
  font-size: 0.88rem;
  font-weight: 750;
}

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

.feature-list li {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.feature-list strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.feature-list span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

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

.process-step {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(31, 42, 51, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.process-step::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(201, 164, 76, 0.24);
  font-weight: 900;
}

.process-step h3 {
  font-size: 1.02rem;
}

.process-step p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.seo-block {
  padding: 24px;
  border: 1px solid rgba(31, 42, 51, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--soft-shadow);
}

.seo-block h3 {
  font-size: 1.35rem;
}

.seo-block p {
  color: var(--muted);
}

.mini-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.mini-columns h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.94rem;
}

.mini-columns ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.testimonial {
  padding: 24px;
  border: 1px solid rgba(31, 42, 51, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

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

.testimonial strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  background: var(--silver);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-label {
  position: absolute;
  inset: auto 12px 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(31, 42, 51, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 850;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 230px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(31, 42, 51, 0.12);
  box-shadow: var(--soft-shadow);
}

.before-after div {
  position: relative;
  background-size: cover;
  background-position: center;
}

.before-after div::after {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(31, 42, 51, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
}

.before-after .before::after {
  content: "Before";
}

.before-after .after::after {
  content: "After";
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid rgba(31, 42, 51, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--teal);
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

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

.contact-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.form-card,
.map-placeholder {
  border: 1px solid rgba(31, 42, 51, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.contact-card,
.form-card {
  padding: 24px;
}

.contact-line {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 42, 51, 0.1);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line strong {
  color: var(--navy);
}

.contact-line span,
.contact-line a {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(31, 42, 51, 0.15);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(250, 247, 240, 0.65);
}

.form-field textarea {
  min-height: 112px;
  resize: vertical;
}

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

.map-placeholder {
  display: grid;
  min-height: 340px;
  place-items: center;
  padding: 26px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(47, 125, 126, 0.14), rgba(201, 164, 76, 0.18)),
    var(--white);
}

.map-placeholder strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.map-placeholder p {
  margin: 9px 0 0;
  color: var(--muted);
}

.page-hero {
  padding: clamp(72px, 10vw, 122px) 0 clamp(54px, 7vw, 82px);
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(31, 42, 51, 0.94), rgba(31, 42, 51, 0.72), rgba(47, 125, 126, 0.38)),
    url("../images/mahalaxmi-motors-premium-car-service-hero.jpg") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 750;
}

.breadcrumb a {
  color: #f4dfa2;
}

.cta-band {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(47, 125, 126, 0.22), rgba(201, 164, 76, 0.16));
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr;
  gap: 34px;
  padding: 56px 0;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
}

.footer-list {
  gap: 8px;
}

.footer-list a {
  display: inline-flex;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 10px;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 136px;
  min-height: 44px;
  padding: 11px 14px;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(31, 42, 51, 0.24);
  font-weight: 850;
}

.float-call {
  background: var(--navy);
}

.float-whatsapp {
  background: var(--teal);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(31, 42, 51, 0.12);
    border-radius: var(--radius);
    background: rgba(250, 247, 240, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 78px 0 96px;
  }

  .hero h1 {
    font-size: clamp(2.28rem, 13vw, 3.55rem);
  }

  .section-head {
    display: block;
  }

  .section-actions {
    margin-top: 20px;
  }

  .metric-row,
  .category-grid,
  .service-grid,
  .feature-list,
  .process,
  .seo-block-grid,
  .testimonial-grid,
  .gallery-grid,
  .mini-columns,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .contact-band {
    gap: 16px;
  }

  .before-after {
    min-height: 190px;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .float-btn {
    min-width: 0;
  }
}

/* 2026 premium interaction layer */
:root {
  --surface-glass: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --metal-line: rgba(255, 255, 255, 0.38);
  --dark-glass: rgba(23, 32, 39, 0.66);
  --electric: #83d7d1;
  --copper: #c88a43;
  --deep-shadow: 0 32px 90px rgba(12, 24, 32, 0.22);
}

body {
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(31, 42, 51, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 42, 51, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fbf8f1 0%, #ffffff 34%, #f3f6f5 70%, #faf7f0 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(201, 164, 76, 0.12), transparent 28%, rgba(47, 125, 126, 0.1) 58%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(250, 247, 240, 0.35));
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--electric), var(--copper));
  box-shadow: 0 0 18px rgba(131, 215, 209, 0.42);
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.28);
  background: rgba(250, 247, 240, 0.72);
  box-shadow: 0 10px 36px rgba(31, 42, 51, 0.08);
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 247, 240, 0.92);
  box-shadow: 0 16px 48px rgba(31, 42, 51, 0.14);
}

.brand-mark {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.48);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -60%;
  width: 42%;
  transform: rotate(22deg);
  background: rgba(255, 255, 255, 0.55);
  animation: markSweep 4.8s ease-in-out infinite;
}

.nav-links a {
  position: relative;
  overflow: hidden;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(31, 42, 51, 0.11);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 42%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  transition: transform 420ms ease, opacity 180ms ease;
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateX(320%) skewX(-22deg);
}

.hero {
  isolation: isolate;
  min-height: min(900px, 94svh);
  background:
    linear-gradient(102deg, rgba(15, 22, 28, 0.96) 0%, rgba(31, 42, 51, 0.88) 38%, rgba(31, 42, 51, 0.26) 100%),
    linear-gradient(180deg, rgba(250, 247, 240, 0) 70%, rgba(250, 247, 240, 0.92)),
    url("../images/mahalaxmi-motors-premium-car-service-hero.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(120deg, transparent, rgba(131, 215, 209, 0.16), transparent);
  background-size: 72px 72px, 72px 72px, auto;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
  animation: gridDrift 18s linear infinite;
}

.hero::after {
  height: 42%;
  background:
    linear-gradient(180deg, transparent, rgba(250, 247, 240, 0.97)),
    linear-gradient(90deg, rgba(201, 164, 76, 0.18), transparent, rgba(47, 125, 126, 0.18));
}

.hero-inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 76px);
  min-height: min(900px, 94svh);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.section .eyebrow,
.page-hero .eyebrow {
  border-color: rgba(255, 255, 255, 0.18);
}

.hero h1 {
  max-width: 860px;
  font-size: 5.15rem;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(112deg, rgba(15, 22, 28, 0.96), rgba(31, 42, 51, 0.78), rgba(47, 125, 126, 0.32)),
    linear-gradient(180deg, rgba(250, 247, 240, 0) 72%, rgba(250, 247, 240, 0.86)),
    url("../images/mahalaxmi-motors-premium-car-service-hero.jpg") center / cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(120deg, rgba(201, 164, 76, 0.18), transparent 38%, rgba(131, 215, 209, 0.14));
  background-size: 72px 72px, 72px 72px, auto;
  mask-image: linear-gradient(90deg, #000, transparent 86%);
  animation: gridDrift 18s linear infinite;
}

.page-hero h1 {
  max-width: 980px;
  font-size: 4.05rem;
  line-height: 0.98;
  text-wrap: balance;
}

.hero .lead {
  max-width: 740px;
  margin-top: 26px;
  font-size: 1.18rem;
}

.hero-showcase {
  position: relative;
  min-height: 610px;
  perspective: 1100px;
}

.diagnostic-console {
  position: absolute;
  inset: 42px 0 auto auto;
  width: min(100%, 520px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(23, 32, 39, 0.48);
  backdrop-filter: blur(22px) saturate(130%);
  box-shadow: var(--deep-shadow);
  transform-style: preserve-3d;
}

.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 3px 2px 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.83rem;
  font-weight: 800;
}

.console-topline strong {
  color: #f4dfa2;
}

.console-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--navy);
}

.console-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.03);
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: -35%;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(131, 215, 209, 0.36), transparent);
  animation: scanMove 4.2s ease-in-out infinite;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.console-grid div {
  min-height: 86px;
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.console-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1;
}

.console-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-stack-card {
  position: absolute;
  z-index: 3;
  width: min(280px, 56%);
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(23, 32, 39, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.2);
  animation: panelFloat 6.4s ease-in-out infinite;
}

.hero-stack-card strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.hero-stack-card p {
  margin: 8px 0 0;
  font-size: 0.86rem;
}

.stack-card-one {
  left: -8px;
  top: 118px;
}

.stack-card-two {
  right: 18px;
  top: 520px;
  bottom: auto;
  animation-delay: -2.6s;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 18px rgba(131, 215, 209, 0.82);
}

.status-dot.gold {
  background: var(--gold);
  box-shadow: 0 0 18px rgba(201, 164, 76, 0.82);
}

.trust-strip {
  max-width: 980px;
}

.trust-pill {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.trust-pill::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 56%;
  transform: skewX(-24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  animation: softSweep 7s ease-in-out infinite;
}

.section {
  position: relative;
}

.section-title {
  font-size: 3.05rem;
  line-height: 1.03;
  text-wrap: balance;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(232, 234, 237, 0.46)),
    linear-gradient(110deg, rgba(47, 125, 126, 0.08), transparent 44%, rgba(201, 164, 76, 0.09));
}

.service-grid {
  gap: 18px;
}

.service-card,
.category-panel,
.seo-block,
.testimonial,
.process-step,
.contact-card,
.form-card,
.map-placeholder {
  border-color: rgba(255, 255, 255, 0.64);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58)),
    rgba(250, 247, 240, 0.72);
  box-shadow: 0 20px 64px rgba(31, 42, 51, 0.1);
  transform-style: preserve-3d;
}

.seo-block {
  position: relative;
  overflow: hidden;
}

.service-card {
  min-height: 196px;
  padding: 24px;
}

.service-card::before,
.category-panel::before,
.seo-block::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  transform: translateX(-100%);
  transition: transform 520ms ease, opacity 180ms ease;
  pointer-events: none;
}

.service-card:hover::before,
.category-panel:hover::before,
.seo-block:hover::before {
  opacity: 0.65;
  transform: translateX(100%);
}

.service-card:hover,
.service-card:focus-within,
.category-panel:hover,
.gallery-item:hover,
.seo-block:hover,
.testimonial:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 88px rgba(31, 42, 51, 0.16);
}

.service-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  color: #11181d;
  background:
    linear-gradient(135deg, rgba(201, 164, 76, 0.95), rgba(244, 223, 162, 0.88) 48%, rgba(131, 215, 209, 0.52));
  box-shadow: 0 12px 24px rgba(201, 164, 76, 0.22);
}

.filter-bar {
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(31, 42, 51, 0.08);
}

.filter-btn {
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.filter-btn:hover,
.filter-btn:focus-visible {
  transform: translateY(-1px);
}

.filter-btn.is-active {
  box-shadow: 0 12px 24px rgba(47, 125, 126, 0.22);
}

.category-panel,
.gallery-item {
  position: relative;
  isolation: isolate;
}

.category-panel img,
.gallery-item img,
.media-frame img {
  transition: transform 520ms ease, filter 520ms ease;
}

.category-panel:hover img,
.media-frame:hover img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.04);
}

.category-body {
  position: relative;
  z-index: 1;
}

.feature-list li {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.feature-list li:hover {
  transform: translateY(-5px);
  border-color: rgba(131, 215, 209, 0.42);
  background:
    linear-gradient(150deg, rgba(131, 215, 209, 0.14), rgba(201, 164, 76, 0.08)),
    rgba(255, 255, 255, 0.07);
}

.process-step::before {
  box-shadow: 0 10px 26px rgba(201, 164, 76, 0.2);
}

.gallery-item {
  box-shadow: 0 24px 72px rgba(31, 42, 51, 0.13);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(15, 22, 28, 0.68)),
    linear-gradient(120deg, rgba(201, 164, 76, 0.14), transparent 42%, rgba(47, 125, 126, 0.18));
  opacity: 0.75;
  transition: opacity 220ms ease;
}

.gallery-item:hover::after {
  opacity: 0.92;
}

.gallery-label {
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(23, 32, 39, 0.68);
}

.contact-band {
  align-items: stretch;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(47, 125, 126, 0.54);
  box-shadow: 0 0 0 4px rgba(47, 125, 126, 0.12);
  outline: 0;
}

.floating-actions {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(250, 247, 240, 0.68);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(31, 42, 51, 0.18);
}

.float-btn {
  position: relative;
  overflow: hidden;
}

.float-whatsapp {
  animation: contactPulse 2.8s ease-in-out infinite;
}

[data-animate] {
  transform: translateY(28px) scale(0.98);
  transition: opacity 720ms cubic-bezier(.2,.8,.2,1), transform 720ms cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--reveal-index, 0) * 55ms);
}

[data-animate].is-visible {
  transform: translateY(0) scale(1);
}

[data-tilt] {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

@keyframes markSweep {
  0%, 36% {
    transform: translateX(0) rotate(22deg);
  }
  58%, 100% {
    transform: translateX(420%) rotate(22deg);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 72px 0, 0 72px, 240px 0;
  }
}

@keyframes scanMove {
  0%, 18% {
    top: -35%;
    opacity: 0;
  }
  32%, 68% {
    opacity: 1;
  }
  86%, 100% {
    top: 105%;
    opacity: 0;
  }
}

@keyframes panelFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes softSweep {
  0%, 42% {
    transform: translateX(0) skewX(-24deg);
  }
  68%, 100% {
    transform: translateX(340%) skewX(-24deg);
  }
}

@keyframes contactPulse {
  0%, 100% {
    box-shadow: 0 14px 32px rgba(47, 125, 126, 0.24);
  }
  50% {
    box-shadow: 0 16px 42px rgba(47, 125, 126, 0.42);
  }
}

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

  .hero-showcase {
    min-height: 520px;
    max-width: 700px;
  }

  .diagnostic-console {
    left: 0;
    right: auto;
  }

  .stack-card-one {
    left: 22px;
    top: 78px;
  }
}

@media (max-width: 880px) {
  .hero h1,
  .page-hero h1 {
    font-size: 3.55rem;
  }

  .section-title {
    font-size: 2.35rem;
  }

  .hero-showcase {
    min-height: 460px;
  }

  .diagnostic-console {
    width: 100%;
  }

  .hero-stack-card {
    width: min(250px, 68%);
  }
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-inner {
    padding: 72px 0 58px;
  }

  .hero-copy,
  .hero-showcase,
  .diagnostic-console,
  .console-image,
  .trust-strip {
    max-width: 100%;
    min-width: 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.72rem;
    line-height: 1;
    overflow-wrap: break-word;
  }

  .hero .lead {
    font-size: 1rem;
    overflow-wrap: break-word;
  }

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

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    line-height: 1.15;
  }

  .hero-showcase {
    min-height: auto;
    padding-bottom: 0;
  }

  .diagnostic-console,
  .hero-stack-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-stack-card {
    margin-top: 12px;
  }

  .console-topline {
    display: grid;
    gap: 4px;
  }

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

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-pill {
    justify-content: center;
    text-align: center;
  }

  .floating-actions {
    border-radius: var(--radius);
  }
}

@media (max-width: 540px) {
  :root {
    --container: calc(100% - 24px);
  }

  .container {
    width: var(--container);
    margin-inline: auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.48rem;
  }

  .eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-actions,
  .trust-strip,
  .hero-showcase {
    width: 100%;
    max-width: 100%;
  }

  .trust-pill {
    display: flex;
    width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .diagnostic-console {
    padding: 12px;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    width: auto;
  }

  .float-btn {
    min-width: 0;
    padding-inline: 8px;
    font-size: 0.94rem;
  }
}

/* Bright metallic theme override */
.hero {
  color: var(--navy);
  background:
    linear-gradient(100deg, rgba(250, 247, 240, 0.98) 0%, rgba(250, 247, 240, 0.92) 42%, rgba(232, 234, 237, 0.52) 100%),
    linear-gradient(180deg, rgba(250, 247, 240, 0) 70%, rgba(250, 247, 240, 0.96)),
    url("../images/mahalaxmi-motors-premium-car-service-hero.jpg") center / cover no-repeat;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(31, 42, 51, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 42, 51, 0.06) 1px, transparent 1px),
    linear-gradient(120deg, rgba(201, 164, 76, 0.16), transparent 38%, rgba(47, 125, 126, 0.14));
}

.hero::after {
  background:
    linear-gradient(180deg, transparent, rgba(250, 247, 240, 0.98)),
    linear-gradient(90deg, rgba(201, 164, 76, 0.16), transparent, rgba(47, 125, 126, 0.14));
}

.hero h1 {
  color: var(--navy);
  text-shadow: 0 18px 48px rgba(255, 255, 255, 0.72);
}

.hero .lead {
  color: rgba(31, 42, 51, 0.78);
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #8b6b1f;
  border-color: rgba(31, 42, 51, 0.12);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 40px rgba(31, 42, 51, 0.08);
}

.trust-pill {
  color: rgba(31, 42, 51, 0.86);
  border-color: rgba(31, 42, 51, 0.14);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 34px rgba(31, 42, 51, 0.08);
}

.diagnostic-console,
.hero-stack-card {
  color: rgba(31, 42, 51, 0.76);
  border-color: rgba(31, 42, 51, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    rgba(250, 247, 240, 0.72);
  box-shadow: 0 32px 90px rgba(31, 42, 51, 0.16);
}

.console-topline {
  color: rgba(31, 42, 51, 0.62);
}

.console-topline strong {
  color: var(--teal);
}

.hero-stack-card strong,
.console-grid strong {
  color: var(--navy);
}

.hero-stack-card p,
.console-grid span {
  color: rgba(31, 42, 51, 0.66);
}

.console-image {
  border-color: rgba(31, 42, 51, 0.12);
  background: var(--silver);
}

.console-grid div {
  border-color: rgba(31, 42, 51, 0.11);
  background: rgba(255, 255, 255, 0.62);
}

.page-hero {
  color: var(--navy);
  background:
    linear-gradient(105deg, rgba(250, 247, 240, 0.98), rgba(250, 247, 240, 0.88), rgba(232, 234, 237, 0.48)),
    linear-gradient(180deg, rgba(250, 247, 240, 0) 72%, rgba(250, 247, 240, 0.9)),
    url("../images/mahalaxmi-motors-premium-car-service-hero.jpg") center / cover no-repeat;
}

.page-hero h1 {
  color: var(--navy);
}

.page-hero p,
.breadcrumb {
  color: rgba(31, 42, 51, 0.72);
}

.breadcrumb a {
  color: var(--teal);
}

.section-dark,
.cta-band.section-dark {
  color: rgba(31, 42, 51, 0.76);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 234, 237, 0.64)),
    linear-gradient(120deg, rgba(201, 164, 76, 0.13), transparent, rgba(47, 125, 126, 0.12));
  border-color: rgba(31, 42, 51, 0.1);
  box-shadow: 0 24px 72px rgba(31, 42, 51, 0.1);
}

.section-dark h2,
.section-dark h3,
.feature-list strong,
.cta-band h2 {
  color: var(--navy);
}

.section-dark .section-kicker {
  color: var(--teal);
}

.section-dark .section-text,
.section-dark p,
.feature-list span {
  color: rgba(31, 42, 51, 0.66);
}

.feature-list li {
  border-color: rgba(31, 42, 51, 0.1);
  background: rgba(255, 255, 255, 0.66);
}

.feature-list li:hover {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(201, 164, 76, 0.12)),
    rgba(255, 255, 255, 0.72);
}

.site-footer {
  color: rgba(31, 42, 51, 0.68);
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.98), rgba(232, 234, 237, 0.72)),
    var(--ivory);
  border-top: 1px solid rgba(31, 42, 51, 0.1);
}

.site-footer h2,
.site-footer h3 {
  color: var(--navy);
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(31, 42, 51, 0.68);
}

.footer-list a {
  border-color: rgba(31, 42, 51, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top-color: rgba(31, 42, 51, 0.1);
}

.brand-mark {
  width: 64px;
  height: 52px;
  padding: 4px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 234, 237, 0.58)),
    var(--white);
  box-shadow: 0 12px 30px rgba(31, 42, 51, 0.14);
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
}

@media (max-width: 720px) {
  .brand-mark {
    width: 56px;
    height: 46px;
  }
}
