
@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@300;400;500;600;700&display=swap');


:root {
  --dark-matter: #09090F;
  --deep-space: #0F0F2D;
  --holographic-purple: #8A2BE2;
  --digital-teal: #05EEFF;
  --neon-pink: #FF36AB;
  --electric-lime: #CCFF00;
  --cyber-orange: #FF7A00;
  --light-text: #F0F0FF;
  --secondary-text: #AAAACC;
  --muted-text: #666680;
  --midnight-gradient: linear-gradient(135deg, #0F0F2D 0%, #09090F 100%);
  --holographic-overlay: linear-gradient(45deg, rgba(138, 43, 226, 0.2) 0%, rgba(5, 238, 255, 0.2) 50%, rgba(255, 54, 171, 0.2) 100%);
  --prismatic-gradient: linear-gradient(90deg, #8A2BE2 0%, #05EEFF 25%, #FF36AB 50%, #CCFF00 75%, #FF7A00 100%);
}

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

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


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--deep-space);
}

::-webkit-scrollbar-thumb {
  background: var(--holographic-purple);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-pink);
}


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

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

h2 {
  font-size: 2.5rem;
  color: var(--light-text);
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

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

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

h4 {
  font-size: 1.3rem;
  color: var(--neon-pink);
}

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

a {
  color: var(--digital-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--neon-pink);
  text-decoration: none;
}


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

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

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--holographic-overlay);
  opacity: 0.05;
  pointer-events: none;
}


.prismatic-hover {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.prismatic-hover::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: var(--prismatic-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: rotate(45deg);
  z-index: -1;
}

.prismatic-hover:hover::before {
  opacity: 0.1;
}


.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--prismatic-gradient);
  transition: all 0.4s ease;
  z-index: -1;
}

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

.btn-primary {
  background-color: var(--holographic-purple);
  color: var(--light-text);
  border: none;
}

.btn-primary:hover, .btn-primary:focus {
  color: var(--light-text);
  background-color: var(--holographic-purple);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.7);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--digital-teal);
  color: var(--digital-teal);
}

.btn-outline:hover, .btn-outline:focus {
  color: var(--light-text);
  border-color: var(--digital-teal);
  box-shadow: 0 0 15px rgba(5, 238, 255, 0.7);
}


.header {
  background-color: rgba(9, 9, 15, 0.9);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header.headroom--not-top {
  padding: 0.5rem 0;
  background-color: rgba(9, 9, 15, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1rem 0;
}

.logo-container {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

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

.nav-toggle {
  display: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

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

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

.nav-item {
  position: relative;
  margin: 0 1.2rem;
}

.nav-link {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--prismatic-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link:focus, .nav-item.active .nav-link {
  color: var(--digital-teal);
}

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


.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--midnight-gradient);
}

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

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--holographic-overlay);
  opacity: 0.2;
  z-index: 1;
}

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

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

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

.hero-cta {
  display: flex;
  gap: 1rem;
}


.card {
  background: rgba(15, 15, 45, 0.6);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(138, 43, 226, 0.1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--prismatic-gradient);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--prismatic-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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


.features {
  background: var(--midnight-gradient);
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

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

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

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


.about {
  position: relative;
  overflow: hidden;
}

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

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

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

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

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--holographic-overlay);
  opacity: 0.2;
}


.services {
  background: var(--midnight-gradient);
}

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


.testimonials {
  background: var(--midnight-gradient);
}

.testimonial {
  text-align: center;
  padding: 2rem;
}

.testimonial-content {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
  content: '"';
  font-size: 3rem;
  position: absolute;
  color: var(--holographic-purple);
  opacity: 0.3;
}

.testimonial-content::before {
  top: -20px;
  left: -15px;
}

.testimonial-content::after {
  bottom: -40px;
  right: -15px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--light-text);
}

.testimonial-position {
  font-size: 0.9rem;
  color: var(--muted-text);
}


.cta {
  background: var(--midnight-gradient);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--holographic-overlay);
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--secondary-text);
}


.contact {
  position: relative;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {
  text-align: center;
  padding: 2rem;
  background: rgba(15, 15, 45, 0.4);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--digital-teal);
}

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

.contact-value {
  color: var(--secondary-text);
}

.contact-value a {
  color: var(--secondary-text);
  transition: color 0.3s ease;
}

.contact-value a:hover {
  color: var(--digital-teal);
}


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

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

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--light-text);
  background-color: rgba(15, 15, 45, 0.5);
  background-clip: padding-box;
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: 0.3rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  color: var(--light-text);
  background-color: rgba(15, 15, 45, 0.7);
  border-color: var(--digital-teal);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(5, 238, 255, 0.25);
}

.form-control::placeholder {
  color: var(--muted-text);
}

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

.form-check-input {
  margin-right: 0.5rem;
  width: 18px;
  height: 18px;
}

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

