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

:root {
  /* Core Colors - Fintech Light Theme */
  --bg-deep: #1A1B41; /* Navy for dark sections/sidebar */
  --bg-light: #FFFFFF; /* Main background */
  --bg-alt: #F7F9FC; /* Alternate section background */
  --bg-surface: #FFFFFF; /* Card backgrounds */
  
  --primary: #2563EB; /* Bright Royal Blue */
  --primary-hover: #1D4ED8;
  --secondary: #00D1B2; /* Teal accent (Expatfile style) */
  --secondary-hover: #00B89C;
  --accent-warm: #FF6B6B; /* Coral for badges/alerts */
  
  --text-main: #1A1B41; /* Navy text for light mode */
  --text-muted: #4A5568; /* Slate gray */
  --text-inverse: #FFFFFF; /* Text on dark backgrounds */
  
  --success: #10B981;
  --danger: #EF4444;

  /* Shadows replacing Glassmorphism */
  --border-light: 1px solid #E2E8F0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s;
}

a:hover {
  color: var(--primary-hover);
}

button {
  font-family: var(--font-body);
  border: none;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Utilities */
.card-shadow {
  background: var(--bg-surface);
  border: var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
