
:root{
  --accent:#aa3538;
  --black:#000;
}

body{
  font-family: Arial, sans-serif;
  background:#fff;
  padding-top: 80px; /* same height as navbar */
}

.container {
  width: 90%;
  margin: 0 auto;
}

.footerlink {
  /* padding-left: 10%; */
  color:rgb(255, 255, 255);
  font-size: 100%;
}
.footerlink:link {      color: white; }
.footerlink:visited {   color: white; }
.footerlink:hover {     color: #aa3538; }
.footerlink:active {    color: #aa3538; }


.button-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.button-container a {
  box-sizing: border-box;
  width: 180px;
  height: 48px;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .hero-logo {
    margin-bottom: 20px;
  }
  
  .button-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  
  .button-container a {
    width: 180px;
    height: 48px;
  }
}

.page-content {
  background:#f9f9f9;
  /* typical Bootstrap navbar height */
  /* padding-top: 4.5rem; */
}

/* HERO */
.hero {
  position: relative;
  /* height: clamp(240px, 32vh, 360px); */
  height: clamp(340px, 32vh, 380px);
  background:
  linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
  url('../images/MorganMotors/0hero2-1200.webp') center/cover;
  display: flex;
  align-items: center;
  color: white;
}

/* url('../images/MorganMotors/0hero2.jpg') center/cover; */
/*
.hero::before {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,0.35);
}
*/
.hero-content {
  padding-top: 8px;
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: clamp(180px, 25vw, 300px);
  height: auto;
}

@media (min-width: 1200px) {
  .hero {
    background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('../images/MorganMotors/0hero2-1600.webp') center/cover;
  }
}

@media (min-width: 1800px) {
  .hero {
    background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('../images/MorganMotors/0hero2-2000.webp') center/cover;
  }
}

/* optional subtle info strip */
.info-strip {
  background: #111;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  width: 100vw;
}

.carbtn {
  width: 100%;
  border-radius: 8px;
}

.btn {
  min-width: 180px;
}
.btn-accent{
  background:var(--accent);
  color:#fff;
  border:none;
}

.btn-accent:hover{
  background:#8f2c2f;
  color:#fff;
}

/* MM Logo */
.brand {
  color: #aa3538;
  font-family: Arial, sans-serif;
  font-size: 52px;
  font-weight: bold;
  line-height: 1;
}

.white-m {
  color: white;
}

.motors {
  font-size: 24px;
  margin-top: 5px;
  letter-spacing: 2px;
}

/* NAV BAR */
/* BASE NAVBAR */
#garageNav{
  background:#000;
  border-bottom:3px solid #aa3538;
  transition: all 0.3s ease;
  padding:18px 0;
}

/* BRAND Logo */
.brand-icon{
  filter: none !important;
  opacity: 1 !important;
  height: 50px; 
  width: auto;
}

/* BRAND DOT */
.brand-dot{
  color:#aa3538;
  font-size:22px;
}

/* LINKS */
.navbar .nav-link{
  color:#fff !important;
  margin-right:10px;
  transition:0.2s;
}

.navbar .nav-link:hover{
  color:#aa3538 !important;
}

.nav-cta{
  color:#aa3538 !important;
  font-weight:600;
}

.redLink-small {
  text-decoration: none;
  color: #c74541;
  font-size: 100%;
}

.redLink {
  text-decoration: none;
  color: #c74541;
  font-size: 125%;
}

/* ICONS */
.navbar img{
  filter:invert(1);
  opacity:0.9;
  transition:0.2s;
}

.navbar img:hover{
  opacity:1;
  transform:scale(1.1);
}

/* SHRUNK STATE */
#garageNav.shrink{
  padding:6px 0;
  background:rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
}

/* SHRINK BRAND */
#garageNav.shrink .navbar-brand{
  font-size:16px;
}

.google-icon {
  filter: brightness(0) invert(1); /* if button text is white */
}

.hours-card {
  width: 100%;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 8px;
  margin-top: 8px;
}

/* SERVICE CARDS */
/*.service-card{
border:0;
border-radius:12px;
overflow:hidden;
transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
height: 100%;
padding: 10px;
}*/

