/* =============================================
   CREAMY MIST - TECH FUTURISTIC DESIGN SYSTEM
   ============================================= */

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

:root {
  /* Tech Futuristic Color Palette */
  --primary: #00ffcc;
  --primary-dark: #00cc99;
  --secondary: #0a0e27;
  --secondary-light: #1a1f3a;
  --accent: #ff00ff;
  --accent-orange: #ff6b35;
  --background: #0d1117;
  --surface: #161b22;
  --text-light: #ffffff;
  --text-gray: #8b949e;
  --border: #30363d;
  --gradient-1: linear-gradient(135deg, #00ffcc 0%, #0099ff 100%);
  --gradient-2: linear-gradient(135deg, #ff00ff 0%, #ff6b35 100%);
  --gradient-3: linear-gradient(135deg, #0d1117 0%, #1a1f3a 100%);
  --neon-glow: 0 0 20px rgba(0, 255, 204, 0.5);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.6);
  
  /* Typography */
  --font-display: 'Orbitron', 'Montserrat', sans-serif;
  --font-body: 'Rajdhani', 'Open Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--background);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 255, 204, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 255, 204, 0.3);
}

h2 {
  font-size: 36px;
  color: var(--primary);
  text-transform: uppercase;
}

h3 {
  font-size: 24px;
  color: var(--text-light);
}

p {
  margin-bottom: 16px;
  color: var(--text-gray);
  font-size: 18px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
  text-shadow: var(--neon-glow);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--secondary);
  box-shadow: var(--neon-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.7);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: var(--neon-glow);
}

.btn-text {
  background: none;
  color: var(--primary);
  padding: 8px 16px;
  border: none;
  font-size: 18px;
}

.btn-text:hover {
  color: var(--accent);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background: var(--surface);
  border: 2px solid var(--primary);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: var(--neon-glow);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--surface);
  border-left: 2px solid var(--primary);
  z-index: 1002;
  padding: 80px 32px 32px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.6);
  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: 24px;
  right: 24px;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--accent);
  color: var(--secondary);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  display: block;
  padding: 16px;
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--background);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
  transform: translateX(8px);
  box-shadow: var(--neon-glow);
}

/* Header */
header {
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

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

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.5));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.8));
  transform: scale(1.05);
}

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

.main-nav a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 4px;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Hero Section */
.hero {
  background: var(--gradient-3);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 204, 0.03) 2px, rgba(0, 255, 204, 0.03) 4px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
  }
  to {
    text-shadow: 0 0 40px rgba(0, 255, 204, 0.6), 0 0 60px rgba(0, 255, 204, 0.4);
  }
}

.hero-subheadline {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: 24px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 24px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: var(--text-gray);
}

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

/* Section Styles */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheadline {
  text-align: center;
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Values Grid */
.values {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 60px 20px;
}

.values h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  padding: 32px;
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-1);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.value-card:hover::before {
  opacity: 1;
}

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

.value-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 20px;
}

.value-card p {
  font-size: 16px;
  color: var(--text-gray);
}

/* Services Grid */
.services-preview,
.services-list {
  background: var(--background);
}

.services-preview h2,
.services-list h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  padding: 32px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-1);
  transition: height 0.3s ease;
}

.service-card:hover::after {
  height: 100%;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--text-gray);
}

.price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

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

/* Service Detail */
.service-detail {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  margin-bottom: 40px;
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.service-header h2 {
  margin: 0;
  flex: 1;
}

.service-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.service-description {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.8;
}

.service-benefits {
  margin-bottom: 32px;
}

.service-benefits h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.service-benefits ul {
  list-style: none;
  padding: 0;
}

.service-benefits li {
  padding: 12px 0;
  padding-left: 32px;
  color: var(--text-gray);
  position: relative;
}

.service-benefits li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 24px;
}

/* Process Steps */
.process {
  background: var(--surface);
  border-radius: 16px;
  padding: 60px 20px;
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px;
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: var(--neon-glow);
}

.step h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 18px;
}

.step p {
  font-size: 16px;
  color: var(--text-gray);
}

