:root {
  --primary-purple: #8B5A8C;
  --light-purple: #B695B7;
  --dark-purple: #6B4C93;
  --purple-gradient: linear-gradient(135deg, #8B5A8C 0%, #6B4C93 100%);
  --text-gray: #666;
  --light-gray: #f8f9fa;
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-purple) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--purple-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.navbar-nav .nav-link {
color: #946699;
    font-weight: 400;
  margin: 0 10px;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--purple-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.btn-login {
      border: 1px solid #8B5A8C;
  color: var(--primary-purple) !important;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-login:hover {
      border: 1px solid #8B5A8C;
  background: rgba(139, 90, 140, 0.1);
  transform: translateY(-2px);
  color: var(--dark-purple) !important;
}

.btn-trial {
  background: var(--primary-purple);
  color: white !important;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 90, 140, 0.3);
}

.btn-trial:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 90, 140, 0.4);
  color: white !important;
}

.header_logo {
	height: 85px;
	width: auto;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(139, 90, 140, 0.1) 0%, rgba(107, 76, 147, 0.1) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
    background: url(/wp-content/uploads/2025/09/yoga1.jpeg);
    pointer-events: none;
    background-position: 80%;
    opacity: 0.3;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(139, 90, 140, 0.2);
  transition: transform 0.3s ease;
}

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

.trusted-badge {
      background: rgb(237 231 236);
    border: 1px solid rgb(225 175 217);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 50px;
  color: var(--primary-purple);
  font-weight: 500;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(139, 90, 140, 0.2);
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: var(--purple-gradient);
  color: white;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 12px;
  border: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 90, 140, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 90, 140, 0.4);
  color: white;
}

.btn-secondary-custom {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-purple);
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 12px;
  border: 2px solid rgba(139, 90, 140, 0.2);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary-custom:hover {
  background: rgba(139, 90, 140, 0.1);
  border-color: var(--primary-purple);
  color: var(--dark-purple);
  transform: translateY(-2px);
}

/* Registration Form */
.registration-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 20px 60px rgba(139, 90, 140, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 5rem;
}

.step-indicator {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-title {
  color: var(--primary-purple);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

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

.form-label {
  color: var(--primary-purple);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
      font-size: 14px;
}

.form-control, .form-select {
  border: 2px solid rgba(139, 90, 140, 0.2);
  border-radius: 12px;
    padding: 10px;
    font-size: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 90, 140, 0.2);
  background: white;
}

.btn-continue {
  background: var(--purple-gradient);
  color: white;
  font-weight: 600;
  padding: 10px;
  border-radius: 12px;
  border: none;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-continue:hover {
  color: white!important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 90, 140, 0.3);
}

.terms-text {
  font-size: 0.85rem;
  color: var(--text-gray);
  text-align: center;
  margin-top: 1rem;
}

.terms-text a {
  color: var(--primary-purple);
  text-decoration: none;
}

.terms-text a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-subtitle {
      font-size: 1.1rem;
  }
  
  .registration-form {
      margin-left: 0;
      margin-top: 3rem;
  }
  
  .hero-buttons {
      justify-content: center;
  }
  
  .btn-primary-custom, .btn-secondary-custom {
      width: 100%;
      justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
      font-size: 2rem;
  }
  
  .registration-form {
      padding: 1.5rem;
  }
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up.delay-1 { animation-delay: 0.2s; }
.fade-in-up.delay-2 { animation-delay: 0.4s; }
.fade-in-up.delay-3 { animation-delay: 0.6s; }

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

/* Benefits Section */
.benefits-section {
          background: linear-gradient(135deg, rgb(255 255 255) 0%, rgb(236 229 238) 100%);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%238B5A8C" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(139, 90, 140, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(139, 90, 140, 0.08);
  transition: all 0.3s ease;
}

/* .benefit-card:hover {
      transform: translateY(-2px);
} */

.benefit-card:hover {
  transform: translateY(-2px)!important;
  /* box-shadow: 0 20px 50px rgba(139, 90, 140, 0.15);
  border-color: rgba(139, 90, 140, 0.2); */
}

.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
  position: relative;
}

.benefit-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(139, 90, 140, 0.1) 0%, rgba(107, 76, 147, 0.1) 100%);
  border-radius: 50%;
  z-index: -1;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.benefit-description {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* Responsive adjustments for benefits section */
@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }
  
  .section-subtitle {
      font-size: 1.1rem;
  }
  
  .benefit-card {
      padding: 2rem 1.5rem;
  }
  
  .benefit-icon {
      font-size: 2.5rem;
  }
  
  .benefit-title {
      font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .benefits-section {
      padding: 3rem 0;
  }
  
  .section-title {
      font-size: 1.8rem;
  }
  
  .benefit-card {
      padding: 1.5rem;
  }
}

/* Instructor Section */
.instructor-section {
      background: linear-gradient(135deg, rgb(255 255 255) 0%, rgb(236 229 238) 100%);
  position: relative;

}

