/* Modern CSS Reset and Base Styles */
:root {
  --primary-color: #8b5cf6;
  --primary-dark: #7c3aed;
  --primary-light: #a78bfa;
  --secondary-color: #ec4899;
  --accent-color: #f59e0b;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --background: #ffffff;
  --background-alt: #f9fafb;
  --background-dark: #111827;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.125rem); }

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

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

.service-img {
  max-width: none;
  height: 100%;
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.section-subdescription {
  font-style: italic;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), #d946ef);
  color: white;
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #d946ef, var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-color), #f97316);
  color: white;
  border-color: var(--accent-color);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #f97316, var(--accent-color));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.logo-img {
  height: 56px;
  width: auto;
  max-height: 56px;
  border-radius: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid var(--border-color);
  padding: 2px;
  border-radius: 999px;
}
.lang-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
}
.lang-btn.active {
  background: white;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}
.desktop-only { display: inline-flex; }
.mobile-only { display: none; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(236, 72, 153, 0.6));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 8rem 0 4rem;
}

.hero-content .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text {
  color: white;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-line {
  display: block;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.title-line:nth-child(2) {
  animation-delay: 0.3s;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}



.hero-location {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

/* About Section */
.about {
  padding: 6rem 0;
  background: var(--background);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.about-img:hover {
  transform: scale(1.02);
}

.about-certifications {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: white;
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cert-logo {
  width: 80px;
  height: auto;
}

.about-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-quote {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--primary-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
  margin: 2rem 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

/* Hypnosis Info Section */
.hypnosis-info {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hypnosis-info .container {
  position: relative;
  z-index: 1;
}

.hypnosis-info .section-title {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.hypnosis-info .section-subtitle {
  color: var(--text-secondary);
  text-shadow: none;
}

.gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(255, 255, 255, 0.95));
  z-index: -2;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), rgba(255, 255, 255, 0.98));
  z-index: -1;
}

/* New Visual Journey Layout */
.hypnosis-visual-journey {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.journey-block {
  display: flex;
  align-items: center;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.journey-block:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.journey-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 400px;
}

.journey-block.reverse .journey-content {
  grid-template-columns: 1fr 1fr;
}

.journey-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.journey-block.reverse .journey-text {
  order: 2;
}

.journey-image {
  position: relative;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.journey-block.reverse .journey-image {
  order: 1;
}

.journey-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.journey-text h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.journey-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Image Placeholders */
.image-placeholder {
  position: relative;
  width: 90%;
  height: 80%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  border: 2px dashed var(--primary-color);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.image-placeholder:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
  transform: scale(1.02);
}

.image-placeholder i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.placeholder-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.placeholder-description strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

/* Specialized placeholder styles */
.image-placeholder.brain-waves {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.08));
  border-color: rgba(139, 92, 246, 0.6);
}

.image-placeholder.transformation {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(239, 68, 68, 0.08));
  border-color: rgba(245, 158, 11, 0.6);
}

.image-placeholder.therapeutic {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(139, 92, 246, 0.08));
  border-color: rgba(34, 197, 94, 0.6);
}

.image-placeholder.empowerment {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(245, 158, 11, 0.08));
  border-color: rgba(236, 72, 153, 0.6);
}

/* Updated Transformation Quote */
.transformation-quote {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.quote-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  min-height: 300px;
}

.quote-image {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.quote-image .image-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.quote-image .image-placeholder i {
  color: rgba(255, 255, 255, 0.7);
}

.quote-image .placeholder-description {
  color: rgba(255, 255, 255, 0.9);
}

.quote-image .placeholder-description strong {
  color: white;
}

.quote-text {
  padding: 3rem;
  color: white;
}

.quote-text h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.quote-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
}

.quote-cta {
  margin-top: 2rem;
  text-align: center;
}

.quote-cta .btn {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  border: 2px solid rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-shadow: none;
  box-shadow: var(--shadow-lg);
  /* Allow long translations (FR) to wrap within the container */
  white-space: normal;
  flex-wrap: wrap;
  max-width: 100%;
  line-height: 1.35;
}

.quote-cta .btn:hover {
  background: white;
  color: var(--primary-dark);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* Ensure the text inside the CTA can wrap on smaller screens/languages */
.quote-cta .btn span {
  white-space: normal;
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Slightly reduce size for French to keep it within bounds without truncation */
html[lang="fr"] .quote-cta .btn {
  font-size: 1rem;
  padding: 0.875rem 1.25rem;
}

@media (max-width: 768px) {
  .quote-cta .btn {
    font-size: 0.95rem;
  }
}

/* Legacy styles for backward compatibility */
.hypnosis-explanation {
  display: none;
}

.explanation-card {
  display: none;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--background);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: var(--transition);
  z-index: 1;
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

/* Service Image Section */
.service-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin: 0;
  padding: 0;
  border: none;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: var(--transition);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin: 0;
  padding: 0;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.08));
  border: none;
  border-bottom: 2px dashed var(--primary-color);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.service-image-placeholder:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.12));
}

