.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.contact-modal.show {
  display: flex;
}

.contact-modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  font-family: 'Poppins', sans-serif;
  animation: slideFadeIn 0.4s ease-out;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #c9a04c;
  text-align: center;
}

.contact-modal-content p {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #333;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #000;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 10px;
  background-color: #c9a04c;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #c9a04c;
}

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

.consent-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 20px;
  font-size: 0.95rem;
}

.consent-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.consent-box a {
  color: #007bff;
  text-decoration: underline;
}

.consent-box a:hover {
  text-decoration: none;
}