/* ============================================
   AUTO-NOM SHARED CSS - MODERN LIGHT THEME
   GLASSMORPHISM DESIGN FOR NON-TECHNICAL USERS
   ============================================ */

/* CSS Variables for Modern Light Theme */
:root {
  /* Light Theme Colors */
  --theme-bg: #ffffff;
  --theme-bg-secondary: #f8fafc;
  --theme-bg-tertiary: #f1f5f9;
  --theme-surface: #ffffff;
  --theme-surface-secondary: #f8fafc;

  --theme-header-bg: rgba(255, 255, 255, 0.95);
  --theme-footer-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

  --theme-card-bg: rgba(255, 255, 255, 0.85);
  --theme-card-border: rgba(226, 232, 240, 0.6);
  --theme-card-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

  --theme-text: #0f172a;
  --theme-text-secondary: #475569;
  --theme-text-tertiary: #64748b;
  --theme-heading: #0f172a;

  /* Professional Color Scheme */
  --theme-primary: #059669; /* Emerald Green */
  --theme-primary-rgb: 5, 150, 105;
  --theme-primary-light: rgba(5, 150, 105, 0.15);
  --theme-primary-dark: #047857;

  --theme-secondary: #3b82f6; /* Blue */
  --theme-secondary-rgb: 59, 130, 246;
  --theme-secondary-light: rgba(59, 130, 246, 0.15);

  --theme-accent: #8b5cf6; /* Purple */
  --theme-accent-rgb: 139, 92, 246;

  --theme-success: #059669;
  --theme-warning: #d97706;
  --theme-error: #dc2626;
  --theme-info: #2563eb;

  /* Font Families */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Glassmorphism Properties */
  --glass-blur: blur(20px);
  --glass-blur-heavy: blur(32px);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  --glass-inset-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2);

  /* Gradients */
  --primary-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);
  --secondary-gradient: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);

  /* Form specific variables */
  --theme-border: rgba(15, 23, 42, 0.12);
  --form-placeholder-color: var(--theme-text-tertiary);
  --newsletter-input-bg: rgba(15, 23, 42, 0.03);
  --newsletter-input-border: rgba(15, 23, 42, 0.1);
  --footer-link-hover: var(--theme-primary);

  /* Animations */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-snappy: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Typography */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
}

/* ============================================
   BASE RESET & TYPOGRAPHY
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--theme-text);
  background: var(--bg-gradient);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow-x: hidden;
}

/* Floating Gradient Orbs - More Subtle */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
  background:
    radial-gradient(circle at 10% 20%, rgba(var(--theme-primary-rgb), 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(var(--theme-secondary-rgb), 0.06) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(var(--theme-accent-rgb), 0.05) 0%, transparent 50%);
}

/* Subtle Orb Animations */
@keyframes float-orb-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.02); }
}

@keyframes float-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 15px) scale(1.01); }
}

@keyframes float-orb-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, 30px) scale(0.99); }
}

@media (prefers-reduced-motion: no-preference) {
  body::before {
    animation: float-orb-1 30s ease-in-out infinite,
               float-orb-2 35s ease-in-out infinite reverse,
               float-orb-3 40s ease-in-out infinite;
  }
}

/* Typography Scale with Fluid Clamp */
h1, .h1 {
  font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-5xl));
  font-weight: 800;
  line-height: 1.1;
  color: var(--theme-heading);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-lg);
}

h2, .h2 {
  font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-4xl));
  font-weight: 700;
  line-height: 1.2;
  color: var(--theme-heading);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

h3, .h3 {
  font-size: clamp(var(--font-size-2xl), 3vw, var(--font-size-3xl));
  font-weight: 700;
  line-height: 1.3;
  color: var(--theme-heading);
  margin-bottom: var(--space-sm);
}

h4, .h4 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  line-height: 1.4;
  color: var(--theme-heading);
  margin-bottom: var(--space-sm);
}

h5, .h5 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.5;
  color: var(--theme-heading);
  margin-bottom: var(--space-xs);
}

h6, .h6 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  line-height: 1.6;
  color: var(--theme-heading);
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: var(--space-md);
  color: var(--theme-text-secondary);
  max-width: 65ch;
}

