/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: clamp(32px, 6vw, 36px);
}

h2 {
  font-size: clamp(26px, 5vw, 32px);
}

h3 {
  font-size: clamp(20px, 4vw, 28px);
}

h4 {
  font-size: clamp(18px, 3.2vw, 24px);
}

h5 {
  font-size: clamp(16px, 2.6vw, 20px);
}

h6 {
  font-size: clamp(14px, 2.2vw, 18px);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive Iframes */
iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Lists */
ul, ol {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 40px 0;
}
.section--gray {
  background-color: #dddddd;
}
.section--dark {
  background-color: #2b5e78;
  color: #ffffff;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.col-2-3 {
  flex: 0 0 calc(66.66% - 10px);
}

.col-1-3 {
  flex: 0 0 calc(33.33% - 10px);
}

.col-1-2 {
  flex: 0 0 calc(50% - 10px);
}

.col-1-5 {
  flex: 0 0 calc(20% - 16px);
}

.col-full {
  flex: 0 0 100%;
}

/* Responsive */
@media (max-width: 980px) {
  .col-2-3,
  .col-1-3,
  .col-1-2,
  .col-1-5 {
    flex: 0 0 100%;
  }
  .row {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 20px 0;
  }
  .row--oem-parts {
    flex-direction: column-reverse;
  }
}
/* Text Alignment */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Spacing */
.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

/* Display */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .hide-tablet {
    display: none !important;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container.header {
  padding: 0;
  margin: 0;
  max-width: none;
  height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.container.header .row {
  height: 60px;
  background-color: #333333;
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
  display: flex;
  align-items: center;
  overflow: visible;
}
.logo img {
  width: 430px;
  height: 96px;
  margin-top: 10px;
}

nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
}
nav a {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #ffffff;
}
nav .current a {
  color: #ffffff;
}
nav .nav-cta {
  padding: 0.6rem 1rem;
  background: #2563eb;
  border-radius: 99px;
  color: #ffffff !important;
  transition: all 0.3s ease;
}
nav .nav-cta:hover {
  background: #ffffff;
  color: #2563eb !important;
}

@media (max-width: 1100px) {
  .container.header nav {
    display: none;
  }
}
/* Mobile Menu */
@media (max-width: 980px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
footer {
  background-color: #555555;
  color: #ffffff;
  padding: 30px 0 20px;
}
footer a {
  color: #ffffff;
}
footer a:hover {
  text-decoration: underline;
}
footer .row {
  justify-content: center;
}
footer .row .col-1-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-badges {
  background-color: #2b5e78;
  padding: 20px 0;
}
.footer-badges .row {
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
  flex-direction: row;
}

.badge {
  width: 95px;
  height: 138px;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.badge img {
  width: auto;
  height: auto;
}

.footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #ffffff;
}
.social-links a:hover {
  opacity: 0.8;
}

.social-facebook {
  background-color: #3b5998;
}

.social-linkedin {
  background-color: #007bb6;
}

.social-instagram {
  background-color: #ea2c59;
}

.copyright {
  text-align: center;
  margin-top: 20px;
}

.mobile-bottom-bar {
  display: none;
  height: 44px;
  background: #333333;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 950;
  align-items: center;
  justify-content: center;
}
.mobile-bottom-bar .hamburger-btn {
  width: 44px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 6px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  outline: none;
}
.mobile-bottom-bar .hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
}
.mobile-bottom-bar .hamburger-btn:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.mobile-slide-menu {
  display: none;
  position: fixed;
  left: 0;
  bottom: 44px;
  width: 100%;
  background: #333333;
  color: #ffffff;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 250ms ease, opacity 250ms ease;
  pointer-events: none;
  z-index: 940;
  flex-direction: column;
}
.mobile-slide-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 0;
}
.mobile-slide-menu a {
  display: block;
  padding: 14px 20px;
  color: #ffffff;
}
.mobile-slide-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
  body {
    padding-bottom: 44px;
  }
  .mobile-bottom-bar {
    display: flex;
  }
  .mobile-slide-menu {
    display: block;
  }
  .mobile-slide-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 980px) {
  .footer-badges .row {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.btn {
  display: inline-block;
  padding: 10px 30px;
  background-color: #2563eb;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  transition: background-color 300ms ease;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: #0a4d99;
}

/* Fixed CTA Buttons */
.fixed-cta {
  position: fixed;
  right: -66px;
  top: 30%;
  z-index: 999;
}
.fixed-cta.phone {
  right: -75px;
  top: 60%;
}
.fixed-cta .btn {
  transform: rotate(-90deg);
  border-radius: 30px 30px 0 0;
}

@media (max-width: 980px) {
  .btn {
    padding: 10px 20px;
    font-size: 15px;
  }
  .fixed-cta {
    right: -49px;
  }
  .fixed-cta.phone {
    right: -56px;
  }
}