.service-image-placeholder i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

.service-image-description {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
  opacity: 0;
  transition: var(--transition);
}

.service-image-placeholder:hover .service-image-description {
  opacity: 1;
}

.service-image-description strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
}

/* Service Content Section */
.service-content {
  padding: 2rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  transform: scale(1.1);
}

.service-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Specialized service image styles */
.service-image-placeholder.emotional-support {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(139, 92, 246, 0.08));
  border-bottom-color: rgba(34, 197, 94, 0.6);
}

.service-image-placeholder.childbirth-support {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(59, 130, 246, 0.08));
  border-bottom-color: rgba(236, 72, 153, 0.6);
}

.service-image-placeholder.weight-management {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(245, 158, 11, 0.08));
  border-bottom-color: rgba(34, 197, 94, 0.6);
}

.service-image-placeholder.fear-management {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(239, 68, 68, 0.08));
  border-bottom-color: rgba(245, 158, 11, 0.6);
}

.service-image-placeholder.eating-disorder {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(139, 92, 246, 0.08));
  border-bottom-color: rgba(34, 197, 94, 0.6);
}

.service-image-placeholder.cancer-support {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(34, 197, 94, 0.08));
  border-bottom-color: rgba(236, 72, 153, 0.6);
}

.service-image-placeholder.grief-support {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(99, 102, 241, 0.08));
  border-bottom-color: rgba(139, 92, 246, 0.6);
}

.service-image-placeholder.counseling-hypnosis {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
  border-bottom-color: rgba(59, 130, 246, 0.6);
}

.service-image-placeholder.addictions {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(139, 92, 246, 0.08));
  border-bottom-color: rgba(245, 158, 11, 0.6);
}

.service-image-placeholder.children-adolescents {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(236, 72, 153, 0.08));
  border-bottom-color: rgba(34, 197, 94, 0.6);
}

.service-image-placeholder.ocd-support {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
  border-bottom-color: rgba(99, 102, 241, 0.6);
}

.service-image-placeholder.depression-burnout {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(34, 197, 94, 0.08));
  border-bottom-color: rgba(245, 158, 11, 0.6);
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials-carousel {
  position: relative;
  width: 100%;
  margin: 0 auto 3rem;
  overflow: hidden;
}

/* Scrolling Testimonials Layout */
.scrolling-testimonials {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-row {
  height: 220px;
  overflow: hidden;
  position: relative;
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  height: 100%;
  align-items: center;
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

.top-row .testimonial-track {
  animation: scrollLeft 60s linear infinite;
}

.bottom-row .testimonial-track {
  animation: scrollRight 50s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-66.666%, 0, 0);
  }
}

