/* =========================
   GENERAL
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  overflow-x: hidden;
}


/* =========================
   HEADER
   ========================= */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #000;
  padding: 20px 40px;
  gap: 20px;
}

.logo {
  width: 320px;
  max-width: 100%;
  height: auto;
}

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

.header-contact .serve {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.header-contact .phone,
.header-contact .email {
  font-weight: bold;
  font-size: 1.1rem;
}


/* =========================
   HERO
   ========================= */

.hero {
  width: 100%;
}

.hero img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  display: block;
}


/* =========================
   MAIN CONTENT
   ========================= */

.main-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 40px;
  max-width: 1600px;
  margin: 0 auto;
}


/* =========================
   HEADINGS
   ========================= */

.services-block h2,
.right-block h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.loop-icon {
  width: 40px;
  height: auto;
}


/* =========================
   SERVICES
   ========================= */

.services-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.services-columns ul {
  list-style: none;
}

.services-columns li {
  text-align: center;
  padding: 4px 0;
  font-size: 1rem;
}

.about-text {
  margin-top: 30px;
  line-height: 1.6;
  font-size: 1rem;
}


/* =========================
   VEHICLE CAROUSEL
   ========================= */

.vehicle-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.vehicle-carousel > img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}


/* =========================
   CAROUSEL ARROWS
   ========================= */

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 45px;
  height: 45px;

  border: none;
  border-radius: 50%;

  background-color: #fff;
  color: #000;

  font-size: 30px;
  line-height: 40px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 2;
}

.left-arrow {
  left: 15px;
}

.right-arrow {
  right: 15px;
}

.scroll-arrow:hover {
  background-color: #ddd;
}


/* =========================
   CONTACT FORM
   ========================= */

