* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: url(/images/background-2.jpg);
  color: #333;
}

.order-call {
  text-align: center;
  padding: 5vw 2vw;
  background: #555555;
}

.order-call h1 {
  color: #ff0004;
  font-size: 5vw;
  margin-bottom: 1vw;
  font-family: 'Golos Text', sans-serif;
}

.order-call .subtitle {
  color: #fff;
  font-size: 2.5vw;
  margin-bottom: 3vw;
}

.cards-wrapper {
  position: relative;
  margin: 2vw 0;
}

.cards-container {
  display: flex;
  gap: 2vw;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1vw;
}

.cards-container::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 30vw;
  background-color: #333232;
  border-radius: 1vw;
  overflow: hidden; 
  box-shadow: 0 0 1vw rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-img {
  width: 100%;
  height: 18vw;           
  object-fit: cover;    
  display: block;
  margin: 0;             
}

.card-content {
  padding: 1.5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vw;
}



.card img {
  width: 100%;
  display: block;
  border-top-left-radius: 1vw;
  border-top-right-radius: 1vw;
}

.card h3 {
  margin: 1vw 0;
  font-size: 2.2vw;
  text-transform: uppercase;
  color: #fff;
}

.card p {
  font-size: 0.98vw;
  color: #6C6C6C;
  margin-bottom: 2vw;
}

.select-btn {
  background: #ff0004;
  color: #fff;
  border: none;
  padding: 1vw;
  width: 65%;
  font-size: 1.8vw;
  border-radius: 0.7vw;
  cursor: pointer;
}

#turnkey button {
  margin-bottom: 1vw;
}

#uch button {
  margin-top: 1.96vw;
  margin-bottom: 0;
}

#dcc button {
  margin-top: 3.3vw;
}

#zv button {
  margin-top: 1vw;
}

#mz button {
  margin-top: 1vw;
}

.select-btn:hover {
  opacity: 0.9;
}

.arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #ffffff4d;
  color: #333;
  border: none;
  border-radius: 50%;
  width: 4vw;
  height: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2vw;
  cursor: pointer;
}

.arrow.left {
  left: 0.5vw;
}
.arrow.right {
  right: 0.5vw;
}

.nav-container {
  padding: 2vw 0;
  margin-top: 3vw;
  display: flex;
  justify-content: center;
  gap: 59.8vw;
}

.nav-btn {
  background: #444444;
  border: none;
  font-size: 2vw;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  padding: 1.2vw 3vw;
  border-radius: 0.7vw;
}

.nav-btn img {
  width: 2vw;
  height: 2vw;
}

.nav-btn span {
  margin-left: 0.7vw;
  color: #fff;
  font-weight: 900;
}

#contactSection form {
  background: #222;
  padding: 2em;
  border-radius: 1vw;
  box-shadow: 0 0 2vw rgba(0,0,0,0.5);
  max-width: 500px;
  margin: 0 auto;
}
#contactSection input, 
#contactSection select, 
#contactSection button {
  width: 100%;
  margin-top: 0.7em;
  margin-bottom: 1em;
  padding: 0.8em;
  border-radius: 0.5vw;
  border: none;
  font-size: 1em;
}
#contactSection button {
  background: #ff0004;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
#contactSection button:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
.order-call h1 {
    font-size: 10vw;
}
.subtitle {
    font-size: 3.5vw;
}
.card {
    flex: 0 0 86vw;
    height: 134vw;
}
.card h3 {
    font-size: 6.2vw;
}
.card p {
    font-size: 3vw;
    color: #6C6C6C;
    margin-bottom: 2vw;
    margin-left: 1vw;
    margin-right: 1vw;
}
.select-btn {
    width: 41%;
    font-size: 4.8vw;
    border-radius: 2.7vw;
    cursor: pointer;
    font-weight: 600;
}
.nav-container {
    gap: 23.8vw;
}
.nav-btn {
    font-size: 4.5vw;
}
.nav-btn img {
  width: 5vw;
  height: 5vw;
}
.arrow.left {
  display: none;
}
.arrow.right {
  display: none;
}
}