/* static/css/contact.css - CONTACT PAGE SPECIFIC STYLES */
.contact-hero-bg {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #b8860b 100%);
  position: relative;
}

.contact-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/static/img/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

/* Additional stagger animations */
.stagger-7 {
  animation-delay: 0.7s;
}

.stagger-8 {
  animation-delay: 0.8s;
}

/* Enhanced hover effects for contact page */
.hover-lift:hover {
  transform: translateY(-4px);
}

.hover-glow:hover {
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
}

/* Glass card effect */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact form styles */
.contact-form {
  transition: all 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Form input styles */
.form-input {
  transition: all 0.3s ease;
}

.form-input:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
}

/* Contact info card styles */
.contact-info-card {
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.12);
}

/* Success message animation */
.success-message {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.success-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* Contact page specific responsive adjustments */
@media (max-width: 768px) {
  .contact-hero-bg::before {
    opacity: 0.1;
  }
  
  .contact-form:hover {
    transform: none;
  }
  
  .contact-info-card:hover {
    transform: translateY(-2px);
  }
}