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

:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
}

.glass-nav {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
}

.hero-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.accent-gradient {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.service-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out both;
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

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

.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  background-color: #0f172a !important;
  opacity: 1;
  z-index: 9999 !important;
}

.mobile-menu.open {
  transform: translateX(0);
  z-index: 9999 !important;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 40 !important;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.page-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('http://static.photos/abstract/1200x630/1') center/cover no-repeat;
  opacity: 0.15;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

button i,
button svg {
  pointer-events: none;
}

@media (max-width: 1024px) {
  .nav-link::after {
    display: none;
  }
}