/* ============================================
   CRISP CLOUD - CREATIVE ARTISTIC DESIGN
   Modern Science Platform with Vibrant Style
   ============================================ */

/* CSS RESET & BASE */
* {
  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', Arial, sans-serif;
  line-height: 1.7;
  color: #1a1a2e;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f8 100%);
  overflow-x: hidden;
}

/* CREATIVE TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a2e;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2E5C8A, #4A90C8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

h3 {
  font-size: 24px;
  color: #1a1a2e;
}

h4 {
  font-size: 20px;
}

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

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

li {
  margin-bottom: 12px;
  line-height: 1.7;
}

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

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

strong {
  font-weight: 700;
  color: #2E5C8A;
}

em {
  font-style: italic;
  color: #4A90C8;
}

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

/* HEADER */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(46, 92, 138, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 3px solid #4A90C8;
}

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

.logo {
  display: flex;
  align-items: center;
}

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

.logo img:hover {
  transform: scale(1.05) rotate(2deg);
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2E5C8A;
  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, #4A90C8, #2E5C8A);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-nav a:hover {
  background: rgba(74, 144, 200, 0.1);
  color: #4A90C8;
  transform: translateY(-2px);
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2E5C8A, #4A90C8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(46, 92, 138, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.5);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2E5C8A, #1a3a5c);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px 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: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: white;
  color: #2E5C8A;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: #4A90C8;
  transform: translateX(10px);
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(135deg, #2E5C8A 0%, #4A90C8 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

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

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-page {
  background: linear-gradient(135deg, #4A90C8 0%, #2E5C8A 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 5px solid #2E5C8A;
}

.hero-page h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-page .subtitle {
  font-size: 18px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  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.5s, height 0.5s;
}

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

.btn-primary {
  background: linear-gradient(135deg, #4A90C8, #2E5C8A);
  color: white;
  box-shadow: 0 6px 20px rgba(46, 92, 138, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 92, 138, 0.5);
}

.btn-secondary {
  background: white;
  color: #2E5C8A;
  border: 3px solid #2E5C8A;
  box-shadow: 0 4px 15px rgba(46, 92, 138, 0.2);
}

.btn-secondary:hover {
  background: #2E5C8A;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.4);
}

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

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

.value-proposition,
.services-preview,
.how-it-works,
.testimonials,
.cta-final,
.story,
.mission-vision,
.achievements,
.cta,
.services-overview,
.services-detailed,
.featured-discovery,
.discoveries-grid,
.impact-metrics,
.featured-workshop,
.upcoming-workshops,
.featured-post,
.blog-grid,
.categories,
.contact-options,
.contact-form-section,
.office-hours,
.map-section,
.legal-content,
.thank-you-hero,
.next-steps,
.explore-content {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4A90C8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.value-proposition {
  text-align: center;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(46, 92, 138, 0.15);
  padding: 60px 40px;
}

.value-proposition h2 {
  margin-bottom: 16px;
}

.value-proposition > p {
  font-size: 18px;
  color: #4A90C8;
  margin-bottom: 50px;
}

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

.stat-card {
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  box-shadow: 0 6px 20px rgba(46, 92, 138, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 30px rgba(74, 144, 200, 0.3);
  border-color: #4A90C8;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #2E5C8A, #4A90C8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* SERVICES GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.15);
  transition: all 0.3s ease;
  border-top: 5px solid #4A90C8;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #4A90C8, #2E5C8A);
  border-radius: 15px 15px 0 0;
}

.service-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(74, 144, 200, 0.3);
}

.service-card h3 {
  color: #2E5C8A;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #1a1a2e;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card .price {
  display: inline-block;
  background: linear-gradient(135deg, #4A90C8, #2E5C8A);
  color: white;
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
  box-shadow: 0 4px 15px rgba(46, 92, 138, 0.3);
}

/* STEPS GRID */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 6px 20px rgba(46, 92, 138, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(74, 144, 200, 0.25);
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4A90C8, #2E5C8A);
  color: white;
  font-size: 32px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(46, 92, 138, 0.4);
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #2E5C8A;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  border-radius: 20px;
  padding: 60px 40px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.15);
  border-left: 5px solid #4A90C8;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #4A90C8;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(74, 144, 200, 0.25);
}

.testimonial-card .quote {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a2e;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2E5C8A;
  font-size: 14px;
  text-align: right;
}

/* CTA SECTIONS */
.cta-final,
.cta {
  background: linear-gradient(135deg, #2E5C8A, #4A90C8);
  color: white;
  text-align: center;
  padding: 80px 40px;
  border-radius: 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-final h2,
.cta h2 {
  color: white;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-final p,
.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* FOOTER */
.site-footer {
  background: linear-gradient(135deg, #1a1a2e, #2E5C8A);
  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-section {
  flex: 1 1 250px;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 14px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 3px solid transparent;
  padding-left: 12px;
}

.footer-nav a:hover {
  color: white;
  border-left-color: #4A90C8;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-legal a:hover {
  color: white;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* ABOUT PAGE */
.story {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.15);
}

.milestones {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.milestone {
  padding: 20px;
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  border-radius: 10px;
  border-left: 5px solid #4A90C8;
  font-weight: 600;
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(74, 144, 200, 0.2);
}

.mission-vision {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mission-block,
.vision-block,
.values {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(46, 92, 138, 0.1);
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values li {
  padding: 16px;
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  border-radius: 8px;
  border-left: 4px solid #4A90C8;
  font-weight: 600;
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.achievement-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 250px;
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.achievement-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(74, 144, 200, 0.3);
}

.achievement-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #2E5C8A, #4A90C8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.achievement-label {
  font-size: 14px;
  color: #1a1a2e;
  font-weight: 600;
}

/* SERVICES PAGE */
.services-overview {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.service-full {
  background: white;
  padding: 50px 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.15);
  margin-bottom: 40px;
  border-top: 5px solid #4A90C8;
  transition: all 0.3s ease;
}

.service-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(74, 144, 200, 0.25);
}

.service-full .tagline {
  color: #4A90C8;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 20px;
}

.service-full .features {
  list-style: none;
  margin-left: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.service-full .features li {
  padding: 12px 12px 12px 40px;
  position: relative;
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  border-radius: 8px;
  margin-bottom: 12px;
  font-weight: 500;
}

.service-full .features li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #4A90C8;
  font-weight: 700;
  font-size: 18px;
}

/* DISCOVERIES PAGE */
.featured-discovery {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(46, 92, 138, 0.15);
  border-left: 8px solid #4A90C8;
  margin-bottom: 60px;
}

.featured-discovery .badge {
  display: inline-block;
  background: linear-gradient(135deg, #4A90C8, #2E5C8A);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: none;
}

.meta {
  color: #4A90C8;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.key-findings {
  list-style: none;
  margin-left: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.key-findings li {
  padding: 16px 16px 16px 50px;
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  border-radius: 10px;
  position: relative;
  font-weight: 600;
  border-left: 4px solid #4A90C8;
}

.key-findings li::before {
  content: '→';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #4A90C8;
  font-size: 24px;
  font-weight: 700;
}

.grid,
.discoveries-grid .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.discovery-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  flex: 1 1 300px;
  max-width: 380px;
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.15);
  transition: all 0.3s ease;
  border-top: 4px solid #4A90C8;
  position: relative;
  margin-bottom: 20px;
}

.discovery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(74, 144, 200, 0.3);
}

.discovery-card h3 {
  font-size: 20px;
  color: #2E5C8A;
  margin-bottom: 12px;
}

.category {
  display: inline-block;
  background: linear-gradient(135deg, #4A90C8, #2E5C8A);
  color: white;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.metric {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
}

.metric .number {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #2E5C8A, #4A90C8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.metric .label {
  font-size: 14px;
  color: #1a1a2e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* WORKSHOPS PAGE */
.featured-workshop {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(46, 92, 138, 0.15);
  border-left: 8px solid #4A90C8;
  margin-bottom: 60px;
}

.instructor {
  font-size: 16px;
  color: #2E5C8A;
  font-weight: 700;
  margin-bottom: 12px;
}

.details {
  font-size: 14px;
  color: #4A90C8;
  margin-bottom: 20px;
  font-weight: 600;
}

.includes {
  list-style: none;
  margin-left: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.includes li {
  padding: 12px 12px 12px 40px;
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  border-radius: 8px;
  position: relative;
  font-weight: 500;
}

.includes li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #4A90C8;
  font-weight: 700;
  font-size: 18px;
}

.workshops-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.workshop-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.15);
  transition: all 0.3s ease;
  border-top: 4px solid #4A90C8;
  position: relative;
  margin-bottom: 20px;
}

.workshop-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(74, 144, 200, 0.3);
}

.workshop-card h3 {
  font-size: 20px;
  color: #2E5C8A;
  margin-bottom: 16px;
}

.workshop-card p {
  font-size: 14px;
  margin-bottom: 8px;
}

.guarantee {
  margin-top: 30px;
  font-style: italic;
  color: #4A90C8;
  font-size: 14px;
}

/* BLOG PAGE */
.featured-post {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(46, 92, 138, 0.15);
  border-left: 8px solid #4A90C8;
  margin-bottom: 60px;
}

.post-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  flex: 1 1 300px;
  max-width: 380px;
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.15);
  transition: all 0.3s ease;
  border-top: 4px solid #4A90C8;
  position: relative;
  margin-bottom: 20px;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(74, 144, 200, 0.3);
}

.post-card h3 {
  font-size: 20px;
  color: #2E5C8A;
  margin-bottom: 12px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.category-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 250px;
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.15);
  transition: all 0.3s ease;
  border-top: 4px solid #4A90C8;
  cursor: pointer;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(74, 144, 200, 0.3);
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
}

.category-card h3 {
  color: #2E5C8A;
  margin-bottom: 12px;
}

.category-card p {
  color: #4A90C8;
  font-weight: 600;
}

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

.contact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  flex: 1 1 350px;
  max-width: 450px;
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #4A90C8;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(74, 144, 200, 0.25);
}

.contact-card h3 {
  color: #2E5C8A;
  margin-bottom: 20px;
}

.form-notice {
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #4A90C8;
  margin-top: 30px;
}

.hours-info {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.15);
  max-width: 600px;
  margin: 0 auto;
}

.directions {
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

.directions h3 {
  color: #2E5C8A;
  margin-bottom: 20px;
}

/* LEGAL PAGES */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(46, 92, 138, 0.15);
}

.legal-content h3 {
  color: #2E5C8A;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #4A90C8;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(46, 92, 138, 0.15);
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #4A90C8, #2E5C8A);
  color: white;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(46, 92, 138, 0.4);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.next-steps .steps-grid,
.explore-content .suggestions-grid,
.explore-more .explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step,
.suggestion-card,
.explore-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 8px 25px rgba(46, 92, 138, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #4A90C8;
  margin-bottom: 20px;
}

.step:hover,
.suggestion-card:hover,
.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(74, 144, 200, 0.25);
}

.contact-alternatives {
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
}

.contact-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.contact-option {
  background: white;
  padding: 30px;
  border-radius: 15px;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 6px 20px rgba(46, 92, 138, 0.1);
  margin-bottom: 20px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e, #2E5C8A);
  color: white;
  padding: 25px 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: #4A90C8;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, #4A90C8, #2E5C8A);
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 144, 200, 0.4);
}

.cookie-reject {
  background: white;
  color: #2E5C8A;
  border: 2px solid #2E5C8A;
}

.cookie-reject:hover {
  background: #2E5C8A;
  color: white;
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid white;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

.cookie-modal.show {
  display: flex;
  opacity: 1;
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  background: linear-gradient(135deg, #2E5C8A, #4A90C8);
  color: white;
  padding: 30px;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.cookie-modal-header h3 {
  color: white;
  margin: 0;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: white;
  color: #2E5C8A;
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: 30px;
}

.cookie-category {
  padding: 20px;
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #4A90C8;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-category h4 {
  color: #2E5C8A;
  margin: 0;
}

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

.cookie-toggle.active {
  background: linear-gradient(135deg, #4A90C8, #2E5C8A);
}

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

.cookie-toggle.active::after {
  left: 27px;
}

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

.cookie-category p {
  font-size: 14px;
  color: #1a1a2e;
  margin: 0;
}

.cookie-modal-footer {
  padding: 30px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Layout adjustments */
  .section {
    padding: 30px 16px;
  }
  
  .hero,
  .hero-page {
    padding: 60px 16px;
  }
  
  /* Flexbox stacking */
  .stats-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .workshops-grid,
  .grid,
  .metrics-grid,
  .categories-grid,
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-card,
  .service-card,
  .step-card,
  .testimonial-card,
  .workshop-card,
  .discovery-card,
  .post-card,
  .category-card,
  .contact-card {
    max-width: 100%;
    width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .stat-number,
  .achievement-number,
  .metric .number {
    font-size: 36px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ACCESSIBILITY */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 3px solid #4A90C8;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .site-header,
  .site-footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  a {
    color: #2E5C8A;
    text-decoration: underline;
  }
}