@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

.nav_top {
  background-color: black;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  height: 100px;
  padding: 0 20px 0 20px;
}

.nav {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  z-index: 10;
}

.nav_top ul {
  display: flex;
  flex-direction: row;
}

.nav_top li {
  padding: 10px;
}

.nav_top a {
  color: #fff;
}

#wap:hover {
  background-color: #25d366;
}

#viber:hover {
  background-color: #7360f2;
}

#tel:hover {
  background-color: #616161;
}

.nav_top_left {
  display: grid;
  justify-items: start;
}

.nav_top_left ul {
  display: grid;
  grid-template-columns: 1fr;
}

.nav_top_left ul a {
  display: flex;
  flex-direction: row;
}

.nav_top_left ul a:hover {
  color: #616161;
}

.nav_top_left ul a p {
  font-size: 1.2rem;
}

.nav_top_left ul a img {
  width: 25px;
  margin-right: 10px;
}

.nav_top_right {
  display: grid;
  justify-items: end;
}

.nav_bottom {
  background-color: #252525;
  display: grid;
  grid-template-columns: 30% 1fr;
  justify-items: start;
  align-items: center;
  color: #fff;
  padding: 0px 5% 0 5%;
  position: relative;
  z-index: 10;
}

.logozag img {
  width: 100%;
  height: auto;
  min-width: 150px;
  padding: 20px 20px 20px 0px;
}

.nav_bottom ul {
  display: flex;
  flex-direction: row;
  justify-content: end;
  width: 100%;
}

#pop {
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: #616161;
  z-index: 10;
  padding: 20px;
  transition-property: background-color;
  transition-duration: 0.3s;
  position: relative;
}

#pop li {
  padding: 10px;
}

#pop a {
  color: #ffffff;
  font-size: 1.5rem;
}

#pop a:hover {
  text-decoration: underline;
}

.nav_bottom li {
  padding: 10px;
}

.nav_bottom a {
  color: #ffffff;
  font-size: 1.5rem;
}

.nav_bottom a:hover {
  text-decoration: underline;
}

.hamb {
  display: none;
  padding: 20px;
}

.popmenu {
  display: none;
}

/* =========================
   COOKIE POPUP - FIXED
========================= */

.cookie-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  z-index: 99999;
  overflow-y: auto;
}

.cookie-popup > div {
  width: 100%;
  max-width: 820px;
}

.cookie-popup-content {
  background-color: #3a3a3a;
  color: #fff;
  padding: 24px;
  border: 1px solid #616161;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 100000;
}

.cookie-popup p {
  padding: 10px 5px;
  line-height: 1.6;
}

.cookie-popup a {
  color: #f8e77b;
}

.cookie-popup a:hover {
  text-decoration: underline;
}

.cookie-popup-buttons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cookie-popup-buttons button {
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  flex: 1 1 180px;
  min-height: 48px;
  font-size: 1rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.cookie-popup-buttons button:hover {
  box-shadow: 1px 2px 8px rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

#accept-all-cookies {
  background-color: #4caf50;
  color: #000;
}

#only-necessary-cookies,
#cookie-settings {
  background-color: #616161;
  color: #fff;
}

.cookie-settings-panel {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
  padding: 24px;
  background-color: #2f2f2f;
  color: #fff;
  border: 1px solid #555;
  border-radius: 12px;
  position: relative;
  z-index: 100000;
}

.cookie-settings-panel h3 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.cookie-settings-panel label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-settings-panel input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cookie-settings-panel button {
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  background-color: #f8e77b;
  color: rgb(0, 0, 0);
  border-radius: 6px;
  font-weight: 700;
  margin-top: 8px;
  align-self: flex-start;
}

.cookie-settings-panel button:hover {
  box-shadow: 1px 2px 8px rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .cookie-popup {
    padding: 14px;
  }

  .cookie-popup-content,
  .cookie-settings-panel {
    padding: 18px;
  }

  .cookie-popup-buttons {
    flex-direction: column;
  }

  .cookie-popup-buttons button,
  .cookie-settings-panel button {
    width: 100%;
    max-width: 100%;
  }

  .cookie-settings-panel label {
    align-items: flex-start;
  }
}

.sec-a {
  min-width: 100%;
  height: 900px;
  background-image: url(../image/1.webp);
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  width: auto;
  height: 111%;
  justify-items: center;
  align-items: end;
}

.features ul {
  z-index: 2;
}

