:root {
  --bg: #151618;
  --white: #ffffff;
  --accent: #f7b71a;
  --accent-dark: #d89a08;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --card: #1c1d20;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}


::selection{
    background-color: #f0b114;
    color: black;
}

html,
body {
  overflow-x: hidden;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: monospace;
  background: var(--bg);
  color: var(--white);
  line-height: 2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #111214;
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 26px;
  font-size: 0.94rem;
  color: var(--muted);
}

.topbar-inner a:hover {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(21, 22, 24, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.08rem;
}

.brand-text span {
  font-size: 0.83rem;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  font-weight: 600;
  transition: 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #151618;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.menu-toggle,
.menu-close {
  display: none;
  background: transparent;
  color: var(--white);
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 100%);
  height: 100vh;
  background: #111214;
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: right 0.35s ease;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.35);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--accent);
}

.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.mobile-menu a.active,
.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-cta {
  margin-top: 10px;
  background: var(--accent);
  color: #151618 !important;
  padding: 14px 18px !important;
  border-radius: 999px;
  text-align: center;
  border: 0 !important;
}

.hero-slider {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
}

.slides {
  position: relative;
  min-height: 78vh;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  background-size: cover;
  background-position: center;
}

.slide:nth-child(1) {
  background-image: url("img/Banners/4x\ dealership.png");
}

.slide:nth-child(2) {
  background-image: url("img/Banners/Recovery\ banner\ 4x.png");
}

.slide:nth-child(3) {
  background-image: url("img/Banners/Third\ banner\ 4x.png");
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(21, 22, 24, 0.45));
}

.slide-content {
  position: relative;
  z-index: 2;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.slide-content h1 {
  font-size: clamp(2rem, 1vw, 0rem);
  line-height: 0.98;
  margin-bottom: 18px;
}

.slide-content p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.slider-controls {
  position: absolute;
  inset: auto 24px 24px auto;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-controls button:hover {
  background: var(--accent);
  color: #151618;
}

.slider-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
}

.highlights,
.dual-cards,
.about-preview,
.contact-section {
  padding: 80px 0;
}


.dual-cards{
  background-image: url(img/bg/grid.png);
  background-size: cover;
  background-position: center;

  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 40%);
  mask-image: linear-gradient(to top, transparent 0%, black 40%);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.highlight-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.highlight-card h3 {
  margin-bottom: 10px;
}

.highlight-card p {
  color: var(--muted);
}

.dual-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-panel {
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.left-panel {
  background-image: url("img/Banners/Recovery car sunset 4x services ltd.png");
}

.right-panel {
  background-image: url("img/Banners/The\ showroom.png");
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 22, 24, 0.185), rgba(0, 0, 0, 0.35));
}

