:root {
  --deep-blue: #0A1F44;
  --deep-blue-2: #1a3a7a;
  --gold: #D4AF37;
  --gold-light: #F2C94C;
}

* { -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
.font-display { font-family: 'Playfair Display', serif; letter-spacing: -0.02em; }

#navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(10,31,68,0.08);
}

.nav-link { position: relative; transition: color .3s; }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--gold); transition: width .3s;
}
.nav-link:hover::after { width: 100%; }

.hero-section {
  background: radial-gradient(ellipse at top left, #1a3a7a 0%, #0A1F44 50%, #060f25 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(26,58,122,0.6), transparent 50%);
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5;
  pointer-events: none;
}
.hero-glow-1 { width: 500px; height: 500px; background: #D4AF37; top: -100px; right: -100px; opacity: 0.15; }
.hero-glow-2 { width: 400px; height: 400px; background: #1a3a7a; bottom: -100px; left: -50px; opacity: 0.4; }

.grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.gold-text {
  background: linear-gradient(135deg, #F2C94C 0%, #D4AF37 50%, #B8860B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-text-dark {
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-dark {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.glass-light {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
}

.floating-badge { animation: float 4s ease-in-out infinite; }
.floating-badge-2 { animation: float 4s ease-in-out infinite 1.5s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.fade-in { opacity: 0; transform: translateY(20px); animation: fadeUp .9s forwards; }
.fade-in:nth-child(2) { animation-delay: .15s; }
.fade-in:nth-child(3) { animation-delay: .3s; }
.fade-in:nth-child(4) { animation-delay: .45s; }
.fade-in:nth-child(5) { animation-delay: .6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.trust-card { transition: transform .4s ease, box-shadow .4s ease; }
.trust-card:hover { transform: translateY(-8px); }

.service-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 10px 40px -10px rgba(10,31,68,0.1);
  transition: all .5s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.0) 0%, rgba(212,175,55,0.08) 100%);
  opacity: 0; transition: opacity .5s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(10,31,68,0.25);
  border-color: rgba(212,175,55,0.4);
}
.service-card:hover::before { opacity: 1; }
.service-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, #0A1F44, #1a3a7a);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform .5s, background .5s;
}
.service-card:hover .icon-wrap {
  transform: rotate(-6deg) scale(1.05);
  background: linear-gradient(135deg, #D4AF37, #B8860B);
}
.service-card .icon-wrap i { color: #D4AF37; transition: color .5s; }
.service-card:hover .icon-wrap i { color: #0A1F44; }

.why-card {
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all .4s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-4px);
}
.check-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(212,175,55,0.3);
}

.testimonial-card {
  padding: 2rem; border-radius: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 40px -15px rgba(10,31,68,0.12);
  transition: all .5s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -15px rgba(10,31,68,0.2);
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 12px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 80px; line-height: 1;
  color: rgba(212,175,55,0.15);
}

@media (max-width: 768px) {
  .hero-section h1 { font-size: 2.5rem; }
  .floating-badge, .floating-badge-2 { display: none; }
}