/* Testimonials */
.testimonials {
  background: var(--background);
  padding: 60px 20px;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  padding: 32px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-author strong {
  color: var(--primary);
}

.rating {
  color: var(--accent-orange);
  font-size: 20px;
  letter-spacing: 4px;
}

.trust-metrics {
  text-align: center;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.trust-metrics p {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-light);
  margin: 0;
}

.trust-metrics strong {
  color: var(--primary);
  font-size: 24px;
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient-3);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 60px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 255, 204, 0.03) 10px,
    rgba(0, 255, 204, 0.03) 20px
  );
  animation: slide 20s linear infinite;
}

@keyframes slide {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 16px;
  font-size: 42px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.trust-element {
  font-size: 14px;
  color: var(--text-gray);
  font-style: italic;
  margin: 0;
}

.trust-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-gray);
  font-style: italic;
  margin-top: 16px;
}

/* Contact Info */
.contact-info {
  background: var(--surface);
  border-radius: 16px;
  padding: 60px 20px;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 12px;
  text-align: center;
}

.contact-item h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-item p {
  color: var(--text-gray);
  margin: 0;
}

/* Workshops */
.workshop-benefits {
  background: var(--surface);
  border-radius: 16px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.workshop-benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.benefit-card {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  padding: 24px;
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-card h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-gray);
  margin: 0;
}

.upcoming-workshops {
  padding: 60px 20px;
}

.upcoming-workshops h2 {
  text-align: center;
  margin-bottom: 48px;
}

.workshops-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.workshop-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  padding: 32px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.workshop-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.workshop-card h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 16px;
}