.panel-content {
  position: relative;
  z-index: 2;
  padding: 38px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.panel-content h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.panel-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.panel-content ul {
  list-style: none;
  margin-bottom: 24px;
}

.panel-content li {
  color: var(--white);
  margin-bottom: 8px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.about-box h3 {
  margin-bottom: 18px;
    color: #f7b71a;
}

.about-box ul {
  list-style: none;
  
}

.about-box li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.contact-form-wrap,
.hours-card,
.map-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-wrap {
  padding: 34px;
}

.contact-form-wrap h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-form-wrap p {
  color: var(--muted);
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid select,
.form-grid textarea {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #111214;
  color: var(--white);
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  padding: 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.submit-btn {
  margin-top: 18px;
}

#form-status {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
}

.contact-side {
  display: grid;
  gap: 24px;
}

.hours-card,
.map-card {
  padding: 28px;
}

.hours-card h3 {
  margin-bottom: 16px;
}

.opening-times {
  list-style: none;
}

.opening-times li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.opening-times li.highlight {
  color: var(--accent);
  font-weight: 700;
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border-radius: 16px;
}

.site-footer {
  padding: 70px 0 0;
  border-top: 1px solid var(--line);
  background: #111214;
}

.footer-grid {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 28px;
  padding-bottom: 40px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 14px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: var(--muted);
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  color: var(--muted);
}

.footer-bottom a:hover {
  color: var(--accent);
}

@media (max-width: 1100px) {
  .highlights-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .about-grid,
  .dual-cards-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: inline-flex;
  }

  .hero-slider,
  .slides,
  .slide-content {
    min-height: 72vh;
  }

  .slide-content h1 {
    font-size: 2.4rem;
  }

  .highlights-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .slider-controls {
    right: 16px;
    bottom: 20px;
  }

  .slider-dots {
    bottom: 22px;
  }

  .panel-content {
    padding: 28px;
  }

  .contact-form-wrap,
  .hours-card,
  .map-card,
  .about-box {
    padding: 22px;
  }
}

/*Recover page*/
:root {
  --bg: #151618;
  --white: #ffffff;
  --accent: #f7b71a;
  --accent-dark: #d99b09;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --card: #1c1d20;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #111214;
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 26px;
  font-size: 0.94rem;
  color: var(--muted);
}

.topbar-inner a:hover {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(21, 22, 24, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.08rem;
}

.brand-text span {
  font-size: 0.83rem;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  font-weight: 600;
  transition: 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #151618;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.menu-toggle,
.menu-close {
  display: none;
  background: transparent;
  color: var(--white);
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 100%);
  height: 100vh;
  background: #111214;
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: right 0.35s ease;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.35);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--accent);
}

.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-cta {
  margin-top: 10px;
  background: var(--accent);
  color: #151618 !important;
  padding: 14px 18px !important;
  border-radius: 999px;
  text-align: center;
  border: 0 !important;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: url("img/Banners/Recovery car sunset 4x services ltd.png") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21, 22, 24, 0.92), rgba(21, 22, 24, 0.5));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 12ch;
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(28, 29, 32, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-card h3 {
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-card i {
  color: var(--accent);
  margin-top: 4px;
}

.info-strip {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: #111214;
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.info-item i {
  color: var(--accent);
}

.services-section,
.steps-section,
.recovery-form-section,
.final-cta {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
}

.service-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.step-number {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #151618;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.step-card h3 {
  margin-bottom: 10px;
}

.step-card p {
  color: var(--muted);
}

.recovery-form-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.form-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.form-copy p {
  color: var(--muted);
  margin-bottom: 26px;
}

.call-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.call-box span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.call-box a {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent);
}

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid textarea {
  grid-column: 1 / -1;
  min-height: 150px;
  resize: vertical;
  padding: 16px;
}

.recovery-form input,
.recovery-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #111214;
  color: var(--white);
  outline: none;
}

.recovery-form input:focus,
.recovery-form textarea:focus {
  border-color: var(--accent);
}

.submit-btn {
  margin-top: 18px;
}

#form-status {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
}

.final-cta-box {
  background: linear-gradient(135deg, #1c1d20, #18191b);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.final-cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.final-cta-box p {
  color: var(--muted);
}

.site-footer {
  padding: 70px 0 0;
  border-top: 1px solid var(--line);
  background: #111214;
}

.footer-grid {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 28px;
  padding-bottom: 40px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 14px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: var(--muted);
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  color: var(--muted);
}

.footer-bottom a:hover {
  color: var(--accent);
}

@media (max-width: 1100px) {
  .hero-grid,
  .recovery-form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .steps-grid,
  .info-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 64px 0;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
    max-width: 100%;
  }

  .services-grid,
  .steps-grid,
  .info-strip-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-card,
  .hero-card {
    padding: 24px;
  }
}

/* ABOUT PAGE - FULL REWRITE */
.about-hero-refined {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: center;
  background: url("img/Banners/Handing-keys-banner-4xservicesltd.png") center/cover no-repeat;
  overflow: hidden;
}

.about-hero-refined-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21, 22, 24, 0.94), rgba(21, 22, 24, 0.5));
}

.about-hero-refined-inner {
  position: relative;
  z-index: 2;
  padding: 86px 0;
  max-width: 760px;
}

.about-hero-refined-inner h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  margin-bottom: 18px;
  max-width: 12ch;
}

.about-hero-refined-inner p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 24px;
}

.about-hero-refined-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-intro-refined,
.about-manifesto,
.about-band-values,
.about-statement-section,
.about-cta-minimal {
  padding: 90px 0;
}

