/* ─── Custom Properties ─────────────────────────────────────────────────── */
:root {
  --blue-lad: #0093d0;
  --blue-rv: #004666;
  --navy: #102033;
  --text: #111111;
  --text-light: #eeeeee;
  --line: #cccccc;
}

/* ─── Base Overrides ────────────────────────────────────────────────────── */
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #eeeeee;
}

/* ─── Top Strip ─────────────────────────────────────────────────────────── */
.top-strip {
  background: var(--navy);
  color: var(--text-light);
}

.top-strip a {
  color: inherit;
  text-decoration: none;
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      #eef3f7 0%,
      #eef3f7 37%,
      rgba(238, 243, 247, 0.35) 53%,
      rgba(238, 243, 247, 0) 72%
    ),
    linear-gradient(180deg, #e9f0f5, #dce6ee);
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/lrv-hero-bg.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(5, 9, 12, 0.5), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 62px;
}

.main-logo {
  display: block;
  width: 330px;
  max-width: 62vw;
  margin-bottom: 74px;
}

h1 {
  font-size: clamp(54px, 8vw, 92px);
  letter-spacing: -3px;
  color: var(--navy);
}

.tm {
  font-size: 0.3em;
  position: relative;
  top: -1.5em;
}

.accent-line {
  width: 82px;
  height: 9px;
  background: var(--blue-rv);
  margin-bottom: 22px;
}

.hero p {
  font-size: 28px;
  margin: 0;
  color: #121a23;
}

/* ─── Intro ─────────────────────────────────────────────────────────────── */

.eyebrow {
  text-transform: uppercase;
  color: var(--blue-rv);
  letter-spacing: 0.03em;
}

.intro h2 {
  font-size: clamp(38px, 5vw, 58px);
}

.intro-copy {
  font-size: 1.3em;
  max-width: 850px;
}

/* ─── Icons & Labels ────────────────────────────────────────────────────── */
.icon {
  color: var(--blue-rv);
  font-size: 3em;
}

.proof-label {
  color: var(--blue-rv);
  font-size: 16px;
}

.proof-badge {
  color: var(--blue-rv);
  font-size: 42px;
}

/* ─── Responsive Dividers ───────────────────────────────────────────────── */
@media (min-width: 768px) {
  .has-dividers > .col:not(:last-child) {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 767px) {
  .has-dividers > .col:not(:last-child) {
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
  }
  .has-dividers > .col:not(:first-child) {
    padding-top: 1rem;
  }
}

/* ─── Brand Cards ────────────────────────────────────────────────────────── */
.brand-card {
  position: relative;
  min-height: 260px;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.brand-card img {
  max-height: 6em;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.bontrager::before {
  background-image: url("assets/bontrager-card.jpg");
}

.skinny::before {
  background-image: url("assets/skinny-guy-card.jpg");
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}

.brand-content {
  position: relative;
}

/* ─── Service Card ───────────────────────────────────────────────────────── */
.service-card {
  background: var(--navy);
  color: #fff;
}

.service-photo {
  min-height: 300px;
  background: url("assets/lrv-service-bg.jpg") left center / cover no-repeat;
  position: relative;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 40%, #09131e 100%);
  pointer-events: none;
}

.service-content {
  background: linear-gradient(135deg, #09131e, #111820);
}

.service-icon {
  font-size: 3em;
}

.service-heading-text {
  font-size: 34px;
  line-height: 0.95;
}

.service-content em {
  font-style: normal;
  color: var(--blue-lad);
}

.service-list li .bi-check2 {
  color: var(--blue-lad);
  margin-right: 6px;
  font-size: 1.1em;
}

.schedule {
  border-top: 1px solid var(--line);
  color: var(--blue-lad);
}

.phone-cta {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
}

/* ─── Contact Panel ──────────────────────────────────────────────────────── */
.panel-title {
  color: var(--blue-rv);
  font-size: 22px;
}

.form-control-custom {
  border-color: #c8d1da;
  background-color: #f9fbfd;
}

.btn-send {
  background: var(--blue-rv);
  color: #fff;
  border: 0;
  border-radius: 5px;
  padding: 13px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.hours-title {
  color: var(--blue-rv);
}

table:has(.hours-title) {
  font-size: 0.75rem;
}

table:has(.hours-title) td {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--blue-rv);
  color: #fff;
}

.footer p {
  font-size: 17px;
}

.footer-tagline {
  min-height: 3em;
  font-size: 1.2em;
  border-left: 1px solid var(--line);
  padding-left: 2rem;
}

/* ─── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero {
    min-height: 500px;
  }

  .hero-image {
    opacity: 0.35;
  }

  .hero p {
    font-size: 20px;
  }

  .intro h2 {
    font-size: 32px;
  }

  .main-logo {
    margin-bottom: 54px;
  }

  .service-photo {
    min-height: 200px;
  }

  .service-photo::after {
    display: none;
  }

  .top-strip > div {
    font-size: 13px;
    justify-content: center;
    text-align: center;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    gap: 0 !important;
  }

  .footer-tagline {
    border-left: none;
    padding-left: 0;
    text-align: center;
    justify-content: center;
  }

  .service-heading-text {
    font-size: 22px;
  }

  .phone-cta {
    font-size: 28px;
  }

  .d-flex .bi-phone-vibrate.service-icon {
    font-size: 2em;
  }

  .footer .col-md-auto:first-child {
    text-align: center;
  }
}
