img {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none;
}

/* ========== Global Reset & Layout ========== */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  object-fit: cover;
  z-index: -1;
}

.bg {
  background-color: white;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("uploads/hero-truck2.jpg");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: white !important;
  z-index: -1;
}

.overlay {
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ========== Top Bar ========== */

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.logo-fixed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.logo-fixed img {
  height: 100px;
  width: auto;
}

.logo-fixed span {
  margin-top: 5px;
  font-size: 1em;
  font-weight: bold;
}

.language-switcher {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.flags {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.flags img {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s, border-color 0.2s;
}

.flags img:hover {
  transform: scale(1.1);
  border-color: #fff;
}

/* ========== Hero Text ========== */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: red;
  padding: 0 20px;
  max-width: 90%;
}

.hero-text h1 {
  font-size: 3.5em;
  margin: 0;
  font-weight: bold;
}

.hero-text p {
  font-size: 1.5em;
  font-weight: 500;
  margin-top: 20px;
}

.phone {
  color: red;
  font-weight: bold;
  margin-left: 5px;
}

/* ========== Services Intro ========== */
.services-intro {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.services-intro h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
}

.services-intro p {
  font-size: 1em;
  color: #444;
}

/* ========== Services Grid ========== */
.services-grid-section {
  padding: 40px 0;
  background-color: #fff;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.service-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.3s, box-shadow 0.3s;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-bottom: 15px;
  background-color: transparent;
}

.icon-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background-color: transparent !important;
  display: block;
}

.service-box h3 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 20px 0 10px;
  color: #222;
}

.service-box p {
  font-size: 1.1em;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
  max-width: 90%;
}

/* ========== Contact Section ========== */
.contact-section {
  width: 100%;
  background-color: #2c2c2c;
  padding: 10px 0;
  text-align: center;
  color: #9EC656;
}

.contact-box {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.call-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #9EC656;
  gap: 10px;
  font-size: 3.5em;
  margin-top: 30px;
}

.call-link img {
  width: 100px;
  height: 100px;
}

.call-link:hover span {
  text-decoration: underline;
}

.location-title {
  font-size: 2.4em;
  font-weight: bold;
  margin: 0 0 10px;
  color: #ffffff;
}

.location-link {
  display: block;
  color: red;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 500;
  margin-top: 5px;
}

.location-link:hover {
  text-decoration: underline;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-box {
    padding: 0 10px;
  }

  .service-box img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
  }

  .service-box h3 {
    font-size: 1em;
    margin: 8px 0;
  }

  .service-box p {
    font-size: 0.95em;
    line-height: 1.3;
  }

  .hero-text {
    white-space: normal;
  }

  .hero-text h1 {
    font-size: 2.2em;
  }

  .hero-text p {
    font-size: 1.2em;
  }

  .header-phone-icon img,
  .header-contact-icon img {
    width: 20px;
    height: 20px;
  }

  .header-phone-icon,
  .header-contact-icon {
    font-size: 14px;
    gap: 6px;
  }

  .top-bar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .language-switcher {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    width: 50%;
    text-align: right;
    gap: 8px;
    padding-top: 5px;
    top: 10px;
    right: 20px;
    margin-left: auto;
  }

  .logo-fixed {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .flags {
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
  }

  .flags img {
    width: 20px;
    height: 20px;
  }

  .top-phone {
    font-size: 1em;
    color: red;
    word-break: break-word;
  }

  .social-icons {
    gap: 8px;
    margin-top: 5px;
  }
  .social-icons img {
    width: 24px;
    height: 24px;
  }

  .bg-image {
    background-image: url("uploads/hero-truck3.jpg");
    background-size: cover;
    background-position: center center;
  }

  /* Shrink phone number */
  .top-phone {
    font-size: 10px;
  }

  /* Shrink icon sizes */
  .social-icons img {
    width: 20px;
    height: 20px;
  }

  /* Optional: shrink spacing if needed */
  .social-icons {
    gap: 8px;
  }

  /* Optional: adjust layout */
  .language-switcher {
    width: 100%;
    align-items: flex-start;
    gap: 6px;
  }

  .top-locations {
    font-size: 10px;
    margin-left: 0px;
  }

  .location-link-inline img {
    width: 18px;
    height: 18px;
  }

  .language-switcher .top-phone {
    font-size: 12px !important;
    line-height: 1.0;
  }

  .language-switcher .social-icons img {
    width: 22px;
    height: 22px;
  }

  .location-link-inline span {
    font-size: 12px !important;
  }

  .location-link-inline img {
    width: 16px;
    height: 16px;
  }
}