.about-intro-refined{
  background-image: url(img/bg/wavy-grid-4x.png);
  background-size: cover;
  background-repeat: no-repeat;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
}

.about-intro-refined-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.about-intro-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  max-width: 12ch;
}

.about-intro-right p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1rem;
}

.about-manifesto-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.about-manifesto-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.about-manifesto-layout {
  position: relative;
  display: grid;
  gap: 32px;
}

.about-manifesto-line {
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(247, 183, 26, 0.25);
}

.about-manifesto-row {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  align-items: start;
}

.about-manifesto-number {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px #f7b71a;
  color: #151618;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.about-manifesto-copy h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #f7b71a;
}

.about-manifesto-copy p {
  color: var(--muted);
  max-width: 760px;
}

.about-band-values {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-band-values-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.about-band-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  max-width: 12ch;
}

.about-band-items {
  display: grid;
  gap: 28px;
}

.about-band-item {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.about-band-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-band-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #f7b71a;
}

.about-band-item p {
  color: var(--muted);
  max-width: 760px;
}

.about-statement-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.about-statement-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  max-width: 12ch;
}

.about-statement-right p {
  color: var(--muted);
  margin-bottom: 18px;
}

.about-cta-minimal-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.about-cta-minimal-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.about-cta-minimal-inner p {
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 26px;
}

@media (max-width: 1100px) {
  .about-intro-refined-grid,
  .about-band-values-grid,
  .about-statement-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-left h2,
  .about-band-heading h2,
  .about-statement-left h2 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-hero-refined {
    min-height: auto;
  }

  .about-hero-refined-inner {
    padding: 68px 0;
  }

  .about-hero-refined-inner h1 {
    font-size: 2.15rem;
    max-width: 100%;
  }

  .about-manifesto-line {
    left: 18px;
  }

  .about-manifesto-row {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .about-manifesto-number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .about-intro-refined,
  .about-manifesto,
  .about-band-values,
  .about-statement-section,
  .about-cta-minimal {
    padding: 72px 0;
  }
}

/* VEHICLE DETAIL PAGE */
.vehicle-detail-page {
  padding: 42px 0 28px;
}

.vehicle-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.vehicle-breadcrumb a:hover {
  color: var(--accent);
}

.vehicle-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.vehicle-gallery-panel,
.vehicle-summary-panel,
.vehicle-copy-block,
.vehicle-performance-block,
.vehicle-enquiry-panel,
.vehicle-hours-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.vehicle-gallery-panel {
  padding: 20px;
}

.vehicle-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111214;
  min-height: 400px;
}

.slider-track {
  display: flex;
  transition: transform 0.35s ease;
  height: 100%;
}

.slider-track img {
  width: 100%;
  min-width: 100%;
  height: 400px;
  object-fit: cover;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(21, 22, 24, 0.7);
  color: var(--white);
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav.prev {
  left: 16px;
}

.nav.next {
  right: 16px;
}

.nav:hover {
  background: var(--accent);
  color: #151618;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 5000;
}

.lightbox-img {
  max-width: 200vw;
  max-height: 120vh;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 2.1rem;
  cursor: pointer;
}

.vehicle-summary-panel {
  padding: 30px;
  position: sticky;
  top: 108px;
}

.vehicle-summary-panel h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  margin-bottom: 10px;
}

.vehicle-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 22px;
}

.vehicle-price-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}

.price-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.vehicle-price {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.vehicle-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.vehicle-key-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.vehicle-key-spec {
  padding: 16px;
  border-radius: 16px;
  background: #111214;
  border: 1px solid var(--line);
}

.vechicle-left span {
  color: #f7b71a;
  font-size: 1rem;
  margin-bottom: 6px;
}


.vehicle-key-spec strong {
  color: var(--white);
  font-size: 1rem;
}

.vehicle-content-section {
  padding: 36px 0 90px;
}

.vehicle-content-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.vehicle-main-column,
.vehicle-side-column {
  display: grid;
  gap: 24px;
}

.vehicle-copy-block,
.vehicle-performance-block,
.vehicle-enquiry-panel,
.vehicle-hours-panel {
  padding: 30px;
}

.vehicle-copy-block h2,
.vehicle-performance-block h2 {
  margin-bottom: 14px;
  font-size: 1.8rem;
}

.vehicle-copy-block p,
.vehicle-enquiry-panel p {
  color: var(--muted);
}

.vehicle-feature-list {
  list-style: none;
  margin-top: 12px;
}

.vehicle-feature-list li {
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-left: 22px;
}

.vehicle-feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 22px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.spec-table th,
.spec-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.spec-table th {
  color: var(--white);
  font-weight: 700;
}

.spec-table td {
  color: var(--muted);
}

.vehicle-enquiry-panel h3,
.vehicle-hours-panel h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.vehicle-enquiry-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .vehicle-hero-grid,
  .vehicle-content-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-summary-panel {
    position: static;
  }
}