.form-check-label a {
  color: var(--digital-teal);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

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


.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2rem;
  position: relative;
}

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


.program-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(15, 15, 45, 0.6);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.program-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.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: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.program-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.program-text {
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.program-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.program-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--neon-pink);
}

.program-level {
  font-size: 0.9rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background-color: rgba(5, 238, 255, 0.2);
  color: var(--digital-teal);
}


.schedule-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid var(--holographic-purple);
  border-radius: 20px;
  color: var(--light-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn:focus, .filter-btn.active {
  background-color: var(--holographic-purple);
  color: var(--light-text);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.schedule-item {
  background: rgba(15, 15, 45, 0.6);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(138, 43, 226, 0.15);
}

.schedule-date {
  flex: 0 0 100px;
  text-align: center;
}

.schedule-day {
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-text);
  line-height: 1;
}

.schedule-month {
  font-size: 1rem;
  color: var(--secondary-text);
}

.schedule-content {
  flex: 1;
}

.schedule-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--light-text);
}

.schedule-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.schedule-detail {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--secondary-text);
}

.schedule-detail i {
  margin-right: 0.5rem;
  color: var(--digital-teal);
}

.schedule-description {
  color: var(--secondary-text);
  margin-top: 0.5rem;
}

.schedule-action {
  flex: 0 0 auto;
}


.footer {
  background-color: rgba(9, 9, 15, 0.95);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.footer-description {
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
}

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

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--prismatic-gradient);
}

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

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

.footer-link a {
  color: var(--secondary-text);
  transition: color 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-link a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-link a:hover {
  color: var(--digital-teal);
  padding-left: 20px;
}

.footer-link a:hover::before {
  opacity: 1;
  left: 0;
}

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

.footer-contact-icon {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--digital-teal);
}

.footer-contact-text {
  color: var(--secondary-text);
}

.footer-contact-text a {
  color: var(--secondary-text);
  transition: color 0.3s ease;
}

.footer-contact-text a:hover {
  color: var(--digital-teal);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(138, 43, 226, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--muted-text);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--digital-teal);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background-color: rgba(9, 9, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  border-top: 1px solid rgba(138, 43, 226, 0.3);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-text {
  flex: 1;
  color: var(--secondary-text);
}

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

.cookie-settings {
  background-color: transparent;
  border: 1px solid var(--secondary-text);
  color: var(--secondary-text);
}

.cookie-settings:hover {
  border-color: var(--digital-teal);
  color: var(--digital-teal);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 9, 15, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.cookie-modal-content {
  background-color: var(--deep-space);
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(138, 43, 226, 0.2);
}

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

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(138, 43, 226, 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;
}

.cookie-category-title {
  font-size: 1.2rem;
  color: var(--light-text);
}

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

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

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

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

input:checked + .cookie-slider {
  background-color: var(--digital-teal);
}

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

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

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


.thank-you {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 0;
}

.thank-you-content {
  max-width: 600px;
}

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

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

.thank-you-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--secondary-text);
}


.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;
}


.holographic-bg {
  position: relative;
}

.holographic-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(5, 238, 255, 0.1), rgba(255, 54, 171, 0.1), rgba(204, 255, 0, 0.1), rgba(255, 122, 0, 0.1));
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  z-index: -1;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.text-gradient {
  background: linear-gradient(90deg, #8A2BE2, #05EEFF, #FF36AB, #CCFF00, #FF7A00);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient 10s ease infinite;
}


.color-shift {
  position: relative;
  overflow: hidden;
}

.color-shift::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(5, 238, 255, 0.1), rgba(255, 54, 171, 0.1));
  background-size: 200% 200%;
  mix-blend-mode: overlay;
  pointer-events: none;
  transition: all 0.5s ease;
}

.color-shift:hover::after {
  background-position: 100% 100%;
}


.iti {
  width: 100%;
}

.iti__flag-container {
  height: 100%;
}

.iti__selected-flag {
  background-color: rgba(15, 15, 45, 0.7) !important;
  border-radius: 0.3rem 0 0 0.3rem;
}


@media (max-width: 991.98px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .header-content {
    justify-content: flex-start;
    padding: 1rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: rgba(9, 9, 15, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: right 0.3s ease;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-item {
    margin: 0.8rem 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    display: block;
    padding: 0.8rem 0;
  }
  
  .nav-link::after {
    bottom: 5px;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .schedule-item {
    padding: 1rem;
  }
  
  .schedule-date {
    flex: 0 0 80px;
  }
  
  .schedule-day {
    font-size: 1.5rem;
  }
  
  .thank-you-icon {
    font-size: 4rem;
  }
  
  .thank-you-title {
    font-size: 2.5rem;
  }
  
  .thank-you-text {
    font-size: 1.1rem;
  }
}