* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto';
  scroll-behavior: smooth;
}

/* html {
  overflow-x: hidden;
} */

body {
  overflow-x: hidden;
  overflow-y: auto;
}

@font-face {
  font-family: 'TitilliumWeb';
  src: url('media/fonts/TitilliumWeb-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('media/fonts/Roboto_SemiCondensed-Light.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

#splash-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 9999;
}

#splash-screen {
  width: 100%;
  height: 100%;
  position: relative;
}

#splash-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

#splash-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.splash-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.splash-content {
  position: relative;
  width: 100%;
  height: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  color: white;
  font-family: sans-serif;
}

.splash-message {
  font-size: 3rem;
  margin: 0;
  animation: fadeZoomIn 1.5s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.splash-sub {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.5rem;
  animation: fadeZoomIn 2s ease-out forwards;
  opacity: 0;
  animation-delay: 1s;
}

.splash-content h1,
.splash-content p {
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  letter-spacing: 0.05em;
}

#enter-btn {
  margin-top: 25px;
  padding: 2rem 3rem;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  color: white;
  background-color: #264483;
  opacity: 0;
  animation: fadeZoomIn 1.5s ease-out forwards;
  animation-delay: 1.5s;
  z-index: 2;
}

#enter-btn:hover {
  background-color: red;
}

/* Animations */
@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.slide-out {
  animation: slideOutUp 1s ease forwards;
}

@media (max-width: 768px) {
  .splash-message {
    font-size: 2.2rem;
  }

  .splash-sub {
    font-size: 1.6rem;
  }

  #enter-btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }

}

.headerBar {
  width: 100vw;
  height: 35px;
  background-color: #264483;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 15px;
}

.socialIconWrapper {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 5px;
  margin-right: 15px;

}

.headerBarsocialMediaIcon {
  height: 25px;
}

.headerBarsocialMediaIcon:hover {
  cursor: pointer;
  transform: scale(1.2);
}

.headerBarwhiteFont {
  color: white;
  text-decoration: none;
}

.header {
  width: 100%;
  height: 125px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 30px;
  padding-left: 30px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0px;
  z-index: 10;
  transition: all 0.1s ease;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    height: auto;
  }

  .headerLogo {
    height: 0px !important;
    display: none !important;
  }

  .headerLogoSmall {
    height: 0px !important;
    display: none !important;
  }

  .headerMenu {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 6px !important;
    height: 25px !important;
    width: 100% !important;
  }

  .headerMenuLink,
  .headerSubMenuLink {
    font-size: 0.60rem !important;
  }

  .headerSubMenuLink>img {
    width: 100%;
  }

  .headerSubMenuLink {
    width: 150px !important;
  }

  .headerMenuDivider {
    display: inline-block;
    font-size: 0.2 rem;
  }

}

.headerSmall {
  width: 100vw;
  height: 60px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 30px;
  padding-left: 30px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0px;
  z-index: 10;
  transition: all 0.3s ease;
}

.headerLogo {
  height: 100px;
  transition: 0.1s ease;
}

.headerLogoSmall {
  height: 33px;
  transition: all 0.3s ease;
}

.submenulink-new {
  font-size: 0.75rem;
  color: #555;
}

.submenulink-img {
  width: 100%;
  height: auto;
}

.headerMenu {
  height: 150px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 22px;
}

.headerMenuSmall {
  height: 75px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 22px;
}

.headerMenuLink {
  text-transform: uppercase;
  text-decoration: none;
  color: #264483;
  font-size: 1.2rem;
  font-family: 'TitilliumWeb';
}

.headerMenuLink:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.headerMenuLink:active {
  cursor: pointer;
  transform: scale(1.1);
  color: red;
}

.clickableImage:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.noTransform {
  cursor: pointer;
  transform: none !important;
}

.noTransform:hover {
  cursor: pointer;
  transform: none !important;
}

.home-main-vid {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.home-main-vid video {
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
}

.promo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 75px;
  height: 18%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  backdrop-filter: saturate(110%);
  transition: all 1s ease-in-out;
  opacity: 0;
}

.promo.in-view {
  opacity: 1;
}

.promo-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, #ff6600, #ff4400);
  border: none;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .home-main-vid {
    height: auto;
  }

  .promo-text {
    font-size: 0.75rem;
  }

  .promo-button {
    font-size: 0.5rem;
    padding: 6px 12px;
    margin-top: 15px;
  }

  .promo {
    /* background: none;
    backdrop-filter: none; */
    bottom: 0;
    height: auto;
    padding: 15px;
  }
}




.imageModal {
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
}



.newsModal {
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
}

.newsModalWrapper {
  width: 92vw;
  height: 92vh;
  margin: auto;
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.newsModalLeft {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2%;
  padding-left: 2%;
  padding-right: 1%;
}

.newsModalLeftImage {
  width: 100%;
  height: 50%;
  object-fit: cover;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}

.newsModalLeftImages {
  width: 100%;
  height: 48%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  overflow-y: auto;
  padding-bottom: 25px;
  gap: 5px;
}

.newsModalLeftImagesItem {
  max-width: 30%;
  height: auto;
  object-fit: cover;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.newsModalRight {
  width: 50%;
  height: 100%;
  padding-top: 2%;
  padding-left: 1%;
  padding-right: 2%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  line-height: 1.5;
}

.newsModalRightTitle {
  font-size: 1.5rem;
  margin-bottom: 25px;

}

.newsModalRightContent {
  font-size: 1rem;
  padding-right: 10px;
  text-align: justify;
  overflow-y: auto;
}

.newsModalDate {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
}

@media (max-width: 768px) {
  .newsModal {
    width: 100vw;
    height: 100vh;
    /* keep modal full screen */
    display: flex;
  }

  .newsModalWrapper {
    width: 100vw;
    height: 100vh;
    /* or auto if you prefer */
    flex-direction: column-reverse;
    /* ✅ this is the key */
    flex-wrap: nowrap;
    /* stop wrapping weirdly */
    overflow-y: auto;
    /* allow whole modal to scroll on small screens */
  }

  .newsModalLeft,
  .newsModalRight {
    width: 100%;
    height: auto;
    /* don't force 100% height on each half */
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 4%;
  }

  .newsModalLeftImage {
    height: auto;
    max-height: 45vh;
    /* prevent the main image from taking over */
  }

  .newsModalLeftImages {
    height: auto;
    /* thumbnails area scrolls if needed */
  }

  .newsModalRightTitle {
    margin-top: 10px;
  }

  .newsModalRightContent {
    overflow-y: visible;
    /* let wrapper handle scrolling */
  }

  .newsModalDate {
    position: static;
    /* easier on mobile */
    padding: 10px 0;
    text-align: right;
  }
}


.imageModalContent {
  margin: auto;
}

.headerMenuDivider {
  font-size: 1.5rem;
}

.headerSubMenu {
  background-color: white;
  position: absolute;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
}

.headerSubMenuLink {
  text-transform: uppercase;
  padding: 10px;
  width: 200px;
  text-decoration: none;
  color: #264483;
  font-size: 1.2rem;
  font-family: 'TitilliumWeb';
}

.headerSubMenuLink:not(:last-child) {
  border-bottom: 1px solid grey;
}

.headerSubMenuLink:hover {
  cursor: pointer;
}

.headerSubMenuLink:active {
  cursor: pointer;
  color: red;
}

.activeLink {
  color: red;
  font-weight: bold;
}

.contentDisplay {
  width: 100vw;
  height: auto;
}

.contentWrapper {
  width: 100vw;
  padding-left: 8vw;
  padding-right: 8vw;
  padding-top: 2vh;
  padding-bottom: 10vh;
}

.noVPadding {
  width: 100vw;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0vh;
  padding-bottom: 0vh;
}

.mediaItem {
  width: 100%;
  height: auto;
}

.mediaItemImage {
  width: 100%;
  height: auto;
}


/* NEW HOME CSS */

.zoom-in {
  animation: zoomIn 15s forwards;
  transform-origin: center;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
    /* Adjust scale factor as needed */
  }
}

.home-hero {
  position: relative;
  height: 88vh;
  background-image: url('/media/bg/5.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.home-hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  animation: fadeZoomIn 2.5s ease-out forwards;
}

.home-hero-overlay h1 {
  font-size: 4rem;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .home-hero-overlay h1 {
    font-size: 2rem;
  }
}

.home-hero-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  color: white;
  background-color: #e31837;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.home-hero-btn:hover {
  background-color: #c7132f;
  cursor: pointer;
}

.home-intro {
  padding: 12rem 2rem;
  text-align: center;
  background-color: white;
}

.home-intro-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.andoverx-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 4rem 2rem;
}

