@charset "UTF-8";
/* ===== RESET AND BASE STYLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

:root {
  --primary-color: #279898;
  --secondary-color: #3D8BCD;
  --dark-color: #111D4A;
  --darker-color: #0A1333;
  --accent-color: #004E89;
  --light-color: #f9fafb;
  --text-color: #e6e6e6;
  --heading-color: #ffffff;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  --border-radius: 8px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  background-color: var(--darker-color);
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:%23279898;stop-opacity:1" /><stop offset="100%" style="stop-color:%233D8BCD;stop-opacity:1" /></linearGradient></defs><rect width="16" height="16" fill="url(%23grad)" /></svg>'), auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

section {
  padding: var(--spacing-lg) 0;
}

/* ===== HEADER AND NAVIGATION ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #091335;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.main-header.scrolled {
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 1 1 0%;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}
.logo-icon span {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.logo-text {
  font-family: "Orbitron", sans-serif;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-image {
  height: 40px;
  width: 90px;
  min-width: 90px;
}

@media screen and (max-width: 768px) {
  .nbv-cta-btn {
    display: none !important;
  }
}

.nav-main {
  display: flex;
  align-items: flex-start;
  flex: 0 0 auto;
}

.nav-list {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  height: 40px;
}

.nav-item {
  position: relative;
  height: 100%;
}

.nav-link {
  font-family: "Orbitron", sans-serif;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
  line-height: 1.2;
  height: 100%;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}
.nav-link:hover {
  color: var(--primary-color);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  position: relative;
  height: 100%;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 200px;
  background-color: var(--dark-color);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(46, 176, 176, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1000;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: var(--dark-color);
  border-top: 1px solid rgba(46, 176, 176, 0.2);
  border-left: 1px solid rgba(46, 176, 176, 0.2);
  transform: translateX(-50%) rotate(45deg);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-20px);
  pointer-events: auto;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.2s ease;
}
.dropdown-item:hover {
  background-color: rgba(46, 176, 176, 0.1);
  color: var(--primary-color);
  padding-left: 1.25rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ===== ANIMATIONS AND UTILITIES ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.fade-in-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-main {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--dark-color);
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 990;
  }
  .nav-main.open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .nav-item {
    width: 100%;
  }
  .nav-item:hover .dropdown-menu {
    transform: none;
    max-height: 500px;
  }
  .nav-link {
    display: block;
    padding: 1rem 0;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    transform: none;
    background-color: rgba(46, 176, 176, 0.05);
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin-top: 0.5rem;
    padding: 0;
    max-height: 0;
    overflow: hidden;
  }
  .dropdown-menu::before {
    display: none;
  }
  .dropdown-item {
    padding: 0.75rem 1rem 0.75rem 2rem;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1000;
    justify-self: end;
  }
  .menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 980;
  }
  .overlay.show {
    opacity: 1;
    visibility: visible;
  }
  .nav-button {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
  .contact-content {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  .contact-form {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  .form-button {
    justify-content: center;
  }
}
/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.5px;
}

h1 {
  position: relative;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

p {
  margin-bottom: var(--spacing-sm);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .section-title {
    font-size: 1.6rem;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}
.section-title--left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .section-title--left {
    text-align: center;
  }
}
.section-title--left::after {
  left: 0;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .section-title--left::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===== BUTTONS ===== */
button,
.btn {
  display: inline-block;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.btn-standard {
  display: inline-block;
  position: relative;
  padding: 0.85rem 1.75rem;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  background-color: transparent;
  border-width: 2px;
  border-style: solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 0;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn-standard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
}
.btn-standard:hover, .btn-standard:focus {
  color: var(--darker-color);
  outline: none;
}
.btn-standard:hover::before, .btn-standard:focus::before {
  transform: scaleX(1);
}

/* ===== HERO SECTION ===== */
.hero {
  background-color: var(--dark-color);
  color: white;
  padding: var(--spacing-xl) 0;
  padding-top: calc(var(--spacing-xl) + 80px);
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 811px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 650px;
  }
}
@media screen and (max-width: 500px) {
  .hero {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 19, 51, 0.7);
  background-size: 20px 20px;
  opacity: 0.8;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(46, 176, 176, 0.2) 0%, transparent 70%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}

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

.hero-grid-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.hero-content {
  max-width: 800px;
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .hero-content {
    order: 2;
    margin-top: var(--spacing-md);
    max-width: 100%;
    width: 100%;
  }
}
.hero-content h1 {
  font-size: 4rem;
  color: white;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 0 15px rgba(46, 176, 176, 0.5);
  text-align: left;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 1140px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
    text-align: center;
  }
}