@media (max-width: 768px) {
  .vehicle-detail-page {
    padding-top: 28px;
  }

  .vehicle-gallery-main {
    min-height: 320px;
  }

  .slider-track img {
    height: 320px;
  }

  .vehicle-summary-panel,
  .vehicle-copy-block,
  .vehicle-performance-block,
  .vehicle-enquiry-panel,
  .vehicle-hours-panel,
  .vehicle-gallery-panel {
    padding: 22px;
  }

  .vehicle-summary-panel h1 {
    font-size: 2.1rem;
  }

  .vehicle-key-specs {
    grid-template-columns: 1fr;
  }

  .vehicle-cta-row,
  .vehicle-enquiry-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    width: 40px;
    height: 40px;
  }
}

/* CONTACT PAGE */
.contact-hero-premium {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  background: url("img/bg/grid03.png") center/cover no-repeat;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21, 22, 24, 0.94), rgba(21, 22, 24, 0.52));
}

.contact-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  padding: 82px 0;
}

.contact-hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 13ch;
}

.contact-hero-copy p {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 24px;
}

.contact-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-hero-panel {
  background: rgba(28, 29, 32, 0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.contact-hero-panel h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
  color: #f7b71a;
}

.contact-hero-panel ul {
  list-style: none;
}

.contact-hero-panel li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.contact-hero-panel i {
  color: var(--accent);
  margin-top: 4px;
}

.contact-hero-panel strong {
  display: block;
  margin-bottom: 4px;
  color: #f7b71a;
}

.contact-hero-panel span {
  color: var(--muted);
}

.contact-methods-section,
.contact-main-section,
.contact-map-section,
.contact-final-cta {
  padding: 84px 0;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-method-block {
  padding: 28px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-method-label {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.contact-method-value {
  display: inline-block;
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.contact-method-value:hover {
  color: var(--accent);
}

.contact-method-value-static:hover {
  color: var(--white);
}

.contact-method-block p {
  color: var(--muted);
  max-width: 32ch;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 30px;
  align-items: start;
}

.contact-form-column h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.contact-form-column p {
  color: var(--muted);
  margin-bottom: 26px;
}

.contact-form-premium,
.contact-info-panel,
.contact-hours-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-form-premium {
  padding: 30px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form-grid select,
.contact-form-grid textarea {
  grid-column: 1 / -1;
}

.contact-form-premium input,
.contact-form-premium select,
.contact-form-premium textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #111214;
  color: var(--white);
  outline: none;
}

.contact-form-premium textarea {
  min-height: 150px;
  padding: 16px;
  resize: vertical;
}

.contact-form-premium input:focus,
.contact-form-premium select:focus,
.contact-form-premium textarea:focus {
  border-color: var(--accent);
}

#form-status {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
}

.contact-side-column {
  display: grid;
  gap: 24px;
}

.contact-info-panel,
.contact-hours-panel {
  padding: 30px;
}

.contact-info-panel h3,
.contact-hours-panel h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.contact-info-panel p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-benefits-list {
  list-style: none;
}

.contact-benefits-list li {
  color: #f7b71a;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-left: 22px;
}

.contact-benefits-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 20px;
}

.contact-map-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.contact-map-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.contact-map-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-map-wrap iframe {
  width: 100%;
  min-height: 420px;
  display: block;
}

.contact-final-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.contact-final-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.contact-final-cta-inner p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 24px;
}

@media (max-width: 1100px) {
  .contact-hero-grid,
  .contact-main-grid,
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero-premium {
    min-height: auto;
  }

  .contact-hero-grid {
    padding: 68px 0;
  }

  .contact-hero-copy h1 {
    font-size: 2.2rem;
    max-width: 100%;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-premium,
  .contact-info-panel,
  .contact-hours-panel,
  .contact-hero-panel {
    padding: 24px;
  }

  .contact-method-block {
    padding: 22px 0;
  }

  .contact-method-value {
    font-size: 1.25rem;
  }

  .contact-map-wrap iframe {
    min-height: 320px;
  }
}

/* SELL YOUR CAR PAGE */
.sell-hero-premium {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: center;
  background: url("img/Banners/BMW-HEADLIGHTS-4XSERVICESLTD.png") center/cover no-repeat;
  overflow: hidden;
}

.sell-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21, 22, 24, 0.94), rgba(21, 22, 24, 0.52));
}