.andoverx-container-logo {
  width: 75%;
  opacity: 0;
  transform: scale(0.85);
}

.andoverx-container-logo.in-view {
  transform: scale(1);
  opacity: 1;
}

.home-intro-text {
  max-width: 600px;
}

.home-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #003366;
}

.home-intro p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.home-intro-image {
  width: 300px;
  height: auto;
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.home-intro-image.in-view {
  transform: scale(1);
  opacity: 1;
}

@media (max-width: 768px) {
  .home-intro-container {
    flex-direction: row-reverse;
  }

  .home-intro-container>div:first-child {
    order: 2;
  }

  .home-intro-container>div:last-child {
    order: 1;
  }

  .home-intro {
    padding: 5%;
  }

  .home-intro-text h2 {
    font-size: 1.6rem;
    color: #003366;
  }

  .home-intro-image {
    width: 150px;
    margin-top: 50px;
    margin-bottom: 25px;
  }
}





.home-intro-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #003366;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.home-intro-btn:hover {
  background-color: red;
  cursor: pointer;
}

.home-products {
  background-color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.home-products-container {
  max-width: 1200px;
  margin: 0 auto;
}

.home-products h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #003366;
}

.home-products p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.product-card-grid-trailers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card-trailers {
  background-color: #f4f4f4;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #003366;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.product-card-trailers:hover {
  transform: translateY(-6px);
}

.product-card-trailers img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.product-card-trailers h3 {
  padding: 1rem;
  font-size: 1.2rem;
}

.home-products-trailers-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #003366;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.home-products--trailers-btn:hover {
  background-color: #001d4a;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.option-card {
  background: #f4f4f4;
  padding: 1.25rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.option-card:hover {
  transform: translateY(-4px);
}

.product-intro-table {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
}

.product-intro {
  flex: 1 1 500px;
}

.product-intro-ax {
  padding: 5rem;
  max-width: 960px;
}

.product-intro-ax h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #003366;
}

.product-intro-ax p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

.product-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #003366;
}

.product-intro p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

.product-intro ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 1.2rem;
  list-style-type: disc;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}

.product-intro li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.product-table {
  flex: 1 1 500px;
}

.product-table h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #003366;
}

.product-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

.product-table th,
.product-table td {
  padding: 0.75rem;
  text-align: center;
  border: 1px solid #ddd;
}

.product-table thead th {
  background-color: #003366;
  color: white;
  font-weight: 600;
}

.product-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.product-table .note {
  font-size: 0.85rem;
  margin-top: 1rem;
  color: #666;
}

.product-options-full {
  padding: 4rem 2rem;
  background: rgb(38, 68, 131);
  text-align: center;

}

.product-options-full h2 {
  font-size: 1.4rem;
  color: white;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.option-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-gallery {
  padding: 4rem 2rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 0.5rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.product-pdf-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #003366;
  color: white;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 25px;
}

.pdf-bar-left p {
  font-size: 1.3rem;
  margin: 0;
}

.pdf-bar-right .pdf-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: #003366;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.pdf-bar-right .pdf-link:hover {
  background-color: #ffcc00;
  color: #003366;
  cursor: pointer;
}

.pdf-icon {
  width: 30px;
  height: auto;
}


/* TRAILERS - new */



.hero-background-trailers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('media/bg/22.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.trailer-hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  top: 80%;
  transform: translateY(-50%);
  padding: 0 1rem;
}

.trailer-hero-content h1 {
  margin-bottom: 25px;
}

.trailers-main-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.trailers-intro {
  width: 100%;
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Flex container: text left, list right */
.trailers-intro-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  /* space between text and checklist */
  text-align: left;
  /* prevents centering inside the columns */
}

/* Paragraph styling */
.trailers-intro-text {
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 600px;
}

/* Checklist styling */
.trailers-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.7;
  min-width: 350px;
}

.trailers-list li {
  margin-bottom: 0.6rem;
}

/* Responsive stacking for mobile */
@media (max-width: 768px) {
  .trailers-intro-content {
    flex-direction: column;
    text-align: center;
  }

  .trailers-list {
    text-align: center;
  }
}






.trailers-product-container {
  position: relative;
  width: 100%;
  height: 94vh;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  box-sizing: border-box;
}

.show_sf {
  background-image:
    url("media/trailers/sf.webp");
}

.show_sd {
  background-image:
    url("media/trailers/sd.webp");
}

.show_ll {
  background-image:
    url("media/trailers/ll.webp");
}

.show_fl {
  background-image:
    url("media/trailers/fl1.webp");
}

.show_db {
  background-image:
    url("media/trailers/db1.webp");
}

/* Optional subtle overlay container, mainly to limit width */
.trailers-product-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;

}

/* Content card */
.trailers-product-content {
  margin-right: 2%;
  max-width: 500px;
  padding: 1.5rem 1.5rem;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.trailers-product-content.in-view {
  transform: translateX(0);
  opacity: 1;
}

/* Text styling */
.product-type {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
  margin: 0 0 0.75rem;
}

.trailers-product-content h2 {
  font-size: 2.4rem;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.product-description {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Specs grid */
.product-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-spec {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 16px;
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-spec-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.product-spec-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.product-spec-label {
  font-weight: 500;

}

.product-spec-value {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: right;
}

/* Button */

.product-card-btn-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;

}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #264483, #4575dd);
  color: #000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    background 0.15s ease-out;

}

.product-card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.75);
  background: linear-gradient(135deg, red, orange);
}

.product-card-btn:active {
  transform: translateY(1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .trailers-product-container {
    padding: 2rem 1.1rem;
    align-items: flex-end;
  }

  .trailers-product-content {
    padding: 1.75rem 1.5rem 2rem;
    max-width: 100%;
    border-radius: 18px;
  }

  .trailers-product-content h2 {
    font-size: 2rem;
  }
}








/* PLANTBODIES BELOW */
.hero-background-plantbody {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('media/plantbodies/bg/bg1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  overflow-y: visible;
}

.pb-hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  top: 80%;
  transform: translateY(-50%);
  padding: 0 1rem;
}

.pb-hero-content h1 {
  margin-bottom: 25px;
}

.plantbody-showcase-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: white;
}

.plantbody-showcase-intro {
  padding: 6rem 4rem;
  max-width: 35%;
}