.features a {
  width: 100%;
  padding: 10px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.features li {
  display: grid;
}

.reviews-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.reviews-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews-container::-webkit-scrollbar {
  display: none;
}

.review-image {
  display: grid;
  justify-items: center;
}

.review {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 100%;
  box-sizing: border-box;
  padding: 3% 5% 3% 3%;
  margin-right: 2%;
}

.review-header {
  padding: 6%;
  background-color: #3a3a3a;
  border: 1px solid black;
  margin: 5%;
  box-shadow: 3px 2px 11px black;
}

#prev,
#next {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  color: #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

#prev {
  left: 0;
}

#next {
  right: 0;
}

@media (min-width: 768px) {
  .review {
    width: calc(33.333% - 2%);
  }
}

@media (max-width: 768px) {
  .reviews-wrapper {
    padding: 20px;
  }
}

.hero_top {
  color: #fff;
  font-size: 3.5rem;
  display: grid;
  justify-items: center;
  align-items: start;
  position: relative;
  align-items: center;
  margin: 0 auto 10% auto;
  bottom: 56px;
  text-shadow: 3px 3px 2px black;
}

@media (min-width: 711px) {
  .hero_top {
    bottom: 35px;
  }
}

@media (min-width: 1080px) {
  .hero_top {
    bottom: 15px;
  }
}

@media (min-width: 1180px) {
  .hero_top {
    bottom: 5px;
  }
}

@media (min-width: 1500px) {
  .hero_top {
    margin: 5% auto 10% auto;
  }
}

.bot_hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #252525;
}

.h_left img {
  width: 100%;
  height: 100%;
}

.h_right {
  display: grid;
  justify-items: center;
  align-items: center;
}

.h_right {
  padding: 50px;
  width: 85%;
  color: #fff;
}

.h_right li {
  padding: 10px;
}

.h_right h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.h_right p {
  font-size: 1.5rem;
}

.footer {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #616161;
  align-items: center;
  justify-items: center;
  color: #fff;
}

.contact {
  display: grid;
  justify-items: center;
  align-items: center;
  margin-top: 5%;
  width: 50%;
}

.contact h2 {
  font-size: 2rem;
  font-weight: 700;
}

.contact h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

.contact label {
  font-size: 1.3rem;
  font-weight: 600;
  padding-bottom: 5px;
}

.contact form {
  display: grid;
  grid-template-columns: 1fr;
  width: 70%;
  margin-top: 50px;
}

.contact ul {
  padding-bottom: 10px;
}

.contact ul label {
  padding: 10px 0;
}

.contact li {
  display: grid;
  grid-template-columns: 1fr;
  padding: 5px;
}

.contact input[type="text"] {
  background-color: #252525;
  padding: 10px;
  border: none;
  box-shadow: 1px 1px 3px #000;
  color: #fff;
}

.contact input[type="email"] {
  background-color: #252525;
  padding: 10px;
  border: none;
  box-shadow: 1px 1px 3px #000;
  color: #fff;
}

.contact input[type="tel"] {
  background-color: #252525;
  padding: 10px;
  border: none;
  box-shadow: 1px 1px 3px #000;
  color: #fff;
  width: 100%;
}

.contact select {
  padding: 10px;
  margin: 10px;
  background-color: #252525;
  border: none;
  box-shadow: 1px 1px 3px #000;
  color: #fff;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
  display: grid;
  justify-items: center;
}

.iti-mobile .iti__country-list {
  width: 450px !important;
}

.contact label {
  padding: 10px;
}

.contact textarea {
  margin: 10px;
  background-color: #252525;
  border: none;
  box-shadow: 1px 1px 3px #000;
  color: #fff;
}

.contact button[type="submit"] {
  margin: 10px;
  padding: 10px;
  background-color: #252525;
  color: #fff;
  border: none;
  box-shadow: 1px 1px 3px #000;
  margin-bottom: 50px;
}

.review_sec {
  display: grid;
  align-items: center;
  background-color: #252525;
  color: #fff;
  padding: 50px 10px 50px 10px;
}

.review_sec h2 {
  padding: 20px 5%;
  font-size: 2.4rem;
}

.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  align-items: center;
  background-color: #252525;
  color: #fff;
}

.rr {
  display: grid;
  justify-items: center;
  align-items: center;
  padding: 10%;
  width: 70%;
  text-align: center;
}

.rr h3 {
  padding: 10px;
  padding-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: underline;
}

.rr p {
  text-align: left;
  font-size: 1.4rem;
}

.ord_sec {
  display: grid;
  align-items: center;
  background-color: #616161;
  color: #000;
  padding: 50px 0 120px 0;
}