.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 0 var(--spacing-md);
  text-align: left;
}

.hero-image-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .hero-image-container {
    width: 80%;
  }
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(46, 176, 176, 0.3);
  --hero-image-rotateY: -25deg;
  transform: perspective(1150px) rotateY(var(--hero-image-rotateY));
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .hero-image {
    transform: none;
  }
}
.hero-image:hover {
  transform: perspective(1150px) rotateY(0deg);
}
@media screen and (max-width: 768px) {
  .hero-image:hover {
    transform: none;
  }
}

.playbtn {
  position: relative;
  display: inline-block;
  padding: 25px 30px;
  margin: 40px 0 0;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
  font-weight: 600;
  letter-spacing: 4px;
  overflow: hidden;
  font-family: "Orbitron", sans-serif;
}
.playbtn:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0 5px #fff, 0 0 25px #fff, 0 0 50px #fff, 0 0 200px #fff;
  -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(0, 0, 0, 0.3333333333));
}
.playbtn span {
  position: absolute;
  display: block;
}
.playbtn span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, transparent, #fff);
  animation: animate1 1s linear infinite;
}
.playbtn span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #fff);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}
.playbtn span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(270deg, transparent, #fff);
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}
.playbtn span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #fff);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}

@keyframes animate1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
@keyframes animate2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}
@keyframes animate3 {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}
@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}
/* ===== BRANDS SECTION ===== */
.brands-bar {
  background-color: var(--darker-color);
  padding: var(--spacing-sm) 0;
  overflow: hidden;
  position: relative;
}
.brands-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  overflow: hidden;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brands-scroll {
  display: flex;
  gap: 40px;
  padding: var(--spacing-sm) 0;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  width: 3000px;
}
.brands-scroll:hover {
  animation-play-state: paused;
}
.brands-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--darker-color) 20%);
  pointer-events: none;
  z-index: 1;
}
.brands-scroll::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.brand-logo {
  flex: 0 0 auto;
  padding: 0 20px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.brand-logo img {
  max-height: 60px;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.brand-logo:hover img {
  opacity: 1;
}

/* ===== FEATURES SECTION ===== */
.features {
  background-image: linear-gradient(to bottom, var(--dark-color), var(--darker-color));
  position: relative;
  overflow: hidden;
}
.features::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: var(--mouse-x, -150px);
  top: var(--mouse-y, -150px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(55, 189, 255, 0.32) 0%, rgba(39, 152, 152, 0) 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.features:hover::before {
  opacity: 1;
}

.feature-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  flex-basis: 280px;
  min-width: 280px;
}
.feature-box img {
  width: 140px;
  height: 180px;
  margin: 0 auto var(--spacing-sm);
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(51%) sepia(11%) saturate(2815%) hue-rotate(133deg) brightness(96%) contrast(89%);
  transition: filter 0.3s ease;
}
.feature-box h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem;
  color: var(--heading-color);
  margin-bottom: var(--spacing-xs);
  letter-spacing: 0.5px;
}
.feature-box p {
  color: var(--text-color);
  line-height: 1.6;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.feature-box:hover img {
  filter: saturate(100%) invert(51%) sepia(11%) saturate(20%) hue-rotate(133deg) brightness(136%) contrast(230%) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

/* ===== INFO SECTION ===== */
.info-section {
  background-color: rgba(10, 19, 50, 0.66);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-xl) 0;
}
@media screen and (max-width: 1024px) {
  .info-section {
    padding: var(--spacing-lg) 0;
  }
}
.info-section .container {
  position: relative;
  z-index: 2;
}

.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/parallax-bg.png");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  z-index: -1;
  margin-top: -100px;
  filter: hue-rotate(272deg);
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(17, 29, 74, 0.8);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  border: 1px solid rgba(46, 176, 176, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .info-content p {
    text-align: center;
  }
}

.info-list {
  margin-top: var(--spacing-sm);
}
.info-list li {
  padding: var(--spacing-xs) 0;
  position: relative;
  padding-left: 1.5rem;
}
.info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* ===== TEXT AND IMAGE SECTIONS ===== */
.text-image-section {
  background-color: var(--darker-color);
}
.text-image-section .container {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}
.text-image-section.reversed .container {
  flex-direction: row;
}
.text-image-section.reversed .image-content {
  order: 1;
}
.text-image-section.reversed .text-content {
  order: 2;
}
.text-image-section img {
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .text-image-section img {
    width: 60%;
    margin: 60px auto 30px;
  }
}

.text-content {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .text-content {
    text-align: center;
  }
}
.text-content h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}
@media screen and (max-width: 500px) {
  .text-content h2 {
    font-size: 1.5rem;
  }
}

.image-content {
  flex: 1;
}

/* ===== ANONYMOUS SEARCH SECTION ===== */
.anonymous-search {
  background: linear-gradient(90deg, var(--darker-color) 0%, var(--darker-color) 100%);
  color: white;
  padding: var(--spacing-lg) 0;
  position: relative;
  overflow: hidden;
}
.anonymous-search .container {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
  position: relative;
  z-index: 2;
}

.anonymous-content {
  flex: 1;
}
.anonymous-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}
.anonymous-content p {
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
  max-width: 600px;
}

