/* styles/contact.css */

.page-hero {
  background-color: var(--brand-gray);
}

.contact-info .icon-circle {
  background-color: var(--brand-accent);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.contact-info .col-md-4:hover .icon-circle {
  background-color: var(--brand-secondary);
}

.contact-info a {
  text-decoration: none;
  color: var(--brand-primary);
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--brand-secondary);
}

/* Contact Form */
/* Fade-in on load */
.fade-in-wrapper {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.1s;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Success animation wrapper (hidden by default) */
.success-animation {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease;
  pointer-events: none;
  visibility: hidden;
}

.success-animation.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  visibility: visible;
}




/* Beyond Ads Office Location Map */
.map-section iframe {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