.sell-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  padding: 84px 0;
}

.sell-hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 13ch;
}

.sell-hero-copy p {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 24px;
}

.sell-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sell-hero-panel {
  background: rgba(28, 29, 32, 0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.sell-hero-panel h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.sell-hero-panel ul {
  list-style: none;
}

.sell-hero-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  margin-bottom: 14px;
}

.sell-hero-panel i {
  color: var(--accent);
  margin-top: 4px;
}

.sell-trust-band,
.sell-overview-section,
.sell-benefits-section,
.sell-steps-section,
.sell-form-section,
.sell-cta-section {
  padding: 84px 0;
}

.sell-trust-band {
  padding-top: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  background: #111214;
}

.sell-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sell-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 600;
}

.sell-trust-item i {
  color: var(--accent);
}

.sell-overview-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.sell-overview-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  max-width: 12ch;
}

.sell-overview-right p {
  color: var(--muted);
  margin-bottom: 18px;
}

.sell-benefits-layout {
  position: relative;
  display: grid;
  gap: 32px;
}

.sell-benefit-line {
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(247, 183, 26, 0.25);
}

.sell-benefit-row {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  align-items: start;
}

.sell-benefit-number {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #151618;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.sell-benefit-copy h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #f7b71a;
}

.sell-benefit-copy p {
  color: var(--muted);
  max-width: 760px;
}

.sell-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sell-step-block {
  padding: 28px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.sell-step-block span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #151618;
  font-weight: 800;
  margin-bottom: 16px;
}

.sell-step-block h3 {
  margin-bottom: 10px;
  color: #f7b71a;
}

.sell-step-block p {
  color: var(--muted);
}

.sell-form-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}

.sell-form-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.sell-form-copy p {
  color: var(--muted);
  margin-bottom: 24px;
}

.sell-form-note {
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.sell-form-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
}

.sell-form-note span {
  color: var(--muted);
}

.sell-form-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.sell-form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sell-form-fields textarea {
  grid-column: 1 / -1;
}

.sell-form-premium input,
.sell-form-premium textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #111214;
  color: var(--white);
  outline: none;
}

.sell-form-premium textarea {
  min-height: 150px;
  padding: 16px;
  resize: vertical;
}

.sell-form-premium input:focus,
.sell-form-premium textarea:focus {
  border-color: var(--accent);
}

#sellMsg {
  display: block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
}

.sell-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.sell-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.sell-cta-inner p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 24px;
}

@media (max-width: 1100px) {
  .sell-hero-grid,
  .sell-overview-grid,
  .sell-form-grid,
  .sell-trust-grid,
  .sell-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sell-hero-premium {
    min-height: auto;
  }

  .sell-hero-grid {
    padding: 68px 0;
  }

  .sell-hero-copy h1 {
    font-size: 2.2rem;
    max-width: 100%;
  }

  .sell-form-fields {
    grid-template-columns: 1fr;
  }

  .sell-form-panel,
  .sell-hero-panel {
    padding: 24px;
  }

  .sell-benefit-line {
    left: 18px;
  }

  .sell-benefit-row {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .sell-benefit-number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

/* SHOWROOM PAGE */
.showroom-hero-premium {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: center;
  background: url("img/Banners/4x\ dealership.png") center/cover no-repeat;
  overflow: hidden;
}

.showroom-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21, 22, 24, 0.94), rgba(21, 22, 24, 0.52));
}

