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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Typography - Playful & Dynamic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2C5F7C;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  animation: bounceIn 0.8s ease;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E8A87C 0%, #F4A460 100%);
  border-radius: 2px;
  animation: slideIn 0.6s ease;
}

h3 {
  font-size: 24px;
  color: #2C5F7C;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

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

/* Header - Playful Navigation */
header {
  background: linear-gradient(135deg, #2C5F7C 0%, #3A7A9C 100%);
  padding: 16px 0;
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease;
}

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

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

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
}

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

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

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #E8A87C;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-nav a:hover {
  color: #E8A87C;
  transform: translateY(-2px);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #E8A87C;
  border: none;
  color: #FFFFFF;
  font-size: 28px;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(232, 168, 124, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  background: #D89968;
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F7C 0%, #1E4A61 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(232, 168, 124, 0.3);
  border-left-color: #E8A87C;
  transform: translateX(8px);
}

/* Hero Section - Dynamic & Energetic */
.hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #4A8FB0 50%, #E8A87C 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: gradientShift 8s ease infinite;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(244, 241, 232, 0.2) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(232, 168, 124, 0.2) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite reverse;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  animation: bounceIn 1s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: #F4F1E8;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 1.4s ease;
}

.trust-indicator {
  animation: fadeInUp 1.6s ease;
}

.trust-indicator p {
  color: #F4F1E8;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

/* Buttons - Playful & Bold */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, #E8A87C 0%, #F4A460 100%);
  color: #FFFFFF;
  animation: pulse 2s ease infinite;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F4A460 0%, #E8A87C 100%);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: #2C5F7C;
}

.service-card .btn,
.package-card .btn,
.resource-card .btn {
  background: #2C5F7C;
  color: #FFFFFF;
  margin-top: 16px;
}

.service-card .btn:hover,
.package-card .btn:hover,
.resource-card .btn:hover {
  background: #1E4A61;
}

/* Sections - Vibrant Spacing */
.section,
section {
  padding: 60px 20px;
  margin-bottom: 40px;
  position: relative;
}

/* Problem Solution Section */
.problem-solution {
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 100%);
  text-align: center;
  padding: 60px 20px;
}

.problem-solution h2 {
  color: #2C5F7C;
  font-size: 42px;
  margin-bottom: 20px;
  animation: bounceIn 0.8s ease;
}

.solution-text {
  font-size: 20px;
  color: #E8A87C;
  font-weight: 600;
  margin-bottom: 32px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.benefits-list li {
  padding: 16px 20px;
  background: #FFFFFF;
  border-left: 4px solid #E8A87C;
  border-radius: 8px;
  font-weight: 600;
  color: #2C5F7C;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: slideInLeft 0.5s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(232, 168, 124, 0.3);
}

/* Featured Services - Card Grid */
.featured-services,
.courses-list,
.corporate-packages {
  background: #FFFFFF;
  padding: 60px 20px;
}

.services-grid,
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.service-card,
.package-card {
  flex: 1 1 340px;
  max-width: 380px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card:hover,
.package-card:hover {
  transform: translateY(-12px) rotate(2deg);
  box-shadow: 0 16px 40px rgba(232, 168, 124, 0.3);
  border-color: #E8A87C;
}

.service-card.featured {
  border-color: #E8A87C;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #E8A87C 0%, #F4A460 100%);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(232, 168, 124, 0.4);
  animation: wiggle 2s ease infinite;
}

.service-card h3,
.package-card h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
  margin-top: 8px;
}

.service-card p,
.package-card p {
  color: #555555;
  line-height: 1.7;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #E8A87C;
  margin: 20px 0;
  display: block;
}

.duration {
  font-size: 14px;
  color: #888888;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.features-list {
  margin: 20px 0;
  padding: 0;
}

.features-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #555555;
  line-height: 1.6;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8A87C;
  font-weight: 700;
  font-size: 18px;
}

/* Benefits Grid */
.benefits {
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

.benefit-item,
.benefit-card {
  flex: 1 1 260px;
  max-width: 300px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #E8A87C;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.benefit-item:hover,
.benefit-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 32px rgba(232, 168, 124, 0.3);
}

.benefit-item h3,
.benefit-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.benefit-card .stat {
  font-size: 48px;
  font-weight: 700;
  color: #E8A87C;
  margin-bottom: 12px;
  display: block;
  animation: countUp 2s ease;
}

/* Testimonials - High Contrast */
.testimonials {
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A61 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23F4F1E8" opacity="0.3"/></svg>');
  opacity: 0.1;
  animation: float 20s linear infinite;
}

.testimonials h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
}

.testimonials h2::after {
  background: #E8A87C;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-card {
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(232, 168, 124, 0.4);
}

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

.quote {
  font-size: 18px;
  line-height: 1.7;
  color: #2C2C2C;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.author {
  font-weight: 700;
  color: #2C5F7C;
  font-size: 14px;
  margin: 0;
}

.course {
  font-size: 13px;
  color: #888888;
  margin: 0;
}

