/* ===== Contact Page Specific Styles ===== */

/* Form Select Arrow */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230B1A33' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

/* Form Input Focus Glow */
input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 3px rgba(198, 169, 97, 0.15);
}

/* Newsletter Input Placeholder */
input::placeholder,
textarea::placeholder {
  opacity: 0.6;
}

/* Map Container Hover Effect */
iframe {
  transition: filter 0.3s ease;
}

iframe:hover {
  filter: brightness(1.02);
}

/* Form Success State */
.form-success {
  animation: fadeInUp 0.5s ease;
}

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