:root {
  --teal: #008080;
  --gold: #c69214;
  --gold-light: #e0b03a;
}

.text-teal {
  color: var(--teal);
}
.bg-teal {
  background: var(--teal);
}

.border-teal {
  border-left: 5px solid var(--teal) !important;
}
.border-gold {
  border-left: 5px solid var(--gold) !important;
}

.info-card {
  background: white;
  padding: 1.4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.glass-card {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 15px;
}

.btn-gold-pride {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  color: white;
  transition: 0.35s ease;
}
.btn-gold-pride:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(198, 146, 20, 0.45);
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hover-lift {
  transition: 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
}

.contact-form-card {
  border: 1px solid #eee;
}

.letter-space-3 {
  letter-spacing: 3px;
}

@media (max-width: 992px) {
  .sticky-top {
    position: static !important;
  }
}
