.contact-hero {
  min-height: 500px;

  display: flex;

  align-items: center;

  padding: 80px 8%;

  color: white;

  background:
    linear-gradient(rgba(7, 29, 51, 0.88), rgba(7, 29, 51, 0.88)),
    url("../images/slika.jpg");

  background-size: cover;

  background-position: center;
}

.contact-hero h1 {
  font-size: 55px;

  max-width: 800px;
}

.contact-hero p {
  font-size: 22px;

  margin-top: 20px;
}

.contact-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.contact-card {
  background: white;

  padding: 40px;

  text-align: center;

  border-radius: 20px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  border-top: 4px solid #c9a227;
}

.contact-card i {
  font-size: 45px;

  color: #c9a227;

  margin-bottom: 20px;
}

.contact-form-section {
  background: #f7f9fc;
}

.form-wrapper {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

.form-text h2 {
  font-size: 40px;

  color: #071d33;
}

.form-text p {
  font-size: 18px;

  margin: 20px 0;
}

.mini-info div {
  margin: 15px 0;

  font-weight: 600;
}

.mini-info i {
  color: #c9a227;

  margin-right: 10px;
}

.contact-form {
  background: white;

  padding: 40px;

  border-radius: 25px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 15px;

  margin-bottom: 18px;

  border: 1px solid #ddd;

  border-radius: 10px;

  font-size: 16px;

  font-family: inherit;
}

.contact-form textarea {
  height: 150px;

  resize: none;
}

.contact-form button {
  width: 100%;

  border: none;

  cursor: pointer;
}

.map-container {
  border-radius: 25px;

  overflow: hidden;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 700px) {
  .contact-grid {
    display: grid;

    grid-template-columns: 1fr;
  }

  .form-wrapper {
    display: grid;

    grid-template-columns: 1fr;
  }

  .map-container iframe {
    height: 300px;
  }
}
