:root {
  /* Color Palette - Complementary Color Scheme */
  --primary-color: #4A6FE3;
  --primary-dark: #3557B8;
  --primary-light: #7E9BF0;
  --primary-transparent: rgba(74, 111, 227, 0.1);

  --complementary-color: #E3974A;
  --complementary-dark: #B87735;
  --complementary-light: #F0BC7E;
  --complementary-transparent: rgba(227, 151, 74, 0.1);

  --dark-color: #333333;
  --light-color: #FFFFFF;
  --gray-color: #F5F5F7;
  --gray-dark: #909090;
  --gray-light: #F9F9F9;

  /* Shadows */
  --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  --button-shadow: 0 4px 10px rgba(74, 111, 227, 0.2);
  --hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  /* Typography */
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 2.5rem;
}

h2:after {
  /* content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: var(--complementary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%); */
}

h3 {
  font-size: 1.75rem;
}

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

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

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

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

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

section {
  padding: 80px 0;
}

/* Header & Navigation */
.header {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.navbar-toggler {
  border: none;
  background-color: transparent;
}

.nav-link {
  color: var(--dark-color) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  padding: 5px 0;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.nav-link:hover:after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Buttons */
.btn, button, input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-bounce);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  font-family: var(--heading-font);
  text-decoration: none;
}

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

.btn:active, button:active, input[type="submit"]:active {
  transform: translateY(0);
}

.btn-primary, button.btn-primary, input[type="submit"] {
  background-color: var(--primary-color);
  color: var(--light-color);
  box-shadow: var(--button-shadow);
}

.btn-primary:hover, button.btn-primary:hover, input[type="submit"]:hover {
  background-color: var(--primary-dark);
  color: var(--light-color);
}

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

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

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

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

.btn-lg {
  padding: 14px 32px;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 160px 0;
  color: var(--light-color);
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--light-color);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-color);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Mission Section */
.mission {
  position: relative;
}

.mission img {
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-bounce);
}

.mission img:hover {
  transform: scale(1.02);
}

/* Services Section */
.services {
  background-color: var(--gray-light);
}

.services .card {
  height: 100%;
  border: none;
  overflow: hidden;
  transition: transform var(--transition-fast);
  border-radius: 8px;
}

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

.card-image {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.card-content {
  padding: 25px;
  text-align: center;
}

.services .card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Workshops Section */
.workshops .card {
  overflow: hidden;
  border: none;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

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

.workshops .card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  overflow: hidden;
}

.workshops .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.workshops .card-content {
  text-align: center;
}

.workshops h3 {
  color: var(--primary-color);
}

.workshop-details {
  margin: 20px 0;
  padding: 15px;
  background-color: var(--primary-transparent);
  border-radius: 6px;
}

/* Team Section */
.team {
  background-color: var(--gray-light);
}

.team .card {
  border: none;
  overflow: hidden;
  transition: all var(--transition-fast);
  border-radius: 8px;
}

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

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

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

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

/* Instructors Section */
.instructors .card {
  overflow: hidden;
  border: none;
  transition: all var(--transition-fast);
  border-radius: 8px;
}

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

.instructors .card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.instructors .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  object-position: center;
}

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

/* Resources Section */
.resources .resource-item {
  transition: transform var(--transition-fast);
  border-radius: 8px;
}

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

.resources h3 {
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials .card {
  padding: 30px;
  border: none;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

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

.testimonial-stars {
  color: var(--complementary-color);
}

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

.author-image {
  margin-right: 15px;
}

.author-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* Blog Section */
.blog {
  background-color: var(--gray-light);
}

.blog .card {
  border: none;
  overflow: hidden;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

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

.blog .card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 225px;
  overflow: hidden;
}

.blog .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.blog-date {
  font-size: 0.9rem;
  color: var(--gray-dark);
}

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

.blog .btn {
  margin-top: 10px;
}

/* Media Section */
.media img {
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.media-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.media-logos img {
  height: 50px;
  object-fit: contain;
  margin: 0 15px 15px 0;
  filter: grayscale(100%);
  transition: filter var(--transition-fast);
}

.media-logos img:hover {
  filter: grayscale(0%);
}

/* Contact Section */
.contact {
  background-color: var(--gray-light);
}

.contact-info {
  padding: 30px;
  background-color: var(--light-color);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  margin-right: 15px;
  color: var(--primary-color);
}

.form-control, .form-select {
  padding: 12px;
  border: 1px solid var(--gray-dark);
  border-radius: 4px;
  margin-bottom: 5px;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem var(--primary-transparent);
}

label {
  margin-bottom: 8px;
  font-weight: 600;
  display: block;
}

/* Footer Section */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
}

.footer h3 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-color);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--complementary-color);
  transform: translateX(5px);
}

.footer address p {
  margin-bottom: 10px;
  color: var(--light-color);
}

.social-links a {
  display: inline-block;
  color: var(--light-color);
  margin-right: 15px;
  transition: color var(--transition-fast), transform var(--transition-bounce);
}

.social-links a:hover {
  color: var(--complementary-color);
  transform: translateY(-3px);
}

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

.success-content {
  max-width: 600px;
  padding: 50px;
  background-color: var(--light-color);
  border-radius: 10px;
  /* box-shadow: var(--card-shadow); */
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

.rounded-lg {
  border-radius: 10px !important;
}

.shadow-lg {
  box-shadow: var(--card-shadow) !important;
}

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

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

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

/* AOS Default Overrides */
[data-aos] {
  transition-duration: 800ms;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 120px 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-lg {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 100px 0;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .team .card-image, .blog .card-image, .workshops .card-image {
    height: 250px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .btn, button, input[type="submit"] {
    padding: 10px 20px;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-image {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
}

.footer p {
  color: #fff;
}

#cookie-consent p {
  color: #fff;
}