* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* =========================================
   HEADER
========================================= */

.header {
  width: 100%;
  height: 72px;

  background: #fff;

  border-bottom: 1px solid #ddd;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

  position: relative;

  z-index: 50;
}

.header-logo {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo img {
  width: 90px;
  height: 47px;

  object-fit: contain;
}

/* =========================================
   PAGE NAVIGATION
========================================= */

.page-navigation {
  width: 100%;
  background: #fff;

  position: relative;
  z-index: 40;
}

.page-navigation h1 {
  width: 100%;

  padding: 20px 24px;

  border-bottom: 1px solid #ddd;

  font-size: 25px;

  font-weight: 400;

  line-height: 1.2;

  letter-spacing: 1.9px;

  text-transform: uppercase;
}

/* =========================================
   NAVIGATION WRAPPER
========================================= */

.navigation-wrapper {
  position: relative;

  width: 100%;
}
.navigation-wrapper-wrap {
  --tw-bg-opacity: 1;
  background-color: rgb(248 249 249 / var(--tw-bg-opacity));
}

/* =========================================
   DESKTOP NAV
========================================= */

.desktop-navigation {
  display: flex;

  align-items: stretch;

  width: fit-content;
 --tw-bg-opacity: 1;
  background-color: rgb(248 249 249 / var(--tw-bg-opacity));
}

.nav-item {
  padding: 16px 24px;

  display: flex;

  align-items: center;

  min-height: 47px;

  color: #000;

  font-size: 11px;

  font-weight: 700;

  line-height: 15px;

  letter-spacing: 1.44px;

  text-transform: uppercase;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.nav-item:hover {
  background: #eee;
}

.nav-item.sales {
  color: #fff;

  background: #555;
}

/* =========================================
   MOBILE SALES
========================================= */

.mobile-sales {
  display: none;
}

/* =========================================
   ACTION BAR
========================================= */

.action-bar {
  position: absolute;

  right: 0;

  top: 0;

  display: flex;

  align-items: stretch;

  background: #fff;
}

.action-item {
  position: relative;
}

.action-item button {
  height: 47px;

  padding: 16px 24px;

  border: 0;

  background: transparent;

  color: #000;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  cursor: pointer;

  text-transform: uppercase;

  font-size: 11px;

  font-weight: 600;

  line-height: 15px;

  letter-spacing: 1.44px;
}

.action-item button:hover {
  background: #000;

  color: #fff;
}

.action-item button img {
  width: 15px;

  height: 15px;

  object-fit: contain;
}

.action-item button:hover img {
  filter: invert(1);
}

/* =========================================
   VEHICLES
========================================= */

.vehicle-section {
  width: 100%;

  display: flex;

  flex-direction: row;
}

.vehicle {
  position: relative;

  flex: 1;

  height: 900px;

  background-position: center;

  background-size: cover;

  background-repeat: no-repeat;

  overflow: hidden;
}

/* =========================================
   BACKGROUND IMAGES
========================================= */

.vehicle-range {
  background-image: url("https://a.mktgcdn.com/p/4lzK9p4GHMgsVEAfDTavZVvL_h7WBHwopFWifsbKJsE/1671x930.png");
}

.vehicle-defender {
  background-image: url("https://a.mktgcdn.com/p/3Vp4ifxC4cxzdTaaLLL5o0vRaVFh1kwppM4KHvtSlVE/1654x931.png");
}

.vehicle-discovery {
  background-image: url("https://a.mktgcdn.com/p/NYAE6r8fa-ma0BNbdtMdf76ucsA4sqhkJQofMmnDH6I/1660x928.png");
}

/* =========================================
   VEHICLE CONTENT
========================================= */

.vehicle-content {
  width: 100%;
  height: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 48px;
}

/* =========================================
   VEHICLE LOGO
========================================= */

.vehicle-logo {
  width: auto;

  height: 23px;

  max-width: 80%;

  object-fit: contain;

  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

/* =========================================
   ENTER BUTTON
========================================= */

.enter-button {
  min-height: 48px;

  padding: 16px 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  border: 1px solid #fff;

  background: transparent;

  text-transform: uppercase;

  font-size: 11px;

  font-weight: 500;

  line-height: 15px;

  letter-spacing: 3px;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.enter-button:hover {
  background: #fff;

  color: #000;
}

/* =========================================
   BREADCRUMB
========================================= */

.breadcrumb {
  width: 100%;

  background: #f1f1f1;

  padding: 16px 0;
}

.breadcrumb-container {
  width: 100%;

  max-width: 1200px;

  margin: auto;

  padding: 0 24px;

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 8px;

  font-size: 13px;
}

.breadcrumb-container a:hover {
  text-decoration: underline;
}

.breadcrumb-container span {
  font-weight: 500;
}

.breadcrumb-container span:not(:last-child) {
  font-weight: 700;

  color: #000;
}

/* =========================================
   FOOTER
========================================= */

.footer {
  width: 100%;

  background: #fff;

  padding: 40px 0 40px;
}

.footer-container {
  width: 100%;

  max-width: 1200px;

  margin: auto;

  padding: 0 24px;
}

/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
  display: flex;

  align-items: center;

  gap: 24px;

  color: #777;

  font-size: 10px;

  line-height: 13px;

  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* =========================================
   COPYRIGHT
========================================= */

.copyright {
  margin-top: 20px;

  font-size: 14px;

  line-height: 18px;

  color: #000;
}

/* =========================================
   RETAILER INFO
========================================= */

.retailer-info {
  padding-top: 20px;

  color: #777;

  font-size: 10px;

  line-height: 13px;

  display: flex;

  flex-direction: column;

  gap: 5px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
  .page-navigation h1 {
    font-size: 21px;
  }

  .nav-item {
    padding-left: 15px;
    padding-right: 15px;

    font-size: 10px;
  }

  .action-item button {
    padding-left: 14px;
    padding-right: 14px;

    font-size: 10px;
  }

  .vehicle {
    height: 700px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 640px) {
  body {
    padding-bottom: 58px;
  }

  /* HEADER */

  .header {
    height: 73px;

    position: relative;
  }

  .header-logo img {
    width: 60px;

    height: 32px;
  }

  /* PAGE TITLE */

  .page-navigation h1 {
    padding: 20px 24px;

    font-size: 18px;

    letter-spacing: 1.9px;
  }

  /* MOBILE SALES */

  .mobile-sales {
    width: 100%;

    min-height: 48px;

    padding: 16px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: #555;

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    line-height: 15px;

    letter-spacing: 1.44px;
  }

  .mobile-sales img {
    width: 15px;

    height: 15px;
  }

  /* DESKTOP NAV HIDDEN */

  .desktop-navigation {
    display: none;
    position: absolute;
    width: 100%;
  }

  /* ACTION BAR */

  .action-bar {
    position: fixed;

    z-index: 100;

    left: 0;

    right: 0;

    bottom: 0;

    top: auto;

    width: 100%;

    height: 58px;

    background: #555;

    display: flex;

    justify-content: space-around;
  }

  .action-item {
    flex: 1;

    display: flex;

    justify-content: center;
  }

  .action-item button {
    width: 100%;

    height: 58px;

    padding: 12px 8px;

    color: #fff;

    font-size: 9px;

    letter-spacing: 1px;
  }

  .action-item button img {
    filter: invert(1);

    width: 15px;

    height: 15px;
  }

  /* VEHICLES */

  .vehicle-section {
    flex-direction: column;
  }

  .vehicle {
    width: 100%;

    height: 240px;

    flex: none;

    background-position: center;
  }

  .vehicle-content {
    gap: 48px;
  }

  .vehicle-logo {
    height: 14px;
  }

  .enter-button {
    min-height: 45px;

    padding: 14px 20px;

    font-size: 10px;
  }

  /* BREADCRUMB */

  .breadcrumb {
    padding: 16px 0;
  }

  .breadcrumb-container {
    padding: 0 24px;

    font-size: 11px;

    line-height: 15px;
  }

  /* FOOTER */

  .footer {
    padding: 24px 0;

    padding-bottom: 80px;
  }

  .footer-container {
    padding: 0 24px;
  }

  .footer-links {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

  .copyright {
    margin-top: 20px;

    font-size: 12px;
  }

  .retailer-info {
    padding-top: 20px;
  }
}

/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {
  .page-navigation h1 {
    font-size: 16px;
  }

  .action-item button {
    font-size: 8px;

    letter-spacing: 0.7px;
  }

  .vehicle {
    height: 220px;
  }
}

/* =========================================
   ABOUT US HERO
========================================= */

.about-hero-section {
  width: 100%;
  background: #f2f2f2;
}

.about-hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: row-reverse;

  gap: 40px;
}

/* IMAGE */

.about-image {
  width: 60%;
  max-width: 60%;

  display: flex;
}

.about-image img {
  width: 100%;
  height: auto;

  display: block;

  aspect-ratio: 16 / 9;

  object-fit: cover;
  object-position: center;
}

/* TEXT */

.about-intro {
  width: 40%;
  max-width: 40%;

  padding: 16px 0 24px;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: flex-start;

  gap: 20px;

  color: #000;
}

.about-heading {
  font-size: 24px;

  line-height: 1.2;

  font-weight: 400;

  text-transform: uppercase;

  letter-spacing: 1.9px;
}

.about-description {
  font-size: 16px;

  line-height: 1.55;

  white-space: normal;

  color: #000;
}

/* =========================================
   DEALER SECTION
========================================= */

.dealer-section {
  width: 100%;
  background: #fff;
}

.dealer-container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  padding: 40px 24px;

  display: flex;
  flex-wrap: wrap;

  gap: 24px;
}

/* CARD */

.dealer-card {
  background: #fff;

  padding: 32px;

  border: 1px solid #ddd;

  display: flex;
  flex-direction: column;

  justify-content: space-between;

  gap: 16px;

  min-height: 270px;

  width: calc(33.333% - 16px);
}

/* TITLE */

.dealer-card-title h3 {
  margin: 0;

  font-size: 18px;

  line-height: 1.3;

  font-weight: 500;
}

/* STATUS */

.dealer-status {
  font-size: 14px;

  line-height: 16px;

  color: #000;
}

/* ADDRESS */

.dealer-address {
  font-size: 16px;

  line-height: 1.4;

  color: #777;

  display: flex;
  flex-direction: column;

  gap: 2px;
}

.address-line {
  display: flex;

  flex-wrap: wrap;

  gap: 4px;
}

/* DEALER LINKS */

.dealer-link {
  display: flex;

  align-items: center;

  gap: 8px;

  width: fit-content;

  color: #000;

  font-size: 15px;

  line-height: 20px;

  font-weight: 700;

  text-decoration: none;
}

.dealer-link:hover {
  text-decoration: underline;
}

.dealer-link img {
  width: 16px;
  height: 16px;

  object-fit: contain;
}

/* GOOGLE MAP */

.google-map {
  display: flex;

  gap: 16px;

  font-size: 16px;

  color: #000;
}

.google-map a {
  display: flex;

  align-items: center;

  gap: 6px;

  color: inherit;

  text-decoration: none;
}

.google-map a:hover {
  text-decoration: underline;
}

.google-map img {
  width: 16px;
  height: 16px;

  object-fit: contain;
}

/* =========================================
   ABOUT US TABLET
========================================= */

@media (max-width: 900px) {
  .about-hero-container {
    gap: 25px;
  }

  .about-image {
    width: 55%;
    max-width: 55%;
  }

  .about-intro {
    width: 45%;
    max-width: 45%;
  }

  .about-heading {
    font-size: 20px;
  }

  .about-description {
    font-size: 14px;
  }

  .dealer-card {
    width: calc(50% - 12px);
  }
}

/* =========================================
   ABOUT US MOBILE
========================================= */

@media (max-width: 640px) {
  .about-hero-container {
    width: 100%;

    padding: 0;

    flex-direction: column;

    gap: 0;
  }

  .about-image {
    width: 100%;
    max-width: 100%;

    display: block;
  }

  .about-image img {
    width: 100%;

    aspect-ratio: 16 / 9;

    object-fit: cover;
  }

  .about-intro {
    width: 100%;
    max-width: 100%;

    padding: 24px;

    gap: 20px;
  }

  .about-heading {
    font-size: 18px;

    letter-spacing: 1.2px;
  }

  .about-description {
    font-size: 11px;

    line-height: 1.5;
  }

  /* DEALER */

  .dealer-container {
    padding: 24px;

    flex-direction: column;

    gap: 16px;
  }

  .dealer-card {
    width: 100%;

    min-height: 270px;

    padding: 24px;
  }

  .dealer-card-title h3 {
    font-size: 18px;
  }

  .dealer-status {
    font-size: 13px;
  }

  .dealer-address {
    font-size: 14px;
  }

  .dealer-link {
    font-size: 14px;
  }

  .google-map {
    font-size: 14px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {
  .about-intro {
    padding: 20px;
  }

  .about-heading {
    font-size: 17px;
  }

  .about-description {
    font-size: 11px;
  }

  .dealer-container {
    padding: 20px;
  }

  .dealer-card {
    padding: 20px;
  }
}

.lr-page {
  width: 100%;
  background: #fff;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
}

.lr-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* =========================================================
   TOP HEADER
   ========================================================= */

.lr-top-header {
  position: relative;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 100;
}

.lr-logo-wrapper {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lr-logo {
  width: 90px;
  height: 47px;
  object-fit: contain;
}

/* =========================================================
   DEALER TITLE
   ========================================================= */

.lr-dealer-title {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 20px 24px;
}

.lr-dealer-title h1 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.lr-nav-wrapper {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 90;
}

.lr-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.lr-nav-menu {
  display: flex;
  align-items: stretch;
  background: #fff;
}

.lr-nav-link {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 15px;
  font-weight: 700;
  letter-spacing: 1.44px;
  transition: background 0.25s ease;
}

.lr-nav-link:hover {
  background: #eee;
}

.lr-nav-link.lr-active {
  color: #fff;
  background: #5a5a5a;
}

/* =========================================================
   MOBILE NAV TITLE
   ========================================================= */

.lr-mobile-nav-title {
  display: none;
  width: 100%;
  padding: 16px 24px;
  background: #5a5a5a;
  color: #fff;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.44px;
  cursor: pointer;
}

.lr-caret {
  width: 14px;
  height: 14px;
}

/* =========================================================
   BOTTOM ACTION BAR
   ========================================================= */

.lr-action-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  background: #fff;
}

.lr-action {
  position: relative;
}

.lr-action-btn {
  height: 100%;
  min-height: 48px;
  padding: 16px 24px;
  border: 0;
  background: transparent;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 15px;
  font-weight: 600;
  letter-spacing: 1.44px;
  cursor: pointer;
}

.lr-action-btn:hover {
  color: #fff;
  background: #000;
}

.lr-action-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* =========================================================
   SERVICE HERO
   ========================================================= */

.lr-service-hero {
  background: #f1f1f1;
  padding: 70px 24px;
}

.lr-service-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.lr-welcome {
  margin-bottom: 18px;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.lr-service-heading {
  margin: 0 0 20px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.9px;
}

.lr-service-address {
  margin-bottom: 30px;
  color: #666;
  font-size: 15px;
}

.lr-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 24px;
  background: #000;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: all 0.25s ease;
}

.lr-primary-btn:hover {
  background: #333;
}

/* =========================================================
   SERVICES OFFERED
   ========================================================= */

.lr-services-section {
  padding: 55px 0 0;
}

.lr-section-title {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 24px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */

.lr-service-list {
  width: 100%;
}

.lr-service-card {
  display: flex;
  width: 100%;
  min-height: 360px;
  background: #f1f1f1;
}

.lr-service-card:nth-child(even) {
  flex-direction: row-reverse;
}

.lr-service-image {
  width: 50%;
  min-height: 360px;
}

.lr-service-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.lr-service-content {
  width: 50%;
  padding: 55px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.lr-service-content h3 {
  margin: 0 0 20px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.lr-service-content p {
  margin: 0 0 25px;
  font-size: 15px;
  line-height: 1.65;
  color: #222;
}

.lr-service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.lr-service-link:hover {
  text-decoration: underline;
}

.lr-service-link img {
  width: 16px;
  height: 16px;
}

/* =========================================================
   BOOK SERVICE SECTION
   ========================================================= */

.lr-book-section {
  padding: 65px 24px;
  background: #fff;
}

.lr-book-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lr-book-heading {
  margin: 0 0 22px;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.lr-book-text {
  max-width: 900px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #222;
}

/* =========================================================
   CONTACT
   ========================================================= */

.lr-contact-section {
  padding: 50px 24px;
  background: #f1f1f1;
}

.lr-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.lr-contact-box {
  flex: 1 1 30%;
  min-width: 250px;
  padding: 30px;
  background: #fff;
  border: 1px solid #ddd;
}

.lr-contact-box h3 {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.lr-contact-box p {
  margin: 0 0 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.lr-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.lr-contact-link:hover {
  text-decoration: underline;
}

.lr-contact-link img {
  width: 16px;
  height: 16px;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */

.lr-breadcrumb {
  background: #e8e8e8;
  padding: 16px 0;
}

.lr-breadcrumb ol {
  margin: 0;
  padding: 0 24px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.lr-breadcrumb li {
  display: flex;
  align-items: center;
}

.lr-breadcrumb a,
.lr-breadcrumb span {
  color: #000;
  font-size: 11px;
  line-height: 15px;
  text-decoration: none;
}

.lr-breadcrumb a:hover {
  text-decoration: underline;
}

.lr-breadcrumb-separator {
  margin: 0 9px;
  font-weight: 700;
}

/* =========================================================
   FOOTER
   ========================================================= */

.lr-footer {
  padding: 40px 0 90px;
  background: #fff;
}

.lr-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 25px;
}

.lr-footer-links a {
  color: #777;
  text-decoration: none;
  font-size: 10px;
  line-height: 13px;
  font-weight: 500;
}

.lr-footer-links a:hover {
  text-decoration: underline;
}

.lr-footer-copy {
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 19px;
}

.lr-footer-address {
  color: #777;
  font-size: 10px;
  line-height: 16px;
}
.mobile-header {
  display: none;
}
.mobile-header .desktop-navigation ul{
    width: 100%;
}
.mobile-header .desktop-navigation ul li ul{
   padding-left: 25px;
   list-style: none;
}



/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 767px) {
  .mobile-header {
    display: unset;
  }

  .desktop-header{
    display: none;
  }

  .lr-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lr-logo-wrapper {
    height: 48px;
  }

  .lr-logo {
    width: 60px;
    height: 32px;
  }

  .lr-dealer-title {
    padding: 18px 20px;
  }

  .lr-dealer-title h1 {
    font-size: 17px;
    letter-spacing: 1.5px;
  }

  .lr-nav {
    display: block;
  }

  .lr-mobile-nav-title {
    display: flex;
  }

  .lr-nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
  }

  .lr-nav-menu.lr-open {
    display: flex;
  }

  .lr-nav-link {
    width: 100%;
    min-height: 48px;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
  }

  .lr-nav-link.lr-mobile-sub {
    padding-left: 40px;
  }

  .lr-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: #5a5a5a;
  }

  .lr-action {
    flex: 1;
  }

  .lr-action-btn {
    width: 100%;
    min-height: 58px;
    padding: 12px 7px;
    color: #fff;
    font-size: 9px;
    letter-spacing: 1px;
  }

  .lr-action-btn:hover {
    background: #000;
  }

  .lr-service-hero {
    padding: 50px 20px;
  }

  .lr-service-heading {
    font-size: 24px;
  }

  .lr-welcome {
    font-size: 12px;
  }

  .lr-service-address {
    font-size: 13px;
    line-height: 1.5;
  }

  .lr-services-section {
    padding-top: 40px;
  }

  .lr-section-title {
    padding: 0 20px;
    font-size: 21px;
  }

  .lr-service-card,
  .lr-service-card:nth-child(even) {
    flex-direction: column;
    min-height: auto;
  }

  .lr-service-image {
    width: 100%;
    min-height: auto;
  }

  .lr-service-image img {
    width: 100%;
    height: auto;
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .lr-service-content {
    width: 100%;
    padding: 35px 24px 40px;
  }

  .lr-service-content h3 {
    font-size: 19px;
  }

  .lr-service-content p {
    font-size: 14px;
  }

  .lr-book-section {
    padding: 45px 20px;
  }

  .lr-book-heading {
    font-size: 21px;
  }

  .lr-book-text {
    font-size: 14px;
  }

  .lr-contact-section {
    padding: 40px 20px;
  }

  .lr-contact-box {
    flex: 1 1 100%;
  }

  .lr-breadcrumb {
    padding: 15px 0;
  }

  .lr-breadcrumb ol {
    padding: 0 20px;
  }

  .lr-footer {
    padding: 30px 20px 85px;
  }

  .lr-footer-links {
    flex-direction: column;
    gap: 14px;
  }
}
