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

:root {
  /* Colors - Tarvaa Brand Guidelines */
  --primary: #0A2342;       /* Deep Navy */
  --primary-light: #16365C; /* Lighter Navy */
  --primary-dark: #051427;  /* Dark Navy */
  --accent: #F4B400;        /* Energy Gold */
  --accent-light: #FFC43D;  /* Lighter Gold */
  --accent-dark: #C99300;   /* Darker Gold */
  
  --secondary: #14B8A6;     /* Teal */
  --warning: #F4B400;       /* Amber/Gold */
  --warning-light: #FFF8E6; /* Soft gold background */
  
  --text-primary: #1E293B;  /* Slate 800 */
  --text-secondary: #475569;/* Slate 600 */
  --text-muted: #64748B;    /* Slate 500 */
  
  --bg-main: #F8FAFC;       /* Off-white Slate tint */
  --bg-card: #FFFFFF;       /* Pure White */
  --bg-navbar: rgba(255, 255, 255, 0.9);
  
  /* Borders & Shadows */
  --border-color: #E2E8F0;  /* Slate 200 */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(10, 35, 66, 0.08), 0 2px 4px -2px rgba(10, 35, 66, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(10, 35, 66, 0.1), 0 4px 6px -4px rgba(10, 35, 66, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(10, 35, 66, 0.12), 0 8px 10px -6px rgba(10, 35, 66, 0.08);
  
  /* Fonts */
  --font-headings: 'Raleway', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
  
  /* Transition */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}