.plantbody-showcase-intro>h1 {
  font-size: 3rem;
  color: #003366;
  margin-bottom: 2rem;
}

.plantbody-showcase-intro>h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 2rem;
}

.plantbody-showcase-intro>p {
  font-size: 1rem;
  margin-left: 25px;
  margin-bottom: 4rem;
}

.plantbody-showcase-intro-gallery {
  min-width: 65%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.plantbody-testimonials-container {
  max-width: 100%;
  min-width: 75%;
}

.plantbody-testimonial-arrow {
  background: none;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  color: red;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.plantbody-testimonial-arrow:hover {
  transform: scale(1.5);
}

.plantbody-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  border-radius: 12px;
  text-align: left;
}

.plantbody-card>img {
  height: 600px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
}

.plantbody-image-desc {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 25px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.plantbody-image-desc>p {
  font-size: 0.8rem;
  color: dimgray;
}

.plantbody-image-desc-text {
  color: black;
  font-size: 1rem;
}

.plantbody-testimonials-container>.testimonial-dots {
  margin-bottom: 15px;
}

.plantbody-testimonials-container>.testimonial-dots>* {
  background-color: grey;
}

.plant-body-options-features {
  padding: 8rem 4rem;
  background-color: #003366;
  text-align: center;
}

.plant-body-options-features h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 3rem;
}

.plant-body-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.plant-body-option-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 320px;
  text-align: center;
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.plant-body-option-card.in-view {
  transform: scale(1);
  opacity: 1;
}


.plant-body-option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.plant-body-option-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.plant-body-option-card h3 {
  color: #003366;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.plant-body-option-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

.plantbody-gallery {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.pb-gallery-browser {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.pb-gallery-filter-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 30px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.pb-gallery-filter-cat {
  max-width: 30%;
  text-align: center;
}

.pb-gallery-filter-cat-items {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gallery-filter {
  padding: 0.5rem 1rem;
  background-color: #e0e0e0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.gallery-filter:hover {
  background-color: #d0d0d0;
}




.plantbody-gallery-images {
  /* min-height: 60vh; */
  margin-top: 25px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.plantbody-gallery-images-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 25px;
  margin-right: 15px;
}

.plantbody-gallery-images-wrapper p {
  cursor: pointer;
}

.plantbody-gallery-images-wrapper img {
  max-width: 32%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow-clip-margin: unset;
}

.plantbody-gallery-images-wrapper img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


/* overflow-clip-margin: unset;  */

@media (max-width: 768px) {
  .plantbody-showcase-wrapper {
    width: 100%;
  }

  .plantbody-showcase-intro {
    width: 100%;
    max-width: 100%;
  }

  .plantbody-gallery-images-wrapper img {
    max-width: 100%;
  }
}




.product-intro-bespoke {
  padding: 4rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
  text-align: left;
  color: #222;
}

.product-intro-bespoke h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #003366;
}

.product-intro-bespoke p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.product-manufacturers {
  padding: 4rem 2rem;
  background-color: #f4f4f4;
  text-align: center;
}

.product-manufacturers h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #003366;
}

.manufacturer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  max-width: 1250px;
  margin: 0 auto;
}



.manufacturer-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  background-color: #e6f0ff;
}

/* BESPOKE BELOW */

.bespoke-gallery {
  padding: 2rem;
  background-color: #f7f7f7;
}

.bespoke-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.content-bespoke-wrapper-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.content-bespoke-wrapper-image:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-intro-bespoke {
  padding: 4rem 2rem;
  background-color: #fff;
  color: #222;
}

.product-intro-bespoke h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #003366;
  text-align: left;
}

.product-intro-bespoke-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-intro-bespoke-info {
  flex: 1 1 60%;
  font-size: 1.1rem;
  line-height: 1.7;
}

.product-intro-bespoke-info p {
  margin-bottom: 1.2rem;
}

