
:root {
  --primary: #1e3a8a;
  --primary-light: #3b82f6;
  --secondary: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;
  --dark: #1f2937;
  --light: #f3f4f6;
  --bg-light: #f9fafb;
  --bg-primary-light: #eff6ff;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

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


.full-bleed {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.uk-section-primary {
  background-color: var(--primary);
}

.uk-section-secondary {
  background-color: var(--secondary);
}

.uk-section-muted {
  background-color: var(--bg-light);
}

.uk-section-primary-light {
  background-color: var(--bg-primary-light);
}


.uk-navbar-container:not(.uk-navbar-transparent) {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.uk-navbar-nav > li > a {
  color: var(--dark);
  font-weight: 600;
  position: relative;
  transition: color 0.2s ease;
}

.uk-navbar-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.uk-navbar-nav > li:hover > a::after,
.uk-navbar-nav > li.uk-active > a::after {
  transform: scaleX(1);
}

.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li.uk-active > a {
  color: var(--primary);
}


.uk-button-primary {
  background-color: var(--primary);
  transition: all 0.2s ease;
}

.uk-button-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.uk-button-secondary {
  background-color: var(--secondary);
  transition: all 0.2s ease;
}

.uk-button-secondary:hover {
  background-color: #e29000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}


.hero-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.data-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.data-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.data-card-header {
  padding: 15px 20px;
  border-bottom: 1px solid var(--light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.data-card-body {
  padding: 20px;
}

.data-card-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--light);
  background-color: var(--bg-light);
}


.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  color: var(--dark);
  font-weight: 600;
}


.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--light);
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--secondary);
  border: 2px solid white;
}


.uk-input,
.uk-textarea,
.uk-select {
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.uk-input:focus,
.uk-textarea:focus,
.uk-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}


.contact-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}


.footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer a {
  color: #d1d5db;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: white;
  text-decoration: none;
}

.footer-heading {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-contact li {
  margin-bottom: 10px;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
}

.cookie-settings-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  padding: 30px;
  display: none;
}

.cookie-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}


.kpi-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 20px;
}

.kpi-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.kpi-label {
  font-size: 0.875rem;
  color: var(--dark);
  opacity: 0.8;
}

.chart-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 20px;
  height: 300px;
}


.process-map {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 20px;
}

.process-step {
  background-color: var(--bg-light);
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 10px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--bg-light);
}

.process-step:last-child::after {
  display: none;
}


@media (max-width: 960px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    padding: 30px;
  }
  
  .stat-value {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-content {
    padding: 20px;
  }
  
  .stat-value {
    font-size: 1.75rem;
  }
  
  .uk-grid-match > .uk-grid-margin {
    margin-top: 20px;
  }
}


.iti {
  width: 100%;
}


.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

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


[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}


.uk-modal-dialog {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.uk-modal-header {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: var(--primary);
  color: white;
}

.uk-modal-title {
  color: white;
}

.uk-modal-footer {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}


.custom-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.custom-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.btn-hover-effect {
  position: relative;
  overflow: hidden;
}

.btn-hover-effect:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn-hover-effect:hover:after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  20% {
    transform: scale(25, 25);
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}


.loading {
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.loading::before {
  content: '';
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  border: 3px solid var(--primary-light);
  border-top: 3px solid transparent;
  border-radius: 50%;
  z-index: 11;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}