
:root {
  --primary-bg: #0A0F1D;
  --secondary-bg: #121A2E;
  --primary-gold: #D4AF37;
  --secondary-gold: #B8860B;
  --gold-accent: #FFD700;
  --gold-highlight: #F5F5DC;
  --text-primary: #FFFFFF;
  --text-secondary: #E5E5E5;
  --dark-accent: #000000;
  --error-color: #D32F2F;
}

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

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

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--gold-accent));
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--gold-accent);
  text-decoration: none;
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.justify-content-lg-end {
  flex-direction: column;
  gap: 5px;
}

.btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--dark-accent);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--secondary-gold);
  border-color: var(--secondary-gold);
  color: var(--dark-accent);
}

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

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--primary-gold);
  color: var(--dark-accent);
}

.section {
  padding: 6rem 0;
  position: relative;
}

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


.navbar {
  background-color: rgba(10, 15, 29, 0.95);
  padding: 1rem 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background-color: rgba(10, 15, 29, 0.98);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  padding: 0.75rem 0;
}

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

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

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link:focus::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 50%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary-gold);
}

.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%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-bg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 15, 29, 0.9), rgba(10, 15, 29, 0.7));
  z-index: 1;
}

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

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

.hero-title {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}


.service-card {
  background-color: var(--secondary-bg);
  padding: 2.5rem;
  height: 100%;
  border-left: 3px solid var(--primary-gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

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


.methodology-step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.methodology-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8px;
  width: 2px;
  height: 100%;
  background-color: var(--primary-gold);
}

.methodology-step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-accent);
  font-weight: 700;
  font-size: 0.75rem;
}

.methodology-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
}


.advantage-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.advantage-icon {
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-right: 1rem;
  min-width: 2rem;
  text-align: center;
}


.case-study {
  background-color: var(--secondary-bg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-gold);
}

.case-result {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--primary-gold);
  font-weight: 500;
  margin-top: 1rem;
}


.audit-promo {
  background-color: var(--secondary-bg);
  padding: 4rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.audit-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
  z-index: 0;
}


.contact-form {
  background-color: var(--secondary-bg);
  padding: 3rem;
  position: relative;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: 0;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-gold);
  color: var(--text-primary);
  box-shadow: none;
}

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

.form-check-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.5);
}

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

.form-check-label {
  font-size: 0.875rem;
}


.footer {
  background-color: var(--secondary-bg);
  padding: 4rem 0 2rem;
  position: relative;
}

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

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
}

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

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

.footer-links a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-links a:hover, .footer-links a:focus {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-contact-icon {
  color: var(--primary-gold);
  margin-right: 1rem;
  min-width: 1.5rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}


.modal-content {
  background-color: var(--secondary-bg);
  border: 1px solid var(--primary-gold);
}

.modal-header {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-title {
  color: var(--primary-gold);
}

.modal-body {
  padding: 2rem;
}

.close {
  color: var(--primary-gold);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-bg);
  padding: 1.5rem;
  z-index: 9999;
  border-top: 1px solid var(--primary-gold);
  display: none;
}

.cookie-settings-modal .modal-dialog {
  max-width: 700px;
}

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

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

.cookie-category-title {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.form-switch .form-check-input {
  width: 3em;
  height: 1.5em;
}

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


.page-header {
  position: relative;
  padding: 8rem 0 4rem;
  background-color: var(--primary-bg);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 15, 29, 0.9), rgba(10, 15, 29, 0.7));
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

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

.page-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 0.875rem;
}

.breadcrumb-item a {
  color: var(--text-secondary);
}

.breadcrumb-item.active {
  color: var(--primary-gold);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-secondary);
}


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

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


.iti {
  width: 100%;
}


@media (max-width: 991.98px) {
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .navbar-collapse {
    background-color: var(--secondary-bg);
    padding: 1rem;
    margin-top: 0.5rem;
  }
  
  .navbar-dark .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }
  
  .navbar-dark .navbar-nav .nav-link::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .audit-promo {
    padding: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}