.workshop-date {
  color: var(--accent-orange);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.workshop-description {
  color: var(--text-gray);
  margin-bottom: 24px;
}

.workshop-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.availability {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Blog */
.blog-featured {
  margin-bottom: 60px;
}

.featured-post {
  padding: 48px;
  background: var(--surface);
  border: 2px solid var(--primary);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.featured-post h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.post-meta {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.blog-grid h2 {
  text-align: center;
  margin-bottom: 48px;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.blog-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 32px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.blog-card p {
  margin-bottom: 16px;
}

/* Newsletter */
.newsletter-signup {
  background: var(--gradient-3);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 16px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 16px;
  font-family: var(--font-body);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--neon-glow);
}

.subscriber-count {
  font-size: 14px;
  color: var(--text-gray);
  margin: 0;
}

/* Contact Forms */
.contact-options {
  background: var(--surface);
  border-radius: 16px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-options h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-option {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-option:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.contact-option h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

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

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px;
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 16px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--neon-glow);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-field.checkbox label {
  margin: 0;
  font-size: 14px;
  text-transform: none;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-field.checkbox input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.response-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 16px;
}

.booking-section {
  background: var(--surface);
  border-radius: 16px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.booking-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.booking-section > p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 32px;
}

.booking-benefits {
  max-width: 500px;
  margin: 0 auto 32px;
  padding: 32px;
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 12px;
}

.booking-benefits h3 {
  color: var(--primary);
  margin-bottom: 16px;
  text-align: center;
}

.booking-benefits ul {
  list-style: none;
  padding: 0;
}

.booking-benefits li {
  padding: 8px 0;
  padding-left: 32px;
  color: var(--text-gray);
  position: relative;
}

.booking-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

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

.location-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.location-details {
  flex: 1;
  min-width: 300px;
  padding: 32px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
}

.location-details p {
  margin-bottom: 24px;
}

.location-details strong {
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

/* Legal Pages */
.hero.legal {
  padding: 60px 20px;
}

.last-updated {
  color: var(--text-gray);
  font-size: 14px;
  text-align: center;
}

.legal-content {
  padding: 60px 20px;
}

.legal-content .container {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.content-wrapper {
  flex: 1;
  max-width: 800px;
  padding: 48px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
}

.content-wrapper h2 {
  color: var(--primary);
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

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

.content-wrapper ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-wrapper li {
  color: var(--text-gray);
  margin-bottom: 8px;
}

.legal-nav {
  flex: 0 0 250px;
  padding: 32px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
  position: sticky;
  top: 120px;
}

.legal-nav h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 16px;
}

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

.legal-nav a {
  padding: 12px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-gray);
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-nav a:hover {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

/* Cookie Settings */
.cookie-settings {
  margin-top: 48px;
  padding: 32px;
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 12px;
}

.cookie-settings h3 {
  color: var(--primary);
  margin-bottom: 24px;
}

.cookie-toggle {
  margin-bottom: 16px;
}

.cookie-toggle label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle label:hover {
  border-color: var(--primary);
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Thank You Page */
.thank-you-hero {
  background: var(--gradient-3);
  padding: 100px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  color: var(--secondary);
  font-size: 64px;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: var(--neon-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.8);
  }
}

.thank-you-message {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
}

.next-steps {
  padding: 60px 20px;
}

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

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

.while-waiting {
  padding: 60px 20px;
  background: var(--surface);
}

.while-waiting h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.link-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.link-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.link-card p {
  color: var(--text-gray);
  margin: 0;
}

.social-proof {
  padding: 60px 20px;
}

.social-proof h2 {
  text-align: center;
  margin-bottom: 16px;
}

.trust-message {
  text-align: center;
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 48px;
}

.explore-more {
  padding: 60px 20px;
  background: var(--surface);
}

.explore-more h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* Stats Section */
.stats {
  background: var(--surface);
  border-radius: 16px;
  padding: 60px 20px;
}

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

.stat-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-shadow: var(--neon-glow);
}

.stat-label {
  font-size: 16px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Approach/Principles */
.approach {
  padding: 60px 20px;
}

.approach h2 {
  text-align: center;
  margin-bottom: 24px;
}

.approach > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
}

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

.principle {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.principle:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.principle h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.principle p {
  font-size: 16px;
  color: var(--text-gray);
  margin: 0;
}

/* Mission Story */
.mission-story {
  padding: 60px 20px;
  background: var(--surface);
  border-radius: 16px;
}

.mission-story h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.story-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.vision-statement {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--primary);
  text-align: center;
  padding: 32px;
  background: var(--background);
  border: 2px solid var(--primary);
  border-radius: 12px;
  margin-top: 32px;
  font-style: italic;
}

/* Footer */
footer {
  background: var(--surface);
  border-top: 2px solid var(--border);
  padding: 60px 0 24px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 48px);
  min-width: 220px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.3));
}

.footer-column h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

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

.footer-column nav a {
  color: var(--text-gray);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-column nav a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

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

.footer-legal a {
  color: var(--text-gray);
  font-size: 12px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary);
}

.copyright {
  font-size: 12px;
  color: var(--text-gray);
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 2px solid var(--primary);
  padding: 24px;
  z-index: 1000;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-consent-text p {
  color: var(--text-gray);
  font-size: 14px;
  margin: 0;
}

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

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

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  max-width: 600px;
  width: 100%;
  background: var(--surface);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--accent);
  color: var(--secondary);
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 24px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.cookie-category h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
  
  .value-card,
  .service-card,
  .blog-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step,
  .principle {
    flex: 1 1 calc(50% - 24px);
  }
  
  .legal-content .container {
    flex-direction: column;
  }
  
  .legal-nav {
    position: static;
    flex: 1;
    width: 100%;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .blog-card,
  .workshop-card,
  .testimonial-card,
  .stat-item,
  .step,
  .principle {
    flex: 1 1 100%;
  }
  
  .services-grid,
  .values-grid,
  .testimonials-grid,
  .workshops-grid,
  .posts-grid,
  .process-steps,
  .stats-grid,
  .principles-grid,
  .contact-grid,
  .links-grid {
    gap: 20px;
  }
  
  .service-detail,
  .form-container,
  .content-wrapper {
    padding: 32px 24px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-consent-buttons .btn {
    width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input[type="email"] {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .mobile-menu {
    width: 100%;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .hero-cta,
  .cta-banner,
  .btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  h1, h2, h3 {
    color: black;
  }
}