
:root {
  --color-bg-primary: #0F1923;
  --color-bg-secondary: #1A2C42;
  --color-accent-neon: #00FF8C;
  --color-accent-pink: #FF00A8;
  --color-accent-blue: #00C4FF;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #B3C3D9;
  --color-border: #2A3A4D;
  --color-card-bg: #192534;
  --color-error: #FF3A5E;
  --font-mono: 'JetBrains Mono', monospace;
  --font-sans: 'Inter', sans-serif;
  --shadow-neon: 0 0 15px rgba(0, 255, 140, 0.5);
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-mono);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

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

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

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

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

a {
  color: var(--color-accent-neon);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  position: relative;
}

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

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

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

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

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 140, 0.03), transparent 70%);
  pointer-events: none;
}


.neon-border {
  position: relative;
  border: 1px solid var(--color-accent-neon);
  box-shadow: var(--shadow-neon);
}

.neon-text {
  color: var(--color-accent-neon);
  text-shadow: 0 0 5px rgba(0, 255, 140, 0.7);
}

.accent-text {
  color: var(--color-accent-pink);
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(15, 25, 35, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-speed) ease;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

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

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

.nav-link {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-neon);
  transition: width var(--transition-speed) ease;
}

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


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: linear-gradient(120deg, rgba(15, 25, 35, 0.95) 50%, rgba(15, 25, 35, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  max-width: 650px;
}

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

.hero-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-accent-neon);
  box-shadow: var(--shadow-neon);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}


.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary:hover {
  background-color: transparent;
  border-color: var(--color-accent-neon);
  color: var(--color-accent-neon);
  box-shadow: var(--shadow-neon);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-accent-blue);
  color: var(--color-accent-blue);
}

.btn-secondary:hover {
  background-color: var(--color-accent-blue);
  color: var(--color-bg-primary);
  box-shadow: 0 0 15px rgba(0, 196, 255, 0.5);
}


.card {
  background-color: var(--color-card-bg);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--color-accent-neon);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--color-accent-neon);
  transition: height var(--transition-speed) ease;
}

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

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-icon {
  font-size: 2.5rem;
  color: var(--color-accent-neon);
  margin-bottom: 1.5rem;
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}


.features {
  background-color: var(--color-bg-secondary);
  position: relative;
}

.features-grid {
  margin-top: 3rem;
}

.feature-item {
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  background-color: rgba(25, 37, 52, 0.8);
  transition: all var(--transition-speed) ease;
  border: 1px solid var(--color-border);
}

.feature-item:hover {
  transform: translateY(-10px);
  border-color: var(--color-accent-neon);
  box-shadow: var(--shadow-neon);
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-accent-neon);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}


.about {
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  padding-right: 2rem;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--color-accent-neon), transparent);
  opacity: 0.2;
  z-index: 1;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

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


.programs {
  background-color: var(--color-bg-secondary);
}

.program-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-accent-neon);
  color: var(--color-bg-primary);
  border-color: var(--color-accent-neon);
}

.program-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.program-image {
  height: 200px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  position: relative;
}

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

.program-card:hover .program-image img {
  transform: scale(1.1);
}

.program-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.program-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.program-details {
  margin-top: auto;
}

.program-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  flex-direction: column;
}

.program-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.stages {
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 3rem auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--color-accent-neon);
  top: 0;
  bottom: 0;
  left: 50%;
  box-shadow: var(--shadow-neon);
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--color-card-bg);
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: all var(--transition-speed) ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent-neon);
  box-shadow: var(--shadow-neon);
}

.timeline-item:nth-child(odd) .timeline-content::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  top: 15px;
  background-color: var(--color-card-bg);
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  transform: rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: -10px;
  top: 15px;
  background-color: var(--color-card-bg);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  transform: rotate(-45deg);
}

.timeline-date {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--color-accent-neon);
  border-radius: 50%;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-bg-primary);
  z-index: 1;
  box-shadow: var(--shadow-neon);
}

.timeline-item:nth-child(odd) .timeline-date {
  right: -20px;
}

.timeline-item:nth-child(even) .timeline-date {
  left: -20px;
}

.timeline-image {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.timeline-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.timeline-content:hover .timeline-image img {
  transform: scale(1.05);
}


.contact {
  background-color: var(--color-bg-secondary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  padding-right: 2rem;
}

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

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

.contact-icon {
  font-size: 1.2rem;
  color: var(--color-accent-neon);
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.contact-text {
  flex: 1;
}

.contact-text p {
  margin-bottom: 0.5rem;
}

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

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

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

.form-control {
  width: 100%;
  padding: 1rem;
  background-color: rgba(15, 25, 35, 0.7);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  transition: all var(--transition-speed) ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent-neon);
  box-shadow: 0 0 0 2px rgba(0, 255, 140, 0.2);
}

.form-control::placeholder {
  color: rgba(179, 195, 217, 0.5);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

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

.iti {
  width: 100%;
}


.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3rem;
  border: 1px solid var(--color-border);
}


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

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

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

.footer-logo img {
  height: 40px;
  width: auto;
}

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

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

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

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

.footer-link {
  margin-bottom: 0.8rem;
}

.footer-link a {
  color: var(--color-text-secondary);
  transition: all var(--transition-speed) ease;
}

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

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


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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.cookie-settings-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 25, 35, 0.95);
  z-index: 10000;
  display: none;
  overflow-y: auto;
}

.cookie-settings-content {
  max-width: 600px;
  margin: 2rem auto;
  background-color: var(--color-card-bg);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--color-border);
}

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

.cookie-settings-title {
  margin-bottom: 0;
}

.cookie-close {
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

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

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

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

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

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-border);
  transition: .4s;
  border-radius: 24px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

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

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

.cookie-settings-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 25, 35, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--color-card-bg);
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  position: relative;
  transform: translateY(-50px);
  transition: all var(--transition-speed) ease;
  border: 1px solid var(--color-border);
}

.modal.active .modal-content {
  transform: translateY(0);
}

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


.thanks-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 2rem;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--color-accent-neon);
  margin-bottom: 2rem;
}

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

.thanks-message {
  max-width: 600px;
  margin: 0 auto 2rem;
}


@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text {
    padding-right: 0;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-content::after {
    display: none;
  }

  .timeline-date {
    left: 11px !important;
    right: auto !important;
  }

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  .header-inner {
    padding: 1rem;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--color-bg-primary);
    overflow: hidden;
    transition: height var(--transition-speed) ease;
    z-index: 999;
    border-bottom: 1px solid var(--color-border);
  }

  .nav.active {
    height: auto;
  }

  .nav-list {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 7rem 0 3rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .program-filters {
    flex-direction: column;
    gap: 0.5rem;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
  }

  .cookie-settings-content {
    margin: 1rem;
    padding: 1.5rem;
  }

  .cookie-settings-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-settings-buttons .btn {
    width: 100%;
  }
}


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

.mb-0 {
  margin-bottom: 0;
}

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

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

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

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

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

.mt-0 {
  margin-top: 0;
}

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

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

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

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

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

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

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

.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: rgba(0, 255, 140, 0.2);
  z-index: -1;
}