:root {
  /* Brutalist Color Palette - Bright Theme */
  --primary-color: #ff4d00; /* Bright Orange */
  --secondary-color: #00b8ff; /* Vibrant Blue */
  --accent-color: #ff00aa; /* Hot Pink */
  --dark-color: #1a1a1a; /* Near Black */
  --light-color: #ffffff; /* White */
  --gray-color: #f2f2f2; /* Light Gray */
  --dark-gray-color: #333333; /* Dark Gray */
  --success-color: #00d474; /* Bright Green */
  --warning-color: #ffd500; /* Bright Yellow */
  --error-color: #ff3c3c; /* Bright Red */
  
  /* Brutalist Gradients */
  --primary-gradient: linear-gradient(45deg, var(--primary-color), #ff7e00);
  --secondary-gradient: linear-gradient(45deg, var(--secondary-color), #0098ff);
  --accent-gradient: linear-gradient(45deg, var(--accent-color), #ff5ecc);
  
  /* Brutalist Shadows */
  --brutal-shadow: 5px 5px 0px rgba(0, 0, 0, 0.8);
  --subtle-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  
  /* Spacing */
  --section-spacing: 5rem;
  --element-spacing: 2rem;
  --small-spacing: 1rem;
}

/* Base Styles */
html, body {
  font-family: var(--body-font);
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light-color);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

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

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

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  color: var(--dark-color);
  text-align: center;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.underline {
  height: 6px;
  width: 100px;
  background: var(--primary-gradient);
  margin: 0 auto 2rem;
  border-radius: 3px;
}

/* Brutalist Button Styles */
.btn,
button,
input[type="submit"] {
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0;
  padding: 0.75rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--brutal-shadow);
  border: 3px solid var(--dark-color);
  letter-spacing: 1px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}

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

.btn:active,
button:active,
input[type="submit"]:active {
  transform: translate(4px, 4px);
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.8);
}

.btn-primary,
.btn-primary:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

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

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.btn-brutalism {
  position: relative;
  z-index: 1;
}

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

.btn-brutalism:hover::before {
  opacity: 1;
}

/* Form Controls */
.form-control,
.form-select {
  border-radius: 0;
  border: 2px solid var(--dark-color);
  padding: 0.75rem;
  font-family: var(--body-font);
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.form-control-brutalism,
.form-select-brutalism {
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.form-control-brutalism:focus,
.form-select-brutalism:focus {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

/* Header & Navigation */
.header-brutalism {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background-color: var(--light-color);
  box-shadow: var(--subtle-shadow);
  transition: all 0.3s ease;
}

.header-brutalism.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

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

.navbar-nav .nav-link {
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--dark-color);
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-toggler {
  border: 2px solid var(--dark-color);
  border-radius: 0;
  padding: 0.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--light-color);
  padding: 7rem 0;
  margin-top: 0;
  overflow: hidden;
}

.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-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
  color: var(--light-color);
}

.hero-text {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Vision Section */
.vision-section {
  padding: calc(var(--section-spacing) + 80px) 0 var(--section-spacing);
  position: relative;
  background-color: var(--light-color);
}

.vision-content {
  padding-right: 2rem;
}

.vision-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.vision-image-container {
  position: relative;
  box-shadow: var(--brutal-shadow);
  transform: rotate(2deg);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 5px solid var(--dark-color);
}

.vision-image-container:hover {
  transform: rotate(0deg);
}

.vision-image-container img {
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* Features Section */
.features-section {
  padding: var(--section-spacing) 0;
  background-color: var(--gray-color);
  position: relative;
  overflow: hidden;
}

.feature-card {
  height: 100%;
  border: none;
  border-radius: 0;
  background-color: var(--light-color);
  overflow: hidden;
  box-shadow: var(--brutal-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.8);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-bottom: 5px solid var(--dark-color);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.card-content {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

/* Team Section */
.team-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light-color);
  position: relative;
}

.team-card {
  border: none;
  border-radius: 0;
  background-color: var(--light-color);
  overflow: hidden;
  box-shadow: var(--brutal-shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.8);
}

.team-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-bottom: 5px solid var(--dark-color);
}

.team-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

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

/* Sustainability Section */
.sustainability-section {
  padding: var(--section-spacing) 0;
  background-color: var(--gray-color);
  position: relative;
}

.sustainability-image-container {
  position: relative;
  box-shadow: var(--brutal-shadow);
  transform: rotate(-2deg);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 5px solid var(--dark-color);
}

.sustainability-image-container:hover {
  transform: rotate(0deg);
}

.sustainability-image-container img {
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.sustainability-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

/* Innovation Section */
.innovation-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light-color);
  position: relative;
}

.innovation-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.innovation-gallery {
  margin-top: 2rem;
}

.image-container {
  position: relative;
  overflow: hidden;
  box-shadow: var(--brutal-shadow);
  transition: all 0.3s ease;
  border: 3px solid var(--dark-color);
  height: 250px;
}

.image-container:hover {
  transform: translateY(-5px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.8);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

/* Resources Section */
.resources-section {
  padding: var(--section-spacing) 0;
  background-color: var(--gray-color);
  position: relative;
}

.resource-card {
  border: none;
  border-radius: 0;
  background-color: var(--light-color);
  overflow: hidden;
  box-shadow: var(--brutal-shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.8);
}

.resource-card .btn {
  margin-top: auto;
}

/* Accolades Section */
.accolades-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light-color);
  position: relative;
}

.accolades-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.testimonials-container {
  margin-top: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background-color: var(--gray-color);
  box-shadow: var(--brutal-shadow);
  margin-bottom: 2rem;
  border: 3px solid var(--dark-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.8);
}

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

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid var(--primary-color);
}

