@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties */
:root {
  /* Colors */
  --blunoverix-white: #ffffff;
  --blunoverix-primary: #2C3930;
  --blunoverix-secondary: #3F4F44;
  --blunoverix-accent: #A27B5C;
  --blunoverix-light: #DCD7C9;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(44, 57, 48, 0.1);
  --shadow-md: 0 4px 12px rgba(44, 57, 48, 0.15);
  --shadow-lg: 0 8px 24px rgba(44, 57, 48, 0.2);
  --text-shadow: 2px 2px 4px rgba(44, 57, 48, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--blunoverix-primary);
  background-color: var(--blunoverix-white);
  overflow-x: hidden;
}

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

h1 {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.7rem;
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

h5 {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

h6 {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

/* Container */
.blunoverix-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.blunoverix-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.blunoverix-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.blunoverix-logo-icon {
  width: 40px;
  height: 40px;
  transition: transform var(--transition-smooth);
}

.blunoverix-logo:hover .blunoverix-logo-icon {
  transform: rotate(360deg);
}

.blunoverix-brand-name {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blunoverix-primary);
  text-shadow: var(--text-shadow);
  text-decoration: none;
}

.blunoverix-nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.blunoverix-nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--blunoverix-primary);
  margin: 3px 0;
  transition: var(--transition-smooth);
}

.blunoverix-nav-menu {
  display: flex;
  list-style: none;
  /* gap: var(--space-lg); */
}

.blunoverix-nav-menu a {
  text-decoration: none;
  color: var(--blunoverix-primary);
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
}

.blunoverix-nav-menu a:hover {
  background: var(--blunoverix-light);
  color: var(--blunoverix-accent);
  transform: translateY(-2px);
}

/* Main Content */
.blunoverix-main {
  margin-top: 50px;
}

/* Hero Section */
.blunoverix-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blunoverix-light) 0%, var(--blunoverix-white) 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}


.blunoverix-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 2;
}

.blunoverix-hero-title {
  font-size: 3rem;
  color: var(--blunoverix-primary);
  margin-bottom: var(--space-lg);
  animation: blunoverix-slideInLeft 1s ease-out;
}

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

.blunoverix-hero-subtitle {
  font-size: 1.3rem;
  color: var(--blunoverix-secondary);
  margin-bottom: var(--space-lg);
  text-align: center;  
  animation: blunoverix-slideInLeft 1s ease-out 0.3s both;
}

.blunoverix-hero-actions {
  display: flex;
  gap: var(--space-md);
  animation: blunoverix-slideInLeft 1s ease-out 0.6s both;
}

@keyframes blunoverix-slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.blunoverix-energy-circle {
  width: 300px;
  height: 300px;
  border: 3px solid var(--blunoverix-accent);
  border-radius: 50%;
  position: absolute;
  animation: blunoverix-pulse 4s ease-in-out infinite;
}

@keyframes blunoverix-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

.blunoverix-meditation-icon {
  width: 200px;
  height: 200px;
  animation: blunoverix-rotate 15s linear infinite;
}

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

/* Buttons */
.blunoverix-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-sm);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  text-shadow: none;
  box-shadow: var(--shadow-md);
  justify-content: center;
}

.blunoverix-btn-primary {
  background: linear-gradient(135deg, var(--blunoverix-accent) 0%, var(--blunoverix-secondary) 100%);
  color: var(--blunoverix-white);
}

.blunoverix-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.blunoverix-btn-secondary {
  background: var(--blunoverix-white);
  color: var(--blunoverix-primary);
  border-color: var(--blunoverix-accent);
}

.blunoverix-btn-secondary:hover {
  background: var(--blunoverix-accent);
  color: var(--blunoverix-white);
  transform: translateY(-3px);
}

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

.blunoverix-btn-outline:hover {
  background: var(--blunoverix-accent);
  color: var(--blunoverix-white);
  transform: translateY(-3px);
}

/* Sections */
.blunoverix-programs,
.blunoverix-pricing,
.blunoverix-philosophy,
.blunoverix-testimonials,
.blunoverix-gallery,
.blunoverix-contact {
  padding: var(--space-2xl) 0;
}

.blunoverix-programs {
  background: var(--blunoverix-white);
}

.blunoverix-pricing {
  background: linear-gradient(135deg, var(--blunoverix-light) 0%, var(--blunoverix-white) 100%);
}

.blunoverix-philosophy {
  background: var(--blunoverix-white);
}

.blunoverix-testimonials {
  background: var(--blunoverix-light);
}

