/* ===== GENERAL STYLES ===== */
:root {
  --primary: #1A1E4D;
  --secondary: #0FF0FC;
  --accent: #FF00FF;
  --background: #0A0B1E;
  --text-light: #F0F8FF;
  --text-dark: #121212;
  --gradient-1: linear-gradient(135deg, #1A1E4D, #0A0B1E);
  --gradient-2: linear-gradient(135deg, #0FF0FC, #FF00FF);
  --alert: #FF3A5E;
  --success: #00FF9D;
  --box-shadow: 0 5px 20px rgba(10, 11, 30, 0.5);
  --neon-glow: 0 0 10px var(--secondary), 0 0 20px var(--accent);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

.iti {
  width: 100%;
}

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

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

a:hover {
  color: var(--accent);
  text-shadow: var(--neon-glow);
}

button, .btn {
  cursor: pointer;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-2);
  color: var(--background);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--box-shadow);
}

button:hover, .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 240, 252, 0.3);
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

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

h2 {
  font-size: 2rem;
  color: var(--secondary);
  text-shadow: 0 0 5px rgba(15, 240, 252, 0.5);
}

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

p {
  margin-bottom: 1.5rem;
}

section {
  padding: 4rem 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: rgba(10, 11, 30, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(15, 240, 252, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

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

.logo svg {
  width: 100%;
  height: auto;
}

.hamburger {
  display: block;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--secondary);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 11, 30, 0.95);
  backdrop-filter: blur(15px);
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

nav.open {
  right: 0;
}

.nav-list {
  list-style-type: none;
  text-align: center;
}

.nav-list li {
  margin: 1.5rem 0;
}

.nav-list a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  background: var(--gradient-2);
  color: var(--background);
  box-shadow: var(--neon-glow);
}

/* ===== HERO SECTION ===== */
.hero {
  padding-top: 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

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

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

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: glowText 3s infinite alternate;
}

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

@keyframes glowText {
  0% {
    text-shadow: 0 0 5px rgba(15, 240, 252, 0.5);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
  }
}

.related-posts {
  margin-top: 40px;
}

/* ===== CARD STYLES ===== */
.card {
  background: rgba(26, 30, 77, 0.5);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(15, 240, 252, 0.1);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 240, 252, 0.2);
  border-color: rgba(15, 240, 252, 0.3);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.card-img img {
  transition: var(--transition);
}

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

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.card-content {
  color: var(--text-light);
}

/* ===== FORM STYLES ===== */
.form-container {
  background: rgba(26, 30, 77, 0.5);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(15, 240, 252, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

input, textarea, select {
  width: 100%;
  padding: 0.8rem;
  background: rgba(10, 11, 30, 0.7);
  border: 1px solid rgba(15, 240, 252, 0.3);
  border-radius: var(--border-radius);
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input {
  width: auto;
  margin-right: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  padding: 3rem 0 1rem;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-2);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}

.footer-links h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--secondary);
}

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

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

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

.footer-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 240, 252, 0.2);
  font-size: 0.9rem;
}

/* ===== BLOG STYLES ===== */
.blog-post {
  margin-bottom: 3rem;
}

.blog-header {
  margin-bottom: 2rem;
}

.blog-meta {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.blog-content {
  line-height: 1.8;
}

.blog-content h2, .blog-content h3 {
  margin: 2rem 0 1rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

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

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

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 11, 30, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(15, 240, 252, 0.2);
  border-top: 1px solid rgba(15, 240, 252, 0.3);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 500px;
  background: rgba(26, 30, 77, 0.95);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  padding: 2rem;
  z-index: 10000;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(15, 240, 252, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-settings.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-settings h2 {
  margin-bottom: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(15, 240, 252, 0.2);
}

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

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

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 11, 30, 0.7);
  transition: .4s;
  border-radius: 34px;
}

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

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

input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.cookie-settings-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 11, 30, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-toggle {
  display: inline-block;
  margin-top: 1rem;
  color: var(--secondary);
  cursor: pointer;
  text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-in-delay-1 {
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.2s;
}

.fade-in-delay-2 {
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.4s;
}

.fade-in-delay-3 {
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.6s;
}

/* ===== HOLOGRAPHIC EFFECTS ===== */
.holographic {
  position: relative;
  overflow: hidden;
}

.holographic::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(15, 240, 252, 0.3), 
    rgba(255, 0, 255, 0.3), 
    transparent
  );
  transform: skewX(-25deg);
  animation: holographicEffect 3s infinite;
}

@keyframes holographicEffect {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

/* ===== NEON BORDERS ===== */
.neon-border {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.neon-border::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-2);
  z-index: -1;
  border-radius: calc(var(--border-radius) + 2px);
  animation: neonglow 3s infinite alternate;
}

@keyframes neonglow {
  0% {
    box-shadow: 0 0 5px rgba(15, 240, 252, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
  }
}

/* ===== MAP STYLES ===== */
.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(15, 240, 252, 0.2);
}

/* ===== RESPONSIVE STYLES ===== */
@media (min-width: 576px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .cookie-consent {
    padding: 2rem;
  }
  
  .cookie-actions {
    justify-content: flex-end;
  }
}

@media (min-width: 768px) {
  section {
    padding: 5rem 2rem;
  }
  
  .header-container {
    padding: 1rem 2rem;
  }
  
  .hamburger {
    display: none;
  }
  
  nav {
    position: relative;
    right: 0;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
  }
  
  .nav-list {
    display: flex;
  }
  
  .nav-list li {
    margin: 0 0.5rem;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .card {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 4rem;
  }
  
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }
  
  .card-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .header-container {
    padding: 1rem 0;
  }
}