:root{
  --mdc-red:#A51E36;
  --mdc-black:#111111;
  --mdc-grey:#E6E6E6;
  --mdc-light:#F7F7F7;
  --mdc-white:#ffffff;
}

/* =========================
   RESET + BASE
========================= */
*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%}
body{
  font-family:"Open Sans",Arial,sans-serif;
  background:var(--mdc-white);
  color:var(--mdc-black);
  line-height:1.6;
}
img{max-width:100%;display:block}

/* =========================
   HEADER
========================= */
.site-header{
  background:var(--mdc-white);
  border-bottom:1px solid var(--mdc-grey);
}

.header-inner{
  max-width:1100px;
  margin:0 auto;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo{height:44px;width:auto}

/* Nav */
.main-nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.main-nav a{
  text-decoration:none;
  color:var(--mdc-black);
  font-weight:600;
  padding:8px 10px;
  border-radius:999px;
}

/* Buttons */
.btn-primary,
.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  line-height:1;
}

.btn-primary{
  background:var(--mdc-red);
  color:#fff;
  padding:10px 18px;
  border:2px solid var(--mdc-red);
}

.btn-outline{
  background:transparent;
  color:var(--mdc-red);
  padding:10px 16px;
  border:2px solid var(--mdc-red);
}

.btn-primary:hover{filter:brightness(0.95)}
.btn-outline:hover{background:rgba(165,30,54,0.08)}

/* =========================
   HERO
========================= */
.hero{
  position:relative;
  text-align:center;
  padding:160px 20px;
  background:
    linear-gradient(rgba(255,255,255,0.25), rgba(255,255,255,0.45)),
    url("/assets/img/hero.png") center/cover no-repeat;
}

.hero h1{
  font-size:clamp(2rem, 4vw, 3.1rem);
  margin-bottom:18px;
  color:#111;
  text-shadow:0 2px 10px rgba(255,255,255,0.9);
}

.hero p{
  max-width:720px;
  margin:0 auto;
  font-size:clamp(1rem, 1.7vw, 1.2rem);
  color:#111;
  text-shadow:0 2px 10px rgba(255,255,255,0.9);
}

.hero-actions{
  margin-top:28px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================
   DRIVE SECTION (HORIZONTAL SCROLL)
   This is written to WIN any fights.
========================= */
.drive-section{
  padding:80px 20px;
  text-align:center;
}

.drive-section h2{
  margin-bottom:18px;
  font-size:clamp(1.4rem, 2.2vw, 2rem);
}

/* Force the scroll container to be FLEX ROW */
.drive-scroll{
  /* WINNING RULES */
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;

  gap:22px;
  overflow-x:auto !important;
  overflow-y:hidden !important;

  padding:26px 18px 34px;
  margin:0 auto;

  max-width:1100px;

  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;

  /* helps stop weird stacking caused by children widths */
  align-items:stretch;
}

/* Make sure each card cannot expand full width */
.drive-scroll > .card{
  flex:0 0 280px !important;
  width:280px !important;
  min-width:280px !important;
  max-width:280px !important;

  scroll-snap-align:start;

  background:var(--mdc-white);
  border:1px solid var(--mdc-grey);
  border-radius:18px;
  padding:26px;

  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  transition:transform .25s ease, box-shadow .25s ease;

  text-align:left;
}

.drive-scroll > .card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.12);
}

.drive-scroll > .card h3{
  color:var(--mdc-red);
  margin-bottom:10px;
  font-size:1.05rem;
}

.drive-scroll > .card p{
  color:#222;
  opacity:0.92;
}

/* Scrollbar polish */
.drive-scroll::-webkit-scrollbar{height:8px}
.drive-scroll::-webkit-scrollbar-thumb{
  background:var(--mdc-grey);
  border-radius:10px;
}
.terms-note {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 0.2px;
}
.terms-note:hover {
  color: var(--mdc-red);
}

/* =========================
   TRUST – CLEAN GRID
========================= */
.trust {
  background: var(--mdc-light);
  padding: 80px 20px;
  text-align: center;
}

.trust h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 50px;
}

/* GRID */
.trust-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.trust-item {
  background: var(--mdc-white);
  padding: 32px 30px;
  border-radius: 18px;
  border: 1px solid var(--mdc-grey);
  text-align: left;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.trust-icon {
  display: inline-block;
  color: var(--mdc-red);
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.trust-item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--mdc-black);
}

.trust-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* MOBILE */
@media (max-width: 720px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =========================
   LBC LINK
========================= */
.lbc-link{
  text-align:center;
  padding:50px 20px;
}

.lbc-link a{
  color:var(--mdc-red);
  font-weight:800;
  text-decoration:none;
}

.lbc-link a:hover{text-decoration:underline}

/* =========================
   FOOTER
========================= */
footer{
  text-align:center;
  padding:25px;
  font-size:0.9rem;
  opacity:0.65;
  border-top:1px solid var(--mdc-grey);
}

/* =========================
   MOBILE TWEAKS
========================= */
@media (max-width:700px){
  .header-inner{flex-direction:column;align-items:flex-start}
  .main-nav{width:100%;justify-content:flex-start}
  .hero{padding:120px 16px}
  .drive-scroll{padding:22px 10px 28px}
  .drive-scroll > .card{flex-basis:260px;width:260px;min-width:260px;max-width:260px}
}
/* ===============================
   MDC Footer (3-column grid)
   =============================== */

.mdc-footer{
  border-top: 2px solid var(--mdc-red, #A51E36);
  padding: 22px 14px;
  background: #0f0f0f;
  color: #e6e6e6;
}

.mdc-footer-grid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;

  /* ✅ this is the fix */
  justify-items: center; /* centres each column block */
}

.mdc-footer-col{
  display: flex;
  flex-direction: column;
  gap: 10px;

  /* ✅ keeps links in that column left aligned */
  align-items: flex-start;

  /* ✅ prevents wide column stretching */
  width: fit-content;
}
.mdc-footer-col{
  min-width: 220px;
}

/* Each footer link row */
.mdc-footer-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e6e6e6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0.92;
}

.mdc-footer-item:hover{
  opacity: 1;
  color: #A51E36;
}

/* --- Wheel icon PNG --- */
.wheel-icon{
  width: 16px;
  height: 16px;
  display: inline-block;
  flex: 0 0 auto;
  image-rendering: auto;
}
.wheel-icon{
  opacity: 0.85;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.25));
}

.mdc-footer-item:hover .wheel-icon{
  opacity: 1;
}
.mdc-footer-item:hover span{
  color: var(--mdc-red);
}

/* Swap icon to red on hover */
.mdc-footer-item:hover .wheel-icon{
  content: url("/assets/img/wheel-red.png");
}

/* Copy line */
.mdc-footer-copy{
  max-width: 1100px;
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  opacity: 0.75;
  font-size: 0.86rem;
  text-align:center;
}
.mdc-footer-copy{
  margin-top: 22px;
}

.mdc-footer-copy span[data-unlock-id="mdc-copy"]{
  cursor: pointer;
  color: var(--mdc-red, #A51E36);
  font-weight: 900;
  text-shadow: 0 0 10px rgba(165, 30, 54, 0.25);
}

/* Responsive: stack columns on mobile */
@media (max-width: 820px){
  .mdc-footer-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