@keyframes scrollRight {
  0% {
    transform: translate3d(-66.666%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Compact Testimonial Cards */
.testimonial-card-compact {
  min-width: 350px;
  max-width: 350px;
  height: 180px;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-compact:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.testimonial-content-compact {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-rating-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.testimonial-card-compact .stars {
  font-size: 1rem;
  letter-spacing: 1px;
}

.testimonial-card-compact .review-time {
  font-size: 0.75rem;
  opacity: 0.7;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.testimonial-author-compact {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-author-compact strong {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.google-review-badge-compact {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.google-logo-badge {
  color: #4285f4;
  font-size: 1.1rem;
  transition: var(--transition);
}

.google-logo-badge:hover {
  color: #34a853;
  transform: scale(1.1);
}

/* Legacy card styles for fallback */
.testimonial-card {
  display: none;
  background: white;
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  color: var(--primary-color);
  font-family: var(--font-serif);
  line-height: 1;
}

.testimonial-card.active {
  display: block;
  animation: fadeInScale 0.6s ease-out;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.testimonial-prev,
.testimonial-next {
  background: var(--primary-color);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

/* Google Review Button */
.google-review-button-container {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.google-review-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), #d946ef);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
  color: white;
  border-color: var(--primary-dark);
}

.google-review-btn i {
  font-size: 1.2rem;
  color: white;
}

/* Google Reviews Integration Styles */
.testimonial-rating {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.stars {
  color: #ffd700;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.review-time {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  opacity: 0.8;
}

.google-review-badge {
  display: inline-block;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(66, 133, 244, 0.3);
}

.google-attribution {
  text-align: center;
  margin: 3rem auto 2rem;
  padding: 1.5rem;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-lg);
  max-width: 600px;
  backdrop-filter: blur(10px);
}

.attribution-text {
  margin: 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.attribution-text i {
  color: #4285f4;
  font-size: 1.3rem;
}

.attribution-text a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
  transition: var(--transition);
}

.attribution-text a:hover {
  color: var(--primary-dark);
  transform: translateY(-1px);
}

/* Responsive Design for Scrolling Testimonials */
@media (max-width: 768px) {
  .scrolling-testimonials {
    height: 400px;
    gap: 1.5rem;
  }
  
  .testimonial-row {
    height: 170px;
  }
  
  .testimonial-card-compact {
    min-width: 280px;
    max-width: 280px;
    height: 140px;
    padding: 1rem;
  }
  
  .review-text {
    font-size: 0.8rem;
    -webkit-line-clamp: 3;
  }
  
  .testimonial-author-compact strong {
    font-size: 0.8rem;
  }
  
  .google-review-badge-compact {
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
  }
  
  .google-logo-badge {
    font-size: 1rem;
  }
  
  .testimonial-card-compact .stars {
    font-size: 0.9rem;
  }
  
  /* Faster animations on mobile */
  .top-row .testimonial-track {
    animation: scrollLeft 40s linear infinite;
  }
  
  .bottom-row .testimonial-track {
    animation: scrollRight 35s linear infinite;
  }
  
  /* Google Review Button Mobile */
  .google-review-button-container {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .google-review-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .scrolling-testimonials {
    height: 350px;
    gap: 1rem;
  }
  
  .testimonial-row {
    height: 150px;
  }
  
  .testimonial-card-compact {
    min-width: 240px;
    max-width: 240px;
    height: 120px;
    padding: 0.75rem;
  }
  
  .review-text {
    font-size: 0.75rem;
    -webkit-line-clamp: 2;
  }
  
  .testimonial-rating-compact {
    margin-bottom: 0.5rem;
  }
  
  .testimonial-author-compact {
    margin-top: 0.75rem;
  }
  
  /* Google Review Button Small Mobile */
  .google-review-button-container {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .google-review-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
  }
  
  .google-review-btn i {
    font-size: 1rem;
  }
}

.dot.active,
.dot:hover {
  background: var(--primary-color);
}

/* Appointment Section */
.appointment {
  padding: 6rem 0;
  background: var(--background);
}

.appointment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.appointment-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.appointment-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.02);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.02), rgba(236, 72, 153, 0.02));
}

.appointment-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 2;
}

/* Translate featured badge based on current html lang */
html[lang="fr"] .appointment-card.featured::before { content: 'Le plus populaire'; }
html[lang="en"] .appointment-card.featured::before { content: 'Most Popular'; }

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

.appointment-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.appointment-header {
  margin-bottom: 1rem;
}

.appointment-header h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.appointment-duration {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Appointment Image Section */
.appointment-image {
  height: 140px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.appointment-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  display: block;
}

.appointment-card:hover .appointment-img {
  transform: scale(1.05);
}

.appointment-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.08));
  border: 2px dashed var(--primary-color);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
}

.appointment-image-placeholder:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.12));
  transform: scale(1.02);
}

.appointment-image-placeholder i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.appointment-image-description {
  font-size: 0.7rem;
  color: var(--text-secondary);
  line-height: 1.3;
  margin: 0;
  opacity: 0;
  transition: var(--transition);
}

.appointment-image-placeholder:hover .appointment-image-description {
  opacity: 1;
}

.appointment-image-description strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
}

/* Specialized appointment image styles */
.appointment-image-placeholder.phone-consultation {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
  border-color: rgba(59, 130, 246, 0.6);
}

.appointment-image-placeholder.first-consultation {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.08));
  border-color: rgba(139, 92, 246, 0.6);
}

.appointment-image-placeholder.hypnotherapy-session {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(139, 92, 246, 0.08));
  border-color: rgba(34, 197, 94, 0.6);
}

.appointment-image-placeholder.reiki-session {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(236, 72, 153, 0.08));
  border-color: rgba(245, 158, 11, 0.6);
}

.appointment-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
  font-size: 0.95rem;
}

.appointment-price {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-serif);
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-details p,
.contact-details a {
  color: var(--text-secondary);
  margin: 0;
}

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

/* Form Styles */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--background-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "logo contact links cert";
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  grid-area: logo;
  text-align: center;
}

.footer-logo-img {
  margin: 0 auto 1rem;
  border-radius: var(--radius-lg);
}

.footer-logo h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.footer-logo p {
  color: var(--text-light);
}

.footer-links h4,
.footer-contact h4,
.footer-certifications h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-contact {
  grid-area: contact;
}

.footer-links {
  grid-area: links;
}

.footer-certifications {
  grid-area: cert;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
  transition: var(--transition);
}

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

.footer-contact p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--primary-light);
  width: 16px;
}

.footer-certifications {
  text-align: center;
}

.cert-img {
  width: 100px;
  height: auto;
  margin: 1rem auto;
  border-radius: var(--radius-md);
  background: white;
  padding: 0.5rem;
}

