.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px; /* razmak između forme i infoa */
  align-items: flex-start;
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
}

/* FORM */
.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* KONTAKT INFO */
.contact-info {
  flex: 1 1 300px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 18px;
  color: #333;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info i {
  color: #B68D40; /* zlatna boja */
  font-size: 22px;
  /* bez kruga, jednostavno zlatna ikona */
}

/* LINKOVI */
.contact-info a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #B68D40;
}

.contact-section .section-subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
}

.contact-section{
    background-color: #f9f9f6;
    padding: 2rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  resize: none;
}

.contact-form button.btn-primary {
  background-color: #B68D40;
  color: #fff;
  padding: 15px 25px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button.btn-primary:hover {
  background-color: #F4EBD0;
  color: #333;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.contact-info i {
  color: #fff; /* bijela ikona unutar kruga */
  background-color: #B68D40; /* zlatni krug */
  border-radius: 50%; /* pravi krug */
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover efekt - povećanje + glow */
.contact-info i:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(182, 141, 64, 0.6), 0 0 20px rgba(182, 141, 64, 0.4);
}

/* Klik efekt */
.contact-info i:active {
  transform: scale(1.1);
  box-shadow: 0 0 6px rgba(182, 141, 64, 0.5), 0 0 12px rgba(182, 141, 64, 0.3);
}



.toast-message {
  position: fixed;
  bottom: 20px;  /* donji desni kut */
  right: 20px;
  background-color: #B68D40;
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  z-index: 9999;
  transform: translateY(20px); /* malo "diže" popup kad se pojavi */
}

.toast-message.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}



