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

:root {
  --primary-bg: #0F0F1A;
  --secondary-bg: #1A1A2E;
  --primary-text: #F5F5F8;
  --secondary-text: #C4C4D2;
  --accent-pink: #FF318C;
  --accent-purple: #7957FB;
  --accent-cyan: #18E6D6;
  --gradient-pink-purple: linear-gradient(135deg, #FF318C 0%, #7957FB 100%);
  --gradient-purple-cyan: linear-gradient(135deg, #7957FB 0%, #18E6D6 100%);
  --card-bg: rgba(26, 26, 46, 0.85);
  --form-bg: rgba(15, 15, 26, 0.9);
  --header-height: 80px;
  --transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  background: var(--gradient-pink-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--primary-text);
  position: relative;
  margin-bottom: 2rem;
}

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

h3 {
  font-size: 1.5rem;
  color: var(--accent-cyan);
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-pink-purple);
  color: var(--primary-text);
}

.btn-primary:hover, .btn-primary:focus {
  background: var(--gradient-purple-cyan);
  box-shadow: 0 0 15px rgba(255, 49, 140, 0.5);
  color: var(--primary-text);
  transform: translateY(-2px);
}

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

.btn-secondary:hover, .btn-secondary:focus {
  background: var(--accent-cyan);
  color: var(--primary-bg);
  box-shadow: 0 0 15px rgba(24, 230, 214, 0.5);
  transform: translateY(-2px);
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  color: var(--primary-text);
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-pink-purple);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
  width: 100%;
}

.cookie-settings-btn {
  margin-left: 20px;
  padding: 8px 15px;
  border-radius: 4px;
  background: transparent;
  color: var(--primary-text);
  border: 1px solid var(--accent-purple);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
}

.cookie-settings-btn:hover {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-text);
  transition: var(--transition);
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--header-height) + 2rem) 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 30px;
  grid-auto-flow: dense;
}

.card {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(121, 87, 251, 0.2);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  border-color: var(--accent-purple);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gradient-pink-purple);
  transition: var(--transition);
}

.card:hover::before {
  height: 100%;
}

.card h3 {
  margin-bottom: 1rem;
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}


.simulator-container {
  background: var(--secondary-bg);
  padding: 40px;
  border-radius: 12px;
  margin: 4rem 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(121, 87, 251, 0.3);
}

.simulator-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.simulator-header h2 {
  display: inline-block;
}

.simulator-header h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.simulator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.simulator-control {
  margin-bottom: 20px;
}

.simulator-control label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-cyan);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
}

.simulator-control input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  background: rgba(121, 87, 251, 0.3);
  border-radius: 4px;
  outline: none;
}

.simulator-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-pink);
  cursor: pointer;
  transition: var(--transition);
}

.simulator-control input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-pink);
  cursor: pointer;
  transition: var(--transition);
}

.simulator-control input[type="range"]::-webkit-slider-thumb:hover {
  background: var(--accent-cyan);
}

.simulator-control input[type="range"]::-moz-range-thumb:hover {
  background: var(--accent-cyan);
}

.simulator-control input[type="number"] {
  width: 100%;
  padding: 10px;
  background: var(--primary-bg);
  border: 1px solid rgba(121, 87, 251, 0.5);
  border-radius: 4px;
  color: var(--primary-text);
  font-family: 'JetBrains Mono', monospace;
}

.draggable-container {
  background: var(--primary-bg);
  padding: 15px;
  border-radius: 8px;
  min-height: 200px;
  border: 1px dashed rgba(121, 87, 251, 0.5);
}

.draggable-item {
  background: var(--card-bg);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 4px;
  cursor: grab;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.draggable-item:hover {
  background: rgba(121, 87, 251, 0.2);
}

.draggable-item.sortable-chosen {
  background: var(--accent-purple);
  opacity: 0.8;
}

.results-container {
  background: var(--primary-bg);
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
  border: 1px solid rgba(121, 87, 251, 0.5);
}

.results-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(121, 87, 251, 0.3);
}

.results-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

.results-value {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-cyan);
  font-weight: 500;
}

.copy-results {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  margin-top: 20px;
  background: transparent;
  color: var(--primary-text);
  border: 1px solid var(--accent-cyan);
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  cursor: pointer;
  transition: var(--transition);
}

.copy-results:hover {
  background: var(--accent-cyan);
  color: var(--primary-bg);
}

.copy-results i {
  margin-right: 8px;
}


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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  display: inline-block;
}

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

.icon-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.icon-box i {
  font-size: 2.5rem;
  margin-right: 1.5rem;
  color: var(--accent-pink);
}

.icon-box-content h3 {
  margin-bottom: 0.8rem;
}


.contact-form-container {
  background: var(--form-bg);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(121, 87, 251, 0.3);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-text);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background: rgba(15, 15, 26, 0.7);
  border: 1px solid rgba(121, 87, 251, 0.5);
  border-radius: 4px;
  color: var(--primary-text);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(24, 230, 214, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--secondary-text);
}

.iti {
  width: 100%;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 26, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--secondary-bg);
  max-width: 500px;
  width: 90%;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent-purple);
  text-align: center;
}

.modal-header {
  margin-bottom: 20px;
}

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

.modal-footer {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

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

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


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary-bg);
  padding: 20px;
  z-index: 1999;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(121, 87, 251, 0.5);
  display: none;
}

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

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

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

.cookie-settings-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 26, 0.9);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}

.settings-content {
  background: var(--secondary-bg);
  max-width: 600px;
  width: 90%;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent-purple);
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(121, 87, 251, 0.3);
}

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

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

.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: var(--primary-bg);
  transition: var(--transition);
  border-radius: 34px;
  border: 1px solid rgba(121, 87, 251, 0.5);
}

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

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

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

.settings-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}


.map-container {
  height: 400px;
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(121, 87, 251, 0.3);
}

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


.footer {
  background: var(--secondary-bg);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(121, 87, 251, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 3rem;
}

.footer-info h3 {
  margin-bottom: 1.5rem;
}

.footer-contact {
  margin-top: 2rem;
}

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

.contact-item i {
  margin-right: 15px;
  color: var(--accent-cyan);
  font-size: 1.2rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer-links h3 {
  margin-bottom: 1.2rem;
}

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

.footer-links li:not(:last-child) {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(121, 87, 251, 0.3);
}

.copyright {
  color: var(--secondary-text);
  font-size: 0.9rem;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

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

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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


.thank-you-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 0;
}

.thank-you-content {
  max-width: 700px;
  animation: fadeInUp 0.8s ease;
}

.thank-you-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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


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

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

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  margin-bottom: 1.5rem;
}

.policy-section h2::after {
  width: 40px;
}

.policy-section h3 {
  margin: 1.5rem 0 1rem;
}

.policy-list {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.policy-list li {
  margin-bottom: 0.8rem;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.policy-table th, .policy-table td {
  padding: 10px 15px;
  border: 1px solid rgba(121, 87, 251, 0.3);
}

.policy-table th {
  background-color: rgba(121, 87, 251, 0.1);
  text-align: left;
  font-weight: 600;
}

.policy-table tr:nth-child(even) {
  background-color: rgba(15, 15, 26, 0.5);
}


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


@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    min-height: 90vh;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .cookie-settings-btn {
    margin: 25px 0 0;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1, .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .simulator-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .settings-footer {
    flex-direction: column;
    gap: 15px;
  }
  
  .settings-footer .btn {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .thank-you-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .container {
    width: 95%;
    padding: 0 10px;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .cookie-banner {
    padding: 15px;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .thank-you-icon {
    font-size: 4rem;
  }
}