.footer-legal {
  border-top: 1px solid #374151;
  padding-top: 2rem;
}

.legal-notice {
  background: #1f2937;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

.legal-notice p {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0;
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-content .container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  /* Appointment section responsive for tablets */
  .appointment-options {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .appointment-card {
    padding: 1.5rem;
    min-height: 480px;
  }
  
  .appointment-image {
    height: 120px;
  }
  
  .appointment-img {
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 768px) {
  /* Shrink footer logo on mobile/tablet */
  .footer-logo-img {
    max-width: 180px;
    height: auto;
  }
  /* Footer keeps links and certifications side-by-side on mobile */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo logo"
      "contact contact"
      "links cert";
  }
  /* Hypnosis section responsive - Mobile */
  .journey-content {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  
  /* Force all images to appear at top on mobile */
  .journey-image {
    order: 1 !important;
  }
  
  .journey-text {
    order: 2 !important;
    padding: 2rem !important;
    text-align: center !important;
    align-items: center !important;
  }
  
  .journey-image {
    min-height: 300px !important;
  }
  
  .journey-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
  
  .quote-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  /* Force quote image to appear at top on mobile */
  .quote-image {
    order: 1 !important;
    padding: 1.5rem;
  }
  
  .quote-text {
    order: 2 !important;
    padding: 2rem;
    text-align: center;
  }
  
  .quote-cta {
    margin-top: 1.5rem;
  }
  
  .nav-container {
    position: relative;
  }
  
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-color);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-toggle {
    display: flex;
    order: 3;
  }
  
  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .nav-cta {
    order: 2;
    flex-direction: column;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 1rem;
  }

  .desktop-only { display: none; }
  .mobile-only { display: inline-flex; }

  /* CTA inside mobile dropdown */
  .nav-menu-cta {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
  }
  
  .nav-logo {
    order: 1;
    flex-shrink: 0;
  }
  
  /* Hide phone number on mobile */
  .nav-phone {
    display: none;
  }

  /* Hide header book button on mobile; it will appear inside the hamburger menu */
  .nav-cta .nav-book {
    display: none;
  }
  
  /* Hide hero location (address) on mobile */
  .hero-location {
    display: none;
  }
  
  .hero-content {
    padding: 6rem 0 3rem;
  }
  
  /* Better padding for hero text on mobile to prevent cutoff */
  .hero-text {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1.1;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  /* Mobile responsive for services */
  .service-card {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  
  .service-image {
    height: 180px;
    order: 1;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin: 0;
    padding: 0;
    border: none;
  }
  
  .service-content {
    padding: 1.5rem;
    order: 2;
  }
  
  .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin: 0;
    padding: 0;
    border: none;
    display: block;
  }
  
  .service-image-placeholder {
    padding: 1rem;
  }
  
  .service-image-placeholder i {
    font-size: 2rem;
  }
  
  .service-image-description {
    font-size: 0.7rem;
  }
  
  .appointment-options {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    max-width: 100%;
  }
  
  .appointment-card {
    min-height: auto;
  }
  
  .appointment-card.featured {
    transform: none;
  }
  
  .appointment-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .appointment-image {
    height: 120px;
  }
  
  .appointment-img {
    border-radius: var(--radius-lg);
  }
  
  .appointment-image-placeholder {
    padding: 0.75rem;
  }
  
  .appointment-image-placeholder i {
    font-size: 1.5rem;
  }
  
  .appointment-image-description {
    font-size: 0.65rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "contact"
      "links"
      "cert";
    text-align: center;
  }
  
    /* Mobile responsive for hypnosis section */
  .hypnosis-visual-journey {
    gap: 2rem;
  }
  
  .image-placeholder {
    padding: 1rem;
    width: 95%;
    height: 85%;
  }
  
  .image-placeholder i {
    font-size: 2rem;
  }
  
  .placeholder-description {
    font-size: 0.8rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .journey-text h3 {
    font-size: 1.25rem;
    text-align: center !important;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  /* Make footer logo a bit smaller on small phones */
  .footer-logo-img {
    max-width: 140px;
  }
  /* Keep side-by-side layout for links and certifications even on small phones */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo logo"
      "contact contact"
      "links cert";
  }
  .container {
    padding: 0 0.75rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .hero-text {
    text-align: center;
    padding: 0 0.75rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.1;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .explanation-card,
  .appointment-card {
    padding: 1.5rem;
  }
  
  .service-card {
    padding: 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-card::before {
    font-size: 4rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-buttons,
  .btn,
  .contact-form,
  .testimonial-navigation {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section-header {
    margin-bottom: 1rem;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #6d28d9;
    --text-primary: #000000;
    --text-secondary: #374151;
    --border-color: #374151;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}