* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: url('media/bmw-car-with-smoke-around-front-front-car-with-word-bmw-front_894493-826.avif') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  color: #fff;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  width: 90%;
  max-width: 1100px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: fadeIn 1.5s ease;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: left;
  color: #0734ff;
  text-shadow: 1px 1px 5px white;
}

.contact-form .desc {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ffffff;
}

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

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #666;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1d60fc;
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
  resize: none;

}

.contact-form button {
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #0037ff, #fbfbfb);
  color: black;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #4a68fd, #b1aaaa);
}

.map-container {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  border-radius: 10px;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons a img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
  box-shadow: #0037ff 1px 1px 5px;  
}


