/* =================================================================
   GLIMMER BEAM - PLAYFUL DYNAMIC DESIGN SYSTEM
   Public Speaking Coaching Website
   ================================================================= */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE6F0 100%);
  overflow-x: hidden;
}

/* PLAYFUL DYNAMIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a2e;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  animation: bounceIn 0.8s ease-out;
}

h2 {
  font-size: 36px;
  color: #FF6B9D;
}

h3 {
  font-size: 24px;
  color: #9D4EDD;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #2a2a2a;
}

a {
  color: #FF6B9D;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #FF1493;
  transform: translateY(-2px);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #2a2a2a;
}

/* PLAYFUL ANIMATIONS */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
  }
  50% {
    transform: scale(1.05) rotate(2deg);
  }
  70% {
    transform: scale(0.9) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #FF6B9D 0%, #9D4EDD 100%);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #FF6B9D 0%, #9D4EDD 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: #FF6B9D;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  background: #FFF5E6;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  animation: fadeInUp 0.5s ease-out backwards;
}

.mobile-nav a:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav a:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav a:nth-child(6) { animation-delay: 0.6s; }
.mobile-nav a:nth-child(7) { animation-delay: 0.7s; }

.mobile-nav a:hover {
  background: white;
  color: #FF6B9D;
  transform: translateX(10px);
}

/* HEADER */
header {
  background: white;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.15);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 3px solid #FF6B9D;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
  animation: wiggle 0.5s ease;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #1a1a2e;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B9D, #9D4EDD);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #FF6B9D;
  background: rgba(255, 107, 157, 0.1);
}

.main-nav a:hover::after {
  width: 80%;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B9D 0%, #FF1493 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
  animation: pulse 1s ease infinite;
}

.btn-secondary {
  background: linear-gradient(135deg, #9D4EDD 0%, #7B2CBF 100%);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(157, 78, 221, 0.4);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #FFB6D9 0%, #B8A0FF 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '✨';
  position: absolute;
  font-size: 100px;
  top: 20px;
  left: 10%;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

.hero::after {
  content: '🎤';
  position: absolute;
  font-size: 100px;
  bottom: 20px;
  right: 10%;
  opacity: 0.3;
  animation: wiggle 3s ease-in-out infinite;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: white;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
  font-size: 20px;
  color: white;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  color: white;
  font-weight: 600;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 20px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B9D, #9D4EDD, #FF6B9D);
  border-radius: 2px;
}

/* BENEFITS SECTION */
.benefits {
  background: white;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 280px;
  max-width: 300px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE6F0 100%);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid #FF6B9D;
  position: relative;
}

.benefit-card::before {
  content: '⭐';
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 40px;
  animation: pulse 2s ease-in-out infinite;
}

.benefit-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
}

.benefit-card h3 {
  color: #FF6B9D;
  margin-bottom: 16px;
}

/* SERVICES GRID */
.services-overview,
.services-detailed {
  background: linear-gradient(135deg, #B8A0FF 0%, #FFB6D9 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid #9D4EDD;
  position: relative;
}

.service-card:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(157, 78, 221, 0.4);
}

.service-card h3 {
  color: #9D4EDD;
  margin-bottom: 16px;
}

.service-detailed {
  background: white;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  border-left: 5px solid #FF6B9D;
  transition: all 0.3s ease;
}

.service-detailed:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.service-detailed h3 {
  color: #FF6B9D;
  margin-bottom: 16px;
}

.service-detailed .price {
  font-size: 24px;
  font-weight: 700;
  color: #9D4EDD;
  margin: 20px 0;
}

/* PROCESS STEPS */
.process {
  background: white;
  border-radius: 30px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step {
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE6F0 100%);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid #FF6B9D;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B9D 0%, #9D4EDD 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.step h3 {
  color: #FF6B9D;
  margin-bottom: 12px;
}

/* TESTIMONIALS */
.testimonials-preview,
.testimonials-grid-section,
.featured-testimonials {
  background: linear-gradient(135deg, #FFE6F0 0%, #FFF5E6 100%);
  border-radius: 30px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  border-left: 5px solid #9D4EDD;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 60px;
  color: #FFB6D9;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(157, 78, 221, 0.2);
}

.testimonial-card p {
  color: #2a2a2a;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card cite {
  color: #9D4EDD;
  font-weight: 600;
  font-style: normal;
  display: block;
}

.testimonial-detailed {
  background: white;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
  border-top: 5px solid #FF6B9D;
}

.testimonial-detailed blockquote {
  font-size: 20px;
  font-style: italic;
  color: #2a2a2a;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-detailed cite {
  color: #FF6B9D;
  font-weight: 600;
  font-style: normal;
}

.results {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE6F0 100%);
  border-radius: 15px;
}

.results h4 {
  color: #9D4EDD;
  margin-bottom: 12px;
}

