/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Scroll animations - Smooth Elegant Fade + Scale */
.section {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Hide scrollbar */
::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-family: 'Inter', sans-serif;
}

/* Update headers to use Montserrat */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* Elegant gradient overlays */
.gradient-premium {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
}

/* Refined borders */
.border-elegant {
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
}

/* Soft shadows */
.shadow-premium {
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.08);
}

/* Premium badge */
.badge-premium {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Refined input styling */
input, textarea {
  border: 2px solid rgba(124, 58, 237, 0.15);
  transition: all 0.3s ease-in-out;
  font-family: 'Inter', sans-serif;
}

input:focus, textarea:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  outline: none;
}

/* Form success message */
.form-success {
  animation: fadeInElegant 0.5s ease-in-out;
}

@keyframes fadeInElegant {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