.blunoverix-gallery {
  background: var(--blunoverix-white);
}

.blunoverix-contact {
  background: linear-gradient(135deg, var(--blunoverix-secondary) 0%, var(--blunoverix-primary) 100%);
  color: var(--blunoverix-white);
}

.blunoverix-section-title {
  text-align: center;
  color: var(--blunoverix-primary);
  margin-bottom: var(--space-lg);
}

.blunoverix-contact .blunoverix-section-title {
  color: var(--blunoverix-white);
}

.blunoverix-section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--blunoverix-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.blunoverix-contact .blunoverix-section-subtitle {
  color: var(--blunoverix-light);
}

/* Programs Grid */
.blunoverix-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.blunoverix-program-card {
  background: var(--blunoverix-white);
  padding: var(--space-xl);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
}

.blunoverix-program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blunoverix-accent);
}

.blunoverix-program-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--blunoverix-light) 0%, var(--blunoverix-white) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-smooth);
}

.blunoverix-program-card:hover .blunoverix-program-icon {
  transform: scale(1.1) rotate(10deg);
}

.blunoverix-program-icon svg {
  width: 40px;
  height: 40px;
}

.blunoverix-program-card h3 {
  color: var(--blunoverix-primary);
  margin-bottom: var(--space-md);
}

.blunoverix-program-card p {
  color: var(--blunoverix-secondary);
  font-size: 1rem;
}

/* Pricing Grid */
.blunoverix-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.blunoverix-pricing-card {
  background: var(--blunoverix-white);
  border-radius: 20px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blunoverix-pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.blunoverix-pricing-card.blunoverix-featured {
  border-color: var(--blunoverix-accent);
  transform: scale(1.05);
}

.blunoverix-pricing-card.blunoverix-featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.blunoverix-pricing-badge {
  position: absolute;
  top: -10px;
  left: 80%;
  transform: translateX(-50%);
  background: var(--blunoverix-accent);
  color: var(--blunoverix-white);
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.blunoverix-pricing-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.blunoverix-pricing-header h3 {
  color: var(--blunoverix-primary);
  margin-bottom: var(--space-sm);
}

.blunoverix-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-xs);
}

.blunoverix-currency {
  font-size: 1.2rem;
  color: var(--blunoverix-secondary);
}

.blunoverix-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--blunoverix-accent);
  font-family: var(--font-primary);
}

.blunoverix-period {
  font-size: 1.1rem;
  color: var(--blunoverix-secondary);
}

.blunoverix-pricing-features {
  margin-bottom: var(--space-xl);
}

.blunoverix-pricing-features ul {
  list-style: none;
}

.blunoverix-pricing-features li {
  padding: var(--space-sm) 0;
  color: var(--blunoverix-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Philosophy */
.blunoverix-philosophy-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.blunoverix-philosophy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.blunoverix-stat {
  text-align: center;
  padding: var(--space-lg);
  background: var(--blunoverix-light);
  border-radius: 15px;
  transition: transform var(--transition-smooth);
}

.blunoverix-stat:hover {
  transform: scale(1.05);
}

.blunoverix-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blunoverix-accent);
  font-family: var(--font-primary);
}

.blunoverix-stat-label {
  font-size: 0.9rem;
  color: var(--blunoverix-secondary);
  font-weight: 500;
}

.blunoverix-energy-mandala {
  width: 400px;
  height: 400px;
  animation: blunoverix-rotate 30s linear infinite;
}

.blunoverix-energy-mandala svg {
  width: 100%;
  height: 100%;
}

/* Testimonials */
.blunoverix-testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.blunoverix-testimonial-card {
  background: var(--blunoverix-white);
  padding: var(--space-2xl);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  opacity: 0;
  transform: translateX(100%);
  transition: all var(--transition-smooth);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.blunoverix-testimonial-card.blunoverix-active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.blunoverix-testimonial-content p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--blunoverix-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.blunoverix-testimonial-author strong {
  color: var(--blunoverix-primary);
  font-size: 1.2rem;
  display: block;
  margin-bottom: var(--space-xs);
}

.blunoverix-testimonial-author span {
  color: var(--blunoverix-accent);
  font-size: 1rem;
}

.blunoverix-testimonial-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.blunoverix-testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--blunoverix-secondary);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.blunoverix-testimonial-dot.blunoverix-active {
  background: var(--blunoverix-accent);
  transform: scale(1.3);
}

/* Gallery */
.blunoverix-gallery-container {
  max-width: 1000px;
  margin: 0 auto;
}