.results ul {
  list-style: none;
  margin-left: 0;
}

.results li::before {
  content: '✓ ';
  color: #FF6B9D;
  font-weight: 700;
  margin-right: 8px;
}

/* STATS */
.stats,
.trust-stats {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stats span,
.trust-stats span {
  font-weight: 700;
  font-size: 16px;
  color: #FF6B9D;
  background: white;
  padding: 15px 30px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
}

.stats span:hover,
.trust-stats span:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
  transition: all 0.3s ease;
  border: 3px solid #FFB6D9;
}

.stat:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.3);
}

.stat strong {
  display: block;
  font-size: 48px;
  color: #FF6B9D;
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
}

.stat p {
  color: #2a2a2a;
  font-size: 16px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #FF6B9D 0%, #9D4EDD 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '🌟';
  position: absolute;
  font-size: 150px;
  top: -50px;
  left: -50px;
  opacity: 0.2;
  animation: pulse 3s ease-in-out infinite;
}

.cta-banner::after {
  content: '🎯';
  position: absolute;
  font-size: 150px;
  bottom: -50px;
  right: -50px;
  opacity: 0.2;
  animation: wiggle 3s ease-in-out infinite;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-banner p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-center {
  text-align: center;
  margin-top: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.guarantee,
.trust-badge,
.urgency {
  margin-top: 24px;
  font-size: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #FFB6D9 0%, #B8A0FF 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: white;
}

.breadcrumb a {
  color: white;
  text-decoration: underline;
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  color: white;
  font-size: 18px;
}

/* TEAM GRID */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.team-member {
  flex: 1 1 250px;
  max-width: 280px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
  transition: all 0.3s ease;
  border: 3px solid #FFB6D9;
}

.team-member:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.3);
}

.team-member h3 {
  color: #FF6B9D;
  margin-bottom: 12px;
}

/* PROGRAMS */
.program-highlight {
  background: linear-gradient(135deg, #FFB6D9 0%, #B8A0FF 100%);
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  color: white;
  box-shadow: 0 15px 50px rgba(255, 107, 157, 0.3);
}

.program-highlight h2 {
  color: white;
}

.program-highlight .tagline {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.outcomes {
  list-style: none;
  margin: 24px 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.outcomes li {
  color: white;
  padding: 10px 0;
  font-size: 16px;
}

.outcomes li::before {
  content: '✓ ';
  color: #FFE66D;
  font-weight: 700;
  margin-right: 8px;
  font-size: 20px;
}

.next-date {
  font-weight: 600;
  font-size: 18px;
  margin: 24px 0;
  color: #FFE66D;
}

.program-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
  transition: all 0.3s ease;
  border-left: 5px solid #9D4EDD;
}

.program-card:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(157, 78, 221, 0.25);
}

.program-card h3 {
  color: #FF6B9D;
  margin-bottom: 16px;
}

.program-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #9D4EDD;
  margin: 20px 0;
}

/* RESOURCES */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category {
  flex: 1 1 200px;
  max-width: 250px;
  background: linear-gradient(135deg, #FFB6D9 0%, #B8A0FF 100%);
  color: white;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
}

.category:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.resource-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
  transition: all 0.3s ease;
  border-top: 5px solid #FF6B9D;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.3);
}

.resource-card h3 {
  color: #FF6B9D;
  margin-bottom: 16px;
}

.format {
  display: inline-block;
  background: linear-gradient(135deg, #FFB6D9 0%, #B8A0FF 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin: 16px 0;
}

/* CONTACT */
.contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-info,
.contact-form-info {
  flex: 1 1 400px;
  max-width: 500px;
}

.contact-method {
  background: white;
  padding: 24px;
  border-radius: 15px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.1);
  border-left: 4px solid #FF6B9D;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
}

.contact-method h3 {
  color: #FF6B9D;
  margin-bottom: 12px;
  font-size: 20px;
}

/* FAQ */
.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.faq-item {
  flex: 1 1 400px;
  max-width: 500px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
  transition: all 0.3s ease;
  border-left: 5px solid #9D4EDD;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(157, 78, 221, 0.25);
}

.faq-item h3 {
  color: #9D4EDD;
  margin-bottom: 12px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #FFB6D9 0%, #B8A0FF 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: white;
  color: #FF6B9D;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
  animation: bounceIn 1s ease-out;
}

.thank-you-hero h1 {
  color: white;
}

.thank-you-hero p {
  color: white;
  font-size: 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.action-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
  transition: all 0.3s ease;
  border-top: 5px solid #FF6B9D;
}

.action-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.3);
}

.action-card h3 {
  color: #FF6B9D;
  margin-bottom: 16px;
}