.ord_sec h2 {
  padding: 5%;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

.orders {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
  justify-items: center;
  align-items: center;
  padding: 34px;
}

.ord {
  padding: 5%;
  width: 100%;
  padding: 8px;
  background: #252525;
  box-shadow: 7px 9px 20px 5px;
  border-radius: 6px;
}

.ord a {
  color: #fff;
}

.ord a:hover {
  color: #616161;
}

.ord_img {
  width: 100%;
  height: auto;
}

.ord_desc {
  background-color: #252525;
  padding: 5%;
  margin-left: 5%;
}

.ord_img img {
  width: 100%;
  height: auto;
}

.ord h3 {
  font-size: 2rem;
  font-weight: 600;
}

.ord p {
  font-size: 1.2rem;
}

.fleet_sec {
  display: grid;
  align-items: center;
  background-color: #252525;
  color: #fff;
  padding: 50px 0 120px 0;
}

.fleet_sec h2 {
  padding: 5%;
  font-size: 2.4rem;
  font-weight: 700;
}

.fleet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  row-gap: 10px;
}

.fleet_det {
  display: grid;
  justify-items: center;
  align-items: center;
  background-color: #3a3a3a;
  padding: 15px;
  width: 90%;
  height: 100%;
}

.fleet_det ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fleet_det ul li {
  padding: 15px;
}

.fleet_det h3 {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 30px;
}

.fleet_det p {
  font-size: 1.3rem;
}

.services {
  display: grid;
  align-items: center;
  background-color: #252525;
  color: #fff;
  padding: 50px 0 120px 0;
  background-image: url(../image/metal3.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.services h2 {
  padding: 5% 5% 2% 5%;
  font-size: 2.4rem;
  font-weight: 700;
}

.main_sr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  align-items: start;
  padding: 20px;
  margin: 0px 25px;
}

.main_sr h3 {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 30px;
}

.main_sr p {
  font-size: 1.4rem;
}

.info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #252525;
  padding: 15px;
  width: 100%;
  color: #fff;
  justify-items: center;
}

.copyr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  padding: 15px;
  background-color: #616161;
  width: 100%;
  color: #ffffff;
}

.copyr a {
  color: #ffffff;
  text-decoration: none;
}

.copyr a:hover {
  text-decoration: underline;
}

.sr {
  padding: 20px;
  background: #414141c9;
  display: grid;
  margin: 5%;
}

.sr img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

#message {
  margin: 10px;
  padding: 2%;
}

.cont_info {
  width: 80%;
}

.cont_info ul {
  display: grid;
  justify-items: start;
  padding: 10px;
}

.cont_info li {
  padding: 10px;
}

.cont_info h4 {
  text-decoration: underline;
  font-size: 2rem;
}

.cont_info p {
  color: #fff;
  font-size: 1.5rem;
}

.cont_info a {
  color: #fff;
  font-size: 1.5rem;
}

.cont_info a:hover {
  color: #616161;
}

#map {
  height: 400px;
  width: 80%;
}

.sec-error {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  justify-items: center;
  align-items: center;
}

.sec-error {
  padding: 10%;
}

.sec-error h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sec-error p {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.content h1 {
  color: #000;
  font-size: 1.5rem;
}

.content p {
  color: #000;
  font-size: 1.2rem;
}

.content a {
  color: #000;
  font-size: 1.2rem;
  text-decoration: none;
  border: none;
}

.content a:hover {
  color: #616161;
  font-size: 1.2rem;
  text-decoration: underline;
}

.contact_message {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
}

.contact_message ul {
  background-color: #616161;
  margin: 5%;
  padding: 5%;
}

.contact_message a {
  color: #000;
  font-size: 1.5rem;
  text-decoration: none;
}

.contact_message a:hover {
  text-decoration: underline;
}

.contact_message h3 {
  font-size: 2rem;
  padding-bottom: 10px;
}

.contact_message p {
  font-size: 1.5rem;
  padding-bottom: 10px;
}

.pp {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  align-items: center;
  padding: 20px;
  background-color: #3a3a3a;
  color: #fff;
}

.pp h1,
h2 {
  padding-bottom: 10px;
}

.pp p {
  padding-bottom: 20px;
}

#floating-contact-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#floating-contact-icons a {
  background: #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

#floating-contact-icons a img {
  width: 40px;
  height: auto;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

#floating-contact-icons a {
  animation: pulse 2s infinite;
}

