/* ======================================
   BUGABRAT.COM PREMIUM STYLING
   Modern, Elegant, Professional Design
   ====================================== */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Reset & Base Styles */
:root {
  /* Primary Colors */
  --grief-green: #388600;
  --trauma-purple: #B853D1;
  
  /* Neutral Palette */
  --dark: #2D3142;
  --medium: #4F5D75;
  --light: #E8EBF2;
  --white: #FFFFFF;
  
  /* Accent Colors */
  --accent-gold: #D4AF37;
  --accent-teal: #39A0A9;
  
  /* Typography */
  --heading-font: 'Cormorant', serif;
  --body-font: 'Montserrat', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
  
  /* Shadows */
  --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 8px 30px rgba(0, 0, 0, 0.1);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* Base Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--body-font);
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--grief-green), var(--trauma-purple));
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-title-container {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Flex Utilities */
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: var(--shadow-small);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transition: all 0.8s ease;
}

.btn:hover::after {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--grief-green), var(--trauma-purple));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark);
  border: 2px solid var(--medium);
}

.btn-secondary:hover {
  background-color: var(--light);
  transform: translateY(-3px);
}

.btn-accent {
  background-color: var(--accent-gold);
  color: var(--dark);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}
/* Alert messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert.success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert.error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}


/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-small);
  transition: all var(--transition-medium);
  padding: var(--space-md) 0;
}

.header-scrolled {
  padding: var(--space-sm) 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo img {
  height: 40px;
  width: auto;
}

.main-nav ul {
  display: none;
  list-style: none;
  gap: var(--space-lg);
}

.main-nav a {
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--grief-green), var(--trauma-purple));
  transition: width var(--transition-medium);
}

.main-nav a:hover::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

@media (min-width: 768px) {
  .main-nav ul {
    display: flex;
  }
  
  .mobile-nav-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1001;
  padding: var(--space-xl) var(--space-lg);
  transition: right var(--transition-medium);
  box-shadow: var(--shadow-large);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  margin-top: var(--space-xl);
}

.mobile-menu li {
  margin-bottom: var(--space-lg);
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 500;
}

.mobile-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, rgba(56, 134, 0, 0.05), rgba(184, 83, 209, 0.05));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle, rgba(184, 83, 209, 0.1) 0%, rgba(184, 83, 209, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle, rgba(56, 134, 0, 0.1) 0%, rgba(56, 134, 0, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  margin-bottom: var(--space-lg);
  position: relative;
}

.hero h1 span {
  display: block;
  font-size: 0.5em;
  font-weight: 400;
  margin-bottom: var(--space-sm);
  color: var(--medium);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
  color: var(--medium);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-image {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 45%;
  max-width: 600px;
  z-index: 1;
  display: none;
}

@media (min-width: 992px) {
  .hero-image {
    display: block;
  }
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 134, 0, 0.1) 0%, rgba(56, 134, 0, 0) 70%);
  top: -150px;
  left: -150px;
  z-index: -1;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(56, 134, 0, 0.2), rgba(184, 83, 209, 0.2));
  opacity: 0.5;
}

.credentials {
  margin-top: var(--space-lg);
}

/* Continuing from where we left off */
.credential-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-fast);
  }
  
  .credential-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
  }
  
  .credential-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--grief-green), var(--trauma-purple));
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.2rem;
  }
  
  .credential-text h4 {
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
  }
  
  .credential-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--medium);
  }
  
  /* Services Section */
  .services {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
  }
  
  .services::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 83, 209, 0.1) 0%, rgba(184, 83, 209, 0) 70%);
    bottom: -200px;
    right: -200px;
    z-index: 0;
  }
  
  .service-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
  }
  
  @media (min-width: 768px) {
    .service-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-medium);
    position: relative;
    z-index: 1;
    --accent-color: var(--dark);
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
  }
  
  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--accent-color);
    z-index: 1;
  }
  
  .card-header {
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
  }
  
  .card-icon {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
  }
  
  .card-body {
    padding: var(--space-lg);
  }
  
  .card-title {
    margin-bottom: var(--space-md);
    color: var(--accent-color);
    font-size: 1.5rem;
  }
  
  .card-text {
    margin-bottom: var(--space-lg);
  }
  
  .toggle-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
  }
  
  .toggle-btn:hover {
    opacity: 0.8;
  }
  
  .toggle-btn::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
  }
  
  .toggle-btn.active::after {
    transform: rotate(45deg);
  }
  
  .details {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
    margin-top: var(--space-md);
  }
  
  .details.active {
    max-height: 500px;
  }
  
  .details-content {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  
  .feature-list {
    list-style: none;
  }
  
  .feature-list li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
  }
  
  .feature-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
  }
  
  /* Featured Course Section */
  .featured-course {
    position: relative;
    overflow: hidden;
  }
  
  .featured-course::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 134, 0, 0.1) 0%, rgba(56, 134, 0, 0) 70%);
    top: -150px;
    right: -150px;
    z-index: 0;
  }
  
  .course-highlight {
    background: linear-gradient(135deg, rgba(56, 134, 0, 0.05), rgba(184, 83, 209, 0.05));
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 1;
  }
  
  @media (min-width: 768px) {
    .course-highlight {
      grid-template-columns: 3fr 2fr;
    }
  }
  
  .course-info {
    padding: var(--space-xl);
  }
  
  .course-details {
    list-style: none;
    margin: var(--space-lg) 0;
  }
  
  .course-details li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.1rem;
  }
  
  .course-details li::before {
    content: '•';
    color: var(--accent-gold);
    font-size: 1.5rem;
  }
  
  .course-image {
    position: relative;
    min-height: 300px;
    background-image: url('../images/parenting-course.jpg');
    background-size: cover;
    background-position: center;
  }
  
  .course-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 134, 0, 0.3), rgba(184, 83, 209, 0.3));
  }
  
  .course-cta {
    margin-top: var(--space-lg);
  }
  
  /* Testimonials Section */
  .testimonials {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
  }
  
  .testimonials::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 134, 0, 0.1) 0%, rgba(56, 134, 0, 0) 70%);
    top: -200px;
    left: -200px;
    z-index: 0;
  }
  
  .testimonial-slider {
    position: relative;
    z-index: 1;
  }
  
  .testimonial-item {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-medium);
    position: relative;
    margin: 0 var(--space-md);
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-lg);
  }
  
  .testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--accent-gold);
    font-family: var(--heading-font);
    line-height: 1;
    opacity: 0.3;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }
  
  .author-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
  }
  
  .author-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
  }
  
  .author-info p {
    margin-bottom: 0;
    color: var(--medium);
    font-size: 0.9rem;
  }
  
  /* Contact Section */
  .contact {
    position: relative;
    overflow: hidden;
  }
  
  .contact::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 83, 209, 0.1) 0%, rgba(184, 83, 209, 0) 70%);
    bottom: -150px;
    right: -150px;
    z-index: 0;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
  }
  
  @media (min-width: 768px) {
    .contact-container {
      grid-template-columns: 3fr 2fr;
    }
  }
  
  .contact-form {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-medium);
  }
  
  .form-group {
    margin-bottom: var(--space-md);
  }
  
  .form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--dark);
  }
  
  .form-control {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all var(--transition-fast);
  }
  
  .form-control:focus {
    outline: none;
    border-color: var(--trauma-purple);
    box-shadow: 0 0 0 3px rgba(184, 83, 209, 0.1);
  }
  
  textarea.form-control {
    resize: vertical;
    min-height: 150px;
  }
  
  .contact-info {
    background: linear-gradient(135deg, var(--grief-green), var(--trauma-purple));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .contact-info h3 {
    color: var(--white);
    margin-bottom: var(--space-lg);
  }
  
  .contact-info p {
    margin-bottom: var(--space-md);
  }
  
  .contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 1.2rem;
  }
  
  .qr-code {
    margin-top: var(--space-xl);
    text-align: center;
  }
  
  .qr-code img {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--space-md);
    background-color: var(--white);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }
  
  .qr-code p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  
  /* Alert Messages */
  .alert {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
  }
  
  .alert.success {
    background-color: rgba(56, 134, 0, 0.1);
    border-left: 4px solid var(--grief-green);
    color: var(--grief-green);
  }
  
  .alert.error {
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    color: #dc3545;
  }
  
  .alert ul {
    margin: 0;
    padding-left: var(--space-lg);
  }
  
  /* Footer */
  .site-footer {
    background-color: var(--dark);
    color: var(--light);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
  }
  
  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: 2fr 1fr 1fr;
    }
  }
  
  .footer-logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    display: inline-block;
  }
  
  .footer-about p {
    color: var(--light);
    margin-bottom: var(--space-md);
  }
  
  .footer-heading {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--grief-green), var(--trauma-purple));
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: var(--space-sm);
  }
  
  .footer-links a {
    color: var(--light);
    transition: color var(--transition-fast);
  }
  
  .footer-links a:hover {
    color: var(--white);
  }
  
  .footer-contact-item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--light);
  }
  
  .footer-contact-item i {
    color: var(--accent-gold);
  }
  
  .social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: all var(--transition-fast);
  }
  
  .social-link:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--light);
    font-size: 0.9rem;
  }
  
  /* 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); }
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  .animate-fade-in {
    animation: fadeIn 1s ease forwards;
  }
  
  .animate-slide-right {
    animation: slideInRight 1s ease forwards;
  }
  
  .animate-slide-left {
    animation: slideInLeft 1s ease forwards;
  }
  
  .animate-pulse {
    animation: pulse 2s infinite;
  }
  
  /* Utility Classes */
  .text-center { text-align: center; }
  .text-right { text-align: right; }
  .text-left { text-align: left; }
  
  .mt-sm { margin-top: var(--space-sm); }
  .mt-md { margin-top: var(--space-md); }
  .mt-lg { margin-top: var(--space-lg); }
  .mt-xl { margin-top: var(--space-xl); }
  
  .mb-sm { margin-bottom: var(--space-sm); }
  .mb-md { margin-bottom: var(--space-md); }
  .mb-lg { margin-bottom: var(--space-lg); }
  .mb-xl { margin-bottom: var(--space-xl); }
  
  .pt-sm { padding-top: var(--space-sm); }
  .pt-md { padding-top: var(--space-md); }
  .pt-lg { padding-top: var(--space-lg); }
  .pt-xl { padding-top: var(--space-xl); }
  
  .pb-sm { padding-bottom: var(--space-sm); }
  .pb-md { padding-bottom: var(--space-md); }
  .pb-lg { padding-bottom: var(--space-lg); }
  .pb-xl { padding-bottom: var(--space-xl); }
  
  .text-grief { color: var(--grief-green); }
  .text-trauma { color: var(--trauma-purple); }
  .text-gold { color: var(--accent-gold); }
  .text-teal { color: var(--accent-teal); }
  
  .bg-light { background-color: var(--light); }
  .bg-white { background-color: var(--white); }
  .bg-dark { background-color: var(--dark); color: var(--white); }
  
  .shadow-sm { box-shadow: var(--shadow-small); }
  .shadow-md { box-shadow: var(--shadow-medium); }
  .shadow-lg { box-shadow: var(--shadow-large); }
  
  .rounded-sm { border-radius: var(--radius-sm); }
  .rounded-md { border-radius: var(--radius-md); }
  .rounded-lg { border-radius: var(--radius-lg); }
  .rounded-xl { border-radius: var(--radius-xl); }
  .rounded-full { border-radius: var(--radius-full); }
  
  /* Responsive Adjustments */
  @media (max-width: 576px) {
    .container {
      width: 95%;
    }
    
    h1 {
      font-size: 2.2rem;
    }
    
    h2 {
      font-size: 1.8rem;
    }
    
    .hero-buttons {
      flex-direction: column;
    }
    
    .btn {
      width: 100%;
    }
    
    .course-highlight {
      padding: var(--space-md);
    }
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--light);
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--grief-green), var(--trauma-purple));
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--dark);
  }
  
  /* Fancy Gradient Text */
  .gradient-text {
    background: linear-gradient(90deg, var(--grief-green), var(--trauma-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }
  
  /* Card Hover Effects */
  .hover-card {
    transition: all var(--transition-medium);
    position: relative;
    z-index: 1;
  }
  
  .hover-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--grief-green), var(--trauma-purple));
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
    border-radius: inherit;
  }
  
  .hover-card:hover {
    transform: translateY(-10px);
    color: var(--white);
  }
  
  .hover-card:hover::before {
    opacity: 1;
  }
  
  .hover-card:hover .hover-card-content * {
    color: var(--white);
  }
  
  /* Floating Elements */
  .floating {
    animation: floating 3s ease-in-out infinite;
  }
  
  @keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
  }
  
  /* Fancy Dividers */
  .divider {
    height: 4px;
    width: 60px;
    margin: var(--space-md) 0;
    background: linear-gradient(90deg, var(--grief-green), var(--trauma-purple));
    border-radius: var(--radius-full);
  }
  
  .divider-center {
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Image Overlays */
  .image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
  }
  
  .image-overlay img {
    transition: transform var(--transition-medium);
  }
  
  .image-overlay:hover img {
    transform: scale(1.05);
  }
  
  .overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: var(--white);
    transition: all var(--transition-medium);
  }
  
  .image-overlay:hover .overlay-content {
    background: linear-gradient(to top, rgba(56, 134, 0, 0.8), rgba(184, 83, 209, 0.4), rgba(0,0,0,0));
  }
  
  /* Fancy List Styles */
  .fancy-list {
    list-style: none;
  }
  
  .fancy-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
  }
  
  .fancy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--grief-green), var(--trauma-purple));
  }
  
  /* Glassmorphism Effects */
  .glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  /* Custom Focus Styles */
  :focus {
    outline: 3px solid rgba(184, 83, 209, 0.5);
    outline-offset: 2px;
  }
  
  /* Accessibility Improvements */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  /* Skip to content link for keyboard users */
  .skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--dark);
    color: var(--white);
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
  }
  
  .skip-link:focus {
    top: 0;
  }
  
  /* Print Styles */
  @media print {
    .no-print {
      display: none;
    }
    
    body {
      font-size: 12pt;
      line-height: 1.5;
      color: #000;
      background: #fff;
    }
    
    a {
      color: #000;
      text-decoration: underline;
    }
    
    .container {
      width: 100%;
      max-width: none;
    }
  }
  
  .alignable-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6em;
    height: 1.6em;
    font-size: 1.2em;
    font-weight: 700;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #1c4e80, #2bb673);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    letter-spacing: -0.03em;
  }
  