.anonymous-graphic {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== FOOTER ===== */
.modern-footer {
  background-color: var(--darker-color);
  background-image: linear-gradient(160deg, var(--darker-color) 0%, #2a1a4f 100%);
  color: white;
  padding: 0 0 var(--spacing-md);
  border-top: 1px solid rgba(46, 176, 176, 0.2);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.footer-brand,
.footer-links,
.footer-newsletter {
  flex: 1;
  min-width: 200px;
}

.footer-brand h3 {
  font-family: "Orbitron", sans-serif;
  color: white;
  font-size: 2rem;
  margin-bottom: var(--spacing-xs);
  letter-spacing: 1px;
}
.footer-brand p {
  margin-bottom: var(--spacing-md);
  opacity: 0.8;
  max-width: 280px;
}

.social-icons {
  display: flex;
  gap: var(--spacing-sm);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-family: "Orbitron", sans-serif;
  color: white;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  letter-spacing: 0.5px;
}
.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-newsletter h4 {
  font-family: "Orbitron", sans-serif;
  color: white;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.5px;
}
.footer-newsletter p {
  margin-bottom: var(--spacing-sm);
  opacity: 0.8;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}
.newsletter-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-button {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  box-shadow: 0 2px 5px rgba(46, 176, 176, 0.2);
}
.footer-button:hover {
  background-color: #25908f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(46, 176, 176, 0.3);
}
.footer-button:active {
  background-color: #1f7a79;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(46, 176, 176, 0.15);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-md);
  opacity: 0.9;
}
.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-md);
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: white;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
    text-align: center;
  }
  .text-image-section .container {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  .text-content {
    order: 2;
  }
  .image-content {
    order: 1;
    margin-bottom: var(--spacing-md);
  }
  .text-image-section.reversed .text-content {
    order: 2;
  }
  .text-image-section.reversed .image-content {
    order: 1;
    margin-bottom: var(--spacing-md);
  }
  .anonymous-search .container {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  .anonymous-content {
    text-align: center;
  }
  .anonymous-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .anonymous-graphic {
    height: 200px;
    margin-top: var(--spacing-md);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-button {
    width: 100%;
  }
  .hero-grid-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-image-container {
    order: 1;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .hero-image-container {
    display: none;
  }
}
/* ===== ICONS ===== */
[class^=icon-] {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
[class^=icon-].icon-twitter {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"/></svg>');
}
[class^=icon-].icon-facebook {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"/></svg>');
}
[class^=icon-].icon-instagram {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><rect x="2" y="2" width="20" height="20" rx="5" ry="5"/><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"/><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"/></svg>');
}
[class^=icon-].icon-linkedin {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"/><rect x="2" y="9" width="4" height="12"/><circle cx="4" cy="4" r="2"/></svg>');
}

/* Section Divider */
.section-divider {
  position: relative;
  height: 100px;
  width: 100%;
  overflow: hidden;
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 5;
}

.section-divider.rotate-180 {
  transform: rotate(180deg);
}

.section-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
  /* Default fill for dividers between dark-color and darker-color */
  /* This is used when going from dark-color to darker-color */
  fill: var(--darker-color);
  filter: drop-shadow(0 -1px 3px rgba(0, 0, 0, 0.1));
}

.section-divider.dark svg {
  /* For dividers between darker-color and dark-color */
  /* This is used when going from darker-color to dark-color */
  fill: var(--dark-color);
}

.section-divider.primary svg {
  fill: var(--primary-color);
}

.section-divider.secondary svg {
  fill: var(--secondary-color);
}

/* Adjust section background colors for alternating pattern */
.hero {
  background-color: var(--dark-color);
}

.brands-bar {
  background-color: var(--darker-color);
}

.features {
  background-color: var(--dark-color);
}

.solutions {
  background-color: var(--darker-color);
}

.text-image-section {
  background-color: var(--darker-color);
}

.text-image-section.reversed {
  background-color: var(--dark-color);
}

.anonymous-search {
  background: linear-gradient(90deg, var(--darker-color) 0%, var(--darker-color) 100%);
}

.events-banner {
  background-color: var(--dark-color);
  /* Fallback color */
  background-image: url("../img/cta-bg.png");
  /* Background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: var(--spacing-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .events-banner {
    padding: var(--spacing-lg) 0;
  }
}

.events-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Keep the gradient as an overlay for text readability */
  background: linear-gradient(135deg, rgba(17, 29, 74, 0.2) 0%, rgba(17, 29, 74, 0.9) 100%);
  z-index: 1;
}

.events-banner .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.events-banner h2 {
  font-family: "Orbitron", sans-serif;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}
.events-banner p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.event-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Orbitron", sans-serif;
  box-shadow: none;
}
.event-button:hover {
  background-color: white;
  color: var(--dark-color);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: none;
}
.event-button:active {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--dark-color);
  transform: translateY(-1px);
  box-shadow: none;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: var(--dark-color);
  background-image: linear-gradient(to bottom, var(--dark-color), var(--darker-color));
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .contact-section {
    padding: var(--spacing-lg) 0;
  }
}

.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: var(--spacing-lg);
  margin: auto;
}

.contact-info {
  flex: 1;
  color: var(--text-color);
}
.contact-info h2 {
  font-family: "Orbitron", sans-serif;
  margin-bottom: var(--spacing-md);
  color: var(--heading-color);
}
.contact-info p {
  font-size: 1.1rem;
  max-width: 500px;
}

.contact-address {
  margin-top: var(--spacing-sm);
  opacity: 0.9;
  text-align: center;
}

.contact-form-container {
  flex: 1;
  background-color: var(--darker-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(46, 176, 176, 0.2);
  gap: var(--spacing-sm);
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.form-group {
  flex: 1;
  min-width: calc(50% - var(--spacing-sm) / 2);
  margin-bottom: var(--spacing-sm);
}

.contact-form .form-group:not(.full-width):nth-last-of-type(-n+2) {
  margin-bottom: 0;
}

.form-group.full-width {
  flex: 1 1 100%;
  min-width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(46, 176, 176, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  .contact-form {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  .form-button {
    justify-content: center;
  }
}
.checkbox-group input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  accent-color: var(--primary-color);
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-notice {
  flex: 1 1 100%;
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.form-notice p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.form-notice a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
}

.form-notice a:hover {
  color: #25908f;
  text-decoration: underline;
}

.form-button {
  flex: 1 1 100%;
  display: flex;
  justify-content: flex-start;
}

.form-group-message {
  margin-bottom: 0;
}

.solutions .section-title {
  text-align: left;
  margin-bottom: var(--spacing-md);
}

.solutions-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.solution-item {
  flex: 1;
  min-width: calc(50% - var(--spacing-md) / 2);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.solution-icon {
  flex-shrink: 0;
  width: 60px;
  height: auto;
}

.solution-icon img {
  display: block;
  width: 100%;
  border-radius: var(--border-radius);
}

.solution-text {
  flex-grow: 1;
}

.solution-text h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
  letter-spacing: 0.5px;
  color: var(--heading-color);
}

.solution-text p {
  margin-bottom: 0;
  color: var(--text-color);
  opacity: 0.9;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--darker-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.315);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #25908f, #357ca6);
}

/* Management Features Section */
.management-features {
  background-color: var(--dark-color);
  padding: var(--spacing-lg) 0;
  position: relative;
  /* Added for pseudo-element positioning */
  overflow: hidden;
  /* Ensure pattern doesn't overflow if needed */
}

.management-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 300%;
  background-image: url(../img/bg-pattern.png);
  background-repeat: repeat;
  background-position: -170px 1300px;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
  filter: invert(0.5);
  transform: rotate(45deg) translate(-90px, 1030px);
}

.management-grid {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .management-grid {
    flex-direction: column-reverse;
    gap: var(--spacing-md);
  }
}

.management-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.management-image {
  flex: 1;
}
.management-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  display: block;
}

.feature-item {
  display: flex;
  gap: var(--spacing-sm);
  align-items: start;
}

.feature-icon-svg {
  width: 48px;
  height: 48px;
  filter: invert(60%) sepia(98%) saturate(297%) hue-rotate(496deg) brightness(74%) contrast(104%);
  flex-shrink: 0;
}

.management-content h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.management-content p {
  font-size: 1rem;
  color: var(--text-color);
  opacity: 0.9;
  margin-bottom: 0;
  max-width: 450px;
}

.orange-cta {
  background: linear-gradient(to right, #ff8c42, #ff6f61);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 10px rgba(255, 111, 97, 0.3);
  font-family: "Inter", sans-serif;
}
.orange-cta:hover {
  background: linear-gradient(to right, #ff9c5a, #ff7f72);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 111, 97, 0.4);
}
.orange-cta:active {
  background: linear-gradient(to right, #f5833b, #f56658);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 111, 97, 0.2);
}

.info-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.feature-grid-item {
  flex: 1;
  min-width: calc(50% - var(--spacing-md) / 2);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background-color: rgba(255, 255, 255, 0.03);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius);
  transition: background-color 0.3s ease;
  border: 1px solid rgba(46, 176, 176, 0.1);
}
@media screen and (max-width: 767px) {
  .feature-grid-item {
    min-width: 100%;
    flex-direction: column;
    text-align: center;
  }
}

.feature-grid-item:hover {
  background-color: rgba(46, 176, 176, 0.1);
}

.info-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: invert(60%) sepia(98%) saturate(297%) hue-rotate(496deg) brightness(74%) contrast(104%);
  /* Apply primary color filter */
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  opacity: 0.9;
}
.contact-detail:first-child {
  margin-top: 40px;
}
.contact-detail p {
  margin-bottom: 0;
}
.contact-detail a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-detail a:hover {
  color: var(--primary-color);
}

.contact-icon {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  filter: invert(60%) sepia(98%) saturate(297%) hue-rotate(496deg) brightness(74%) contrast(104%);
}

.contact-icon-email {
  width: 35px;
  height: 38px;
  margin-right: 6px;
  margin-left: 3px;
}

a:hover,
button:hover,
.btn-standard:hover,
.playbtn:hover,
.event-button:hover,
.footer-button:hover,
.orange-cta:hover,
.social-icon:hover,
.dropdown-toggle:hover,
.menu-toggle:hover,
input[type=checkbox]:hover,
.feature-box:hover,
.brand-logo:hover {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white"><rect width="16" height="16" /></svg>'), auto;
}

.feature-icon-tournament.feature-icon-tournament {
  width: 200px;
}

.feature-icon-swords {
  height: 40px;
}

.gdpr {
  background: #fff;
  color: #282834;
  padding: 40px;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .gdpr {
    padding: 15px;
  }
}
.gdpr h1 {
  font-family: Chivo-black, sans-serif;
  color: #ff6e1d;
  font-size: 36px;
  margin-bottom: 40px;
}
.gdpr h2 {
  font-family: Chivo-black, sans-serif;
  color: #ff6e1d;
  font-size: 26px;
  margin: 20px 0;
}
.gdpr h3 {
  font-family: Chivo-black, sans-serif;
  color: #ff6e1d;
  font-size: 20px;
  margin: 20px 0 10px;
}
.gdpr p {
  margin: 10px 0;
  line-height: 1.3;
}
.gdpr ol {
  list-style-type: none;
  counter-reset: item;
  margin: 20px 0 0 0;
  padding: 0;
}
.gdpr ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}
.gdpr ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}
.gdpr li ol > li {
  margin: 0;
  padding-bottom: 10px;
  line-height: 1.1;
}
.gdpr li ol > li:before {
  content: counters(item, ".") " ";
}
.gdpr strong {
  font-family: Chivo-black, sans-serif;
}
.gdpr li {
  line-height: 1.3;
}
.gdpr ul {
  list-style: disc;
  padding-left: 20px;
}

.hide-on-desktop {
  display: none;
}
@media screen and (max-width: 768px) {
  .hide-on-desktop {
    display: block;
  }
}

.hide-on-mobile {
  display: block;
}
@media screen and (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }
}

.notification {
  display: none;
  opacity: 0;
  width: 100%;
  background-color: #25908f;
  color: white;
  border-radius: 5px;
  height: auto;
  margin-top: 10px;
  padding: 10px;
}
.notification--show {
  display: block;
  animation: notificationShow 3s ease-in-out forwards;
}

@keyframes notificationShow {
  0% {
    opacity: 0;
  }
  16.67% {
    opacity: 1;
  }
  83.33% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.recaptcha-disclaimer {
  color: #7173bf;
  font-size: 12px;
}
.recaptcha-disclaimer a {
  color: #9e9fce;
}

.grecaptcha-badge {
  visibility: hidden;
}

.form-button {
  justify-content: center;
}/*# sourceMappingURL=main.css.map */