@media screen and (max-width: 1530px) {
  .main_sr {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sr {
    padding: 20px;
    margin-bottom: 20px;
  }

  .fleet {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1300px) {
  .h_right h2 {
    font-size: 1.4rem;
  }

  .h_right p {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 1100px) {
  .sec-a {
    background-image: url(../image/1a.webp);
  }

  .h_left img {
    width: 100%;
    height: auto;
  }

  .bot_hero {
    grid-template-columns: 1fr;
  }

  .orders {
    grid-template-columns: repeat(3, 1fr);
  }

  .rr {
    padding: 0%;
  }

  .contact {
    width: 80%;
  }

  .hero_top {
    font-size: 2rem;
  }
}

@media screen and (max-width: 892px) {
  .features img {
    width: 100%;
    height: auto;
  }

  .orders {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet_det ul {
    display: grid;
    grid-template-columns: 1fr;
  }

  .reviews {
    grid-template-columns: 1fr;
  }

  .contact {
    width: 90%;
  }

  .h_right {
    padding: 50px;
    width: 100%;
    color: #fff;
  }

  .hero_top {
    font-size: 2rem;
  }

  .sr {
    margin: 2%;
  }
}

@media screen and (max-width: 850px) {
  .main_sr {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
  }

  .sr {
    margin: 0;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 782px) {
  .nav_top_left ul li {
    padding-left: 0;
  }

  .nav_bottom img {
    width: 100%;
    height: auto;
    padding: 20px 20px 20px 20px;
  }

  .sec-a {
    background-image: url(../image/1b.webp);
  }

  .hero_top p {
    text-align: center;
  }

  .hamb {
    display: block;
    position: relative;
    left: 80%;
  }

  .hamb:hover {
    color: #fff;
  }

  .nav {
    font-size: 1.2rem;
  }

  .nav_bottom ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #616161;
    z-index: 3;
    padding: 20px;
    transition-property: background-color;
    transition-duration: 0.3s;
  }

  .nav_bottom {
    padding: 0%;
    height: auto;
  }

  .orders {
    grid-template-columns: 1fr;
  }

  .rr {
    margin-bottom: 50px;
  }

  .contact form {
    width: 100%;
  }

  .info {
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }

  .cont_info ul {
    padding-left: 0;
    padding-bottom: 40px;
  }

  .contact label {
    font-size: 1rem;
  }

  .fleet img {
    width: 100%;
    height: auto;
  }

  .fleet_det p {
    font-size: 1rem;
  }

  .sr p {
    font-size: 1rem;
  }

  .rr p {
    font-size: 1rem;
  }

  .nav_top img {
    width: 100%;
    height: auto;
  }

  .copyr {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 700px) {
  .hamb {
    display: block;
    position: relative;
    left: 70%;
  }
}

@media screen and (max-width: 615px) {
  .hamb {
    display: block;
    position: relative;
    left: 65%;
  }

  .nav_bottom img {
    width: 100%;
    height: auto;
    padding: 0 10px 0 10px;
  }
}

@media screen and (max-width: 450px) {
  .iti-mobile .iti__country-list {
    width: 100% !important;
  }

  .sec-a {
    background-image: url(../image/1c.webp);
    height: 600px;
  }

  .contact ul {
    grid-template-columns: 1fr;
  }

  .contact h3 {
    font-size: 1.3rem;
  }

  .hero_top p {
    font-size: 1.5rem;
    text-align: center;
  }

  .contact_message a {
    color: #000;
    font-size: 1.5rem;
    text-decoration: none;
  }

  .contact_message a:hover {
    text-decoration: underline;
  }

  .contact_message h3 {
    font-size: 1.7rem;
    padding-bottom: 10px;
  }

  .contact_message p {
    font-size: 1.3rem;
    padding-bottom: 10px;
  }

  .nav_bottom img {
    width: 100%;
    height: auto;
    padding: 0 10px 0 10px;
  }
}

@media screen and (max-width: 390px) {
  .nav_top_right ul {
    flex-direction: column;
  }

  .nav_top_right ul img {
    width: 25px;
  }
}

#google_translate_element {
  display: inline-block;
  background-color: #000;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px 10px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.goog-te-gadget-simple {
  background-color: #000 !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 5px 10px !important;
  color: #fff !important;
  display: inline-block;
}

.goog-te-gadget-simple a {
  text-decoration: none !important;
  color: #fff !important;
  font-size: 14px !important;
  font-family: Arial, sans-serif !important;
}

.goog-te-gadget-simple a:hover {
  color: #ccc !important;
}

.goog-te-gadget-icon {
  display: none !important;
}

.goog-te-gadget-simple span {
  color: #fff !important;
}

.goog-te-combo {
  background-color: #000 !important;
  color: #fff !important;
  border: none !important;
  padding: 5px !important;
  border-radius: 4px !important;
  font-size: 14px !important;
}

.goog-te-combo:focus {
  outline: none !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}