.showroom-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  padding: 84px 0;
}

.showroom-hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 13ch;
}

.showroom-hero-copy p {
  color: var(--muted);
  max-width: 620px;
}

.showroom-hero-panel {
  background: rgba(28, 29, 32, 0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.showroom-hero-panel h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
  color: #f7b71a;
}

.showroom-hero-panel ul {
  list-style: none;
}

.showroom-hero-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  margin-bottom: 14px;
}

.showroom-hero-panel i {
  color: var(--accent);
  margin-top: 4px;
}

.showroom-intro-section,
.showroom-filter-section,
.showroom-stock-section,
.showroom-assurance-section,
.showroom-gallery-strip,
.showroom-map-section,
.showroom-cta-premium {
  padding: 84px 0;
}

.showroom-intro-grid,
.showroom-assurance-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}


.showroom-intro-left h2,
.showroom-assurance-copy h2,
.showroom-map-heading h2,
.showroom-gallery-heading h2,
.showroom-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  padding-bottom: 10px;
}

.showroom-intro-right p,
.showroom-assurance-copy p,
.showroom-cta-inner p {
  color: var(--muted);
}

.showroom-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.showroom-filter-label h3 {
  font-size: 1.35rem;
}

.showroom-filter-control select {
  min-width: 220px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #111214;
  color: var(--white);
  outline: none;
}

.showroom-filter-control select:focus {
  border-color: var(--accent);
}

.showroom-stock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.showroom-car-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.showroom-car-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 183, 26, 0.35);
}

.showroom-car-image {
  position: relative;
  overflow: hidden;
}

.showroom-car-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.showroom-car-card:hover .showroom-car-image img {
  transform: scale(1.04);
}