.blunoverix-gallery-main {
  margin-bottom: var(--space-lg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
}

.blunoverix-gallery-featured {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.blunoverix-gallery-featured:hover {
  transform: scale(1.05);
}

.blunoverix-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.blunoverix-gallery-thumb {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 3px solid transparent;
}

.blunoverix-gallery-thumb:hover,
.blunoverix-gallery-thumb.blunoverix-active {
  border-color: var(--blunoverix-accent);
  transform: scale(1.05);
}

/* Gallery Zoom Modal */
.blunoverix-gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  cursor: zoom-out;
}

.blunoverix-gallery-modal.blunoverix-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blunoverix-gallery-modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  animation: blunoverix-zoomIn 0.3s ease-out;
}

@keyframes blunoverix-zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Contact */
.blunoverix-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  max-width: 1200px;
  margin: 0 auto;
}

.blunoverix-contact-info h3 {
  color: var(--blunoverix-white);
  margin-bottom: var(--space-lg);
}

.blunoverix-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.blunoverix-contact-item div {
  color: var(--blunoverix-light);
}

.blunoverix-contact-item strong {
  color: var(--blunoverix-white);
  display: block;
  margin-bottom: var(--space-xs);
}

.blunoverix-contact-item a {
  color: var(--blunoverix-light);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.blunoverix-contact-item a:hover {
  color: var(--blunoverix-accent);
}

.blunoverix-contact-hours {
  margin-top: var(--space-xl);
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

.blunoverix-contact-hours h4 {
  color: var(--blunoverix-white);
  margin-bottom: var(--space-md);
}

.blunoverix-contact-hours p {
  color: var(--blunoverix-light);
  margin-bottom: var(--space-sm);
}

/* Contact Form */
.blunoverix-contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-xl);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.blunoverix-contact-form h3 {
  color: var(--blunoverix-white);
  margin-bottom: var(--space-lg);
}

.blunoverix-form-group {
  margin-bottom: var(--space-lg);
}

.blunoverix-form-group input,
.blunoverix-form-group select,
.blunoverix-form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--blunoverix-white);
  font-size: 1rem;
  transition: all var(--transition-smooth);
}

.blunoverix-form-group input::placeholder,
.blunoverix-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.blunoverix-form-group input:focus,
.blunoverix-form-group select:focus,
.blunoverix-form-group textarea:focus {
  outline: none;
  border-color: var(--blunoverix-accent);
  background: rgba(255, 255, 255, 0.2);
}

.blunoverix-form-group select option {
  background: var(--blunoverix-primary);
  color: var(--blunoverix-white);
}

/* Footer */
.blunoverix-footer {
  background: var(--blunoverix-primary);
  color: var(--blunoverix-light);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.blunoverix-footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-xl);
}

.blunoverix-footer-brand .blunoverix-logo {
  margin-bottom: var(--space-lg);
}

.blunoverix-footer-brand .blunoverix-brand-name {
  color: var(--blunoverix-white);
}

.blunoverix-footer-brand p {
  color: var(--blunoverix-light);
  font-size: 1rem;
}

.blunoverix-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.blunoverix-footer-section h4 {
  color: var(--blunoverix-white);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}

.blunoverix-footer-section ul {
  list-style: none;
}

.blunoverix-footer-section li {
  margin-bottom: var(--space-sm);
}

.blunoverix-footer-section a {
  color: var(--blunoverix-light);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.blunoverix-footer-section a:hover {
  color: var(--blunoverix-accent);
}

.blunoverix-footer-bottom {
  border-top: 1px solid var(--blunoverix-secondary);
  padding-top: var(--space-lg);
  text-align: center;
  color: var(--blunoverix-light);
}

/* Policy Pages */
.blunoverix-policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.blunoverix-policy-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--blunoverix-light);
}

.blunoverix-policy-header h1 {
  color: var(--blunoverix-primary);
  margin-bottom: var(--space-md);
}

.blunoverix-policy-updated {
  color: var(--blunoverix-secondary);
  font-style: italic;
}

.blunoverix-policy-section {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--blunoverix-light);
}

.blunoverix-policy-section:last-child {
  border-bottom: none;
}

.blunoverix-policy-section h2 {
  color: var(--blunoverix-primary);
  margin: 36px 0;
}

