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

html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background-color: #1A1A2E; }

.gradient-btn {
  background: linear-gradient(135deg, #4AABDE, #8E8E8E);
  transition: all 0.3s ease;
}
.gradient-btn:hover {
  background: linear-gradient(135deg, #3A8FBF, #7A7A7A);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 171, 222, 0.3);
}
.ghost-btn {
  border: 2px solid #4AABDE;
  background: transparent;
  transition: all 0.3s ease;
}
.ghost-btn:hover {
  background: rgba(74, 171, 222, 0.15);
  transform: translateY(-2px);
}

.section-decorator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.section-decorator span:nth-child(1),
.section-decorator span:nth-child(3) {
  width: 40px; height: 3px; background: #4AABDE;
}
.section-decorator span:nth-child(2) {
  width: 10px; height: 10px; border: 2px solid #4AABDE;
  transform: rotate(45deg);
}

/* Chat bubble fade in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}

/* Select custom 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='%238E8E8E'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Scroll margin for sections (account for fixed header) */
section[id] {
  scroll-margin-top: 80px;
}
