:root {
  /* Primary Colors */
  --primary-color: #ff6b6b;
  --primary-dark: #e05252;
  --primary-light: #ff8f8f;
  
  /* Secondary Colors */
  --secondary-color: #4ecdc4;
  --secondary-dark: #3ab4ac;
  --secondary-light: #76e0d9;
  
  /* Accent Colors */
  --accent-color: #ffbe0b;
  --accent-dark: #e5a900;
  --accent-light: #ffd256;
  
  /* Neutral Colors */
  --dark-color: #2d3436;
  --dark-light: #636e72;
  --light-color: #f8f9fa;
  --light-dark: #e9ecef;
  
  /* Glassmorphism Colors */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  
  /* Text Colors */
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  
  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  --gradient-dark: linear-gradient(135deg, var(--dark-color), var(--dark-light));
  
  /* 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);
  
  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
body {
  font-family: 'Rubik', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f7fa, #e8ecf1);
}

h1, h2, h3, h4, h5, h6, .title, .subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75em;
}

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

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--dark-color);
  font-weight: 700;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0.5rem auto 0;
  border-radius: var(--radius-full);
}

/* Glassmorphism */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  border-radius: var(--radius-md);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
}

.header .navbar {
  background: transparent;
}

.header .navbar-item {
  font-weight: 500;
  color: var(--dark-color);
  transition: color var(--transition-fast);
}

.header .navbar-item:hover {
  color: var(--primary-color);
  background-color: transparent;
}

.navbar-burger {
  color: var(--dark-color);
}

/* Buttons */
.button {
  font-weight: 500;
  transition: all var(--transition-fast);
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow-sm);
}

.button.is-primary {
  background: var(--gradient-primary);
}

.button.is-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.is-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-color);
}

.button.is-light:hover {
  background: #ffffff;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.is-light.is-outlined {
  background: transparent;
  border: 1px solid currentColor;
  box-shadow: none;
}

.button.is-light.is-outlined:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.button.is-rounded {
  border-radius: var(--radius-full);
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) translateZ(0);
  transition: transform 0.5s ease;
}

.hero-title:hover {
  transform: perspective(1000px) translateZ(30px);
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-text {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-down-arrow {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  cursor: pointer;
}

.scroll-down-arrow span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 3px solid var(--text-light);
  border-right: 3px solid var(--text-light);
  transform: rotate(45deg);
  margin: -10px auto 0;
  animation: scrollDown 2s infinite;
}

.scroll-down-arrow span:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}

/* Parallax Sections */
.parallax-section {
  position: relative;
  overflow: hidden;
}

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

.vision-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

/* Mission Section */
.mission-section {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(78, 205, 196, 0.05));
  padding: 6rem 1.5rem;
}

.mission-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mission-image {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: perspective(1000px) rotateY(0deg);
  transition: transform var(--transition-normal);
}

.mission-image:hover {
  transform: perspective(1000px) rotateY(5deg);
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

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

.mission-content .content {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
}

/* Services/Courses Section */
.services-section {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.05), rgba(255, 190, 11, 0.05));
  padding: 6rem 1.5rem;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

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

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

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

.service-card .title {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card .description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card .features {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.service-card .features li {
  margin-bottom: 0.5rem;
  position: relative;
}

.service-card .features li::before {
  content: '✓';
  position: absolute;
  left: -1.5rem;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Vision Section */
.vision-section {
  padding: 8rem 1.5rem;
  color: var(--text-light);
}

.vision-content {
  padding: 3rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

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

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

/* Resources Section */
.resources-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 190, 11, 0.05), rgba(255, 107, 107, 0.05));
}

.resource-card {
  display: block;
  padding: 2rem;
  height: 100%;
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
  text-decoration: none;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
}

.resource-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: color var(--transition-fast);
}

.resource-card:hover h3 {
  color: var(--primary-color);
}

.resource-card p {
  margin-bottom: 2rem;
}

.link-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary-color);
  transform: translateX(0);
  transition: transform var(--transition-fast);
}

.resource-card:hover .link-arrow {
  transform: translateX(5px);
}

/* Customer Stories Section */
.stories-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 190, 11, 0.1));
}

.custom-slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1200px;
}

.slider-track {
  display: flex;
  transition: transform var(--transition-normal);
}

.slide {
  min-width: 100%;
  padding: 2rem;
}

.story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.story-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: 5px solid rgba(255, 255, 255, 0.3);
}

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

.story-content {
  max-width: 800px;
}

.story-content h3 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.story-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.star {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.prev-button,
.next-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--dark-color);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.prev-button:hover,
.next-button:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(78, 205, 196, 0.05));
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.9);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-answer p {
  margin: 0;
  padding: 0 0 1.5rem;
}

/* Calendar Section */
.calendar-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 190, 11, 0.05), rgba(78, 205, 196, 0.05));
}

.event-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.event-date {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 1rem;
  text-align: center;
}

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

.event-date .month {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.event-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.event-type {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.event-description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Contact Section */
.contact-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
}

.contact-form-container {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.contact-form .input,
.contact-form .textarea {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--light-dark);
  transition: all var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus {
  box-shadow: 0 0 0 2px var(--primary-light);
  border-color: var(--primary-color);
}

.contact-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item .icon {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-item h3 {
  margin-bottom: 0.5rem;
}

.social-links {
  margin-top: 1rem;
}

.social-links .buttons {
  margin-top: 0.5rem;
  gap: 0.5rem;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--text-light);
  padding: 4rem 1.5rem 2rem;
}

.footer .title {
  color: var(--text-light);
}

.footer p {
  margin-bottom: 1rem;
}

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

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

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

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

.footer .social-links a {
  color: var(--light-dark);
  transition: color var(--transition-fast);
}

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

.newsletter-form .input {
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  color: var(--text-light);
}

.newsletter-form .input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  color: var(--light-dark);
}

/* Modals */
.modal-card-head {
  background: var(--gradient-primary);
  color: var(--text-light);
}

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

.modal-card-body {
  background: var(--light-color);
}

.modal-card-foot {
  background: var(--light-dark);
  justify-content: flex-end;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
}

.success-content {
  padding: 3rem;
  max-width: 800px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: var(--text-light);
  padding: 1rem;
  z-index: 9999;
  display: none;
}

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

.cookie-content p {
  margin: 0;
}

#accept-cookies {
  white-space: nowrap;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.page-content .container {
  max-width: 800px;
}

.page-content h1 {
  margin-bottom: 2rem;
}

.page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .vision-content {
    padding: 2rem;
  }
  
  .mission-content {
    flex-direction: column;
  }
  
  .story-card {
    flex-direction: column;
  }
  
  .contact-info {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 4rem 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content button {
    margin-top: 1rem;
    width: 100%;
  }
}

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

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

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float {
  animation: float 3s ease-in-out infinite;
}

/* 3D Effect for Cards */
.service-card, .event-card, .resource-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card:hover, .event-card:hover, .resource-card:hover {
  transform: translateY(-10px) rotateX(5deg);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}