.lead {
  font-size: clamp(var(--font-size-lg), 2.5vw, var(--font-size-xl));
  font-weight: 500;
  line-height: 1.6;
  color: var(--theme-text-secondary);
  margin-bottom: var(--space-lg);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  background: var(--primary-gradient);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.3s ease;
  border: 2px solid transparent;
}

.skip-link:focus {
  top: var(--space-md);
  outline: 3px solid var(--theme-primary);
  outline-offset: 2px;
}

/* Focus Styles */
:focus-visible {
  outline: 3px solid var(--theme-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.keyboard-navigation :focus-visible {
  outline-width: 3px;
  outline-style: solid;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --theme-border: #000000;
    --glass-border: #000000;
    --theme-text: #000000;
    --theme-text-secondary: #000000;
  }
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 480px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-2xl);
  }
}

/* Content Wrapper */
.content-wrapper {
  flex: 1 0 auto;
  padding-top: 90px;
  min-height: calc(100vh - 400px);
  position: relative;
  z-index: 1;
}

#main-content {
  outline: none;
  padding: var(--space-xl) 0;
}

/* ============================================
   NAVIGATION - GLASS HEADER
   ============================================ */

#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--theme-header-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--theme-card-shadow);
  transition: var(--transition-smooth);
  padding: var(--space-sm) 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 !important;
  height: 70px;
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.navbar-brand img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

/* Nav Links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--theme-text) !important;
  text-decoration: none;
  font-weight: 600;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  position: relative;
  background: transparent;
  border: 2px solid transparent;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link:focus {
  background: var(--theme-primary-light);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--theme-primary) !important;
}

/* Mobile Menu Toggle */
.navbar-toggler {
  display: none;
  background: var(--theme-card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--theme-card-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.navbar-toggler:hover {
  border-color: var(--theme-primary);
  transform: translateY(-2px);
}

/* ============================================
   GLASS CARDS & SURFACES
   ============================================ */

.glass-card {
  background: var(--theme-card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--theme-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--glass-inset-shadow);
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(var(--theme-primary-rgb), 0.3);
}

.glass-card-primary {
  background: rgba(var(--theme-primary-rgb), 0.12);
  border-color: rgba(var(--theme-primary-rgb), 0.25);
}

.glass-card-secondary {
  background: rgba(var(--theme-secondary-rgb), 0.12);
  border-color: rgba(var(--theme-secondary-rgb), 0.25);
}

/* ============================================
   BUTTONS - MODERN GLASS MORPHISM
   ============================================ */

.glass-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: var(--theme-card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--theme-card-border);
  border-radius: var(--radius-md);
  color: var(--theme-text);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.5;
  min-height: 48px;
}

.glass-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.glass-button:hover::before {
  left: 100%;
}

.glass-button:hover,
.glass-button:focus {
  background: var(--theme-primary-light);
  border-color: var(--theme-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--theme-primary-rgb), 0.15);
}

.glass-button:active {
  transform: translateY(-1px);
  transition: var(--transition-snappy);
}

/* Button Variants */
.glass-button-primary {
  background: var(--primary-gradient);
  color: white;
  border: none;
  box-shadow: 0 8px 20px rgba(var(--theme-primary-rgb), 0.25);
}

.glass-button-primary:hover,
.glass-button-primary:focus {
  background: var(--primary-gradient);
  filter: brightness(1.1);
  box-shadow: 0 15px 35px rgba(var(--theme-primary-rgb), 0.35);
  transform: translateY(-2px);
}

.glass-button-secondary {
  background: var(--secondary-gradient);
  color: white;
  border: none;
  box-shadow: 0 8px 20px rgba(var(--theme-secondary-rgb), 0.25);
}

.glass-button-secondary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.glass-button-outline {
  background: transparent;
  border: 2px solid var(--theme-primary);
  color: var(--theme-primary);
}

.glass-button-outline:hover {
  background: var(--theme-primary);
  color: white;
}

/* Button Sizes */
.glass-button-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--font-size-lg);
  min-height: 56px;
}

.glass-button-sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-sm);
  min-height: 40px;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */

.glass-form-control {
  width: 100%;
  padding: var(--space-md);
  background: var(--theme-card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--theme-border);
  border-radius: var(--radius-md);
  color: var(--theme-text);
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  transition: var(--transition-smooth);
  line-height: 1.5;
}