/* LEGAL PAGES */
.legal-page {
  background: white;
  padding: 60px 20px;
  border-radius: 30px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.last-updated {
  color: #9D4EDD;
  font-style: italic;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: #FF6B9D;
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: left;
}

.legal-content h2::after {
  display: none;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* LISTS */
.guides-list,
.video-list,
.achievements-list,
.awards-list {
  list-style: none;
  margin-left: 0;
}

.guides-list li,
.video-list li,
.achievements-list li,
.awards-list li {
  background: white;
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.1);
  border-left: 4px solid #9D4EDD;
  transition: all 0.3s ease;
}

.guides-list li:hover,
.video-list li:hover,
.achievements-list li:hover,
.awards-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(157, 78, 221, 0.2);
}

.guides-list li::before,
.achievements-list li::before,
.awards-list li::before {
  content: '✓ ';
  color: #FF6B9D;
  font-weight: 700;
  margin-right: 8px;
  font-size: 20px;
}

.video-list li::before {
  content: '▶ ';
  color: #9D4EDD;
  font-weight: 700;
  margin-right: 8px;
  font-size: 16px;
}

/* ARTICLES */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

article {
  flex: 1 1 400px;
  max-width: 500px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
  transition: all 0.3s ease;
  border-top: 5px solid #9D4EDD;
}

article:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(157, 78, 221, 0.25);
}

article h3 {
  color: #FF6B9D;
  margin-bottom: 12px;
}

.meta {
  color: #999;
  font-size: 14px;
  margin-top: 16px;
  display: block;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, #FFB6D9 0%, #B8A0FF 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 30px;
}

.newsletter h2 {
  color: white;
}

.newsletter p,
.newsletter li {
  color: white;
}

.newsletter ul {
  list-style: none;
  max-width: 500px;
  margin: 24px auto;
  text-align: left;
}

.newsletter li::before {
  content: '✓ ';
  color: #FFE66D;
  font-weight: 700;
  margin-right: 8px;
  font-size: 20px;
}

.privacy-note {
  font-size: 12px;
  margin-top: 16px;
  opacity: 0.8;
}

/* MISSION & VALUES */
.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.mission-statement,
.vision-statement,
.values {
  flex: 1 1 300px;
  max-width: 350px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
  border-top: 5px solid #FF6B9D;
}

.values ul {
  list-style: none;
  margin-left: 0;
}

.values li::before {
  content: '⭐ ';
  margin-right: 8px;
  font-size: 16px;
}

/* TIMELINE */
.timeline {
  max-width: 700px;
  margin: 40px auto;
}

.milestone {
  background: white;
  padding: 24px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.1);
  border-left: 5px solid #9D4EDD;
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(157, 78, 221, 0.2);
}

.milestone strong {
  color: #FF6B9D;
  font-size: 20px;
  margin-right: 12px;
}

/* PRINCIPLES */
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.principle {
  flex: 1 1 250px;
  max-width: 280px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
  transition: all 0.3s ease;
  border: 3px solid #FFB6D9;
}

.principle:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.3);
}

.principle h3 {
  color: #FF6B9D;
  margin-bottom: 12px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #2a2a40 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 250px;
  max-width: 350px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #FFB6D9;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-col p,
.footer-col a {
  color: #ddd;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #ddd;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #FFB6D9;
  transform: translateX(5px);
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-legal a {
  color: #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #FFB6D9;
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FF6B9D 0%, #9D4EDD 100%);
  color: white;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 300px;
}

.cookie-text h4 {
  color: white;
  margin-bottom: 8px;
}

.cookie-text p {
  color: white;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: white;
  color: #FF6B9D;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cookie-settings {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-settings:hover {
  background: white;
  color: #FF6B9D;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1002;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.modal-content {
  background: white;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: bounceIn 0.5s ease-out;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF6B9D;
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  transform: rotate(90deg);
  background: #9D4EDD;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE6F0 100%);
  border-radius: 15px;
  border-left: 4px solid #FF6B9D;
}

.cookie-category h4 {
  color: #FF6B9D;
  margin-bottom: 8px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #FF6B9D;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .header-content {
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .team-grid,
  .stats-grid,
  .categories-grid,
  .resources-grid,
  .faq-grid,
  .articles-grid,
  .actions-grid,
  .steps-grid,
  .principles-grid {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .team-member,
  .stat,
  .category,
  .resource-card,
  .faq-item,
  article,
  .action-card,
  .principle {
    max-width: 100%;
  }

  .contact-grid {
    flex-direction: column;
  }

  .contact-info,
  .contact-form-info {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    max-width: 100%;
  }

  .footer-nav {
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .program-highlight {
    padding: 30px 20px;
  }

  .service-detailed,
  .program-card,
  .testimonial-detailed {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero {
    padding: 40px 20px;
  }

  section {
    padding: 30px 16px;
  }

  .modal-content {
    padding: 24px;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.p-20 {
  padding: 20px;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* ACCESSIBILITY */
.btn:focus,
a:focus,
button:focus {
  outline: 3px solid #FF6B9D;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}