@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary-navy: #52525B; /* Softer Zinc/Slate Gray */
  --secondary-blue: #3F3F46; /* Deeper Zinc/Slate Gray for secondary text */
  --brand-orange: #E0531D; /* Softer, rich burnt orange with high readability contrast */
  --brand-orange-hover: #C2410C;
  --warm-amber: #F59E0B;
  
  --bg-light: #FAF9F6;
  --bg-white: #FFFFFF;
  --bg-dark: #1F2937;
  --bg-dark-card: #374151;
  
  --text-dark: #1E293B;
  --text-light: #F8FAFC;
  --text-muted: #64748B;
  --text-muted-light: #94A3B8;
  
  --border-light: #E2E8F0;
  --border-dark: #4B5563;
  --border-orange: rgba(224, 83, 29, 0.2);
  
  --success: #10B981;
  --danger: #EF4444;
  
  /* Layout Grid & Sizing */
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Shadow Systems */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -8px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 25px rgba(224, 83, 29, 0.35);
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-title);
  outline: none;
  transition: var(--transition-fast);
}

input, textarea, select {
  font-family: var(--font-body);
  outline: none;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition-fast);
  background: var(--bg-white);
  color: var(--text-dark);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(224, 83, 29, 0.15);
}

ul {
  list-style: none;
}

/* Common Layout Components */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.section-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-orange);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 60px;
  font-weight: 400;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 0.8s var(--transition-normal) forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--text-muted-light);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-orange);
}
