/* ==========================================================================
   Base Styles and Variables
   ========================================================================== */
:root {
  /* Primary Colors (Futuristic Neo-Brutalism) */
  --primary-color: #00f5ff; /* Bright cyan */
  --primary-dark: #0088a3; /* Darker shade for hover */
  --secondary-color: #ff3e00; /* Complementary orange/red */
  --secondary-dark: #cc3200; /* Darker shade for hover */
  --accent-color: #9000ff; /* Vibrant purple */
  --accent-dark: #6a00cc; /* Darker shade for hover */
  
  /* Neutral Colors */
  --dark-bg: #131316; /* Near black for dark sections */
  --dark-surface: #1c1c21; /* Slightly lighter for cards */
  --light-bg: #f9f9f9; /* Off-white for light sections */
  --light-surface: #ffffff; /* Pure white for cards */
  
  /* Text Colors */
  --text-dark: #121212; /* For light backgrounds */
  --text-light: #ffffff; /* For dark backgrounds */
  --text-muted: #9c9c9c; /* For secondary text */
  
  /* UI Colors */
  --success: #4ade80; /* Green for success messages */
  --error: #f43f5e; /* Red for error states */
  --warning: #fbbf24; /* Yellow for warnings */
  --info: #60a5fa; /* Blue for information */
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-neo: 5px 5px 0px rgba(0, 0, 0, 0.9);
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-width: 2px;
  --border-neo: 3px solid #000;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* ==========================================================================
   Global Styles
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  font-weight: 900;
  letter-spacing: -0.03em;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 5px;
  background-color: var(--primary-color);
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--primary-color);
}

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

.container {
  width: 90%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: -1.5rem auto var(--space-xl);
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: var(--border-width) solid transparent;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-neo);
  transform: translateY(0);
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.9);
}

.btn:active,
button:active,
input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.9);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  border-color: var(--dark-bg);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
}
.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
}
.accordion-item.active .accordion-content {
  /* max-height динамічно задається через JS */
}


.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border-color: var(--dark-bg);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-tertiary:hover {
  background-color: var(--primary-color);
  color: var(--dark-bg);
}

/* Read more links */
.read-more {
  font-weight: 700;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: transform var(--transition-normal);
  position: relative;
}

.read-more:after {
  content: '→';
  margin-left: 5px;
  transition: transform var(--transition-normal);
}

.read-more:hover {
  color: var(--secondary-dark);
}

