/* Variables */
:root {
  /* Main Colors - Split-complementary color scheme */
  --primary: #ff6b35; /* Vibrant orange */
  --primary-dark: #e54b15;
  --secondary: #2e86ab; /* Teal blue */
  --secondary-dark: #1a6785;
  --accent: #8c30f5; /* Purple */
  --accent-dark: #6a1fd0;
  
  /* Neutral Colors */
  --dark: #2d2d2a;
  --light: #f6f7eb;
  --white: #ffffff;
  --black: #121212;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --gray-dark: #343a40;
  
  /* Background Colors */
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;
  
  /* Sizing */
  --header-height: 80px;
  --section-padding: 5rem 0;
  --card-border-radius: 15px;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

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

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

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

/* Typography Classes */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}

.animated-text {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
  margin-bottom: 2rem;
}

.animated-text::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transition: width var(--transition-medium);
}

.animated-text:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  position: relative;
  overflow: hidden;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease-in-out;
  z-index: -1;
}

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

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Retro Buttons */
.retro-button {
  position: relative;
  border-radius: 0;
  background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  font-weight: 700;
  padding: 12px 30px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all var(--transition-fast);
}

.retro-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  color: var(--white);
}

.retro-button:active {
  transform: translate(5px, 5px);
  box-shadow: none;
}

.retro-button-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.retro-button-sm:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

/* Form Styles */
.form-control, .retro-input {
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  padding: 12px 15px;
  background-color: var(--bg-light);
  transition: all var(--transition-fast);
}

.form-control:focus, .retro-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

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

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Header Styles */
.retro-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  z-index: 1000;
  transition: all var(--transition-fast);
}

.retro-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.brand-text {
  background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  padding: 0.5rem 1rem !important;
  margin: 0 0.2rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

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

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

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

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

.hero-title {
  font-size: 4rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  color: var(--white);
}

/* Particle Animation */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.particles-container::before,
.particles-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(140, 48, 245, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(46, 134, 171, 0.05) 0%, transparent 30%);
  animation: particleAnimation 15s infinite alternate;
}

@keyframes particleAnimation {
  0% {
    background-position: 0% 0%, 100% 100%, 50% 50%;
    background-size: 100% 100%, 100% 100%, 100% 100%;
  }
  50% {
    background-position: 50% 20%, 70% 40%, 30% 60%;
    background-size: 150% 150%, 120% 120%, 110% 110%;
  }
  100% {
    background-position: 100% 0%, 0% 100%, 50% 20%;
    background-size: 130% 130%, 140% 140%, 90% 90%;
  }
}

/* Success Stories Section */
.success-stories-section {
  padding: var(--section-padding);
  background-color: var(--bg-light);
}

.section-header {
  margin-bottom: 4rem;
}

