:root {
  /* Color System */
  --primary: #5e72e4;
  --primary-light: #8392f7;
  --primary-dark: #4152b3;
  --secondary: #11cdef;
  --secondary-light: #4fe3ff;
  --secondary-dark: #0a9cbc;
  --accent: #fb6340;
  --accent-light: #ff8a6e;
  --accent-dark: #d94c2a;
  
  /* Neutrals */
  --white: #ffffff;
  --light: #f5f9fc;
  --light-gray: #e9ecef;
  --medium-gray: #8898aa;
  --dark-gray: #4a5568;
  --dark: #2d3748;
  --black: #1a202c;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  --gradient-dark: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
  --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  
  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --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 rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  
  /* Z-Index Layers */
  --z-base: 1;
  --z-above: 2;
  --z-modal: 10;
  --z-fixed: 100;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--dark);
}

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

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: var(--space-xl);
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

h3 {
  font-size: 1.75rem;
}

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

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Section Styles */
section {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

section:nth-child(odd) {
  background-color: var(--light);
}

section:nth-child(even) {
  background-color: var(--white);
}

/* Button Styles */
.button,
button,
input[type='submit'] {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
  text-align: center;
}

.button:hover,
button:hover,
input[type='submit']:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.button:active,
button:active,
input[type='submit']:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

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

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

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

.button.outline:hover {
  background: var(--primary);
  color: var(--white);
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  position: relative;
  padding-bottom: 3px;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
}

.read-more:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-lg);
}

.nav-desktop a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

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

.nav-desktop a:hover::after {
  transform: scaleX(1);
}

.nav-mobile {
  display: none;
  position: relative;
}

.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  transition: all var(--transition-fast);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all var(--transition-medium);
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Fixed CTA */
.fixed-cta {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: var(--z-fixed);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 0;
  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: var(--z-base);
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: var(--z-base);
}

.hero-content {
  position: relative;
  z-index: var(--z-above);
  max-width: 650px;
}

.hero-content h1,
.hero-content p {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-base);
  opacity: 0.4;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-content {
  max-width: 600px;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-medium);
}

.about-image:hover img {
  transform: scale(1.02) rotate(1deg);
}

/* Programs Section */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

.card-content {
  padding: var(--space-lg);
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.card-content .date {
  color: var(--medium-gray);
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
}

.card-content ul {
  margin-bottom: var(--space-md);
  width: 100%;
}

.card-content li {
  margin-bottom: var(--space-xs);
  position: relative;
  padding-left: var(--space-lg);
}

.card-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: var(--space-md) 0;
}

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

.instructors-section h2 {
  color: var(--white);
}

.instructors-section h2::after {
  background: var(--white);
}

.instructors-carousel {
  position: relative;
  margin-top: var(--space-xl);
}

.carousel-container {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  padding: var(--space-md) 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.instructors-carousel .card {
  min-width: 300px;
  scroll-snap-align: start;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.instructors-carousel .card-content {
  color: var(--white);
}

.instructors-carousel .card-content h3 {
  color: var(--white);
}

.instructors-carousel .card-image {
  height: 300px;
}

.instructors-carousel .card-image img {
  border-radius: 50%;
  object-fit: cover;
  width: 200px;
  height: 200px;
  margin: var(--space-md) auto;
  border: 3px solid var(--white);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.carousel-controls button {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.carousel-controls button:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.testimonials-section .card {
  position: relative;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.testimonials-section .card::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: var(--space-lg);
  font-size: 8rem;
  font-family: var(--font-heading);
  color: rgba(94, 114, 228, 0.1);
  line-height: 1;
}

.testimonials-section .card-image {
  width: 100px;
  height: 100px;
  margin-bottom: var(--space-md);
}

.testimonials-section .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary-light);
}

.testimonials-section .stars {
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

/* Portfolio Section */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background-color: var(--white);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.gallery-item:hover .image-container img {
  transform: scale(1.05);
}

.gallery-item h3,
.gallery-item p {
  padding: 0 var(--space-lg);
  text-align: center;
}

.gallery-item h3 {
  margin-top: var(--space-md);
  font-size: 1.25rem;
}

.gallery-item p {
  margin-bottom: var(--space-lg);
}

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

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

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

.resource-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

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

.resource-card h3 {
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.resource-card ul {
  margin-left: var(--space-md);
}

.resource-card li {
  margin-bottom: var(--space-sm);
}

.resource-card a {
  display: inline-block;
  padding-bottom: 2px;
  position: relative;
}

.resource-card a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
}

.resource-card a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Clientele Section */
.clientele-section {
  background-color: var(--white);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
  filter: grayscale(1);
  opacity: 0.7;
  transition: all var(--transition-medium);
}

.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

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

/* News Section */
.news-section {
  background-color: var(--light);
}

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

/* Contact Section */
.contact-section {
  background: var(--gradient-secondary);
  color: var(--white);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section h2::after {
  background: var(--white);
}

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

.contact-info {
  max-width: 500px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.contact-item h3 {
  color: var(--white);
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}

.contact-form-container {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--space-md);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}

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

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
}

.checkbox-group input {
  margin-right: var(--space-sm);
}

.contact-form button {
  margin-top: var(--space-sm);
  align-self: flex-start;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: var(--space-xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.footer-column h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-column a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
}

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

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.social-links a:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: var(--space-sm);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.social-links a[href*="facebook"]:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23f5f9fc" d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"/></svg>');
}

.social-links a[href*="twitter"]:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23f5f9fc" d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>');
}

.social-links a[href*="instagram"]:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23f5f9fc" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg>');
}

.social-links a[href*="linkedin"]:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23f5f9fc" d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"/></svg>');
}

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

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

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

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

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

/* Privacy & Terms Pages */
.privacy-content,
.terms-content {
  padding-top: 120px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h1,
.terms-content h1 {
  margin-bottom: var(--space-lg);
}

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

.privacy-content h3,
.terms-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

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

.privacy-content ul,
.terms-content ul {
  margin-bottom: var(--space-md);
  margin-left: var(--space-lg);
}

.privacy-content li,
.terms-content li {
  margin-bottom: var(--space-xs);
  list-style-type: disc;
}

/* Animation Styles */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Particle Animation */
.hero-particles canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Media Queries */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    margin-bottom: var(--space-lg);
  }
  
  .contact-info {
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .nav-mobile {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .programs-grid,
  .testimonials-grid,
  .portfolio-gallery,
  .resources-grid,
  .news-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }
  
  .client-logo {
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    text-align: center;
  }
}

/* Animations for page elements */
.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.pulse {
  animation: pulse 2s infinite;
}

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