.read-more:hover:after {
  transform: translateX(5px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(19, 19, 22, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

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

.logo a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.desktop-menu {
  display: flex;
  list-style: none;
}

.desktop-menu li {
  margin-left: 2rem;
}

.desktop-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color var(--transition-normal);
}

.desktop-menu a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.desktop-menu a:hover {
  color: var(--primary-color);
}

.desktop-menu a:hover:before {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  transition: all var(--transition-normal);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--dark-bg);
  padding: 1rem 0;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  padding: 0.5rem 2rem;
}

.mobile-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .mobile-menu {
    display: block;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: var(--space-xl) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  padding-top: 120px; /* Account for fixed header */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 4rem;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
  margin-bottom: var(--space-lg);
  animation: heroTitleAnimation 1s ease-out;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: heroTextAnimation 1s ease-out 0.3s backwards;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  animation: heroButtonsAnimation 1s ease-out 0.6s backwards;
}

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

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

@keyframes heroButtonsAnimation {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.feature-card {
  background-color: var(--light-surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-neo);
  overflow: hidden;
  transition: transform var(--transition-normal);
  border: var(--border-neo);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(50px);
  opacity: 0;
}

.feature-card.animate-in {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card .image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.feature-card .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  text-align: center;
}

.feature-card h3 {
  color: var(--dark-bg);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.feature-card h3:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Instructors Section
   ========================================================================== */
.instructors {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.instructors .section-title,
.instructors .section-description {
  color: var(--text-light);
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.instructors .card {
  background-color: var(--dark-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-neo);
  border: var(--border-neo);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(50px);
  opacity: 0;
}

.instructors .card.animate-in {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.instructors .card-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instructors .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.instructors .card-content {
  padding: var(--space-lg);
  text-align: center;
}

.instructors .card h3 {
  margin-bottom: var(--space-xs);
}

.instructors .position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--space-md);
  font-style: italic;
}

/* ==========================================================================
   Customer Stories Section
   ========================================================================== */
.customer-stories {
  background-color: var(--light-bg);
  position: relative;
}

.stories-carousel {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.story-card {
  display: flex;
  background-color: var(--light-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-neo);
  border: var(--border-neo);
  transform: translateY(50px);
  opacity: 0;
}

.story-card.animate-in {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.story-card .card-image {
  flex: 0 0 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.story-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card .card-content {
  padding: var(--space-lg);
  flex: 1;
}

.story-card h3 {
  color: var(--dark-bg);
  margin-bottom: var(--space-md);
}

.story-author {
  color: var(--text-muted);
  font-style: italic;
  font-weight: 500;
  margin-top: var(--space-md);
}

@media (max-width: 992px) {
  .story-card {
    flex-direction: column;
  }
  
  .story-card .card-image {
    flex: 0 0 300px;
  }
}

/* ==========================================================================
   Events Section
   ========================================================================== */
.events {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.events .section-title,
.events .section-description {
  color: var(--text-light);
}

.events-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.event-card {
  display: flex;
  background-color: var(--dark-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-neo);
  border: var(--border-neo);
  transition: transform var(--transition-normal);
  transform: translateY(50px);
  opacity: 0;
}

.event-card.animate-in {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--dark-bg);
  padding: var(--space-lg);
  min-width: 100px;
  font-family: var(--font-heading);
  text-align: center;
}

.event-date .month {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.event-date .day {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.event-details {
  padding: var(--space-lg);
  flex-grow: 1;
}

.event-details h3 {
  margin-bottom: var(--space-xs);
}

.event-location {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
}

.event-location:before {
  content: '📍';
  margin-right: 5px;
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    flex-direction: row;
    padding: var(--space-md);
  }
  
  .event-date .month {
    margin-right: var(--space-md);
  }
}

/* ==========================================================================
   Resources Section
   ========================================================================== */
.resources {
  background-color: var(--light-bg);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.resource-card {
  background-color: var(--light-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-neo);
  border: var(--border-neo);
  height: 100%;
  transform: translateY(50px);
  opacity: 0;
  transition: transform var(--transition-normal);
}

.resource-card.animate-in {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card h3 {
  color: var(--dark-bg);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.resource-card h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.resource-card ul {
  list-style: none;
  padding-left: var(--space-md);
}

.resource-card li {
  margin-bottom: var(--space-md);
  position: relative;
}

.resource-card li:before {
  content: '→';
  position: absolute;
  left: -20px;
  color: var(--primary-color);
}

.resource-card a {
  font-weight: 500;
  color: var(--primary-dark);
  transition: color var(--transition-normal);
}

.resource-card a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.faq .section-title,
.faq .section-description {
  color: var(--text-light);
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: var(--space-md);
  border-radius: var(--border-radius-md);
  background-color: var(--dark-surface);
  overflow: hidden;
  box-shadow: var(--shadow-neo);
  border: var(--border-neo);
}

.accordion-header {
  padding: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.accordion-header:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.2rem;
  flex: 1;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  padding: 0 var(--space-lg);
}

.accordion-item.active .accordion-content {
  padding-bottom: var(--space-lg);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
  background-color: var(--light-bg);
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.info-item h3 {
  color: var(--dark-bg);
  margin-bottom: var(--space-sm);
}

.map-container {
  margin-top: auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-neo);
  border: var(--border-neo);
  height: 300px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  background-color: var(--light-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-neo);
  border: var(--border-neo);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--dark-bg);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--dark-bg);
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-normal);
  background-color: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 245, 255, 0.2);
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-about h3,
.footer-nav h3,
.footer-legal h3,
.footer-social h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.footer-nav ul,
.footer-legal ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-nav li,
.footer-legal li,
.footer-social li {
  margin-bottom: var(--space-sm);
}

.footer-nav a,
.footer-legal a,
.footer-social a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-normal);
  display: inline-block;
  position: relative;
  padding: 2px 0;
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-social a:hover {
  color: var(--primary-color);
}

.footer-nav a:before,
.footer-legal a:before,
.footer-social a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.footer-nav a:hover:before,
.footer-legal a:hover:before,
.footer-social a:hover:before {
  width: 100%;
}

.footer-social a {
  display: flex;
  align-items: center;
}

.footer-social a:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Success Page
   ========================================================================== */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--light-bg);
}

.success-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: var(--space-lg);
}

.success-page h1 {
  color: var(--dark-bg);
  margin-bottom: var(--space-md);
}

.success-page p {
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

/* ==========================================================================
   Privacy & Terms Pages
   ========================================================================== */
.privacy-page,
.terms-page {
  padding-top: 100px;
  background-color: var(--light-bg);
}

.privacy-page .container,
.terms-page .container {
  max-width: 800px;
  background-color: var(--light-surface);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-neo);
  border: var(--border-neo);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.privacy-page h1,
.terms-page h1 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.privacy-page h2,
.terms-page h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.privacy-page p,
.terms-page p {
  margin-bottom: var(--space-md);
}

/* ==========================================================================
   Cookie Popup
   ========================================================================== */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background-color: var(--dark-surface);
  color: var(--text-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-neo);
  border: var(--border-neo);
  z-index: 1000;
  display: none;
}

.cookie-content p {
  margin-bottom: var(--space-md);
}

.cookie-btn {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  font-weight: 700;
  transition: background-color var(--transition-normal);
}

.cookie-btn:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center {
  text-align: center;
}

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

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

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

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

.hidden {
  visibility: hidden;
  opacity: 0;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease-out;
}

.animate-slideInUp {
  animation: slideInUp 1s ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft 1s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 1s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

