
:root {
  --primary: #1A2C42;
  --secondary: #C0C0C0;
  --accent: #36B37E;
  --metallic: #D7D7D7;
  --metallic-highlight: #E8E8E8;
  --background: #F8F9FA;
  --text: #333333;
  --light-text: #FFFFFF;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Karla', sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Spectral', serif;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--primary);
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  transition: var(--transition);
  font-weight: 500;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--light-text);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent);
}

.btn-secondary {
  background-color: var(--primary);
  color: var(--light-text);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--primary);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--light-text);
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}


.metallic-card {
  background: linear-gradient(145deg, var(--metallic) 0%, var(--metallic-highlight) 100%);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.metallic-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: var(--transition);
  opacity: 0;
}

.metallic-card:hover::before {
  animation: shine 1.5s ease-in-out;
}

@keyframes shine {
  0% {
    left: -100%;
    opacity: 0.5;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.metallic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.metallic-card .card-title {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.metallic-card .card-text {
  color: var(--text);
}


.navbar {
  background: rgba(26, 44, 66, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: var(--transition);
}

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

.navbar-nav .nav-link {
  color: var(--light-text);
  padding: 0.5rem 1rem;
  font-weight: 500;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  color: var(--light-text);
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 44, 66, 0.95), rgba(26, 44, 66, 0.7));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


.about-img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
}


.services-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}


.stats-container {
  background: linear-gradient(145deg, var(--primary) 0%, #2A3C52 100%);
  padding: 4rem 0;
  color: var(--light-text);
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 300;
}


.contact-form {
  background-color: var(--light-text);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-control {
  border: 1px solid var(--metallic);
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(54, 179, 126, 0.25);
}

.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.form-check-label a {
  text-decoration: underline;
}


.footer {
  background-color: var(--primary);
  color: var(--light-text);
  padding: 4rem 0 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
}

.footer-links h5 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links ul {
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--metallic);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 1rem;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}


.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: linear-gradient(145deg, var(--metallic) 0%, var(--metallic-highlight) 100%);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.cookie-consent-content {
  margin-bottom: 1.5rem;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-settings-modal {
  background-color: var(--light-text);
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.cookie-settings-modal .modal-header {
  border-bottom: 1px solid var(--metallic);
  padding: 1.5rem;
}

.cookie-settings-modal .modal-body {
  padding: 1.5rem;
}

.cookie-settings-modal .modal-footer {
  border-top: 1px solid var(--metallic);
  padding: 1.5rem;
}

.cookie-category {
  margin-bottom: 2rem;
}

.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-category-title {
  font-weight: 700;
  margin-bottom: 0;
}

.cookie-category-toggle .form-check-input {
  width: 3rem;
  height: 1.5rem;
}

.cookie-category-description {
  color: var(--text);
  font-size: 0.9rem;
}


.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 5;
}



.principles-hero {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--light-text);
}

.principles-card {
  margin-bottom: 2rem;
  height: 100%;
}

.principles-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}


.process-step {
  display: flex;
  margin-bottom: 3rem;
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-right: 1.5rem;
}

.process-content {
  flex: 1;
}

.case-study {
  margin-bottom: 3rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.case-study-img {
  height: 250px;
  object-fit: cover;
}

.case-study-content {
  padding: 2rem;
  background-color: var(--light-text);
}


.workflow-diagram {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
  display: block;
}

.step-card {
  height: 100%;
  margin-bottom: 2rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--light-text);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}


.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-right: 1rem;
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}


.thanks-container {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.thanks-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}


.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.policy-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.policy-date {
  font-style: italic;
  color: var(--text);
  margin-bottom: 2rem;
}


@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .process-number {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 6rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .cookie-consent-actions {
    flex-direction: column;
  }
  
  .cookie-consent-actions .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .thanks-title {
    font-size: 2.2rem;
  }
}