.contact-heading {
  margin-top: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.name-row {
  display: flex;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  background-color: #fff;
  border: none;
  padding: 15px;
  font-size: 1rem;
  color: #333;
  width: 100%;
  font-family: inherit;
}

.name-row input {
  flex: 1;
}

.contact-form textarea {
  resize: vertical;
}


/* =========================
   SUBMIT BUTTON
   ========================= */

.submit-button {
  background-color: #fff;
  color: #000;

  border: none;

  padding: 14px 35px;

  font-size: 1rem;
  font-weight: bold;
  font-family: inherit;

  cursor: pointer;

  align-self: flex-start;

  transition: background-color 0.2s ease;
}

.submit-button:hover {
  background-color: #d4a12a;
  color: #000;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
  position: relative;
  width: 100%;
  height: 220px;
  background-color: #000;
  overflow: hidden;
}


/* =========================
   FOOTER SWOOSHES
   ========================= */

.footer-loop {
  position: absolute;
  top: 43%;

  width: 225px;
  height: auto;

  transform: translateY(-50%);
}

.footer-loop.left {
  left: calc(50% - 390px);
}

.footer-loop.right {
  right: calc(50% - 390px);
  transform: translateY(-50%);
}


/* =========================
   SOCIAL ICONS
   ========================= */

.social-icons {
  position: absolute;

  top: 43%;
  left: 50%;

  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 38px;

  z-index: 2;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icons img {
  width: 55px;
  height: 55px;

  object-fit: contain;
  display: block;
}


/* =========================
   FOOTER TEXT
   ========================= */

.footer-text {
  position: absolute;

  left: 50%;
  bottom: 20px;

  transform: translateX(-50%);

  width: 100%;

  text-align: center;

  font-size: 0.95rem;
  font-weight: bold;
  line-height: 1.2;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1000px) {

  .site-header {
    padding: 20px 25px;
  }

  .logo {
    width: 270px;
  }

  .header-contact .serve {
    font-size: 1.3rem;
  }

  .header-contact .phone,
  .header-contact .email {
    font-size: 1rem;
  }

  .main-content {
    grid-template-columns: 1fr;
    padding: 35px 25px;
  }

  .right-block {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }

  .services-block {
    width: 100%;
  }

  .vehicle-carousel > img {
    height: 400px;
  }


  /* FOOTER */

  .site-footer {
    height: 200px;
  }

  .footer-loop {
    width: 190px;
  }

  .footer-loop.left {
    left: calc(50% - 335px);
  }

  .footer-loop.right {
    right: calc(50% - 335px);
  }

  .social-icons {
    gap: 32px;
  }

  .social-icons img {
    width: 52px;
    height: 52px;
  }

  .footer-text {
    bottom: 18px;
    font-size: 0.9rem;
  }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 600px) {

  /* HEADER */

  .site-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 15px;
  }

  .logo {
    width: 240px;
  }

  .header-contact {
    text-align: center;
    width: 100%;
  }

  .header-contact .serve {
    font-size: 1.25rem;
    margin-bottom: 5px;
  }

  .header-contact .phone,
  .header-contact .email {
    font-size: 0.95rem;
  }


  /* HERO */

  .hero img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }


  /* MAIN CONTENT */

  .main-content {
    display: block;
    padding: 30px 15px;
  }


  /* HEADINGS */

  .services-block h2,
  .right-block h2 {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }

  .loop-icon {
    width: 30px;
  }


  /* SERVICES */

  .services-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-columns li {
    font-size: 0.95rem;
    padding: 5px 0;
  }

  .about-text {
    font-size: 0.95rem;
    margin-top: 25px;
  }


  /* VEHICLE CAROUSEL */

  .vehicle-carousel {
    width: 100%;
  }

  .vehicle-carousel > img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }


  /* CAROUSEL BUTTONS */

  .scroll-arrow {
    width: 38px;
    height: 38px;
    font-size: 25px;
  }

  .left-arrow {
    left: 10px;
  }

  .right-arrow {
    right: 10px;
  }


  /* CONTACT */

  .contact-heading {
    margin-top: 30px;
  }

  .name-row {
    flex-direction: column;
    gap: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 13px;
  }


  /* SUBMIT BUTTON */

  .submit-button {
    padding: 12px 30px;
    font-size: 0.95rem;
  }


  /* FOOTER */

  .site-footer {
    height: 160px;
  }

  .footer-loop {
    width: 125px;
    top: 40%;
  }

  .footer-loop.left {
    left: calc(50% - 215px);
  }

  .footer-loop.right {
    right: calc(50% - 215px);
  }

  .social-icons {
    top: 40%;
    gap: 18px;
  }

  .social-icons img {
    width: 42px;
    height: 42px;
  }

  .footer-text {
    bottom: 12px;
    font-size: 0.8rem;
  }
}


/* =========================
   VERY SMALL PHONES
   ========================= */

@media (max-width: 400px) {

  .logo {
    width: 210px;
  }

  .header-contact .serve {
    font-size: 1.1rem;
  }

  .header-contact .phone,
  .header-contact .email {
    font-size: 0.85rem;
  }

  .hero img {
    height: 210px;
  }

  .main-content {
    padding: 25px 12px;
  }

  .services-block h2,
  .right-block h2 {
    font-size: 1.5rem;
  }

  .vehicle-carousel > img {
    height: 210px;
  }

  .scroll-arrow {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }


  /* SUBMIT BUTTON */

  .submit-button {
    padding: 11px 26px;
    font-size: 0.9rem;
  }


  /* FOOTER */

  .site-footer {
    height: 145px;
  }

  .footer-loop {
    width: 105px;
    top: 39%;
  }

  .footer-loop.left {
    left: calc(50% - 180px);
  }

  .footer-loop.right {
    right: calc(50% - 180px);
  }

  .social-icons {
    top: 39%;
    gap: 14px;
  }

  .social-icons img {
    width: 37px;
    height: 37px;
  }

  .footer-text {
    bottom: 10px;
    font-size: 0.75rem;
  }
}