* { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: #D4AF37; color: #0A0A0A; }
body { font-family: 'Inter', sans-serif; background: #0A0A0A; color: #E0E0E0; }

.texture-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 3px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fadeInUp { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-fadeIn { animation: fadeIn 0.6s ease forwards; }
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

.hero-img {
  filter: grayscale(100%) contrast(1.3) brightness(0.7);
  transition: filter 0.7s ease;
}
.hero-img:hover { filter: grayscale(40%) contrast(1.15) brightness(0.85); }

.accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #E5C547);
}

.stat-number {
  background: linear-gradient(135deg, #D4AF37, #E5C547);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.program-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}
.program-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: #D4AF37;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { transform: translateX(0); }

.form-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.form-input:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  outline: none;
}

.toast { animation: fadeInUp 0.4s ease forwards; }
.toast.hide { animation: fadeIn 0.3s ease reverse forwards; }

.modal-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.brand-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}
.brand-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
}

.advantage-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}
.advantage-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.map-wrapper iframe {
  filter: grayscale(80%) contrast(1.1) brightness(0.7) saturate(0.3);
  transition: filter 0.5s ease;
}
.map-wrapper:hover iframe {
  filter: grayscale(30%) contrast(1) brightness(0.85) saturate(0.7);
}