.blunoverix-policy-section h3 {
  color: var(--blunoverix-secondary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.blunoverix-policy-section ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.blunoverix-policy-section li {
  margin-bottom: var(--space-sm);
  color: var(--blunoverix-secondary);
}

.blunoverix-info-category,
.blunoverix-cookie-type,
.blunoverix-terms-subsection {
  background: var(--blunoverix-light);
  padding: var(--space-lg);
  border-radius: 15px;
  margin-bottom: var(--space-lg);
}

.blunoverix-contact-details {
  background: var(--blunoverix-light);
  padding: var(--space-lg);
  border-radius: 15px;
  margin: var(--space-lg) 0;
}

.blunoverix-contact-details p {
  margin-bottom: var(--space-sm);
}

.blunoverix-contact-details a {
  color: var(--blunoverix-accent);
  text-decoration: none;
}

.blunoverix-contact-details a:hover {
  text-decoration: underline;
}

.blunoverix-policy-actions {
  text-align: center;
  /* margin-top: var(--space-3xl); */
  padding-top: var(--space-xl);
  border-top: 2px solid var(--blunoverix-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blunoverix-policy-actions .blunoverix-btn {
  margin: 0 var(--space-sm);
  justify-content: center;
}

/* Thank You Page */
.blunoverix-thankyou-body {
  background: linear-gradient(135deg, var(--blunoverix-light) 0%, var(--blunoverix-white) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blunoverix-thankyou-main {
  padding: var(--space-xs);
  width: 100%;
}

.blunoverix-thankyou-container {
  max-width: 800px;
  margin: 0 auto;
}

.blunoverix-thankyou-content {
  background: var(--blunoverix-white);
  padding: var(--space-xl);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: blunoverix-slideInUp 0.8s ease-out;
}

@keyframes blunoverix-slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blunoverix-thankyou-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-xl);
  animation: blunoverix-bounce 2s ease-in-out infinite;
}

@keyframes blunoverix-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.blunoverix-thankyou-title {
  color: var(--blunoverix-primary);
  margin-bottom: var(--space-lg);
  font-size: 2.5rem;
}

.blunoverix-thankyou-subtitle {
  color: var(--blunoverix-secondary);
  font-size: 1.2rem;
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.blunoverix-thankyou-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.blunoverix-thankyou-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  text-align: left;
  padding: var(--space-sm);
  background: var(--blunoverix-light);
  border-radius: 15px;
}

.blunoverix-thankyou-detail-icon {
  width: 50px;
  height: 50px;
  background: var(--blunoverix-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blunoverix-thankyou-detail-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--blunoverix-white);
}

.blunoverix-thankyou-detail h3 {
  color: var(--blunoverix-primary);
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
}

.blunoverix-thankyou-detail p {
  color: var(--blunoverix-secondary);
  margin-bottom: 0;
  font-size: 1rem;
}

.blunoverix-thankyou-next-steps {
  background: var(--blunoverix-light);
  padding: var(--space-sm);
  border-radius: 15px;
  margin-bottom: var(--space-2xl);
  text-align: left;
}

.blunoverix-thankyou-next-steps h3 {
  color: var(--blunoverix-primary);
  margin-bottom: var(--space-md);
  text-align: center;
}

.blunoverix-thankyou-next-steps ol {
  margin-left: var(--space-lg);
}

.blunoverix-thankyou-next-steps li {
  color: var(--blunoverix-secondary);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.blunoverix-thankyou-contact {
  background: var(--blunoverix-primary);
  color: var(--blunoverix-white);
  padding: var(--space-lg);
  border-radius: 15px;
  margin-bottom: var(--space-2xl);
}

.blunoverix-thankyou-contact a {
  color: var(--blunoverix-accent);
  text-decoration: none;
}

.blunoverix-thankyou-contact a:hover {
  text-decoration: underline;
}

.blunoverix-thankyou-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: linear-gradient(135deg, var(--blunoverix-accent) 0%, var(--blunoverix-secondary) 100%);
  color: var(--blunoverix-white);
  padding: var(--space-sm);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-md);
  flex-direction: column;
}

.blunoverix-thankyou-home-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.blunoverix-thankyou-home-icon {
  width: 20px;
  height: 20px;
}

/* RESPONSIVE MEDIA QUERIES */

/* Tablet and Below - 991px */
@media screen and (max-width: 991px) {
  :root {
    --space-xs: 0.75rem;
    --space-sm: 1.25rem;
    --space-md: 2rem;
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
    --space-2xl: 5rem;
    --space-3xl: 7rem;
  }
  

  
  .blunoverix-nav-toggle {
    display: flex;
  }
  
  .blunoverix-nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--blunoverix-white);
    flex-direction: column;
    padding: var(--space-xl);
    transition: left var(--transition-smooth);
    box-shadow: var(--shadow-lg);
  }
  
  .blunoverix-nav-menu.blunoverix-active {
    left: 0;
  }
  
  .blunoverix-nav-menu a {
    font-size: 1.2rem;
    /* padding: var(--space-md); */
    display: block;
    text-align: center;
  }
  .blunoverix-btn {
    padding: var(--space-md) var(--space-lg);
    font-size: 1.2rem;
  }
  
  .blunoverix-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .blunoverix-philosophy-content {
    grid-template-columns: 1fr;
  }
  
  .blunoverix-contact-content {
    grid-template-columns: 1fr;
  }

  .blunoverix-programs,
.blunoverix-pricing,
.blunoverix-philosophy,
.blunoverix-testimonials,
.blunoverix-gallery,
.blunoverix-contact,
.blunoverix-footer {
  padding: var(--space-2xl) 0;
}
  
  .blunoverix-footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .blunoverix-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile - 768px */
@media screen and (max-width: 768px) {
  
  .blunoverix-hero-title {
    font-size: 3rem;
  }
  
  .blunoverix-hero-actions {
    gap: var(--space-sm);
    flex-direction: column;
  }
  
  .blunoverix-programs-grid {
    grid-template-columns: 1fr;
  }
  
  .blunoverix-pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .blunoverix-philosophy-stats {
    grid-template-columns: 1fr;
  }

  .blunoverix-programs,
.blunoverix-pricing,
.blunoverix-philosophy,
.blunoverix-testimonials,
.blunoverix-gallery,
.blunoverix-contact,
.blunoverix-footer {
  padding: var(--space-xl) 0;
}
  
  .blunoverix-footer-links {
    grid-template-columns: 1fr;
  }
  
  .blunoverix-thankyou-details {
    grid-template-columns: 1fr;
  }
  
  .blunoverix-thankyou-detail {
    flex-direction: column;
    text-align: center;
  }
}

/* Small Mobile - 576px */
@media screen and (max-width: 576px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.8rem; }
  h4 { font-size: 1.6rem; }
  h5 { font-size: 1.4rem; }
  h6 { font-size: 1.2rem; }
  p { font-size: 1rem; }
  
  .blunoverix-container {
    padding: 0 var(--space-md);
  }
  
  .blunoverix-btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 1rem;
  }
  
  .blunoverix-hero-title {
    font-size: 2.5rem;
  }

  .blunoverix-programs,
.blunoverix-pricing,
.blunoverix-philosophy,
.blunoverix-testimonials,
.blunoverix-gallery,
.blunoverix-contact,
.blunoverix-footer {
  padding: var(--space-lg) 0;
}

.blunoverix-contact-form {
  padding: var(--space-sm);
}
  
  .blunoverix-energy-circle {
    width: 200px;
    height: 200px;
  }
  
  .blunoverix-meditation-icon {
    width: 150px;
    height: 150px;
  }

.blunoverix-form-group input,
.blunoverix-form-group select,
.blunoverix-form-group textarea {
  padding: var(--space-xs);
}
  
  .blunoverix-program-card,
  .blunoverix-pricing-card {
    padding: var(--space-xs);
  }
  
  .blunoverix-thankyou-content {
    padding: var(--space-sm);
  }

  .blunoverix-info-category,
.blunoverix-cookie-type,
.blunoverix-terms-subsection {
  padding: var(--space-xs);
  margin-bottom: var(--space-sm);
}

  .blunoverix-brand-name{
    font-size: 1.5rem;
  }
  
  .blunoverix-thankyou-title {
    font-size: 2rem;
  }

  .blunoverix-footer-content {
    gap: var(--space-md);
  }
}

/* Very Small Mobile - 360px */
@media screen and (max-width: 360px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.6rem; }
  p { font-size: 0.95rem; }
  
  .blunoverix-container {
    padding: 0 var(--space-sm);
  }
  
  .blunoverix-hero-content {
    padding: 0 var(--space-sm);
  }
  
  .blunoverix-program-card,
  .blunoverix-pricing-card {
    padding: var(--space-md);
  }

  .blunoverix-programs,
.blunoverix-pricing,
.blunoverix-philosophy,
.blunoverix-testimonials,
.blunoverix-gallery,
.blunoverix-contact,
.blunoverix-footer {
  padding: var(--space-md) 0;
}
  
  .blunoverix-btn {
    padding: var(--space-sm);
    font-size: 0.95rem;
  }
}