/* CSS Variables for Neo-Brutalism Corporate Design */
:root {
  /* Primary Colors */
  --primary-color: #2563eb;
  --secondary-color: #3b82f6;
  --background-color: #ffffff;
  --footer-bg-color: #1f2937;
  --button-color: #2563eb;
  
  /* Section Backgrounds */
  --section-bg-1: #f8fafc;
  --section-bg-2: #ffffff;
  --section-bg-3: #f1f5f9;
  
  /* Neo-Brutalism Accent Colors */
  --accent-yellow: #fbbf24;
  --accent-red: #ef4444;
  --accent-green: #10b981;
  --accent-orange: #f59e0b;
  
  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-secondary: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Border Radius */
  --radius-sharp: 0px;
  --radius-soft: 4px;
  
  /* Border Thickness */
  --border-thick: 3px;
  --border-bold: 4px;
  
  /* Shadows (Neo-Brutalism Style) */
  --shadow-offset: 4px;
  --shadow-color: #000000;
  --shadow-soft: 2px 2px 0 var(--shadow-color);
  --shadow-medium: 4px 4px 0 var(--shadow-color);
  --shadow-bold: 6px 6px 0 var(--shadow-color);
  
  /* Text Shadows for Hierarchy */
  --text-shadow-subtle: 1px 1px 0 rgba(0,0,0,0.1);
  --text-shadow-bold: 2px 2px 0 rgba(0,0,0,0.2);
}

/* Base Reset and Typography */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--background-color);
  color: #1f2937;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

/* Headings - Bold Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-md) 0;
  text-shadow: var(--text-shadow-bold);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  margin: 0 0 var(--space-md) 0;
  line-height: 1.7;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
  filter: brightness(0.9);
}

/* Layout Containers */
.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.container-fluid {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Section Styles with Distinct Backgrounds */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section--primary-bg {
  background-color: var(--section-bg-1);
}

.section--secondary-bg {
  background-color: var(--section-bg-2);
}

.section--tertiary-bg {
  background-color: var(--section-bg-3);
}

.section--hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--section-bg-1) 0%, var(--section-bg-3) 100%);
  position: relative;
}

.section--hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.03) 50%, transparent 100%),
    radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Neo-Brutalism Cards */
.card {
  background: var(--background-color);
  border: var(--border-thick) solid #000;
  border-radius: var(--radius-soft);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
  transition: all 0.2s ease;
  position: relative;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--shadow-color);
}

.card--highlighted {
  background: var(--primary-color);
  color: white;
  border-color: var(--shadow-color);
}

.card--accent {
  background: var(--accent-yellow);
  color: #000;
  border-color: var(--shadow-color);
}

/* Neo-Brutalism Buttons */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border: var(--border-thick) solid #000;
  border-radius: var(--radius-soft);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  background: var(--button-color);
  color: white;
  box-shadow: var(--shadow-medium);
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--shadow-color);
  filter: brightness(1.1);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.btn--secondary {
  background: var(--secondary-color);
}

.btn--outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn--accent {
  background: var(--accent-orange);
  color: white;
}

.btn--large {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
}

.btn--full-width {
  width: 100%;
  display: block;
}

/* Navigation - Bold Corporate Style */
.navbar {
  background: var(--background-color);
  border-bottom: var(--border-bold) solid #000;
  padding: var(--space-sm) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.navbar__brand {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  text-shadow: var(--text-shadow-bold);
}

.navbar__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-lg);
}

.navbar__link {
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border: 2px solid transparent;
  border-radius: var(--radius-soft);
  transition: all 0.2s ease;
  text-decoration: none;
}

.navbar__link:hover {
  background: var(--section-bg-1);
  border-color: var(--primary-color);
  text-decoration: none;
}

/* Hero Section Typography */
.hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: var(--text-shadow-bold);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: var(--space-xl);
  font-weight: 500;
  max-width: 600px;
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

/* Feature Grid - Corporate Layout */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-card {
  background: var(--section-bg-2);
  border: var(--border-thick) solid #000;
  border-radius: var(--radius-soft);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
}

.feature-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: calc(var(--shadow-offset) + 4px) calc(var(--shadow-offset) + 4px) 0 var(--shadow-color);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  background: var(--primary-color);
  border: var(--border-thick) solid #000;
  border-radius: var(--radius-sharp);
  margin: 0 auto var(--space-md) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-soft);
}

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

.feature-card__text {
  color: #6b7280;
  line-height: 1.6;
}

/* Forms - Neo-Brutalism Style */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: #374151;
  font-family: var(--font-secondary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-sm);
  border: var(--border-thick) solid #000;
  border-radius: var(--radius-soft);
  font-size: 1rem;
  font-family: var(--font-primary);
  background: var(--background-color);
  box-shadow: inset 2px 2px 0 rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 
    inset 2px 2px 0 rgba(0,0,0,0.1),
    0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer - Dark Bold Design */
.footer {
  background: var(--footer-bg-color);
  color: white;
  border-top: var(--border-bold) solid #000;
  padding: var(--space-2xl) 0 var(--space-lg) 0;
  margin-top: var(--space-2xl);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer__section h4 {
  color: var(--accent-yellow);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: var(--space-xs);
}

.footer__links a {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.footer__links a:hover {
  color: white;
  text-decoration: underline;
}

.footer__bottom {
  border-top: 2px solid #374151;
  padding-top: var(--space-md);
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.125rem;
  }
  
  .navbar__menu {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .btn--large {
    padding: var(--space-sm) var(--space-lg);
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: var(--space-sm) !important;
    padding-right: var(--space-sm) !important;
  }
  
  .hero__content {
    padding: 0 var(--space-sm);
  }
  
  .card {
    padding: var(--space-md);
  }
  
  h1 { font-size: 2rem; }
  .hero__title { font-size: 2rem; }
}

/* Animation and Interaction Enhancements */
@keyframes pulse-bold {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.btn--pulse:hover {
  animation: pulse-bold 0.6s ease-in-out infinite alternate;
}

/* Focus States for Accessibility */
.btn:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus,
.navbar__link:focus {
  outline: 3px solid var(--accent-yellow);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  .section {
    page-break-inside: avoid;
  }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}