.glass-form-control:focus {
  outline: none;
  border-color: var(--theme-primary);
  background: var(--theme-primary-light);
  box-shadow: 0 0 0 3px rgba(var(--theme-primary-rgb), 0.1);
}

.glass-form-control::placeholder {
  color: var(--form-placeholder-color);
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(var(--theme-primary-rgb), 0);
  }
  50% {
    box-shadow: 0 0 30px rgba(var(--theme-primary-rgb), 0.3);
  }
}

@keyframes value-change {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.value-changing {
  animation: value-change 0.3s ease-in-out;
}

/* Staggered Animation for Lists */
.stagger-animate > * {
  opacity: 0;
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.stagger-animate > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animate > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animate > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animate > *:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   FOOTER - MODERN DESIGN
   ============================================ */

.site-footer {
  background: var(--theme-footer-bg);
  color: #e2e8f0;
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: auto;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--theme-primary), transparent);
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: var(--space-lg);
  transition: var(--transition-smooth);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.site-footer h5 {
  color: white;
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.site-footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
  padding: var(--space-xs) 0;
}

.site-footer a:hover {
  color: white;
  transform: translateX(3px);
}

.site-footer p {
  color: #94a3b8;
}

.site-footer li {
  color: #cbd5e1;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: white;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--theme-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--theme-primary-rgb), 0.3);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.newsletter-form .newsletter-input {
  flex: 1;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: white;
  font-family: var(--font-sans);
  transition: var(--transition-smooth);
}

.newsletter-form .newsletter-input:focus {
  outline: none;
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 3px rgba(var(--theme-primary-rgb), 0.2);
}

.newsletter-form .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .newsletter-button {
  background: var(--secondary-gradient);
  color: white;
  border: none;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.newsletter-form .newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--theme-secondary-rgb), 0.3);
}

/* Legal Disclaimer */
.legal-disclaimer {
  background: rgba(var(--theme-primary-rgb), 0.1);
  color: var(--theme-text);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--theme-border);
  font-size: var(--font-size-sm);
  text-align: center;
}

.legal-disclaimer strong {
  color: var(--theme-primary);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Mobile First (320px+) */
@media (max-width: 767px) {
  /* Navigation Mobile */
  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-collapse {
    position: fixed;
    top: 70px;
    left: 1rem;
    right: 1rem;
    background: var(--theme-header-bg);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border: 1px solid var(--theme-card-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: 0;
    box-shadow: var(--glass-shadow);
    z-index: 999;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
  }

  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-nav {
    flex-direction: column;
    gap: var(--space-xs);
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: center;
    padding: var(--space-md);
    background: var(--theme-card-bg);
    border: 1px solid var(--theme-card-border);
  }

  /* Footer Mobile */
  .site-footer {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  /* Typography Adjustments */
  h1, .h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  h2, .h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

/* Tablet (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .content-wrapper {
    padding-top: 80px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  html {
    scroll-padding-top: 80px;
  }

  #mainHeader {
    padding: 0;
  }

  .navbar {
    height: 80px;
  }

  .navbar-brand img {
    height: 56px;
  }

  .navbar-nav {
    gap: var(--space-xs);
  }

  .nav-link {
    padding: var(--space-sm) var(--space-md);
  }

  .content-wrapper {
    padding-top: 80px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Spacing */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--space-xs) !important; }
.mt-2 { margin-top: var(--space-sm) !important; }
.mt-3 { margin-top: var(--space-md) !important; }
.mt-4 { margin-top: var(--space-lg) !important; }
.mt-5 { margin-top: var(--space-xl) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--space-xs) !important; }
.mb-2 { margin-bottom: var(--space-sm) !important; }
.mb-3 { margin-bottom: var(--space-md) !important; }
.mb-4 { margin-bottom: var(--space-lg) !important; }
.mb-5 { margin-bottom: var(--space-xl) !important; }

/* Text Colors */
.text-primary { color: var(--theme-primary) !important; }
.text-secondary { color: var(--theme-secondary) !important; }
.text-success { color: var(--theme-success) !important; }
.text-warning { color: var(--theme-warning) !important; }
.text-error { color: var(--theme-error) !important; }
.text-info { color: var(--theme-info) !important; }

/* Display */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }

/* Text Alignment */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* Visibility */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
