/* Be sure to import Bebas Neue in your HTML <head>:
<link href="https://fonts.googleapis.com/css?family=Bebas+Neue&display=swap" rel="stylesheet">
*/

body {
  margin: 0;
  font-family: 'Arial Black', Arial, sans-serif;
  background: #fff;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px 0 48px;
  background: center/cover no-repeat #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.18);
}
.logo, nav {
  position: relative;
  z-index: 1;
}
nav {
  display: flex;
  gap: 40px;
  background: transparent;
  position: sticky;
  top: 0;
}
.nav-link {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #111;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}
.nav-link.active {
  color: #111;
}
.nav-link.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: #e53935;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 2px;
}
.hero {
  position: relative;
  background: url('img/header-banner.jpg') center/cover repeat;
  min-height: 500px;
  padding: 60px 48px 0 48px;
  z-index: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0) 100%);
}
.hero-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  min-height: 340px;
  margin-bottom: 0;
  padding-bottom: 15em;
}
.slide {
  display: none;
  flex: 1 0 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s;
  opacity: 0;
  z-index: 2;
}
.slide.active {
  display: flex;
  opacity: 1;
  position: relative;
}
.hero-text {
  color: #fff;
  flex: 1 1 50%;
  max-width: 50%;
  min-width: 0;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.hero-text p {
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0;
}
.hero-image {
  flex: 1 1 50%;
  max-width: 50%;
  min-width: 0;
  height: 260px;
  background: #ccc;
  border-radius: 4px;
  overflow: hidden;
  margin-left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2.5rem;
  padding: 0 16px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  transition: background 0.2s;
}
.slider-nav.prev {
  left: 16px;
}
.slider-nav.next {
  right: 16px;
}
.slider-nav:hover {
  background: rgba(229,57,53,0.8);
}
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active {
  background: #e53935;
}
.banner {
  background: #e53935;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 32px 48px 32px 60vw;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
h2, h3 {
  font-family: 'Bebas Neue', Arial, sans-serif;
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 16px 0 16px;
  }
  .hero-slider {
    flex-direction: column;
    min-height: 300px;
    padding-bottom: 80px;
  }
  .slide {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    position: relative;
  }
  .hero-text, .hero-image {
    max-width: 100%;
    width: 100%;
    flex: 1 1 100%;
    margin: 0 0 24px 0;
  }
  .hero-image {
    height: 200px;
    margin-left: 0;
  }
  .banner {
    padding: 24px 16px;
    clip-path: none;
    margin-top: 0;
    position: static;
  }
}

.about-section, .contact-section, .hero {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-title {
  text-align: center;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 32px;
  margin-top: 0;
}
.about-main {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.about-image {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: flex-start;
}
.about-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 2px;
  display: block;
}
.about-content {
  flex: 1 1 50%;
  max-width: 50%;
}
.about-heading {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 2.1rem;
  letter-spacing: 1px;
  margin: 0 0 18px 0;
}
.about-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #222;
  margin: 0;
}
.about-suppliers {
  margin-top: 32px;
}
.about-suppliers-title {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.about-suppliers-list {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.about-suppliers-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
}
.about-suppliers-list li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #111;
  font-family: Arial, sans-serif;
  font-weight: bold;
}
.about-suppliers-list li b {
  color: #e53935;
  font-weight: bold;
  margin-right: 6px;
}
.about-suppliers-list li b b {
  color: #111;
  font-weight: bold;
}
.about-cta {
  margin-top: 24px;
  text-align: center;
}
.about-products-btn {
  display: inline-block;
  background: #e53935;
  color: #fff;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 8px 24px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.about-products-btn:hover {
  background: #b71c1c;
  color: #fff;
}
@media (max-width: 900px) {
  .about-main {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .about-image, .about-content {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .about-image img {
    width: 100%;
    max-width: 100%;
  }
  .about-suppliers-list {
    flex-direction: column;
    gap: 0;
  }
  .about-suppliers-list ul {
    min-width: 0;
    margin-bottom: 16px;
  }
}

.contact-section {
  background: #333;
  color: #fff;
  padding: 48px 0 48px 0;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  padding: 0 32px;
}
.contact-form-area, .contact-info-area {
  flex: 1 1 50%;
  max-width: 50%;
}
.contact-title {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 2px solid #888;
  color: #fff;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 2px;
  outline: none;
  font-family: Arial, sans-serif;
  resize: none;
}
.contact-form textarea {
  min-height: 90px;
  max-width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
  font-weight: normal;
}
.contact-form button {
  background: #e53935;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 2px;
  padding: 8px 32px;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #b71c1c;
}
.contact-info {
  font-size: 1rem;
  font-family: Arial, sans-serif;
  margin-bottom: 12px;
}
.contact-info b {
  font-weight: bold;
  color: #fff;
}
.contact-map {
  background: #f26d6d;
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
  height: 220px;
  margin-top: 8px;
  box-sizing: border-box;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 12px;
  }
  .contact-form-area, .contact-info-area {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .contact-map {
    height: 180px;
  }
}

.site-footer {
  background: #e53935;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  margin-top: 0;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-logo-link {
  display: inline-block;
  vertical-align: middle;
}
.footer-logo {
  height: 32px;
  width: auto;
  margin-left: 8px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-link {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #222;
}
@media (max-width: 700px) {
  .site-footer {
    flex-direction: column;
    gap: 12px;
    padding: 18px 12px;
    text-align: center;
  }
  .footer-left, .footer-right {
    justify-content: center;
    gap: 10px;
  }
  .footer-logo {
    height: 28px;
    margin-left: 4px;
  }
}

.footer-created-by {
  background: #e53935;
  color: #fff;
  text-align: center;
  padding: 10px 0 16px 0;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-created-by .footer-logo {
  height: 22px;
  margin-left: 4px;
  vertical-align: middle;
}
@media (max-width: 700px) {
  .footer-created-by {
    flex-direction: column;
    gap: 4px;
    font-size: 0.95rem;
  }
  .footer-created-by .footer-logo {
    height: 18px;
    margin-left: 0;
  }
}

h1 {
  font-size: 3.5rem;
  font-family: 'Bebas Neue', Arial, sans-serif;
  margin-bottom: 18px;
}
h2, .about-title, .contact-title {
  font-size: 3rem;
  font-family: 'Bebas Neue', Arial, sans-serif;
  margin-bottom: 32px;
  margin-top: 0;
  letter-spacing: 2px;
}
h3, .about-heading, .about-suppliers-title {
  font-size: 2.1rem;
  font-family: 'Bebas Neue', Arial, sans-serif;
  margin-bottom: 18px;
  margin-top: 0;
  letter-spacing: 1px;
}
p, .about-desc, .contact-info, .about-suppliers-list li {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Remove main margins for full-width backgrounds */
main {
  margin: 0;
}
.content-wrapper {
  margin-left: 48px;
  margin-right: 48px;
}
@media (max-width: 900px) {
  .content-wrapper {
    margin-left: 8px;
    margin-right: 8px;
  }
}
html {
  scroll-behavior: smooth;
}
/* Fade animations for carousel */
.fade-in {
  opacity: 1 !important;
  transition: opacity 0.7s;
}
.fade-out {
  opacity: 0 !important;
  transition: opacity 0.7s;
}

.products-hero {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: url('img/asphalt-tex.jpg') center/cover repeat, #222;
  position: relative;
  padding: 0;
}
.products-hero-bg {
  padding: 100px 0 0 0;
  text-align: center;
  position: relative;
}
.products-title {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 32px;
  margin-top: 0;
  letter-spacing: 2px;
}
.products-underline {
  width: 100vw;
  height: 16px;
  background: #e53935;
  margin: 0 auto 0 auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 60px 0 60px 0;
}
.product-card {
  background: #fafafa;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.product-card:hover {
  box-shadow: 0 6px 24px 0 rgba(0,0,0,0.12);
}
.product-image {
  width: 320px;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
  background: #ddd;
}
.product-info {
  flex: 1;
  padding: 32px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-name {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 2rem;
  color: #222;
  margin: 0 0 12px 0;
}
.product-desc {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 24px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}
.product-btn {
  display: inline-block;
  background: #e53935;
  color: #fff;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 10px 32px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.product-btn:hover {
  background: #b71c1c;
  color: #fff;
}
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .products-hero-bg {
    padding-top: 60px;
  }
  .products-title {
    font-size: 2.2rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-image {
    width: 100%;
    height: 180px;
  }
  .product-info {
    padding: 20px 16px 20px 16px;
  }
}

.cta-section {
  background: #484848;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
  padding: 32px 0;
  margin: 60px 0 0 0;
}
.cta-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
}
.cta-text {
  font-size: 1.5rem;
  font-family: 'Bebas Neue', Arial, sans-serif;
  color: #fff;
  letter-spacing: 1px;
}
.cta-btn {
  display: inline-block;
  background: #e53935;
  color: #fff;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 10px 32px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.cta-btn:hover {
  background: #b71c1c;
  color: #fff;
}
@media (max-width: 900px) {
  .cta-content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 0 12px;
    text-align: center;
  }
  .cta-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.spares-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
  .spares-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .spares-grid {
    grid-template-columns: 1fr;
  }
}
.spares-grid .product-card {
  flex-direction: column;
  align-items: stretch;
}
.spares-grid .product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #ddd;
}
.spares-grid .product-info {
  padding: 24px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.breadcrumbs {
  max-width: 1200px;
  margin: 32px auto 0 auto;
  padding: 0 32px 8px 32px;
  font-size: 1rem;
  color: #888;
  font-family: Arial, sans-serif;
}
.breadcrumbs a {
  color: #e53935;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: #b71c1c;
}
.product-back-btn-wrapper {
  max-width: 1200px;
  margin: 32px auto 48px auto;
  text-align: center;
}
.product-back-btn {
  display: inline-block;
  background: #e53935;
  color: #fff;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 10px 32px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.product-back-btn:hover {
  background: #b71c1c;
  color: #fff;
}
@media (max-width: 900px) {
  .breadcrumbs {
    padding: 0 12px 8px 12px;
    font-size: 0.95rem;
  }
  .product-back-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* Responsive Burger Menu Styles */
.header-nav {
  position: relative;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.burger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #111;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 900px) {
  nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 220px;
    background: #fff;
    box-shadow: -2px 0 16px 0 rgba(0,0,0,0.12);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 24px 24px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 1001;
    display: flex;
  }
  nav.open {
    transform: translateX(0);
  }
  .burger {
    display: flex;
    position: absolute;
    top: 24px;
    right: 32px;
  }
  header {
    position: relative;
    z-index: 1002;
  }
  .nav-link {
    font-size: 1.3rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
  }
}
.header-nav-overlay {
  display: none;
}
@media (max-width: 900px) {
  .header-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1000;
  }
  .header-nav-overlay.open {
    display: block;
  }
} 