body {
  font-family: 'Inter', sans-serif;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

.gold-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #B8960C, #E8CA4A);
  border-radius: 2px;
}

.nav-link {
  position: relative;
  color: #1A2F5A;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #B8960C;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: #B8960C;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(10, 22, 40, 0.12);
}

.btn-gold {
  background: linear-gradient(135deg, #B8960C, #D4AE1A);
  color: #0A1628;
  font-weight: 600;
  transition: all 0.25s;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #9A7A08, #B8960C);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 150, 12, 0.35);
}

.btn-outline-gold {
  border: 2px solid #B8960C;
  color: #B8960C;
  font-weight: 600;
  transition: all 0.25s;
}

.btn-outline-gold:hover {
  background: #B8960C;
  color: #0A1628;
}

.service-card:hover .service-icon {
  background: #B8960C;
  color: #0A1628;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10, 22, 40, 0.15);
}

.stat-counter {
  font-family: 'Playfair Display', serif;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.animate-fade-up {
  animation: fadeUp 0.7s ease forwards;
}

.delay-100 {
  animation-delay: 0.1s;
  opacity: 0;
}

.delay-200 {
  animation-delay: 0.2s;
  opacity: 0;
}

.delay-300 {
  animation-delay: 0.3s;
  opacity: 0;
}

.delay-400 {
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-overlay {
  background: linear-gradient(
    to right,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(15, 32, 68, 0.45) 55%,
    rgba(10, 22, 40, 0.35) 100%
  );
}

.decorative-pattern {
  background-image: repeating-linear-gradient(45deg, #B8960C 0, #B8960C 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
}