.service-card {
  width: 100%;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  margin-bottom: 8px;
  margin-top: 8px;
}

.service-card:hover{
  transform:translateY(-5px);
}

.service-title{
  font-weight:600;
  margin-top:10px;
}

.section-title{
  text-align:center;
  margin:60px 0 30px;
  font-weight:700;
}

/* INFO SECTIONS */
.info-section{
  padding:20px 20px;
  gap: 15px;
}

.info-box{
  border-left:5px solid var(--accent);
  padding:20px;
  /* background:#f9f9f9; */
  background: white;
  border-radius:8px;
  margin-bottom: 15px;
}

.info-box-white{
  /* border-left:5px solid var(--accent); */
  padding:20px;
  /* background:#f9f9f9; */
  /* background: white; */
  border-radius:8px;
  margin-bottom: 15px;
}

.info-box-cars{
  border-left:5px solid var(--accent);
  padding:20px;
  /* background:#f9f9f9; */
  background: white;
  border-radius:8px;
  padding-top: 20px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.mot-box{
  border-left:5px solid #aa3538; 
  /* padding-left:15px; */
  padding:20px;
  /* background:#f9f9f9; */
  background: white;
}


/* FORM */
.toggleLeft {
  line-height: 50px;
  height: 50px;
  text-align: left;
}

.toggleLeft p {
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
}
.toggleCenter {
  /* line-height: 50px;
  height: 50px;
  text-align: center; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
}

.toggleCenter p {
  line-height: 1.5;
  display: flex;
  vertical-align: middle;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  vertical-align: middle;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #aa3538;
}

input:focus + .slider {
  box-shadow: 0 0 1px #aa3538;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

#motSection {
  display: none;
}

body {
  background:#f9f9f9;
}

body:has(#mot:checked) #motSection {
  display: block;
}

#serviceSection {
  display: none;
}
body:has(#motService:checked) #serviceSection {
  display: block;
}

/* FORM CARD */

.form-card{
  /* border:0;
  border-radius:12px;
  overflow:hidden;
  transition:0.3s;
  padding: 8px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08); */
  
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  padding: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-top {
  text-align: center;
}

.mot-card{
  border:0;
  border-radius:12px;
  overflow:hidden;
  transition:0.3s;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  margin-top: 15px;
}

.mot-card:hover{
  transform:translateY(-5px);
}

.mot-features {
  display: grid;
  gap: 12px;
  max-width: 700px;
}

.bottom-section {
  /* margin-top: auto; */
  /* margin-top: max(60px, auto); */
  min-height: 60px;
  text-align: center;
}

.card-section-center {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center; */
  
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* PAYMENT ASSIST */
.payment-logo {
  max-width: 100%;
  height: auto;
  display: block;
}

.pablue2 { 
  color: #262F3E; /*#ffffff;*/
  font-size: inherit;
  text-align: inherit;
  display : inline;
}

.pared2 { 
  color: #DA3732; /*#ffffff;*/
  font-size: 100%;
  text-align: inherit;
  display : inline;
}

.circle {
  width: 40px;
  height: 40px;
  border-style: solid;
  border-radius: 50%;
  border-color: white;
  border-width: 1px;
  font-size: inherit;
  color: #fff;
  line-height: inherit;
  text-align: center;
  background-color: #355598;
  display: inline-block;
}

/* STEPS */
.card-footer {
  min-height: 80px; /* sets a minimum, but allows it to grow if content is taller */
  display: flex;
  flex-direction: column; /* ensures children stack naturally on small screens */
  justify-content: center; /* optional: vertical centering */
}

.payment-steps {
  display: flex;
  flex-direction: column; /* default for small screens */
  flex-wrap: wrap;        /* allow items to wrap if needed */
  min-height: 80px;       /* optional: ensure footer doesn't collapse */
}

.step {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  /* padding: 0 1rem; */
  text-align: center;
  font-weight: 600;
  font-size: .9rem;
  padding-left: 52px;
  flex-direction: row;  /* number above text */
}

.step-red {
  background: #d71920;
  color: #fff;
  z-index: 4;
}

.step-blue {
  background: #173a63;
  color: #fff;
  z-index: 3;
}

.step-light-blue {
  background: #2f5f99;
  color: #fff;
  z-index: 2;
}

.step-white {
  background: #fff;
  color: #173a63;
  border-left: 1px solid #dee2e6;
  z-index: 1;
}

.step-red::after,
.step-blue::after,
.step-light-blue::after {
  content: '';
  position: absolute;
  right: -36px;
  top: 0;
  width: 36px;
  height: 100%;
  clip-path: polygon(0 0,100% 50%,0 100%);
  z-index: 5;
}

.step-red::after { background: #d71920; }
.step-blue::after { background: #173a63; }
.step-light-blue::after { background: #2f5f99; }

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-red .step-number,
.step-blue .step-number,
.step-light-blue .step-number {
  background: rgba(255,255,255,.2);
}

.step-white .step-number {
  background: #173a63;
  color: #fff;
}


/* Mobile */
@media (min-width: 768px) {
  .step {
    flex-direction: column;  /* stack on mobile */
    text-align: center;
  }
  
  .step-text {
    white-space: normal;
  }
  
  .step-text {
    white-space: normal;
  }
  
  .payment-steps {
    flex-direction: row; /* horizontal layout for md+ */
    min-height: 80px;    /* keeps consistent footer height */
  }
}

/* FIND US */

.contact-btn {
  flex: 1 1 0;
  white-space: nowrap;
  max-width: 100%;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
}

.address {
  padding: 16px;
}

/* CARS FOR SALE */

.carContact-btn {
  flex: 1 1 0;
  width: 100%;
  margin-bottom: 15px;
}

.carContactBtm-btn {
  flex: 1 1 0;
  width: 100%;
  margin-bottom: 15px; 
  padding-top: 15px; 
  margin-right:15px; 
  margin-left:15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardCarImage {
  display: block;
  width: 100%;
  /* height: auto; */
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  
  /* chat
  background: transparent;    /* background-image: url(images/PaymentAssist.png); * /
  /*display: block;* /
  /* display:  * /
  display: inline;
  max-width: 100vw;
  margin: 0 auto;
  /* align-content: flex-start; * /
  padding: 0px; 
  align-content: center;
  width: 100%;
  height: auto;
  */
}

.carDetailsBtn {
  /* min-width:150px;   */
  align-content: center; 
  width: auto;
  margin-right: 15px;
}

.carDetailsBtnContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.carDetailsHeader {
  background-color:inherit;
  color: rgb(48, 46, 46);
  font-size: 120%;
  /* text-align: left; */
  text-align: center;
  
} 

.carDetails {
  /* height: auto; */
  padding: 2%; /*40px;*/
  margin-bottom: 0px;
  background-color: inherit;
  font-size: inherit;
  align-content: inherit;
  text-align: left;
  vertical-align: top;
  color: rgb(48, 46, 46);
  margin-right: 15px;
  width: 100%;
}

.carDetailsGrey {
  height: auto;
  /* padding: 2%; 40px; */
  /* margin-bottom: 0px; */
  background-color: inherit;
  font-size: inherit;
  align-content: inherit;
  text-align: right;
  vertical-align: center;
  color: #5d5c5c;
  text-align: center;
  font-size: 150%;
}

.carDetailsRed {
  height: auto;
  /* padding: 2%; 40px; */
  margin-bottom: 0px;
  background-color: inherit;
  font-size: inherit;
  align-content: inherit;
  text-align: right;
  vertical-align: center;
  color: #aa3538;
  text-align: center;
  font-size: 150%;
}

.carDetaisText {
  background-color: inherit;
  color:  rgb(48, 46, 46);
  font-size: 100%;
  text-align: left;
  padding-left: 15px;
}

.card-img-top {
  position: relative;
  display: inline-block; /* keeps overlay the same size as the image */
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  /* chat
  width: auto;
  position: relative;
  align-content: center;
  text-align: center;
  vertical-align:middle;
  */
}

.carCardsBody { 
  margin: 15px;
  border-style: none;
}

.sold-overlay {
  position: absolute;
  inset: 0;
  background: rgba(80, 80, 80, 0.8  );
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  color: white;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 4px;
}

/* AUTO GUARD */
.agBanner {
  background: transparent;
  margin: 0 auto;
  align-content: center;
  padding: 0px; 
  padding-top: 10px;
  padding-bottom: 10px;
  width: 90%;
  max-width: 90%;
  height: auto;
}

.agOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none; /* optional */
  /* chat
  max-width: 100vw;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5%;
  width: 5%;
  opacity: 1;
  */
}

.agIcon {
  width: 25%;
  height: auto;
  display: block;
  /* chat
  position: left;
  top: 0;
  left: 0;
  height: 5%;
  */
}

.agOverlayBottom {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  width: 100%;
  opacity: 1;
}

.agIconBottom {
  position:absolute;
  top: 0;
  right: 0;
  width: 30%;
} 


/* CAR */
.cardImage {
  background: transparent;    /* background-image: url(images/PaymentAssist.png); */
  /*display: block;*/
  /* display:  */
  margin: 0 auto;
  align-content: center;
  padding: 0px; 
  width: 100%;
  max-width: 100%;
  /* table-layout: fixed; */
  height: auto;
}

.carCardsHeader { /*ID*/
  /* old
  background-color: #aa3538;
  color: white;
  border-radius: 4px;
  */
  /* color: #aa3538; */
  color: black;
  /* background-color: white; */
  font-size: 200%;
  margin: 15px;
}

#carCardsHeaderGrey { /*ID*/
  /* background-color:#b3b3b3; */
  color: rgb(52, 52, 52);
  border-radius: 0px;
  margin: 15px;
}
.container-img {
  position: relative;
  text-align: center;
  /* color: white; */
  width: 100%;
  height: auto;
  object-fit: cover;
  /* align-items: center; */
  /* padding: 4px; */
}

.container-img-grid {
  position: relative;
  /* text-align: center; */
  /* color: white; */
  padding: 4px;
  border: none;
  background: #f9f9f9;
  width: 100%;
  height: auto;
  display: block;
}

.container-img-car {
  position: relative;
  text-align: center;
  /* color: white; */
  width: 100%;
  height: auto;
}

.cardCarImageSmall {
  display: block;
  width: 100px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  /*
  background: transparent; 
  display: inline;
  max-width: 100px;
  margin: 0 auto;
  padding: 0px; 
  align-content: center;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);*/
}

.carDetailsBox {
  border-radius: 8px;
  background-color: white;
  text-align: center;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  width: 100px;
  height: 100%;
  display: block;
}

.carDetailsImg {
  max-height: 35px;
  max-width: 35px;
  height:100%; 
  height:auto;
  position: relative;
  align-content: center;
  text-align: center;
  vertical-align:middle;
}

.priceLarge {
  text-align: center;
  font-size: 200%;
}


/* TABLE TEST */
.car-features {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.car-feature {
  padding: 13px 18px;
  color: #343a40;
  line-height: 1.5;
}

.car-feature:nth-child(odd) {
  background-color: #f8f9fa;
}

.car-feature:nth-child(even) {
  background-color: #ffffff;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.5rem;
}

.shadowBox {
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.title {
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vehicle-spec {
  height: 100%;
  min-height: 150px;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  
  text-align: center;
  padding: 1rem;
  
  border: 1px solid #dee2e6;
  border-radius: .5rem;
}

/* Fixed-height icon container */
.vehicle-spec__icon {
  height: 40px;
  width: 40px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  font-size: 1.5rem;
  line-height: 1;
  
  margin-bottom: .75rem;
}

/* Fixed-height label area */
.vehicle-spec__label {
  min-height: 48px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  font-size: .875rem;
  color: #6c757d;
}

/* Value */
.vehicle-spec__value {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
}

.box {
  padding: 2px !important;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.printLink {
  text-decoration: none;
  color: #c74541;
  font-size: 100%;
}

/* PRINT Vehicle */

.priceLargeRed {
  text-align: left;
  font-size: 100%;
  color: #c74541;
}

.priceXLarge {
  text-align: center;
  font-size: 300%;
}

.priceXLargePrint {
  font-size: 200%;
  text-align: left;
  align-items: center;
}

.priceXLargePrintR {
  font-size: 200%;
  text-align: right;
  align-items: center;
}

.printLbl {
  font-size: 100%;
  text-align: inherit;
}

.printBannerImage {
  display: block;
  background: transparent;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  float: none;
}


.car-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px 24px;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  font-size: 12px;
}

.spec {
  display: grid;
  grid-template-columns: 30px minmax(0, max-content) minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}

.spec img {
  display: block;
  width: 30px;
  max-width: 30px;
  height: 30px;
  object-fit: contain;
}

.spec .title {
  color: #666;
  white-space: nowrap;
}

.spec strong {
  min-width: 0;
  color: #111;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*SERVICING */
.why-service {
  padding: 30px 20px;
  /* background: white; */
}

.why-service-container {
  /* max-width: 1150px; */
  max-width: 100%;
  margin: 0 auto;
}

.why-service-heading {
  /* max-width: 700px; */
  max-width: 80%;
  margin: 0 auto 50px;
  text-align: center;
}

.section-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #aa3538;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.why-service-heading h2 {
  margin: 0 0 15px;
  color: #111;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
}

.why-service-heading p {
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.7;
}

.why-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-service-item {
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-service-item h3 {
  margin: 0 0 7px;
  color: #111;
  font-size: 18px;
  font-weight: 700;
}

.why-service-item p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.why-service-item-center {
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-service-item-center:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-service-item-center h3 {
  margin: 0 0 7px;
  color: #111;
  font-size: 18px;
  font-weight: 700;
}

.why-service-item-center p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.why-service-icon {
  display: flex;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #aa3538;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.why-service-icon-large {
  display: flex;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #aa3538;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.top-service-item {
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 10px;
}

.top-service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.top-service-item h3 {
  margin: 0 0 7px;
  color: #111;
  font-size: 18px;
  font-weight: 700;
}

.top-service-item p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.safety-card {
  width: 100%;

  /* width: calc(100% - 16px); */
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  margin-bottom: 8px;
  margin-top: 8px;
  margin-left: 8px;
  margin-right: 8px;
padding: 16px;
}

.safety-card:hover{
  transform:translateY(-5px);
}

.safety-feature-grid {
  max-width: 1150px;
  margin: 8 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 900px) {
  .safety-feature-grid {
     grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .safety-feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.safety-item {
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  /* display: flex; */
  /* align-items: flex-start; */
  align-items: normal;
  gap: 18px;
  padding: 28px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.safety-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.safety-item h3 {
  margin: 0 0 7px;
  color: #111;
  font-size: 18px;
  font-weight: 700;
}

.safety-item p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}


@media (max-width: 700px) {
  .why-service {
    padding: 60px 15px;
  }
  
  .why-service-heading {
    margin-bottom: 35px;
  }
  
  .why-service-heading h2 {
    font-size: 28px;
  }
  
  .why-service-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .why-service-item {
    padding: 22px;
  }

  .why-service-item-center {
    padding: 22px;
  }

  .top-service-item {
    padding: 22px;
  }
}

/* Welcome page image button */

.welcome-button {
  margin-top: 10px;
  position: relative;
  display: block;
  width: 100%;
  height: 320px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
  background: #222;
}

/* Image */

.welcome-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Dark gradient over image */

.welcome-button-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  
  background: linear-gradient(
  to top,
  rgba(0, 0, 0, 0.85) 0%,
  rgba(0, 0, 0, 0.45) 45%,
  rgba(0, 0, 0, 0.05) 100%
  );
  
  transition: background 0.3s ease;
}

/* Text */

.welcome-button-content {
  padding: 30px;
}

.welcome-button h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.welcome-button p {
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
}

/*.welcome-button-link {
  display: inline-flex;
  padding: 10px 18px;
  background: #aa3538;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.3s ease;
  border-radius: 12px;

  align-items: center;
}

.more-icon {
  width: 18px !important;
  height: 18px !important;
  vertical-align: middle;
  margin-left: 8px;
}*/

.welcome-button-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: #aa3538;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.3s ease;
  border-radius: 12px;
}

.more-icon {
  width: 18px !important;
  height: 18px !important;
  display: block;
  margin-left: 16px;
}


/* Hover */

.welcome-button:hover img {
  transform: scale(1.05);
}

.welcome-button:hover .welcome-button-overlay {
  background: linear-gradient(
  to top,
  rgba(0, 0, 0, 0.9) 0%,
  rgba(0, 0, 0, 0.55) 50%,
  rgba(0, 0, 0, 0.15) 100%
  );
}

.welcome-button:hover .welcome-button-link {
  background: #b8000b;
}

/* Mobile */

@media (max-width: 600px) {
  
  .welcome-button {
    height: 260px;
  }
  
  .welcome-button-content {
    padding: 20px;
  }
  
  .welcome-button h2 {
    font-size: 24px;
  }
  
  .welcome-button p {
    font-size: 14px;
  }
}

/* =========================================
   CUSTOMER REVIEWS
   ========================================= */

.customer-reviews {
    width: 100%;
    padding: 70px 20px;
    background: white;
    border-radius: 12px;
  border: 1px solid #e5e5e5;
}

/* Heading */

.reviews-heading {
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;
}

.reviews-heading h2 {
    margin: 0 0 10px;
    color: #222;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews-heading p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

/* Review grid */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual review */

.review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 35px 30px;
    background: #fff;
    border-top: 4px solid #aa3538;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* Stars */

.review-stars {
    margin-bottom: 18px;
    color: #aa3538;
    font-size: 20px;
    letter-spacing: 2px;
}

/* Quote */

.review-card blockquote {
    flex-grow: 1;
    margin: 0 0 25px;
    color: #444;
    font-size: 17px;
    line-height: 1.65;
    font-style: italic;
}

/* Customer */

.review-author {
    display: flex;
    flex-direction: column;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

.review-author strong {
    color: #222;
    font-size: 15px;
    font-weight: 700;
}

.review-author span {
    margin-top: 4px;
    color: #888;
    font-size: 13px;
}

/* Footer */

.reviews-footer {
    margin-top: 35px;
    text-align: center;
}

.reviews-button {
    display: inline-block;
    padding: 12px 25px;
    background: #aa3538;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s ease;
    border-radius: 12px;
}

.reviews-button:hover {
    background: #b8000b;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

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

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .customer-reviews {
        padding: 50px 15px;
    }

    .reviews-heading {
        margin-bottom: 30px;
    }

    .reviews-heading h2 {
        font-size: 26px;
    }

    .reviews-heading p {
        font-size: 14px;
    }

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

    .review-card {
        padding: 28px 25px;
    }

    .review-card blockquote {
        font-size: 16px;
    }

}


/*
.welcome-link {
text-decoration: none;
color: inherit;
display: block;
}

.welcome-btn {
display: flex;
align-items: center;
gap: 18px;
/ * padding: 18px 24px; * /
padding: 0px;
border: 2px solid #aa3538;
border-radius: 10px;
background: #fff;
color: #333;
cursor: pointer;
transition: all 0.2s ease;
overflow: hidden;
}

.welcome-btn:hover {
background: #aa3538;
color: #fff;
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(170, 53, 56, 0.2);
}

.welcome-btn h3 {
margin: 0 0 7px;
color: #111;
font-size: 18px;
font-weight: 700;
}

.welcome-btn p {
margin: 0;
color: #666;
font-size: 14px;
line-height: 1.6;
}

.welcome-btn img {
padding: 0;
}

.welcome-image {
width: 70%;
flex-shrink: 0;
}

.welcome-image img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
}
*/
.vertical-gallery { 
  position: relative; width: 100%; 
}

.gallery-scroll { 
  height: 600px; 
  overflow-y: auto; 
  scroll-behavior: smooth; 
  
  /* Optional */ 
  scrollbar-width: thin; 
  padding-right: 40px; 
}

.gallery-item { 
  margin-bottom: 20px; 
}

.gallery-item:last-child { 
  margin-bottom: 0; 
}

.gallery-item img { 
  display: block; 
  width: 100%; 
  height: 350px; 
  object-fit: cover; 
  border-radius: 12px; 
} 

/* Dots on the right */ 

.gallery-dots { 
  position: absolute; 
  right: 10px; top: 50%; 
  transform: translateY(-50%); 
  display: flex; 
  flex-direction: column;
  gap: 10px; 
  z-index: 10; 
}

.gallery-dot { 
  width: 10px; height: 10px; 
  padding: 0; border: 0; 
  border-radius: 50%; 
  background-color: #adb5bd; 
  transition: all 0.2s ease; 
}

.gallery-dot.active { 
  background-color: #0d6efd; 
  transform: scale(1.4); 
}

.gallery-dot:hover { 
  background-color: #0d6efd; 
}

.problem-icon {
  display: flex;
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  flex: 0 0 45px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #aa3538;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
/*
.problem-icon {
display: flex;
max-width: 45px;
aspect-ratio: 1 / 1;
flex-shrink: 0;
margin-bottom: 20px;
align-items: center;
justify-content: center;
border-radius: 50%;
background: #aa3538;
color: #fff;
font-size: 18px;
font-weight: 700;
}
*/
/* WHY / FEATURES */
.diagnostics-heading {
  margin-bottom: 10px;
}
.diagnostics-why {
  padding: 90px 20px;
  background: #fff;
}

.diagnostics-feature-grid {
  max-width: 1150px;
  margin: 8 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 900px) {
  .diagnostics-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .diagnostics-feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.diagnostics-feature {
  padding: 25px;
  background: #f5f5f5;
  border-left: 3px solid #aa3538;
}

.diagnostics-feature h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.diagnostics-feature p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.feature-number {
  display: block;
  margin-bottom: 12px;
  color: #aa3538;
  font-size: 13px;
  font-weight: 800;
}
/*
.diagnostics-feature {
padding-top: 10px;
}

.feature-number {
display: block;
margin-bottom: 15px;
color: #c8102e;
font-size: 14px;
font-weight: 800;
}

.diagnostics-feature h3 {
margin: 0 0 10px;
font-size: 19px;
}

.diagnostics-feature p {
margin: 0;
color: #666;
font-size: 14px;
line-height: 1.7;
}*/

/* GENERAL */

.section-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #c8102e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.process-number {
  display: flex;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #c8102e;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

/*ITEMS*/
/*SERVICING */
.service-items {
  padding: 20px;
}

.service-items-container {
  max-width: 100%;
  margin: 0 auto;
}

.service-items-container-dark {
  max-width: 100%;
  margin: 0 auto;
  /* background: black; */
  background: rgba(0,0,0,0.75);
  padding: 10px;
  border-radius: 12px;
}

.service-items-heading {
  max-width: 80%;
  margin: 0 auto 50px;
  text-align: center;
}

.service-items-heading-dark {
  max-width: 80%;
  margin: 0 auto 50px;
  text-align: center;
}

.section-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #aa3538;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.service-items-heading h2 {
  margin: 0 0 15px;
  color: #111;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
}

.service-items-heading p {
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.7;
}

.service-items-heading-dark h2 {
  margin: 0 0 15px;
  color: white;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
}

.service-items-heading-dark p {
  margin: 0;
  color: white;
  font-size: 17px;
  line-height: 1.7;
}

.service-items-grid {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.service-items-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-items-column-dark {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-items-item {
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-items-item-dark {
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  /* background: black; */
  border: 1px solid #e5e5e5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-items-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-items-icon {
  display: flex;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #aa3538;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.service-items-item h3 {
  margin: 0 0 7px;
  color: #111;
  font-size: 18px;
  font-weight: 700;
}

.service-items-item p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.service-items-item-dark h3 {
  margin: 0 0 7px;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.service-items-item-dark p {
  margin: 0;
  color: white;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .service-items {
    /* padding: 60px 15px; */
    padding: inherit;
  }
  
  .service-items-heading {
    margin-bottom: 35px;
  }
  
  .service-items-heading h2 {
    font-size: 28px;
  }
  
  .service-items-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .service-items-item {
    padding: 22px;
  }
}

@media print {
  .car-specs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 2px;
    font-size: 11px;
  }
  
  .spec {
    grid-template-columns: 30px minmax(0, max-content) minmax(0, 1fr);
    gap: 6px;
    padding: 4px 0;
  }
  
  .spec img {
    width: 30px;
    max-width: 30px;
    height: 30px;
  }
}

@media print {
  @page {
    margin: 2;
  }
  
  body {
    margin: 0;
    padding: 0;
  }
  
}