.showroom-year {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(21, 22, 24, 0.88);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.showroom-car-body {
  padding: 24px;
}

.showroom-make {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.showroom-car-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.showroom-price {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.showroom-car-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #151618;
  font-weight: 700;
  transition: 0.3s ease;
}

.showroom-car-btn:hover {
  background: var(--accent-dark);
}

.showroom-assurance-list {
  display: grid;
  gap: 18px;
}

.showroom-assurance-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.showroom-assurance-list i {
  color: var(--accent);
  margin-top: 4px;
}

.showroom-assurance-list span {
  color: var(--muted);
}

.showroom-gallery-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 320px;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.showroom-gallery-scroll img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.showroom-map-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.showroom-map-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.showroom-map-wrap iframe {
  width: 100%;
  min-height: 420px;
  display: block;
}

.showroom-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.showroom-cta-inner p {
  max-width: 620px;
  margin: 0 auto 24px;
}

.showroom-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .showroom-hero-grid,
  .showroom-intro-grid,
  .showroom-assurance-grid,
  .showroom-stock-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .showroom-hero-premium {
    min-height: auto;
  }

  .showroom-hero-grid {
    padding: 68px 0;
  }

  .showroom-hero-copy h1 {
    font-size: 2.2rem;
    max-width: 100%;
  }

  .showroom-filter-bar {
    flex-direction: column;
    align-items: start;
  }

  .showroom-filter-control {
    width: 100%;
  }

  .showroom-filter-control select {
    width: 100%;
  }

  .showroom-gallery-scroll {
    grid-auto-columns: 260px;
  }

  .showroom-map-wrap iframe {
    min-height: 320px;
  }

  .showroom-hero-panel,
  .showroom-car-body {
    padding: 22px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 5000;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(21, 22, 24, 0.72);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-nav:hover {
  background: #f7b71a;
  color: #151618;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}

.availability-badge {
  display: inline-block;        /* lets width adjust to content */
  font-size: 14px;
  padding: 2px 10px;
  border-radius: 12px;
  font-weight: 800;
  color: #111214;
  text-transform: uppercase;
  border: 2px solid #f7b71a;
  margin-bottom: 5px;
  box-shadow: 0 0 6px 6px #f7b71a3a;
  white-space: nowrap;    
  background-color: #f7b71a;      /* prevents text from wrapping */
}

#form-status {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.scroll-reveal{
    opacity:0;
    transform:translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.show{
    opacity:1;
    transform:translateY(0);
}

.scroll-reveal,
.reveal-right,
.reveal-left,
.reveal-top {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal { 
    transform: translateY(60px); 
}

.reveal-right { 
    transform: translateX(60px); 
}

.reveal-left { 
    transform: translateX(-60px); 
}

.reveal-top { 
    transform: translateY(-60px); 
}

.scroll-reveal.show,
.reveal-right.show-right,
.reveal-left.show-left,
.reveal-top.show-top {
    opacity: 1;
    transform: translate(0,0);
}

{

max-width:1400px;

margin:auto;

overflow:hidden;

position:relative;

mask-image:linear-gradient(
to right,
transparent,
white 8%,
white 92%,
transparent
);

}


.reviews-track{

display:flex;

gap:25px;

width:max-content;

animation:scroll 40s linear infinite;

}


.reviews-container:hover .reviews-track{

animation-play-state:paused;

}


.review-card{

width:340px;

min-height:260px;

background:rgba(255,255,255,0.04);

border:1px solid rgba(255,255,255,0.08);

border-radius:18px;

padding:25px;

display:flex;

flex-direction:column;

justify-content:space-between;

backdrop-filter:blur(10px);

transition:.35s;

}


.review-card:hover{

transform:translateY(-8px);

border:1px solid rgba(255,255,255,0.18);

background:rgba(255,255,255,0.06);

}


.review-header{

display:flex;

align-items:center;

gap:14px;

margin-bottom:15px;

}


.review-header img{

width:50px;

height:50px;

border-radius:50%;

object-fit:cover;

}


.review-header h4{

margin:0;

font-size:17px;

font-weight:600;

}


.stars{

color:#FFD84D;

letter-spacing:3px;

font-size:14px;

margin-top:3px;

}


.review-card p{

color:#b8c1d1;

line-height:1.6;

font-size:15px;

margin:10px 0;

flex-grow:1;

}


.date{

color:#7d8696;

font-size:13px;

margin-top:15px;

}


.review-images{

display:flex;

gap:10px;

margin-top:15px;

}


.review-images:empty{

display:none;

}


.review-images img{

width:120px;

height:85px;

object-fit:cover;

border-radius:10px;

cursor:pointer;

transition:.3s;

}


.review-images img:hover{

transform:scale(1.07);

}


/* Modal */

.image-modal{

position:fixed;

width:100%;

height:100%;

background:rgba(0,0,0,0.92);

display:flex;

justify-content:center;

align-items:center;

z-index:999;

opacity:0;

pointer-events:none;

transition:.3s;

}


.image-modal.active{

opacity:1;

pointer-events:auto;

}


.image-modal img{

max-width:85%;

max-height:85%;

border-radius:14px;

box-shadow:0 20px 60px rgba(0,0,0,.6);

}


#closeBtn{

position:absolute;

top:40px;

right:60px;

font-size:42px;

cursor:pointer;

color:white;

}


/* Animation */

@keyframes scroll{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}


/* Mobile */

@media(max-width:900px){

.review-card{

width:280px;

padding:20px;

}

.review-images img{

width:100px;

height:70px;

}

}

.overall-rating{

  padding-top: 30px;
width:100%;

max-width:900px;

margin:80px auto;

font-family:Inter,system-ui;

}


.rating-text{

color:#f0b114;

margin-bottom:10px;

font-size:18px;

font-weight:500;

text-align: center;
text-shadow: 0px 0px 10px #f0b214;

}


.rating-bar{

width:100%;

height:10px;

background:#2a2a2a;

border-radius:20px;

overflow:hidden;

position:relative;

}


.rating-fill{

width:0;

height:100%;

background:linear-gradient(90deg,#FFC107,#ffb300);

border-radius:20px;

transition:width 1.6s cubic-bezier(.22,1,.36,1);

}

.review-btn{
  display: flex;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.review-btn a{
  background-color: #f0b214;
  color: black;
  padding: 10px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #f0b114;
}

.review-btn a:hover{
  background-color: #151618;
  color: #f0b114;
}