
:root {
  --primary: #1E293B;
  --secondary: #334155;
  --accent: #0EA5E9;
  --highlight: #38BDF8;
  --bg-dark: #0F172A;
  --bg-medium: #1E293B;
  --bg-light: #334155;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --border: #475569;
  --blueprint-grid: #1E40AF;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
}

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

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}


body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, var(--blueprint-grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-grid) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

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

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

img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

p {
  margin-bottom: 1.5rem;
}




.container {
  padding: 2rem 1rem;
}

.blueprint-container {
  background-color: var(--bg-medium);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blueprint-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background-color: var(--accent);
  border-radius: 4px 4px 0 0;
}

.blueprint-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border);
  color: var(--highlight);
}

.blueprint-title::before {
  content: '//';
  margin-right: 0.5rem;
  color: var(--accent);
}


.kpi-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.kpi-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kpi-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--highlight);
  margin: 0.5rem 0;
}

.kpi-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.navbar {
  background-color: var(--bg-medium);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.navbar-brand {
  height: 60px;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 100%;
  width: auto;
}

.nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link:focus, .nav-link.active {
  background-color: var(--bg-light);
  color: var(--highlight) !important;
}

.navbar-toggler {
  border-color: var(--border);
  color: var(--text-primary);
}

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


.hero {
  background-color: var(--bg-medium);
  padding: 3rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(14, 165, 233, 0.05), transparent);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.hero h1::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  background-color: var(--accent);
  margin-top: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 2rem;
}


.architecture-card {
  background-color: var(--bg-medium);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-body p {
  color: var(--text-primary);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--highlight);
}

.card-text {
  margin-bottom: 1rem;
  flex-grow: 1;
}

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

.key-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.key-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.key-features li i {
  color: var(--accent);
  margin-right: 0.5rem;
  min-width: 20px;
  text-align: center;
}


.gallery {
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 200px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.8);
  padding: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h5 {
  margin: 0;
  font-size: 1rem;
}

.gallery-caption p {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
}


.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background-color: var(--bg-light);
  color: var(--text-primary);
  padding: 1rem;
  border: none;
  width: 100%;
  text-align: left;
  border-radius: 4px;
  position: relative;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.faq-question:hover, .faq-question:focus {
  background-color: var(--secondary);
}

.faq-question::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1rem;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 1rem;
  background-color: var(--bg-medium);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 4px 4px;
}


.contact-form {
  background-color: var(--bg-medium);
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.form-label {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-control {
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 4px;
  padding: 0.75rem;
}

.form-control:focus {
  background-color: var(--bg-light);
  border-color: var(--accent);
  color: var(--text-primary);
  box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.25);
}

.form-check-input {
  background-color: var(--bg-light);
  border: 1px solid var(--border);
}

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

.form-check-label {
  color: var(--text-secondary);
}

textarea.form-control {
  min-height: 120px;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--highlight);
  border-color: var(--highlight);
  transform: translateY(-2px);
}

.btn-outline-primary {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-2px);
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


.footer {
  background-color: var(--bg-medium);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-title {
  color: var(--highlight);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

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

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

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

.footer-links a:hover {
  color: var(--highlight);
  text-decoration: none;
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-info i {
  color: var(--accent);
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.map-container {
  height: 250px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


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

.cookie-settings-modal .modal-content {
  background-color: var(--bg-medium);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.cookie-settings-modal .modal-header,
.cookie-settings-modal .modal-footer {
  border-color: var(--border);
}

.cookie-settings-modal .btn-close {
  filter: invert(1);
}

.cookie-category {
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1rem;
}

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

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

.form-switch .form-check-input {
  width: 2.5em;
  height: 1.25em;
}

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

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


.thank-you-section {
  text-align: center;
  padding: 4rem 0;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}


.legal-content {
  padding: 2rem 0;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--highlight);
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-size: 1.25rem;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-date {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
  display: block;
}


@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .kpi-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .container {
    padding: 1.5rem 1rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .kpi-dashboard {
    grid-template-columns: 1fr;
  }
  
  .kpi-card {
    margin-bottom: 1rem;
  }
  
  .blueprint-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}


@keyframes blueprint-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

.blueprint-animate {
  animation: blueprint-pulse 2s infinite;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}