
:root {
  --primary: #1D1E2C;
  --secondary: #6D5C7D;
  --accent: #D4AF37;
  --bg-dark: #121219;
  --bg-light: #2A2B3D;
  --text-light: #F0F0F5;
  --text-muted: #9A9AAF;
  --alert: #E64C66;
  --success: #39A67F;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.2);
  --z-overlay: 20;
  --z-modal: 50;
  --z-top: 40;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.top-bar, .top-bar ul {
  background-color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  margin-top: 0;
  color: var(--text-light);
}

li {
  color: var(--text-light);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

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

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

.iti {
  width: 100%;
}


.container {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1200px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

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

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 25, 0.7);
  z-index: 1;
}

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


.grid-container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.grid-x {
  margin-left: -1rem;
  margin-right: -1rem;
}

.cell {
  padding-left: 1rem;
  padding-right: 1rem;
}


.layer {
  position: relative;
  z-index: 1;
}

.layer-top {
  z-index: 3;
}

.layer-middle {
  z-index: 2;
}

.layer-bottom {
  z-index: 1;
}

.overlap-section {
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.overlap-card {
  transform: translateY(-30px);
}

.overlap-image {
  position: relative;
  margin: -20px;
  z-index: 1;
}

.floating-element {
  position: relative;
  transition: transform 0.5s ease;
}

.floating-element:hover {
  transform: translateY(-10px);
}


.top-bar {
  background-color: var(--bg-dark);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: var(--z-top);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.top-bar.scrolled {
  padding: 10px 0;
  background-color: rgba(18, 18, 25, 0.95);
}

.top-bar-left img {
  height: 40px;
  transition: var(--transition);
}

.top-bar.scrolled .top-bar-left img {
  height: 35px;
}

.menu {
  background: transparent;
}

.menu a {
  color: var(--text-light);
  font-weight: 400;
  padding: 0.7rem 1rem;
  position: relative;
}

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

.menu a:hover:after,
.menu a.active:after {
  width: 70%;
}

.menu a.active {
  color: var(--accent);
}

.menu-icon {
  background-color: transparent;
}

.menu-icon::after,
.menu-icon::before,
.menu-icon span {
  background-color: var(--text-light);
  transition: var(--transition);
}

.menu-icon:hover::after,
.menu-icon:hover::before,
.menu-icon:hover span {
  background-color: var(--accent);
}


.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--bg-light);
  z-index: var(--z-modal);
  transition: var(--transition);
  padding: 80px 20px 20px;
  box-shadow: var(--shadow);
  overflow-y: auto;
}

.mobile-menu.is-open {
  right: 0;
}

.mobile-menu .close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--text-light);
  font-size: 1.5rem;
}

.mobile-menu .menu {
  display: flex;
  flex-direction: column;
}

.mobile-menu .menu a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}


.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 0;
  padding-top: 70px;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

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

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  opacity: 0.9;
}


.card {
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  border: none;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-light);
}

.card-divider {
  background-color: var(--primary);
  padding: 1.5rem;
}

.card-section {
  padding: 1.5rem;
}

.card-image {
  height: 200px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--bg-light) 0%, transparent 100%);
}


.button {
  background-color: var(--accent);
  color: var(--bg-dark);
  border-radius: 4px;
  padding: 0.85em 1.5em;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid var(--accent);
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  transition: var(--transition);
  z-index: -1;
}

.button:hover {
  color: var(--accent);
}

.button:hover::before {
  left: 0;
}

.button.hollow {
  background-color: transparent;
  color: var(--accent);
}

.button.hollow:hover {
  background-color: var(--accent);
  color: var(--bg-dark);
}

.button.hollow:hover::before {
  left: -100%;
}


form {
  margin-bottom: 2rem;
}

label {
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  border-radius: 4px;
  padding: 0.85rem;
  transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-container label {
  font-size: 0.9rem;
  line-height: 1.4;
}


.feature {
  text-align: center;
  margin-bottom: 40px;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
  transition: var(--transition);
}

.feature:hover .feature-icon {
  transform: scale(1.2);
}


.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.process-step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--bg-light);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}


.testimonial {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  margin-bottom: 30px;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

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

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}


.trust-badge {
  text-align: center;
  margin-bottom: 30px;
}

.trust-badge-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}


.footer {
  background-color: var(--primary);
  padding: 60px 0 20px;
}

.footer-title {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

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

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

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

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

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

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

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

.footer-contact i {
  margin-right: 10px;
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}


.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-light);
  padding: 20px;
  box-shadow: var(--shadow);
  z-index: var(--z-top);
  transition: var(--transition);
}

.cookie-consent.active {
  bottom: 0;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  margin-right: 20px;
  margin-bottom: 10px;
}

.cookie-text h4 {
  margin-bottom: 0.5rem;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-settings-modal.active {
  display: flex;
}

.cookie-settings-content {
  background-color: var(--bg-light);
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 30px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-settings-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-settings-close:hover {
  color: var(--accent);
}

.cookie-settings-header {
  margin-bottom: 20px;
}

.cookie-settings-header h3 {
  margin-bottom: 10px;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

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

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

.cookie-category-description {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: var(--text-light);
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--accent);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.cookie-settings-footer {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  background-color: var(--bg-light);
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
  padding: 30px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--accent);
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideLeft {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  animation: slideUp 1s ease forwards;
}

.animate-slide-down {
  animation: slideDown 1s ease forwards;
}

.animate-slide-left {
  animation: slideLeft 1s ease forwards;
}

.animate-slide-right {
  animation: slideRight 1s ease forwards;
}


.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-900 { animation-delay: 0.9s; }
.delay-1000 { animation-delay: 1s; }


.map-container {
  height: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}


@media screen and (max-width: 1023px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .overlap-section {
    margin-top: -50px;
  }
  
  .section {
    padding: 60px 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero {
    min-height: 400px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .overlap-section {
    margin-top: 0;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .process-step {
    padding-left: 60px;
  }
  
  .process-step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 639px) {
  .grid-margin-x > .cell {
    margin-bottom: 30px;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons .button {
    width: 100%;
    margin-bottom: 10px;
  }
}