.instructor-image-container {
  position: relative;
  text-align: center;
		    background-image: url(/wp-content/uploads/2025/09/siddh2.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
}

.instructor-badge {
background: var(--purple-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(139, 90, 140, 0.3);
    position: absolute;
    left: 0;
    margin: 30px;
}

.instructor-placeholder {
    height: 600px;
    background: linear-gradient(135deg, rgba(139, 90, 140, 0.1) 0%, rgba(181, 149, 183, 0.2) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
}

.instructor-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.placeholder-avatar {
  width: 120px;
  height: 120px;
  background: rgba(139, 90, 140, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-purple);
}

.instructor-content {
  padding-left: 2rem;
}

.instructor-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.instructor-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}

.instructor-subtitle {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.instructor-description {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.instructor-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
background: #fbfafb;
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid #e5cae8;
    flex: 1;
    transition: 0.8s;
}



.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

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

.certifications {
  margin-bottom: 2rem;
}

.cert-title {
  color: var(--primary-purple);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cert-list {
  list-style: none;
  padding: 0;
}

.cert-list li {
  color: var(--text-gray);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.cert-list li::before {
  content: '•';
  color: var(--primary-purple);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.btn-read-bio {
  background: var(--purple-gradient);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 90, 140, 0.3);
}

.btn-read-bio:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 90, 140, 0.4);
  color: white;
}

/* Stories Section */
.stories-section {
      background: linear-gradient(135deg, rgb(255 255 255) 0%, rgb(236 229 238) 100%);
  position: relative;
}

.story-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease!important;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-2px)!important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.story-video {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 90, 140, 0.8) 0%, rgba(107, 76, 147, 0.8) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-purple);
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background: white;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.story-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4757;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.story-content {
  padding: 1.5rem;
}

.story-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.story-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-weight: 600;
  color: var(--primary-purple);
  font-size: 0.95rem;
}