.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

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

/* Instructors Section */
.instructors-section {
  padding: var(--section-spacing) 0;
  background-color: var(--gray-color);
  position: relative;
}

.instructor-card {
  border: none;
  border-radius: 0;
  background-color: var(--light-color);
  overflow: hidden;
  box-shadow: var(--brutal-shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instructor-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.8);
}

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

/* Contact Section */
.contact-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light-color);
  position: relative;
}

.contact-info h3,
.contact-form-container h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-details li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.contact-details li i {
  margin-right: 0.75rem;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.map-container {
  position: relative;
  overflow: hidden;
  box-shadow: var(--brutal-shadow);
  border: 3px solid var(--dark-color);
  height: 300px;
  margin-top: 2rem;
}

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

.contact-form-container {
  background-color: var(--gray-color);
  padding: 2rem;
  box-shadow: var(--brutal-shadow);
  border: 3px solid var(--dark-color);
}

/* Footer */
.footer-section {
  padding: 4rem 0 2rem;
  background-color: var(--dark-color);
  color: var(--light-color);
  position: relative;
}

.footer-section h3 {
  color: var(--light-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-gradient);
}

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

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

.footer-links a {
  color: var(--gray-color);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: none;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--gray-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
  padding: 3rem;
  background-color: var(--light-color);
  box-shadow: var(--brutal-shadow);
  border: 5px solid var(--dark-color);
}

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

.success-title {
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

/* About, Privacy, Terms Pages */
.page-content {
  padding-top: 120px;
  padding-bottom: var(--section-spacing);
}

.page-title {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 3rem;
}

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

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

.cookie-content p {
  margin-bottom: 0;
  margin-right: 1rem;
}

/* Particles Animation */
@keyframes particle-animation {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) rotate(360deg);
  }
}

.particle {
  position: absolute;
  background-color: var(--light-color);
  border-radius: 50%;
  pointer-events: none;
  animation: particle-animation 15s infinite linear;
}

/* Media Queries */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-text {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .vision-content,
  .sustainability-content,
  .innovation-content,
  .accolades-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .feature-card,
  .team-card,
  .resource-card,
  .instructor-card {
    margin-bottom: 2rem;
  }
  
  .section-spacing {
    padding: 3rem 0;
  }
  
  .vision-image-container,
  .sustainability-image-container,
  .innovation-gallery {
    margin-top: 1.5rem;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .footer-section h3 {
    margin-top: 2rem;
  }
}

/* Utility Classes */
.text-primary {
  color: var(--primary-color) !important;
}

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

.text-accent {
  color: var(--accent-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.bg-gray {
  background-color: var(--gray-color) !important;
}

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

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

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

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