/* Stats Section */
.stats {
  background: #F4F1E8;
  padding: 60px 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat-item {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-item:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 24px rgba(232, 168, 124, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #E8A87C;
  margin-bottom: 8px;
  animation: countUp 2s ease;
}

.stat-label {
  font-size: 14px;
  color: #2C5F7C;
  font-weight: 600;
  margin: 0;
}

/* CTA Banner - Eye-catching */
.cta-banner {
  background: linear-gradient(135deg, #E8A87C 0%, #F4A460 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 38px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  background: #FFFFFF;
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #FFFFFF;
  color: #E8A87C;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: #2C5F7C;
  color: #FFFFFF;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #4A8FB0 100%);
  padding: 80px 20px 60px;
  text-align: center;
  color: #FFFFFF;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 20px;
  color: #F4F1E8;
  max-width: 700px;
  margin: 0 auto 16px;
}

.stats-bar {
  font-weight: 600;
  color: #E8A87C;
  font-size: 14px;
}

/* About Page Specific */
.our-story,
.values,
.team,
.accreditation {
  padding: 60px 20px;
}

.our-story {
  background: #F4F1E8;
}

.our-story p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 24px;
}

blockquote {
  font-size: 24px;
  font-style: italic;
  color: #2C5F7C;
  text-align: center;
  padding: 32px;
  background: #FFFFFF;
  border-left: 6px solid #E8A87C;
  border-radius: 8px;
  margin: 32px auto;
  max-width: 700px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.value-card {
  flex: 1 1 260px;
  max-width: 300px;
  background: #FFFFFF;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #2C5F7C;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.value-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-top-color: #E8A87C;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.team-member {
  flex: 1 1 260px;
  max-width: 300px;
  background: #F4F1E8;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.team-member:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 12px 32px rgba(232, 168, 124, 0.3);
}

.team-member h3 {
  margin-bottom: 8px;
}

.title {
  font-weight: 600;
  color: #E8A87C;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.credentials {
  font-size: 13px;
  color: #888888;
  font-style: italic;
  margin-bottom: 12px;
  display: block;
}

.accreditation-list {
  max-width: 600px;
  margin: 32px auto;
}

.accreditation-list li {
  padding: 16px 20px;
  background: #F4F1E8;
  border-left: 4px solid #2C5F7C;
  border-radius: 8px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #2C5F7C;
  transition: all 0.3s ease;
}

.accreditation-list li:hover {
  transform: translateX(8px);
  border-left-color: #E8A87C;
}

/* Resources Page */
.resource-categories {
  padding: 60px 20px;
  background: #F4F1E8;
}

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

.category-card {
  flex: 1 1 220px;
  max-width: 280px;
  background: linear-gradient(135deg, #2C5F7C 0%, #4A8FB0 100%);
  color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(44, 95, 124, 0.3);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 12px 32px rgba(232, 168, 124, 0.4);
}

.category-card h3 {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.category-card p {
  color: #E8A87C;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

.featured-resources {
  padding: 60px 20px;
}

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

.resource-card {
  flex: 1 1 280px;
  max-width: 340px;
  background: #FFFFFF;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #E8A87C;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(232, 168, 124, 0.3);
}

.resource-type {
  display: inline-block;
  background: #E8A87C;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.blog-articles {
  padding: 60px 20px;
  background: #F4F1E8;
}

.articles-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.article-preview {
  background: #FFFFFF;
  padding: 28px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 4px solid #2C5F7C;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.article-preview:hover {
  transform: translateX(8px);
  border-left-color: #E8A87C;
  box-shadow: 0 6px 20px rgba(232, 168, 124, 0.3);
}

.article-preview h3 {
  margin-bottom: 12px;
}

.meta {
  font-size: 13px;
  color: #888888;
  font-style: italic;
  margin: 8px 0 0;
}

/* Contact Page */
.contact-options {
  padding: 60px 20px;
  background: #F4F1E8;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.contact-method {
  flex: 1 1 280px;
  max-width: 340px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-method:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(232, 168, 124, 0.3);
}

.small-text {
  font-size: 13px;
  color: #888888;
  margin-top: 8px;
}

.contact-form-section {
  padding: 60px 20px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #F4F1E8;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-weight: 600;
  color: #2C5F7C;
  font-size: 14px;
}

.field-placeholder {
  background: #FFFFFF;
  padding: 14px 16px;
  border-radius: 8px;
  border: 2px solid #E0E0E0;
  color: #999999;
  font-style: italic;
}

.field-group.checkbox .field-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-info,
.office-hours {
  padding: 60px 20px;
}

.location-info {
  background: #F4F1E8;
}

.location-details {
  max-width: 700px;
  margin: 32px auto;
}

.location-details p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.hours-table {
  max-width: 500px;
  margin: 32px auto;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hours-table p {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #E0E0E0;
}

.hours-table p:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.note {
  font-size: 13px;
  color: #888888;
  font-style: italic;
  margin-top: 16px;
}

/* Success Stories */
.featured-story {
  padding: 60px 20px;
  background: #F4F1E8;
}

.story-content {
  max-width: 800px;
  margin: 32px auto;
}

.author-info {
  font-size: 18px;
  color: #E8A87C;
  margin-bottom: 16px;
}

.testimonials-grid {
  padding: 60px 20px;
}

.testimonials-grid .testimonial-card {
  max-width: 600px;
  margin: 0 auto 32px;
}

.transformation-metrics {
  padding: 60px 20px;
  background: #F4F1E8;
}

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

.metric-card {
  flex: 1 1 280px;
  max-width: 340px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.metric-card:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 12px 32px rgba(232, 168, 124, 0.3);
}

.metric-card .stat {
  font-size: 56px;
  font-weight: 700;
  color: #E8A87C;
  margin-bottom: 12px;
  display: block;
}

/* Corporate Training */
.business-benefits {
  padding: 60px 20px;
  background: #F4F1E8;
}

/* Thank You Page */
.thank-you-page {
  padding: 80px 20px;
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 100%);
}

.thank-you-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-content h1 {
  color: #2C5F7C;
  font-size: 48px;
  margin-bottom: 16px;
  animation: bounceIn 0.8s ease;
}

.subtitle {
  font-size: 20px;
  color: #E8A87C;
  margin-bottom: 48px;
}

.next-steps {
  margin: 48px 0;
  text-align: center;
}

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

.step-item {
  flex: 1 1 280px;
  max-width: 320px;
  background: #FFFFFF;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(232, 168, 124, 0.3);
}

.timeframe {
  font-size: 13px;
  color: #E8A87C;
  font-weight: 600;
  margin-top: 12px;
}

.meanwhile-content {
  margin: 48px 0;
}

.action-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.action-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: linear-gradient(135deg, #2C5F7C 0%, #4A8FB0 100%);
  color: #FFFFFF;
  padding: 28px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.action-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 32px rgba(232, 168, 124, 0.4);
}

.action-card h3 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.action-card p {
  color: #F4F1E8;
  margin-bottom: 20px;
}

.action-card .btn {
  background: #FFFFFF;
  color: #2C5F7C;
}

.action-card .btn:hover {
  background: #E8A87C;
  color: #FFFFFF;
}

.testimonial-single {
  margin: 48px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-single blockquote {
  background: #FFFFFF;
  border-left-color: #E8A87C;
}

.testimonial-single cite {
  font-style: normal;
  color: #2C5F7C;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-top: 16px;
}

.contact-reminder {
  margin: 48px 0;
  background: #F4F1E8;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
}

.return-home {
  margin-top: 48px;
}

/* Legal Pages */
.legal-page {
  padding: 40px 20px 80px;
}

.legal-page .container {
  max-width: 900px;
}

.legal-page h1 {
  margin-bottom: 8px;
}

.last-updated {
  font-size: 14px;
  color: #888888;
  margin-bottom: 32px;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: #2C5F7C;
}

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

/* Footer - Vibrant */
footer {
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A61 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

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

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #F4F1E8;
}

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(244, 241, 232, 0.2);
  padding-top: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

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

.footer-legal a {
  color: #F4F1E8;
  font-size: 13px;
  transition: color 0.3s ease;
}

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

.footer-bottom p {
  font-size: 13px;
  color: #F4F1E8;
  margin: 0;
}

/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A61 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#cookie-banner.show {
  transform: translateY(0);
  animation: slideUp 0.5s ease;
}

#cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

#accept-cookies {
  background: #E8A87C;
  color: #FFFFFF;
}

#reject-cookies {
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

#cookie-settings {
  background: transparent;
  border: 2px solid #E8A87C;
  color: #E8A87C;
}

/* Cookie Settings Modal */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: bounceIn 0.5s ease;
}

.cookie-modal-content h2 {
  color: #2C5F7C;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #F4F1E8;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2C5F7C;
}

.cookie-category p {
  font-size: 14px;
  color: #555555;
  margin-bottom: 12px;
}

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

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

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

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  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: 24px;
  flex-wrap: wrap;
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #888888;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #2C5F7C;
}

/* Animations */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-50px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

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

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Section padding */
  .section,
  section {
    padding: 40px 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .page-hero {
    padding: 60px 20px 40px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .page-hero p {
    font-size: 16px;
  }
  
  /* Flex direction adjustments */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Grid adjustments */
  .services-grid,
  .benefits-grid,
  .stats-grid,
  .values-grid,
  .team-grid,
  .packages-grid,
  .categories-grid,
  .resources-grid,
  .contact-methods,
  .metrics-grid,
  .steps-grid,
  .action-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .package-card,
  .benefit-item,
  .benefit-card,
  .value-card,
  .team-member,
  .category-card,
  .resource-card,
  .contact-method,
  .metric-card,
  .step-item,
  .action-card {
    max-width: 100%;
    width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    width: 100%;
  }
  
  /* Cookie banner */
  #cookie-banner {
    flex-direction: column;
    padding: 20px;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

@media (min-width: 1025px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-banner,
  .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}