.author-location {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.author-stage {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.btn-view-all {
  background: transparent;
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: var(--purple-gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .instructor-content {
      padding-left: 0;
      margin-top: 2rem;
  }
  
  .instructor-placeholder {
      width: 300px;
      height: 400px;
  }
  
  .instructor-stats {
      gap: 1rem;
  }
  
  .stat-item {
      padding: 1rem;
  }
  
  .stat-number {
      font-size: 1.5rem;
  }
  
  .instructor-title {
      font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .instructor-placeholder {
      width: 250px;
      height: 350px;
  }
  
  .instructor-stats {
      flex-direction: column;
      gap: 1rem;
  }
  
  .story-video {
      height: 180px;
  }
  
  .story-content {
      padding: 1rem;
  }
}

/* Community Stories Section */
.community-stories-section {
  background: linear-gradient(180deg, rgb(255 255 255) 0%, rgb(236 229 238) 100%);
  position: relative;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(139, 90, 140, 0.1);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 8px 25px rgba(139, 90, 140, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 90, 140, 0.15);
  border-color: rgba(139, 90, 140, 0.2);
}

.quote-icon {
  font-size: 3rem;
  color: var(--light-purple);
  font-family: serif;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.star-rating {
  margin-bottom: 1.5rem;
}

.star-rating i {
  color: #ffd700;
  font-size: 1rem;
  margin-right: 2px;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--primary-purple);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.author-location {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.author-stage {
  background: rgba(139, 90, 140, 0.1);
  color: var(--primary-purple);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
      margin: 10px 0;
}

.community-cta {
    background: #f9f2fa;
    backdrop-filter: blur(15px);
    border: 1px solid rgb(204 167 205);
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(139, 90, 140, 0.1);
}

.cta-icon {
  font-size: 2rem;
}

.cta-content {
  display: flex;
  flex-direction: column;
}

.cta-text {
  font-weight: 600;
  color: var(--primary-purple);
  font-size: 1.1rem;
}

.cta-subtext {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* WhatsApp Testimonials Section */
.whatsapp-testimonials-section {
background: linear-gradient(270deg, rgb(255 255 255) 0%, rgb(236 229 238) 100%);
  position: relative;
}

.highlight-text {
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.whatsapp-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.whatsapp-header {
  background: #128C7E;
  padding: 1rem;
  color: white;
}

.whatsapp-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.group-info {
  display: flex;
  flex-direction: column;
}

.group-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.group-stats {
  font-size: 0.85rem;
  opacity: 0.9;
}

.whatsapp-messages {
  padding: 1rem;
  max-height: 400px;
  overflow-y: auto;
  background: #ECE5DD;
}

.message-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.message-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-content {
  background: white;
  border-radius: 10px;
  padding: 0.75rem;
  flex: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.message-content::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 10px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid white;
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.message-name {
  font-weight: 600;
  color: var(--primary-purple);
  font-size: 0.9rem;
}

.message-time {
  color: var(--text-gray);
  font-size: 0.75rem;
}

.message-text {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.message-reactions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.reaction-count {
  color: var(--text-gray);
  font-size: 0.75rem;
}

.reactions {
  font-size: 0.8rem;
}

.whatsapp-cta {
  background: #128C7E;
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.whatsapp-cta:hover {
  background: #075E54;
}

.cta-icon-phone {
  font-size: 1.5rem;
}

.cta-content-phone {
  display: flex;
  flex-direction: column;
}

.cta-title {
  font-weight: 600;
  font-size: 1rem;
}

.cta-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .testimonial-card {
      padding: 1.5rem;
  }
  
  .testimonial-author {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
  }
  
  .author-stage {
      align-self: flex-start;
  }
  
  .community-cta {
      flex-direction: column;
      text-align: center;
      padding: 1.5rem;
  }
  
  .whatsapp-messages {
      max-height: 350px;
  }
  
  .message-item {
      gap: 0.5rem;
  }
  
  .message-avatar {
      width: 30px;
      height: 30px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
      padding: 1rem;
  }
  
  .quote-icon {
      font-size: 2.5rem;
  }
  
  .whatsapp-container {
      margin: 0 1rem;
  }
  
  .whatsapp-header {
      padding: 0.75rem;
  }
  
  .whatsapp-messages {
      padding: 0.75rem;
      max-height: 300px;
  }
  
  .whatsapp-cta {
      padding: 1rem;
  }
}


/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(360deg, rgb(255 255 255) 0%, rgb(236 229 238) 100%);
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 2.5rem;
  color: var(--primary-purple);
  margin-bottom: 10px;
  font-weight: 600;
}

.pricing-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(139, 90, 140, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 90, 140, 0.15);
}

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

.popular-badge {
  background: var(--purple-gradient);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
}

.card-title {
  font-size: 1.4rem;
  color: #374151;
  margin-bottom: 10px;
  font-weight: 600;
}

.card-price {
  font-size: 3rem;
  color: var(--primary-purple);
  font-weight: 700;
  margin-bottom: 5px;
}

.card-period {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.card-description {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.features-title {
  font-weight: 600;
  color: #374151;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  margin-bottom: 40px;
}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 0.95rem;
}

.features-list li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.1rem;
}

.pricing-btn {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--purple-gradient);
  color: white;
}

.btn-primary:hover {
  background: var(--dark-purple);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--purple-gradient);
  color: white;
}

.guarantee-text {
  text-align: center;
  margin-top: 40px;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.guarantee-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.guarantee-features span {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.guarantee-features span::before {
  content: "✓";
  color: #10b981;
  margin-right: 8px;
  font-weight: bold;
}

/* Yoga Journey Section */
.yoga-journey-section {
  padding: 80px 0;
  background: white;
}

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

.journey-content h2 {
  font-size: 2.2rem;
  color: var(--primary-purple);
  margin-bottom: 20px;
  font-weight: 600;
}

.journey-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

.journey-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.journey-btn {
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
}

.btn-trial {
  background: var(--purple-gradient);
  color: white;
}

.btn-trial:hover {
  opacity: 0.9;
  /* background: var(--dark-purple); */
  /* transform: translateY(-2px); */
}

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

.btn-consultation:hover {
  background: var(--purple-gradient);
  color: white;
}

.journey-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.journey-features span {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.journey-features span::before {
  content: "✓";
  color: #10b981;
  margin-right: 8px;
  font-weight: bold;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 10px;
}


.whole-cont {
    width: 60%;
    padding: 40px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgb(33 26 34 / 10%);
    background: white;
}

.stat-label {
  color: var(--text-gray);
  font-size: 1rem;
}

/* Footer */
.footer {
  background: #f5e9f6;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--primary-purple) !important;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo::before {
  content: "🧘‍♀️";
  font-size: 1.5rem;
  margin-right: 10px;
}

.footer-logo span {
  font-weight: 600;
  color: var(--primary-purple) !important;
  font-size: 1.2rem;
}

.footer-description {
  color: var(--primary-purple) !important;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--primary-purple) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-purple) !important;
}

.contact-info {
  color: var(--primary-purple) !important;
  line-height: 1.6;
}

.contact-info div {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--purple-gradient);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #bbc0ca;
  padding-top: 30px;
  text-align: center;
  color: var(--primary-purple) !important;
}

.footer-bottom::before {
  content: "💜";
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-grid {
      grid-template-columns: 1fr;
  }

  .pricing-card.featured {
      transform: none;
  }

  .journey-buttons {
      flex-direction: column;
      align-items: center;
  }

  .stats-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .guarantee-features,
  .journey-features {
      flex-direction: column;
      align-items: center;
      gap: 15px;
  }

  .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .social-icons {
      justify-content: center;
	}

	.registration-form {
		margin: 0!important;
	}
	.whole-cont {
		width: 100%!important;
	}
	.footer-logo, .contact-info div {
    display: block!important;
	}
}