.site-footer {
  background-color: #2c2c2c;
  color: #ccc;
  padding: 40px 20px;
  font-size: 0.95em;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h4 {
  color: #9EC656;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.footer-column p {
  margin: 5px 0;
  color: #ddd;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 10px;
  background-color: #444;
  border: none;
  color: #fff;
  border-radius: 4px;
  font-size: 0.95em;
}

.quote-form button {
  background-color: #9EC656;
  color: #222;
  padding: 10px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.quote-form button:hover {
  background-color: #82a94d;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85em;
  color: #888;
}

.top-phone {
  color: red;
  font-size: 1.6em;
  text-decoration: none;
  margin-top: 5px;
}

.top-phone:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 5px;
  justify-content: flex-end;
}

.social-icons img {
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.top-locations {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-fixed .location-title {
  font-size: 1em;
  color: #ffffff;
  margin: 0 0 3px 0;
}

.logo-fixed .location-link {
  font-size: 0.9em;
  color: white;
  text-decoration: none;
}

.logo-fixed .location-link:hover {
  text-decoration: underline;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth interactions */
a, button, .service-box, .flags img {
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

button:active {
  transform: scale(0.97);
}

.flags img:hover,
.social-icons img:hover {
  transform: scale(1.2) rotate(1deg);
}

#hero-title, #hero-subtitle,
.logo-fixed, .language-switcher {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#hero-title.visible, #hero-subtitle.visible,
.logo-fixed.visible, .language-switcher.visible {
  opacity: 1;
  transform: translateY(0);
}

.location-footer,
.location-footer:hover {
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  font-size: 0.95em;
}

.location-footer:hover {
  text-decoration: underline;
}

.footer-location-item,
.top-locations .location-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.location-link-inline,
.location-footer-inline {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.95em;
  margin-bottom: 5px;
}

.location-link-inline {
  color: red;
}

.location-footer-inline {
  color: #ffffff;
}

.location-link-inline:hover,
.location-footer-inline:hover {
  text-decoration: underline;
}

.location-link-inline img,
.location-footer-inline img {
  width: 35px;
  height: 35px;
  margin-right: 6px;
  opacity: 0.8;
  vertical-align: middle;
}

.map-icon img:hover {
  transform: scale(1.1);
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.6em;
  }

  .hero-text p {
    font-size: 0.9em;
  }

  .top-phone {
    font-size: 1em;
  }

  .flags img,
  .social-icons img {
    width: 28px;
    height: 28px;
  }

  .logo-fixed img {
    height: 50px;
  }

  .top-locations .location-link-inline {
    font-size: 0.85em;
  }

  .location-link-inline img {
    width: 28px;
    height: 28px;
  }
}

.top-header {
  position: relative;
  background-color: white;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-fixed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.language-switcher {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-text h1,
.hero-text p {
  color: white;
  text-shadow:
    -2px -2px 0 red,
     2px -2px 0 red,
    -2px  2px 0 red,
     2px  2px 0 red,
     0px  0px 3px red;
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-box img {
    width: 100px;
    height: 100px;
  }

  .service-box h3 {
    font-size: 0.95em;
  }

  .service-box p {
    font-size: 0.9em;
  }

  .top-bar-content {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.language-switcher {
  align-items: flex-end;
  text-align: right;
  width: 100%;
  margin-left: auto;
  gap: 10px;
  padding-top: 5px;
}

.top-bar-content {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.logo-fixed {
  width: 50%;
  min-width: 180px;
}

.language-switcher {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 50%;
  text-align: right;
  gap: 8px;
}

.flags {
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.top-phone {
  font-size: 1.2em;
}

.social-icons {
  justify-content: flex-end;
}

}

.location-link-inline {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 8px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.location-link-inline span {
  display: inline-block;
  white-space: normal;
  word-break: break-word;
  max-width: calc(100% - 45px); /* reserve space for icon */
}

.offer-form-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.offer-title {
  color: #9EC656;
  font-size: 2.4em; /* Larger title */
  margin-bottom: 10px;
}

.offer-subtitle {
  font-size: 1.2em; /* Larger subtitle */
  margin-bottom: 30px;
  color: #444;
}

.offer-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.1em; /* Larger overall form text */
}

.offer-form input,
.offer-form textarea {
  padding: 14px;
  font-size: 1.05em; /* Larger input font */
  border: none;
  background-color: #f5f5f5;
  border-radius: 4px;
  color: #222;
}

.offer-form textarea {
  resize: vertical;
}

.vehicle-type {
  text-align: left;
  font-size: 1.1em; /* Larger label text */
  color: #333;
}

.vehicle-type label {
  margin-right: 20px;
  font-weight: normal;
  font-size: 0.75em;
}

.offer-form button {
  background-color: #9EC656;
  color: white;
  border: none;
  padding: 14px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.offer-form button:hover {
  background-color: #82a94d;
}

.icon-wrapper {
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 0;
  margin-bottom: 15px;
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: transparent;
  display: block;
}