.story-card {
  height: 100%;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  border: none;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.card-content p {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

.card-content a {
  margin-top: auto;
  align-self: flex-start;
}

/* Retro Progress Bars */
.retro-progress {
  height: 12px;
  border-radius: 0;
  overflow: visible;
  background-color: var(--gray-light);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.retro-progress .progress-bar {
  background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
  position: relative;
  border-radius: 0;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.retro-progress .progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: var(--white);
}

/* Accordion Styles */
.retro-accordion {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.retro-accordion .accordion-item {
  border: none;
  margin-bottom: 1px;
}

.retro-accordion .accordion-header {
  margin: 0;
}

.retro-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 1.5rem 2rem;
  background-color: var(--bg-light);
  color: var(--dark);
  box-shadow: none;
  border-radius: 0 !important;
}

.retro-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
}

.retro-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.retro-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.retro-accordion .accordion-body {
  padding: 2rem;
  background-color: var(--white);
}

.retro-accordion-sm .accordion-button {
  padding: 1rem 1.5rem;
}

/* Statistics Section */
.statistics-section {
  position: relative;
  padding: var(--section-padding);
  color: var(--white);
}

.statistics-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

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

.stats-row {
  margin-top: 3rem;
}

.stat-card {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--card-border-radius);
  text-align: center;
  transition: all var(--transition-medium);
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  font-family: var(--font-heading);
}

.stat-number {
  margin-right: 5px;
}

.stat-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.stat-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: var(--card-border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -80px;
  left: -30px;
  font-size: 150px;
  font-family: serif;
  color: var(--primary);
  opacity: 0.1;
  z-index: -1;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  color: var(--dark);
}

.testimonial-author p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

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

.resource-card {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.resource-card .card-image {
  height: 200px;
}

.resource-card .card-content {
  background-color: var(--white);
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.resource-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.resource-card p {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

.resource-card a {
  margin-top: auto;
  align-self: flex-start;
}

/* Instructors/Consultores Section */
.instructors-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.instructor-card {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: none;
}

.instructor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.instructor-card .card-image {
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.instructor-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.instructor-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.instructor-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.instructor-specialty {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.instructor-specialty .badge {
  background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 30px;
}

/* Mission & Vision Section */
.mission-section {
  position: relative;
  padding: var(--section-padding);
  color: var(--white);
}

.mission-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

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

.mission-card, .vision-card, .values-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--card-border-radius);
  padding: 3rem;
  height: 100%;
  transition: all var(--transition-medium);
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.mission-card h2, .vision-card h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.mission-card h2::after, .vision-card h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transition: width var(--transition-medium);
}

.mission-card:hover h2::after, .vision-card:hover h2::after {
  width: 100%;
}

.mission-card p, .vision-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.values-card {
  margin-top: 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--dark);
}

.values-card h2 {
  color: var(--dark);
  margin-bottom: 2rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--card-border-radius);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  height: 100%;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.value-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.value-item p {
  color: var(--gray-dark);
  margin-bottom: 0;
}

/* Research Section */
.research-section {
  padding: var(--section-padding);
  background-color: var(--bg-light);
}

.research-card {
  padding: 2.5rem;
  border-radius: var(--card-border-radius);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  height: 100%;
  text-align: center;
}

.research-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.research-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  display: inline-block;
  position: relative;
}

.research-icon::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  transition: width var(--transition-medium);
}

.research-card:hover .research-icon::after {
  width: 80px;
}

.research-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.research-card p {
  color: var(--gray-dark);
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: var(--section-padding);
  color: var(--dark);
}

.contact-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
  z-index: -1;
}

.contact-info-card, .contact-form-card {
  background-color: var(--white);
  border-radius: var(--card-border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

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

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-item p {
  margin-bottom: 0;
  color: var(--dark);
}

.map-container {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-form-card p {
  color: var(--gray-dark);
  margin-bottom: 2rem;
}

/* Footer */
.retro-footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.retro-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.retro-footer h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.retro-footer h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.retro-footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 1rem;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  opacity: 0;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 1.5rem;
}

.footer-links a:hover::before {
  opacity: 1;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  transition: all var(--transition-fast);
  position: relative;
}

.social-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transition: width var(--transition-fast);
}

.social-links a:hover {
  color: var(--white);
}

.social-links a:hover::after {
  width: 100%;
}

.newsletter-form .input-group {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 5px;
}

.newsletter-form .form-control {
  background-color: transparent;
  border: none;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
  border-radius: 50px;
  padding: 10px 20px;
  background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: var(--white);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

.success-content {
  max-width: 600px;
  padding: 4rem;
  background-color: var(--white);
  border-radius: var(--card-border-radius);
  box-shadow: var(--shadow-lg);
}

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

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.success-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--gray-dark);
}

/* Privacy & Terms Pages */
.page-content {
  padding: 120px 0 5rem;
  background-color: var(--bg-light);
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.page-subtitle {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.5rem;
  color: var(--dark);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--white);
  z-index: 9999;
  display: none;
}

.cookie-content {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 0;
  color: var(--white);
}

.cookie-content a {
  color: var(--primary);
  text-decoration: underline;
}

/* Parallax Effect */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Media Queries */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 991px) {
  :root {
    --section-padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .card-image {
    height: 220px;
  }
  
  .instructor-card .card-image {
    height: 300px;
  }
  
  .stat-circle {
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .mission-card, .vision-card, .values-card, 
  .contact-info-card, .contact-form-card {
    padding: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .card-image {
    height: 200px;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom .text-md-end {
    text-align: center !important;
    margin-top: 1rem;
  }
}

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

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

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

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

.slide-in-right {
  animation: slideInRight 1s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 1s ease forwards;
}

/* Utility Classes */
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

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

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

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

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