.product-intro-bespoke-icon {
  flex: 1 1 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-intro-bespoke-icon-img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

.product-list-detail {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.product-list-grid ul {
  list-style: none;
  padding-left: 1rem;
  line-height: 1.8;
  position: relative;
}

.product-list-grid ul li::before {
  content: "•";
  color: #003366;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.product-military-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem;
  padding-left: 10%;
  padding-right: 10%;
  align-items: flex-start;
  background-color: #fff;
}

.product-military-intro {
  flex: 1 1 450px;
  padding: 1rem;
}

.product-military-intro h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #003366;
}

.product-military-intro p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.product-military-intro strong {
  color: #003366;
  font-size: 1.5rem;
  line-height: 2;
}

.product-military-features {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.product-military-features h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #003366;
}

.military-card-grid {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 25px;
}

.bespoke-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.military-card {
  background-color: #f2f2f2;
  border: 1px solid black;
  padding: 1.2rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  text-align: center;
}

/* Hover Animation */
.military-card:hover {
  background-color: #003366;
  color: #fff;
  transform: translateY(-4px);
}

/* Responsive Fallback */
@media (max-width: 768px) {
  .product-military-layout {
    flex-direction: column;
    padding: 1rem;
  }

  .product-military-intro,
  .product-military-features {
    padding: 0;
  }

  .military-card {
    font-size: 0.95rem;
    width: 80%;
  }
}






/*CTA FOR EVERY PAGE */

.home-products-btn {
  display: inline-block;
  background-color: white;
  color: #003366;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;

}

.product-cta {
  background-color: #003366;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  width: 100%;
}

.product-cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.product-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.product-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.product-cta-button {
  display: inline-block;
  background-color: white;
  color: #003366;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.product-cta-button:hover {
  background-color: #ffcc00;
  color: #000;
}

.home-services {
  background-image: url('/media/bg/2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 12rem 2rem;
  text-align: center;
}

.home-services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.home-services h2 {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.home-services p {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.home-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.service-tile {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.service-tile.in-view {
  transform: scale(1);
  opacity: 1;
}

.service-tile:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.service-tile img {
  height: 60px;
  margin-bottom: 1rem;
}

.service-tile h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-tile p {
  font-size: 1rem;
  text-shadow: none;
  color: #444;
}

.home-certifications {
  background-color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.home-certifications-container {
  max-width: 100%;
  margin: 0 auto;
}

.home-certifications h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #003366;
}

.home-certifications p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.cert-logos {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 75px;
}

.cert-logos img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.marquee {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.marquee__track {
  display: flex;
  width: 100%;
  animation: marquee 12s linear infinite;
}

.standardIcon {
  flex: 0 0 auto;
  margin-right: 8rem;
  height: 95px;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-50%);
  }
}


.home-testimonials {
  background-image: url('/media/bg/36.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem 1rem;
  text-align: center;
}

.testimonials-cards {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.testiCard {
  width: 350px;
  min-height: 225px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  font-family: Arial, sans-serif;
  line-height: 1.5;
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.testiCard.in-view {
  transform: scale(1);
  opacity: 1;
}

.testiCard:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.testimonials-container {
  max-width: 80%;
  padding: 2rem 1rem;
  margin: 0 auto;
}

.testimonials-container h2 {
  font-size: 2.4rem;
  color: black;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  margin-bottom: 50px;

}

.testimonial-slider-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 800px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 3rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 3rem 2rem;
  }
}

.testimonial-card p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #000000;
}

.testimonial-card strong {
  float: right;
  color: #000000;
  font-size: 0.95rem;
}

.testimonial-arrow {
  background: none;
  border: none;
  font-size: 5rem;
  cursor: pointer;
  color: #ffffff;
  transition: color 0.3s;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.testimonial-arrow:hover {
  color: #ffffff;
  transform: scale(1.5);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 0.5rem;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

.testimonial-dots button.active {
  background-color: #ff0000;
}

.home-videos {
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.home-videos-container {
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
  /* Default: stack on small screens */
  max-width: 1200px;
  width: 100%;
  /* Ensures it's responsive */
  gap: 2rem;
}

.video-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.video-description h2 {
  font-size: 2.4rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.video-description p {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 0;
}

.youtube-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Wide screen: side by side layout */
@media (min-width: 768px) {
  .home-videos-container {
    flex-direction: row;
    align-items: center;
  }

  .video-description {
    flex: 1;
    text-align: left;
    padding-right: 2rem;
  }

  .youtube-wrapper {
    flex: 1;
    padding-bottom: 0;
    height: 315px;
  }

  .youtube-wrapper iframe {
    position: relative;
    height: 100%;
  }
}


/*RENTALS SECTION */
.hero-section-rentals {
  position: relative;
  height: 85vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background-rentals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('media/bg/5.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay-rentals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content-rentals {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  padding: 0 1rem;
}

.hero-content-rentals h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content-rentals p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.hero-btn-rentals {
  display: inline-block;
  padding: 1rem 2rem;
  background: #e31837;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.hero-btn-rentals:hover {
  background: #c7132f;
  cursor: pointer;
}

.rentals-section {
  margin: 50px 0;
}

.rentals-section-title {
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
}

.rentals-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.rentals-forrentitem-status {
  position: absolute;
  bottom: 12px;
  right: 12px;

  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;

  z-index: 5;
}

.rentals-forrentitem-status.is-available {
  background: #e8f7ec;
  color: #1f7a36;
}

.rentals-forrentitem-status.is-soon {
  background: #fff4df;
  color: #a86a00;
}

.rentals-forrentitem-status.is-unavailable {
  background: #fbe9e9;
  color: #b42318;
}

.rentals-forrentitem-status.is-unknown {
  background: #eeeeee;
  color: #555;
}






.rentals-industries {
  padding: 12rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('./media/rentals/bg1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.rentals-industries h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  color: white;
}

.rentals-industries>p {
  font-size: 1.2rem;
  max-width: 800px;
  text-align: center;
  margin-bottom: 25px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  background-color: rgba(0, 0, 0, 0.6);
}

.rentals-industrytypes-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}

.rentals-industrytype-item {
  background-color: white;
  color: black;
  border-radius: 12px;
  padding: 1rem 1rem;
  text-align: center;
  min-height: 250px;
  max-width: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.rentals-industrytype-item img {
  width: 50%;
  margin-bottom: 15px;
}

.rentals-industrytype-item h1 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.rentals-industrytype-item p {
  font-size: 0.8rem;
  margin-bottom: 0px;
  color: black;
}




.rentals-hireoptions {
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: black;
}

.rentals-hireoptions h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
}

.rentals-hireoptions p {
  font-size: 1.2rem;
  max-width: 800px;
  text-align: center;
  margin-bottom: 25px;
}

.rentals-optionsWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  max-width: 100%;
}

.rentals-option-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 25px;

}

.rental-option-item {
  display: flex;
  align-items: center;
  justify-content: start;
  min-width: 25%;
  font-size: 1.1rem;
  transform: translateX(-15vw);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.rental-option-item.in-view {
  transform: translateX(0);
  opacity: 1;
}

.rental-option-desc {
  line-height: 1.6;
  transform: translateX(+15vw);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.rental-option-desc.in-view {
  transform: translateX(0);
  opacity: 1;
}




.rentals-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, #0066ff, #0044cc);
  /* Blue version */
  border: none;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.rentals-button:hover {
  background: linear-gradient(135deg, #0044cc, #002a80);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.rentals-button-red {
  background: linear-gradient(135deg, #ff6622, #ff4422);
}


.rentals-whyus {
  background-color: #264483;
  padding: 12rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('./media/rentals/bg2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.rentals-whyus img {
  width: 45%;
  height: 100px;
  margin-bottom: 15px;
}

.rentals-whyus h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: white;
  text-align: center;
}

.rentals-whyus-wrapper {
  max-width: 1400px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.rentals-whyus-item {
  background-color: white;
  min-width: 250px;
  color: black;
  max-width: 275px;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
  border-radius: 12px;
  padding: 2rem 1rem;
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.rentals-whyus-item.in-view {
  opacity: 1;
  transform: scale(1);
}




/* Rentals Fleet Intro Section */
.rentals-intro {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 8rem 2rem;
}

.rentals-intro h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.rentals-intro p {
  font-size: 1.2rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
  color: #333;
  margin-bottom: 50px;
}

.rentals-intro-contact {
  padding: 4rem 1rem;
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rentals-intro-contact h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}

.rentals-intro-contact p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
}

.rentals-intro-contact-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.rentals-intro-contact-item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  min-width: 350px;
}

.rentals-intro-contact-item a {
  text-decoration: none;
}

.rentals-intro-contact-item img {
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
}

.rentals-intro-contact-link {
  text-decoration: none;
  font-size: 1.4rem;
  color: black;
}

.rental-little {
  font-size: 0.8;
  margin-top: 25px;
}

/* Stats list */
.rentals-intro .stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.rentals-intro .stats li {
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rentals-intro .stats li strong {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000;
}

.rentals-availablefleet {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.rentals-availablefleet-infowrapper {
  padding: 2rem 1rem;
  max-width: 1200px;
  text-align: center;
}

.rentals-availablefleet h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
}

.rentals-availablefleet p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.rentals-fleet {
  width: 100%;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
  gap: 50px;
}

.rentals-forrentitem {
  width: 400px;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.rentals-forrentitem-featureswrap {
    margin-top: 18px;
    padding-top: 14px;
}

.rentals-forrentitem-features-title {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #777;
}

.rentals-forrentitem-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rentals-forrentitem-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rentals-forrentitem-feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #f3f6f9;
    border: 1px solid #e3e8ee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rentals-forrentitem-feature-icon svg {
    width: 17px;
    height: 17px;
    fill: #165bb8;
    display: block;
}

.rentals-forrentitem-feature-label {
    font-size: 14px;
    line-height: 1.35;
    color: #2d2d2d;
}



.rentals-forrentitem:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.rentals-forrentitem-photo {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  flex: 0 0 200px;
}

.rentals-forrentitem-photo>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rentals-forrentitem-photodots {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.rentals-forrentitem-tags {
  width: 100%;
  height: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rentals-forrentitem-tag {
  background-color: silver;
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 6px;
}

.rentals-forrentitem-photo-img {
  width: 100%;
  height: 100%;
}

.rentals-forrentitem-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  text-align: justify;
}

.rentals-forrentitem-details-title {
  font-size: 1.4rem;
  display:flex;
  flex-wrap: nowrap;
  align-items: center;
  padding:1rem;
}

.rentals-forrentitem-details-availablewhen {
  font-size: 1.2rem;
}

.rentals-forrentitem-details-price {
  font-size: 1.2rem;
  margin-top: 12px;
}

.rentals-forrentitem-details-desc {
  font-size: 0.8rem;

}

.rentals-forrentitem-btns {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding-bottom: 25px;
  gap: 5px;
}

.rentals-features {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 5px;
  margin-top: 16px;
  width: 100%;
}

.rentals-feature {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  background: #f3f5f7;
  padding: 6px 10px;
  border-radius: 6px;
  max-width:25%;

}

.rentals-feature-icon {
  font-size: 24px;
}

.rentals-feature-label {
  font-size: 0.75rem;
  color: black;
  white-space: wrap;
}

.rentals-forrentitem-btns-readmore,
.rentals-forrentitem-btns-enquirenow {
  display: inline-block;
  padding: 10px 18px;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.rentals-forrentitem-photo {
  position: relative;
  width: 100%;
  height: auto;
}

.rentals-forrentitem-photo-img {
  display: none;
  width: 100%;
}

.rentals-forrentitem-photo-img.active {
  display: block;
}

.rentals-forrentitem-photodots {
  text-align: center;
  padding-top: 18px;
  /* border-left: 1px black solid;
  border-right: 1px black solid; */
}

.rentals-forrentitem-photodots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.rentals-forrentitem-photodots .dot.active {
  background-color: #333;
}


/* Read More button */
.rentals-forrentitem-btns-readmore {
  background-color: #0056b3;
  /* deep blue */
  color: #ffffff;
  border: none;
}

.rentals-forrentitem-btns-readmore:hover {
  background-color: #003d80;
  transform: translateY(-2px);
}

/* Enquire Now button */
.rentals-forrentitem-btns-enquirenow {
  background-color: #28a745;
  /* green */
  color: #ffffff;
  border: none;
}

.rentals-forrentitem-btns-enquirenow:hover {
  background-color: #1e7e34;
  transform: translateY(-2px);
}

.rentals-cta {
  background-color: #003366;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  text-align: center;
}


.rentals-cta h2 {
  font-size: 2.4rem;
  color: white;
  margin-bottom: 1rem;
}

.rentals-cta p {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 2.5rem;
}

.rentals-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.rentals-cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.rentals-newstock {
  padding: 8rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 75px;
}

.rentals-newstock p {
  max-width: 600px;
}


.rentails-mailing-img {
  width: 250px;
  height: 250px;
  transform: scale(0.05);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.rentails-mailing-img.in-view {
  transform: scale(1);
  opacity: 1;
}

@media (max-width: 768px) {
  .rentals-forrentitem {
    width: 100%;
  }

  .rentalModalMobileView {
    width: 90% !important;
    height: auto !important;
  }

  .rental-option-item {
    max-width: 25%;
    width: auto;
  }
}


.home-rentals {
  background-color: white;
  padding: 8rem 2rem;
}

.home-rentals-container-flex {
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.home-rentals-text {
  text-align: center;
  max-width: 400px;
}

.home-rentals h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #003366;
}

.home-rentals p {
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  color: #555;
}

.home-rentals-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #003366;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.home-rentals-btn:hover {
  background-color: red;
  color: white;
  cursor: pointer;
}

.home-rentals-image-wrapper {
  width: auto;
  height: auto;
}

.home-rentals-image {
  width: 125px;
  height: 125px;
}

.home-rentals-img {
  width: 350px;
  height: auto;
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.home-rentals-img.in-view {
  transform: scale(1);
  opacity: 1;
}

.home-cta-final {
  background-color: #003366;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  text-align: center;
}

.home-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .home-cta-container {
    width: 100%;
    padding: 5%;
  }
}

.home-cta-final h2 {
  font-size: 2.4rem;
  color: white;
  margin-bottom: 1rem;
}

.home-cta-final p {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 2.5rem;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.home-cta-actions_wider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}

.andoverx_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  border-radius: 8px;
  padding: 8px;
}

.andoverx-header {
  font-size: 2.5rem;
  color: #264483;

}

.home-cta-sales {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}


.home-cta-sales-desc {
  max-width: 35%;
}

.home-meettheteam-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: red;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;

}

.home-meettheteam-btn:hover {
  background-color: white;
  color: black;
  cursor: pointer;
}

.home-cta-btn {
  padding: 1rem 2rem;
  background-color: white;
  color: black;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}


.home-cta-btn:hover {
  background-color: red;
}

.home-hr-btn {
  padding: 1rem 2rem;
  background-color: red;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.home-hr-btn:hover {
  background-color: white;
  color: black;
}

.extraMargin {
  margin-top: 25px;
}

.thirty-years-icon {
  width: 250px;
  height: auto;

}



@media (max-width: 768px) {
  .home-cta-sales {
    flex-direction: column;
  }

  .home-cta-sales-desc {
    max-width: 100%;
    padding: 5%;
  }
}







/* BELOW CTA MUST REMAIN */

.content-home-cta-wrapper {
  width: 100%;
  height: 325px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
}

.content-home-cta-wrapper-l {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1.5;
}

.content-home-cta-wrapper-r {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1.5;
}

.content-home-cta-button {
  margin-top: 25px;
  display: inline-block;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #2b4bff, #6c41ff);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.content-home-cta-button:hover {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  transform: translateY(-3px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.content-home-cta-button:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.footerNew {
  width: 100%;
  height: auto;
  background-color: black;
  color: white;
}

.footerWrapper {
  width: 100%;
  padding: 4rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;
}

.footerLogo {
  width: 200px;
  height: auto;
  margin-bottom: 25px;
}

.footerList {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  margin-top: 10px;
}

.footerNew p {
  text-align: center;
  font-size: 0.6rem;
  margin-top: 15px;
  margin-bottom: 15px;
}

.footerList a {
  text-decoration: none !important;
  color: white;
}

@media (max-width: 768px) {
  .footerWrapper {
    flex-direction: column;
  }

  .footerNew h2 {
    margin-top: 25px;
  }
}

/* MEET THE TEAM */

.hero-section-team {
  position: relative;
  height: 85vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background-team {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('media/bg/18.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay-team {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content-team {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  padding: 0 1rem;
}

.hero-content-team h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content-team p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-btn-team {
  display: inline-block;
  padding: 1rem 2rem;
  background: #e31837;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.hero-btn-team:hover {
  background: #c7132f;
  cursor: pointer;
}

/* VACANCIES CONTENT BELOW  */
.hero-section-vacancies {
  position: relative;
  height: 85vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background-vacancies {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('media/bg/12.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay-vacancies {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content-vacancies {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  padding: 0 1rem;
}

.hero-content-vacancies h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content-vacancies p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-btn-vacancies {
  display: inline-block;
  padding: 1rem 2rem;
  background: #e31837;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.hero-btn-vacancies:hover {
  background: #c7132f;
  cursor: pointer;
}


.noVacancies {
  width: 100vw;
  height: calc(100vh - 35vh);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.vacancies {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
}

.vacancies-browser-wrapper {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.vacancies-browser-filter,
.vacancies-browser-search {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
}

.vacancies-browser-search-filter,
.vacancies-browser-search-input {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.375rem;
  margin-top: 0.25rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.vacancies-browser-wrapper-spacer {
  width: 100%;
  height: 1px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.vac-job-posting {
  border: 1px solid #ccc;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 800px;
}

.vac-job-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.vac-company {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

.vac-card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.vac-card {
  background: #c2bdbd;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.vac-heading {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #333;
}

.vac-job-posting ul {
  margin: 0;
  padding-left: 1.2rem;
}

.vac-job-posting ul li {
  margin-bottom: 0.4rem;
}

.vac-job-meta {
  font-size: 0.95rem;
  color: #444;
  margin-top: 1rem;
  line-height: 1.5;
}

.vac-job-apply {
  margin-top: 25px;
}


.team-section {
  padding: 4rem 4rem;
  background-color: #fff;
  text-align: center;
}

.team-section>h1 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.team-heading {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: bold;
}

.team-desc {
  margin-bottom: 50px;
  padding-left: 15%;
  padding-right: 15%;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.team-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  flex: 1 1 300px;
}

.team-card img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-card h3 {
  margin: 10px 0 5px;
}

.team-card h2 {
  margin: 10px 0 5px;
  font-size: 1.1em;
  font-weight: 400;
}

.team-card .title {
  color: #666;
  margin-bottom: 10px;
  font-style: italic;
}

.team-card .contact {
  font-size: 0.9em;
  color: #444;
  margin-bottom: 10px;
}

.team-card .description {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 5px;
}

/* Responsive stacking on small screens */
@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 100%;
    max-width: 80%;
  }

  .team-desc {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.content-company-text {
  font-size: 1rem;
  line-height: 2;
}

.content-company-text-decor {
  font-size: 1.5rem;
  font-weight: bold;
}

.content-company-section-wrapper {
  width: 100%;
  height: 92vh;
}

.content-company-section-wrapper-auto {
  width: 100%;
  height: auto;
}

.hero-section {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('media/bg/17.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #e31837;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: #c7132f;
  cursor: pointer;
}

.our-story-section {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
  height: 100%;
}

.story-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap;
  height: 100%;
}

.story-image {
  flex: 1 1 45%;
  min-width: 300px;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-text {
  flex: 1 1 45%;
  min-width: 300px;
  color: #333;
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #003366;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.story-text p em {
  font-size: 1.25rem;
}



/* ---- PROCESS SECTION ---- */


.process-section {
  padding: 8rem 2rem;
  background-image: url('media/bg/16.webp');
  background-size: cover;
  background-position: center;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.process-container h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.process-container h3 {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: inline-block;
}

.timeline {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.timeline * {
  text-shadow: none !important;
}

.timeline-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 18%;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(1);
  opacity: 0;
}

.timeline-step h3 {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  background-color: white;
}

.timeline-step.in-view {
  transform: scale(1.05);
  opacity: 1;
}

.timeline-step:hover {
  transform: translateY(-6px);
}

.timeline-icon {
  height: 60px;
  margin-bottom: 1rem;

}

.timeline-icon img {
  height: 100%;
  width: auto;
}

.timeline-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #222;
}

.timeline-step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ---- MORE INFO SECTION ---- */
.features-section {
  padding: 14rem 2rem;
  background-image: url('/media/bg/8.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-container h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: white;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.feature-card {
  background-color: #f4f4f4;
  border-radius: 16px;
  padding: 2rem;
  flex: 1 1 30%;
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.6s ease, opacity 0.6s ease;
  position: relative;
  overflow: hidden;
  transform: scale(1);
  opacity: 0;
}

.feature-card.in-view {
  transform: scale(1.05);
  opacity: 1;
}


.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  height: 60px;
  margin-bottom: 1.5rem;
}

.feature-icon img {
  height: 100%;
  width: auto;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #222;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* ---- MANUFACTURING SECTION ---- */

.behind-section {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #003366;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  max-height: 60vh;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  transition: transform 0.5s ease;
}

.carousel-slide img {
  width: auto;
  height: 60vh;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1;
  border-radius: 4px;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

@media (max-width: 768px) {
  .carousel-btn {
    font-size: 1.5rem;
  }
}

.cta-section {
  position: relative;
  background: url('/images/cta-background.png') no-repeat center center;
  background-size: cover;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  /* Optional dark overlay for contrast */
  padding: 3rem;
  border-radius: 16px;
  max-width: 800px;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.cta-button:hover {
  background-color: #fff;
  color: #003366;
}


/* ---- AFTERSALES SECTION BELOW ---- */

.services-section {
  text-align: center;
  background-image: url('/media/bg/123.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-container a {
  margin-top: 70vh;
  margin-bottom: 15vh;
}

.services-section-options {
  background-color: #003366;
  padding: 8rem 2rem;
}

.services-section-options h1 {
  color: white;
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
}

.services-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-card {
  background-color: white;
  border-radius: 16px;
  padding: 2rem;
  flex: 1 1 30%;
  min-width: 280px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.5s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.service-icon {
  height: 60px;
  margin-bottom: 1rem;
}

.service-icon img {
  height: 100%;
  width: auto;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #222;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.map-section {
  background-color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
}

.map-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.map-container p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #555;
}

#map {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.serviceable-section {
  background-image: url('/media/bg/6.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 6rem 2rem;
  text-align: center;
}

.serviceable-container {
  max-width: 1200px;
  margin: 0 auto;
}

.serviceable-container h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.serviceable-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.serviceable-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-item {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 16px;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-6px);
}

.service-item img {
  height: 60px;
  margin-bottom: 1rem;
}

.service-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.95rem;
  color: #444;
}

.service-partners-section {
  background-color: #f9f9f9;
  padding: 5rem 2rem;
  text-align: center;
}

.partners-container {
  max-width: 1000px;
  margin: 0 auto;
}

.partners-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.partners-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.partners-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #003366;
  transition: transform 0.3s;
}

.partner-card img {
  width: auto;
  height: 200px;
  margin-bottom: 1rem;
  transition: filter 0.3s;
}

.partner-card:hover {
  transform: translateY(-6px);
}

.partner-card:hover img {
  filter: none;
}

.partner-card span {
  font-weight: bold;
}

.service-cta-section {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.service-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.service-cta-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-cta-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.service-cta-contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-cta-button {
  display: inline-block;
  background-color: #fff;
  color: #003366;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #f1f1f1;
  color: #001a33;
}

.parts-section {
  background-color: #f4f4f4;
  padding: 5rem 2rem;
  text-align: center;
}

.parts-container {
  max-width: 1200px;
  margin: 0 auto;
}

.parts-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.parts-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.parts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.parts-card {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  flex: 1 1 300px;
  max-width: 340px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.parts-card:hover {
  transform: translateY(-6px);
}

.parts-card img {
  height: 60px;
  margin-bottom: 1rem;
}

.parts-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.parts-card p {
  font-size: 1rem;
  color: #444;
}

.browse-parts-button {
  display: inline-block;
  margin-top: 3rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #003366;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.browse-parts-button:hover {
  background-color: #002244;
  cursor: pointer;
}

.warranty-section {
  padding: 4rem 2rem;
  text-align: center;
}

.warranty-container {
  max-width: 900px;
  margin: auto;
}

.grey-bg {
  background-color: #f4f4f4;
}

.warranty-container h2,
.warranty-container h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.warranty-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.warranty-list {
  text-align: left;
  font-size: 1rem;
  color: #444;
  margin: 0 auto;
  max-width: 700px;
}

.warranty-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
  position: relative;
}

.warranty-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007acc;
}

.warranty-icon {
  width: 300px;
  height: auto;
}

.small-note {
  font-size: 0.9rem;
  color: #777;
  margin-top: 1rem;
}

.warrany-cover-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;

}


.content-eu-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 15px;
}

.content-eu-wrapper-left {
  flex-grow: 1;
}

.content-eu-wrapper-right {
  flex-grow: 1;
  position: sticky;
  top: 100px;
  /* Adjust as needed for spacing from top */
  align-self: start;
  /* Ensures it aligns properly in a flex container */
}

.content-eu-wrapper-image {
  width: 35vw;
  height: auto;
}

.content-eu-text {
  font-size: 1rem;
}

.content-eu-header {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 5px;
}

.content-eu-image {
  width: 100%;
}





/* CONTACT STARTS HERE */
.hero-section-contact {
  position: relative;
  min-height: 95vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background-contact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('media/bg/21.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay-contact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2;
}

.hero-content-contact {
  z-index: 3;
  color: white;
  text-align: center;
  width: 100%;
  padding: 50px;
}

.contact-gmap {
  width: 100%;
  height: 96vh;
}


/* Newsletter section */
.newsletter {
  background-color: #003366;
  padding: 8rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 150px;
}

.newsletter-img {
  width: 250px;
  height: 250px;
  transform: scale(0.05);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.newsletter-img.in-view {
  transform: scale(1);
  opacity: 1;
}



.newsletter h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: white;
}

.newsletterform {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  gap: 0.5rem;
  color: white;
}

.newsletterinput {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.newsletterbutton {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  background-color: #c8102e;
  /* Andover Trailers red? */
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletterbutton:hover {
  background-color: #a50d24;
}

/* Responsive: stack input and button on small screens */
@media (max-width: 600px) {
  .newsletter {
    flex-direction: column;
  }

  .newsletterbutton {
    width: 100%;
  }
}

/* Contact info section */
.contact-info {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-info address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
  color: white;
}

.contact-info img {
  width: 25px;
  height: 25px;
}

.contact-block {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border-radius: 6px;
  min-width: 350px;
}

.contact-block h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: white;
}

.contact-block p {
  margin: 0;
  line-height: 1.5;
}

.contact-block a {
  color: white;
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-info {
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0px;
    height: auto;
  }

  .contact-block {
    text-align: center;
  }
}

.contact-form textarea {
  width: 100%;
  margin: 0.5rem 0 1rem 0;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
  resize: vertical;
}

.contact-input-row {
  display: flex;
  gap: 0.5rem;
}

.contact-input-row input {
  flex: 1;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-submit {
  padding: 0.6rem 1.2rem;
  background-color: #003366;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
  /* keep button text in one line */
}

.contact-submit:hover {
  background-color: #001f4d;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 1rem 0;
}

.social-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-4px);
}

.social-links img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
}






.content-military-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 15px;
}

.content-military-wrapper-left {
  display: flex;
  flex-direction: row;
}

.content-military-wrapper-right {
  display: flex;
  flex-direction: row;
}

.content-military-wrapper-image {
  width: 50%;
  height: auto;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.content-military-wrapper-text {
  font-size: 1.5rem;
  padding: 25px;
  margin: auto;
  text-align: justify;
}



.content-trailers-info-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 25px;
  gap: 25px;
}

.vcenter-wrap {
  display: flex;
  align-items: center;
  /* Center vertically */
  height: 100%;
  /* Full height of the parent container */
}

.content-trailers-info {
  font-size: 1.25rem;
  width: 35%;
  text-align: justify;
}

.content-trailer-info-desc {
  width: 33%;
  text-align: justify;
}

.content-trailer-info-options {
  width: 33%;
}

.content-trailers-info-media {
  width: 65%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
  justify-content: space-evenly;
}

.content-trailers-info-image {
  width: 33%;
  height: auto;
  object-fit: cover;
}

.content-trailers-showcase-header {
  width: 35%;
  font-size: 2rem;
  display: flex;
  align-items: flex-end;
}

.content-trailers-showcase {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
  justify-content: space-between;
  margin-bottom: 25px;
}

.content-trailers-showcase-item {
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.content-trailers-showcase-item:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.content-trailers-showcase-image {
  margin-bottom: 15px;
  width: 150px;
  height: auto;
}

.content-trailer-info {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 25px;
}

.content-trailer-info-desc-header {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #264483;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}



.content-trailer-info-options ul li {
  margin-left: 25px;
}

.bullet-indent {
  margin-left: 25px;
}

.bold-text {
  font-weight: bold;
}

.content-trailer-info-models {
  width: 33%;
}

.content-trailers-info-gallery {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.content-trailers-gallery-image {
  min-width: 20%;
  max-width: 80%;
  height: auto;
  object-fit: cover;
}

.trailer-table {
  width: 100%;
  border: 1px solid rgb(0, 0, 0);
  border-collapse: collapse;
}

.trailer-table thead {
  background-color: #264483;
}

.trailer-table thead tr th {
  color: white;
  padding: 10px;
  text-align: left;
}

.trailer-table tbody tr td {
  padding: 6px;
  border-bottom: 1px solid #ddd;
}

.trailer-table tbody tr:last-child td {
  border-bottom: none;
}

.table-note {
  font-size: 0.8rem;
  font-style: italic;
  color: rgb(0, 0, 0);
  margin-top: 12px;
}

.product-category-intro {
  padding: 5rem 2rem;
  background-color: #fff;
  text-align: center;
}

.product-category-container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-category-intro h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 1rem;
}

.product-category-intro p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.product-card-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.product-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  max-width: 380px;
}

.product-card img {
  width: 250px;
  height: auto;
  padding: 10px;
}

.product-card h3 {
  font-size: 1.3rem;
  color: #003366;
  margin: 1rem;
}

.product-card p {
  font-size: 1rem;
  color: #444;
  margin: 0 1rem 1rem;
  flex-grow: 1;
}

.product-card-btn {
  margin: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #003366;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.product-card-btn:hover {
  background-color: red;
  cursor: pointer;
}

/* HOMEPAGE PRODUCTS SECTION */
.homepage-products {
  background-image: url('/media/bg/15.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 12rem 2rem;
  text-align: center;
}

.homepage-products-title {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.homepage-products-subtitle {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  background-color: rgba(0, 0, 0, 0.6);
  /* semi-transparent black */
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: inline-block;
  /* shrink background to fit text */
}

/* CARD GRID */
.homepage-product-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

/* INDIVIDUAL CARD */
.homepage-product-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 250px;
  padding: 2.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transform: scale(0.50);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  text-align: center;
}

.homepage-product-card.in-view {
  transform: scale(1);
  opacity: 1;
}

.homepage-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.homepage-product-icon {
  width: 125px;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.homepage-product-name {
  font-size: 1.1rem;
  color: black;
  margin: 0;
  text-transform: uppercase;
}

.homepage-products-button {
  display: inline-block;
  background-color: #003366;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.homepage-products-button:hover {
  background-color: #002244;
}

@media (max-width: 768px) {
  .homepage-product-card {
    width: 100%;
    max-width: 400px;
  }
}

.home-andoverXrange {
  background: linear-gradient(135deg, #0e1a2b, #1c355e);
  color: white;
  padding: 14rem 1rem;
  background-image: url('/media/bg/atx.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.home-andoverXrange-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.andoverX-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.andoverx-logo {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1rem;
  height: 75px;
  width: auto;
}

@media (max-width: 768px) {
  .andoverx-logo {
    width: 50%;
    height: auto;
  }
}

.andoverx-text {
  max-width: 1200px;
  text-align: center;
  font-size: 1.75rem;
  color: #ffffff;
  padding: 50px;
}

.andoverx-text h3 {
  font-size: 2.4rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.andoverx-text p {
  font-size: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.explore-button {
  background-color: #ffffff;
  text-align: center;
  color: #0e1a2b;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  width: 250px;
  transition: background-color 0.3s ease;
}

.explore-button:hover {
  background-color: red;
  cursor: pointer;
}

@media (max-width: 768px) {
  .andoverx-text {
    width: 100%;
    padding: 5%;
  }

  .home-andoverXrange {
    padding: 4rem 1rem;
  }
}

/* MANUALS */
.content-manuals-wrapper {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-manuals-wrapper-text {
  margin-bottom: 25px;
  text-align: center;
}

.content-manuals-wrapper-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.content-manuals-wrapper-right {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
}

.content-manuals-wrapper-input-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.content-manuals-items-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-evenly;
  max-width: 40vw;
}

.content-manuals-item {
  width: 150px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-manuals-item:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.content-manuals-item-image {
  width: auto;
  height: 125px;
}

.content-manuals-item-text {
  font-size: 1rem;
  margin-top: 5px;
}

.content-manuals-item-text-small {
  font-size: 0.8rem;
  margin-top: 5px;
}

.content-manuals-wrapper-input {
  height: 50px;
  font-size: 1.2rem;
  padding-left: 15px;
  min-width: 250px;
}

.content-manuals-wrapper-submit {
  height: 50px;
  width: 75px;
}

.manuals-files {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 768px;
  gap: 5px;
  margin-top: 20px;
}

.manuals-file-row {
  text-align: center;
  min-width: 140px;
}

.manuals-file-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 20px 15px;
  border-radius: 12px;
  background: #f8f9fb;
  border: 1px solid #e6e8ec;
  transition: all 0.25s ease;
  height: 140px;
  justify-content: center;
}

.manuals-file-link:hover {
  background: #ffffff;
  border-color: #d0d5dd;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.manuals-file-link::before {
  content: "";
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 24 24' fill='%23e63946' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2H14L20 8V22H6V2Z' fill='%23e63946'/%3E%3Cpath d='M14 2V8H20' fill='%23c92a2a'/%3E%3Ctext x='12' y='17' font-size='6' text-anchor='middle' fill='white' font-family='Arial' font-weight='bold'%3EPDF%3C/text%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.manuals-file-link span {
  font-size: 13px;
  color: #344054;
  word-break: break-word;
  line-height: 1.3;
}


.content-instock-wrapper {
  width: 100%;
  height: 70vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  justify-content: center;
}

.content-instock-wrapper-item {
  font-size: 1.0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.content-instock-wrapper>a {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.content-instock-wrapper-item:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.content-instock-wrapper-item-img {
  width: 500px;
  height: auto;
}

.content-instock-item {
  border: 1px solid red;
}

.content-news-newsboard {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 4rem 2rem;
  background-image: url('/media/bg/10.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}



.news-article {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
  max-width: 500px;
  min-height: 475px;
}

.news-article:hover {
  transform: scale(1.01);
}

.news-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-text-wrapper {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.news-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #003366;
}

.news-date {
  font-size: 0.9rem;
  color: #888;
}

.news-excerpt {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.shadow {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.spanLarge {
  font-size: 2rem;
}

.spanMedium {
  font-size: 1.5rem;
}

.addTopMargin {
  margin-top: 75px;
}

.first-article {
  min-width: 84%;
  max-width: 100%;
  min-height: 60vh;
}

.news-article.first-article .news-image-wrapper {
  min-height: 500px;
}


.SubMenuLinkGraphic {
  width: 100%;
  height: 100%;
  display: block;
  /* Prevents extra spacing below image */
  object-fit: cover;
}

.noPadding {
  padding: 0px;
}

.nodecor {
  text-decoration: none;
}

/* Manuals error message */
.manuals-error {
  margin: 12px 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.08);
  color: #7f1d1d;
  display: grid;
  gap: 4px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease;
}

.manuals-error-container {
  min-height: 90px;
}

.manuals-error__title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.manuals-error__text {
  font-size: 13px;
  opacity: 0.9;
}

.manuals-error.is-hiding {
  opacity: 0;
  transform: translateY(-6px);
}

.manuals-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 20px;
  border-radius: 999px;
  /* pill shape */

  background: linear-gradient(135deg, #e8f3ff, #d6eaff);
  color: #0b5cab;

  font-size: 14px;
  font-weight: 500;

  border: 1px solid #b6d4f5;

  box-shadow: 0 4px 12px rgba(11, 92, 171, 0.08);
}

.manuals-notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;

  font-size: 14px;
  font-weight: 600;

  background-color: #ffffff;
  color: #0b5cab;
  /* match your blue */

  border-radius: 50%;
}

@media (max-width: 768px) {
  .SubMenuLinkGraphic {
    width: 40px;
    height: auto;
  }

  .first-article {
    margin-left: 0;
    margin-right: 0;
  }

}

.noBottomMargin {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.whiteFont {
  color: white !important
}


.customAnimation1 {
  opacity: 0;
  transform: scale(0.01) rotate(-5deg);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* springy bounce */
  will-change: transform, opacity;
}

.customAnimation1.in-view {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.vanancies-desc {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 50px;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border-left: 5px solid #003366;
  /* Andover blue accent */
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c2c2c;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vanancies-desc::before {
  content: "About Andover Trailers";
  display: block;
  font-weight: 600;
  font-size: 1.4rem;
  color: #003366;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-asstinumber {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.assistnumber-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.assistnumber-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Remove default bullets */
.assistnumber-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.assistnumber-right li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.assistnumber-right li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 700;
  color: #16a34a;
  /* subtle green */
  font-size: 1rem;
}

.supportline-text {
  font-size: 0.8rem;
  margin-top: 12px;
}

/* Section spacing */
.services-section-assistnumber {
  background: white;
  /* or #fff if you prefer pure white */
  padding: 80px 0;
}

/* Inner wrapper */
.service-asstinumber {
  text-align: center;
}

/* Headings */
.service-asstinumber h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
}

.service-asstinumber h2 {
  margin: 16px 0 40px;
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0.85;
}

/* Two-column wrapper */
.assistnumber-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 4rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  margin-bottom: 35px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Left side (number block) */
.assistnumber-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.supportline-call-label {
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.supportline-call-number {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
  /* prevents line break */
}

/* Right side list */
.assistnumber-right ul {
  margin: 0;
  padding-left: 20px;
  text-align: left;
}

.assistnumber-right li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Bottom paragraph */
.supportline-text {
  max-width: 700px;
  margin: 0 auto;
  line-height: 2.2;
  opacity: 0.85;
}

.supportline-call-number-link {
  margin: 0 !important;
  padding: 0 !important;
}

/* Main paragraph */
.supportline-text {
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.7;
  font-size: 1rem;
  color: rgba(15, 23, 42, 0.85);
}

/* 24/7 highlight */
.highlight-247 {
  font-weight: 800;
  color: black;
}

/* VIN notice box */
.vin-notice {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-top: 10px;

  border-radius: 10px;
  background: rgba(0, 102, 195, 0.06);
  border: 1px solid rgba(0, 102, 195, 0.18);

  font-size: 0.95rem;
  font-weight: 500;
}

.service-top-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

/* Icon circle */
.vin-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0b66c3;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

.assist-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  color: rgba(15, 23, 42, 0.85);
}

.assist-badge span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
  animation: assistPulse 1.6s ease-out infinite;
}

.call-disclaimer {
  font-size: 0.7rem;
  color: rgba(15, 23, 42, 0.8);
}

@keyframes assistPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .assistnumber-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 12px;
    margin: 12px;
  }

  .vin-notice {
    width: 100%;
  }

  .assistnumber-right ul {
    text-align: center;
    padding-left: 0;
    list-style-position: inside;
  }

  .services-section-assistnumber {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .assist-badge {
    font-size: 1.1rem;
  }
}