.navbar {
    border-top: 0px;
}

td.menu-cta-item > a.menu-cta-link, .nav.navbar-nav > li.menu-cta-item > a.menu-cta-link {
    background: var(--clr-primary-400)!important;
    color: #fff!important;
    transition: .3s;
}
td.menu-cta-item > a.menu-cta-link:hover, 
.nav.navbar-nav > li.menu-cta-item > a.menu-cta-link:hover {
    background: var(--clr-primary-300)!important;
    color: #fff!important;
}

@media(min-width: 768px) {
ul.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}
}

/* FORM
*****************************/
.form-control {
    min-height: 50px;
}

/* HERO
*****************************/
.element-outer-container.element-type-customhtml:has(.gs-hero-split-wrapper) {
    padding: 0px!important;
}
/* --- HERO SPLIT SECTION --- */

/* Main container: Full width, height, no overflow */
.gs-hero-split-wrapper {
  display: flex;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
}

/* Base Panel Styles */
.gs-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Left Panel (Service): Slanted right edge */
.gs-panel--service {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                    url('https://automanagerprodcdn.azureedge.net/wmclients/046513/images/service-image-hero.jpg');
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  z-index: 2;
}

/* Right Panel (Inventory): Base image */
.gs-panel--inventory {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                    url('https://automanagerprodcdn.azureedge.net/wmthemes/images/slideshow/other/fleet-vehicles-desktop.jpg');
  margin-left: -15%; 
  z-index: 1;
}

/* Content Styles */
.gs-panel-content {
  text-align: center;
  color: #ffffff;
  padding: 20px;
  z-index: 3;
}

.gs-panel-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Black Button Styles */
.gs-cta-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none !important; /* Forces no underline */
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.gs-cta-btn:hover {
  background-color: #333333;
  text-decoration: none !important; /* Ensures no underline on hover */
}

/* Mobile: Stack them properly */
@media (max-width: 768px) {
  .gs-hero-split-wrapper {
    flex-direction: column;
    height: auto;
  }
  .gs-panel {
    height: 40vh;
    clip-path: none;
    margin-left: 0;
  }
}

/* BANNER
*****************************/
.cus-banner .container {
    background-color: black;
}
.cus-banner-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.cus-banner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cus-banner-item i,
.cus-banner-item a,
.cus-banner-item span {
    color: #fff;
}

.cus-banner-item a {
    text-decoration: none;
}

.cus-banner-item a:hover {
    text-decoration: underline;
}
@media(min-width: 768px) {
.cus-banner-info {
    margin-top: 50px;
}
}
/* HERO
*****************************/
@media(min-width: 768px) {
.carousel-control {
    font-size: 32px;
}
}