/* International Yoga Day Page - Zen-Inspired Modern Design */

/* CSS Variables - Site Theme Colors */
:root {
  --primary-color: #f26522;
  --secondary-color: #0d0e14;
  --accent-red: #e74c3c;
  --accent-green: #27ae60;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #666666;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --shadow-soft: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.12);
  --shadow-deep: rgba(0, 0, 0, 0.16);
  --gradient-primary: linear-gradient(135deg, #f26522 0%, #ff8c42 100%);
  --gradient-secondary: linear-gradient(135deg, #0d0e14 0%, #1a1b2e 100%);
}

/* Global Styles */
.min-vh-100 {
  min-height: 100vh;
}

/* Hero Section - Site Theme Background */
.yoga-hero-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8e1 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Zen Background Elements */
.zen-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-lotus {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 20 C30 30, 30 70, 50 80 C70 70, 70 30, 50 20 Z" fill="%23f26522"/><path d="M20 50 C30 30, 70 30, 80 50 C70 70, 30 70, 20 50 Z" fill="%230d0e14"/></svg>');
}

.lotus-1 {
  top: 15%;
  left: 10%;
  animation: floatLotus 8s ease-in-out infinite;
}
.lotus-2 {
  top: 60%;
  right: 15%;
  animation: floatLotus 10s ease-in-out infinite 2s;
}
.lotus-3 {
  bottom: 20%;
  left: 20%;
  animation: floatLotus 12s ease-in-out infinite 4s;
}

@keyframes floatLotus {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-15px) rotate(5deg) scale(1.1);
  }
  50% {
    transform: translateY(-30px) rotate(0deg) scale(1);
  }
  75% {
    transform: translateY(-15px) rotate(-5deg) scale(1.1);
  }
}

.meditation-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.circle-1 {
  width: 300px;
  height: 300px;
  border: 2px solid var(--primary-color);
  animation: breathe 6s ease-in-out infinite;
}

.circle-2 {
  width: 500px;
  height: 500px;
  border: 2px solid var(--secondary-color);
  animation: breathe 8s ease-in-out infinite 1s;
}

.circle-3 {
  width: 700px;
  height: 700px;
  border: 2px solid var(--accent-red);
  animation: breathe 10s ease-in-out infinite 2s;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.05;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

/* Hero Content */
.hero-content-yoga {
  position: relative;
  z-index: 10;
}

.spiritual-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
  backdrop-filter: blur(10px);
}

.spiritual-badge i {
  font-size: 1.2rem;
  color: var(--text-light);
}

.hero-title-yoga {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.text-gradient-yoga {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.yoga-date-banner {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px var(--shadow-soft);
  border: 1px solid rgba(135, 169, 107, 0.2);
}

.date-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 20px;
  border-right: 2px solid var(--primary-color);
}

.date-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.date-text span {
  display: block;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.event-theme h4 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.event-theme p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.hero-description-yoga {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 35px;
}

/* Hero Stats - Yoga Style */
.hero-stats-yoga {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-item-yoga {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: all 0.3s ease;
  border: 1px solid rgba(242, 101, 34, 0.1);
}

.stat-item-yoga:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-medium);
}

.stat-icon-yoga {
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(242, 101, 34, 0.3);
}

.stat-number-yoga {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label-yoga {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-yoga {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.btn-yoga.primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
}

.btn-yoga.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(135, 169, 107, 0.4);
  color: var(--text-light);
  text-decoration: none;
}

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

.btn-yoga.secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
}

/* Hero Visual */
.hero-visual-yoga {
  position: relative;
  z-index: 10;
}

.yoga-pose-showcase {
  position: relative;
}

.pose-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow-medium);
}

.main-pose {
  max-width: 500px;
  margin: 0 auto;
}

.pose-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pose-card:hover .pose-image {
  transform: scale(1.05);
}

.pose-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--text-light);
  padding: 20px;
  text-align: center;
}

.pose-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.pose-benefit {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.floating-poses {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mini-pose {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-medium);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.mini-pose img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-pose:hover {
  transform: scale(1.1);
  opacity: 1;
}

.pose-1 {
  top: 20%;
  right: -40px;
  animation: float 4s ease-in-out infinite;
}

.pose-2 {
  bottom: 30%;
  left: -40px;
  animation: float 6s ease-in-out infinite 2s;
}

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

.wellness-badges {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge-item {
  background: var(--background-white);
  padding: 8px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 5px 15px var(--shadow-soft);
  color: var(--text-muted);
}

.badge-item i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Section Headers */
.section-header-yoga {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.testimonials-section .section-header-yoga {
  margin-bottom: 40px;
}

.section-badge-yoga {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title-yoga {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.2;
}

.section-description-yoga {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  /* line-height: 1.7; */
}

/* Event Highlights Section */
.event-highlights-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    #f8f9fa 0%,
    rgba(135, 169, 107, 0.05) 100%
  );
  position: relative;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.highlight-card {
  background: var(--background-white);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-soft);
  transition: all 0.4s ease;
  border: 1px solid rgba(242, 101, 34, 0.1);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-medium);
}

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

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-secondary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(13, 14, 20, 0.3);
  transition: all 0.3s ease;
}

.highlight-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.highlight-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.highlight-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(242, 101, 34, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
}

.card-time i {
  color: var(--accent-red);
}

/* Gallery Section */
.gallery-section {
  padding: 40px 0;
  background: linear-gradient(
    135deg,
    var(--background-light) 0%,
    rgba(242, 101, 34, 0.02) 100%
  );
  position: relative;
}

.yoga-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.gallery-item {
  opacity: 1;
  transition: all 0.3s ease;
}

.gallery-card {
  position: relative;
  background: var(--background-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid rgba(242, 101, 34, 0.1);
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(242, 101, 34, 0.8) 0%,
    rgba(13, 14, 20, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: var(--text-light);
}

.overlay-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.overlay-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.overlay-content i {
  font-size: 2rem;
  opacity: 0.8;
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-modal.active {
  display: flex;
  opacity: 1;
}

.gallery-modal .modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  backdrop-filter: blur(5px);
  z-index: 1;
}

.gallery-modal .modal-container {
  position: relative;
  margin: auto;
  background: var(--background-white);
  border-radius: 20px;
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  z-index: 10;
}

.gallery-modal.active .modal-container {
  transform: scale(1);
}

.gallery-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: var(--gradient-primary);
  color: var(--text-light);
}

.gallery-modal .modal-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.gallery-modal .modal-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.gallery-modal .modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gallery-modal .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-height: 70vh;
  padding: 20px;
}

.gallery-modal .modal-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.gallery-modal .modal-image-container img {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow-medium);
}

.gallery-modal .modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(242, 101, 34, 0.8);
  color: var(--text-light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.gallery-modal .modal-nav-btn:hover {
  background: rgba(242, 101, 34, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(242, 101, 34, 0.4);
}

.gallery-modal .modal-prev {
  left: 20px;
}

.gallery-modal .modal-next {
  right: 20px;
}

/* Registration Section */
.registration-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(242, 101, 34, 0.05) 0%,
    rgba(13, 14, 20, 0.05) 100%
  );
  position: relative;
}

.registration-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(242, 101, 34, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(13, 14, 20, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.registration-section .container-fluid {
  position: relative;
  z-index: 10;
}

.registration-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.registration-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.registration-benefits {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--text-muted);
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.event-details {
  background: var(--background-white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow-soft);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-item i {
  width: 35px;
  height: 35px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.detail-item div strong {
  display: block;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 2px;
}

.detail-item div span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Registration Form */
.registration-form-container {
  background: var(--background-white);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px var(--shadow-medium);
  border: 1px solid rgba(242, 101, 34, 0.1);
}

.registration-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.registration-form > p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(135, 169, 107, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background-white);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

.form-group label {
  position: absolute;
  left: 20px;
  top: 15px;
  color: var(--text-muted);
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 1rem;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label {
  top: -10px;
  left: 15px;
  background: var(--background-white);
  padding: 0 5px;
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(135, 169, 107, 0.4);
}

/* Testimonials Section */
.testimonials-section {
  padding: 40px 0;
  background: var(--background-light);
  position: relative;
}

.testimonials-swiper {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 60px 80px;
  overflow: visible;
  height: 450px;
}

.testimonials-swiper .swiper-wrapper {
  height: 100%;
}

.testimonials-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  background: var(--background-white);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(242, 101, 34, 0.1);
  width: 100%;
  max-width: 800px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  width: 100%;
}

/* Swiper Navigation Buttons */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  color: var(--primary-color);
  width: 55px;
  height: 55px;
  background: var(--background-white);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(242, 101, 34, 0.2);
  transition: all 0.3s ease;
  margin-top: -27px;
  z-index: 10;
}

.testimonials-swiper .swiper-button-next {
  right: 15px;
}

.testimonials-swiper .swiper-button-prev {
  left: 15px;
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(242, 101, 34, 0.4);
}

.testimonials-swiper .swiper-button-next.swiper-button-disabled,
.testimonials-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Swiper Pagination */
.testimonials-swiper .swiper-pagination {
  position: absolute !important;
  bottom: 15px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: auto;
  text-align: center !important;
  z-index: 10;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px;
  transform: none !important;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: rgba(242, 101, 34, 0.4) !important;
  opacity: 1 !important;
  margin: 0 !important;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.testimonials-swiper .swiper-pagination-bullet:hover {
  background: rgba(242, 101, 34, 0.7) !important;
  transform: scale(1.2);
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  transform: scale(1.4);
  box-shadow: 0 4px 12px rgba(242, 101, 34, 0.5);
}

/* Ensure pagination is centered properly */
.testimonials-swiper .swiper-pagination-horizontal {
  bottom: 15px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: absolute !important;
  text-align: center !important;
}

/* Additional pagination styling */
.testimonials-swiper .swiper-pagination-bullets {
  bottom: 15px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.testimonials-swiper .swiper-pagination-clickable {
  cursor: pointer;
}

.testimonials-swiper .swiper-pagination-bullet:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

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

.quote-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 1.8rem;
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
}

.testimonial-content blockquote {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 40px;
  position: relative;
  font-weight: 500;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(242, 101, 34, 0.2);
}

.author-info h4 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.author-info span {
  color: var(--text-muted);
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}

.rating {
  display: flex;
  justify-content: flex-start;
  gap: 3px;
}

.rating i {
  color: #ffc107;
  font-size: 1rem;
}

/* Testimonials Responsive */
@media (max-width: 768px) {
  .testimonials-swiper {
    margin: 30px 15px 0;
    padding: 0 50px 60px;
    height: 400px;
  }

  .testimonial-card {
    padding: 30px 25px;
    max-width: 100%;
  }

  .testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .testimonial-author {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .author-info {
    text-align: center;
  }

  .rating {
    justify-content: center;
  }

  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    margin-top: -22px;
  }

  .testimonials-swiper .swiper-button-next {
    right: 10px;
  }

  .testimonials-swiper .swiper-button-prev {
    left: 10px;
  }

  .testimonials-swiper .swiper-button-next::after,
  .testimonials-swiper .swiper-button-prev::after {
    font-size: 16px;
  }

  .testimonials-swiper .swiper-pagination {
    bottom: 10px !important;
    gap: 10px;
  }

  .testimonials-swiper .swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
  }

  .testimonials-swiper .swiper-pagination-horizontal {
    bottom: 10px !important;
  }
}

/* CTA Section */
.cta-section-yoga {
  padding: 80px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
  animation: float 20s ease-in-out infinite;
}

.cta-content-yoga {
  position: relative;
  z-index: 10;
}

.cta-icon-yoga {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  color: var(--text-light);
  backdrop-filter: blur(10px);
}

.cta-title-yoga {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-description-yoga {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons-yoga {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-cta-yoga {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-cta-yoga.primary {
  background: var(--text-light);
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-yoga.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
  text-decoration: none;
}

.btn-cta-yoga.secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-cta-yoga.secondary:hover {
  background: var(--text-light);
  color: var(--primary-color);
  text-decoration: none;
}

.cta-contact-yoga {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item-yoga {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 1rem;
}

.contact-item-yoga i {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-stats-yoga {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .yoga-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .yoga-hero-section {
    padding: 40px 0;
  }

  .hero-stats-yoga {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-yoga {
    justify-content: center;
  }

  .yoga-date-banner {
    flex-direction: column;
    text-align: center;
  }

  .date-info {
    border-right: none;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .registration-form-container {
    padding: 25px;
  }

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

  .cta-contact-yoga {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .wellness-badges {
    position: static;
    transform: none;
    margin-top: 20px;
  }

  .floating-poses {
    display: none;
  }

  .yoga-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-modal .modal-container {
    max-width: 95vw;
    max-height: 95vh;
  }

  .gallery-modal .modal-body {
    max-height: 75vh;
    padding: 15px;
  }

  .gallery-modal .modal-image-container img {
    max-width: 95%;
    max-height: 65vh;
  }

  .gallery-modal .modal-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .gallery-modal .modal-prev {
    left: 10px;
  }

  .gallery-modal .modal-next {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .hero-title-yoga {
    font-size: 2.2rem;
  }

  .timeline-container {
    padding: 0 10px;
  }

  .section-header-yoga {
    margin-bottom: 40px;
  }

  .event-highlights-section,
  .schedule-section,
  .registration-section,
  .testimonials-section,
  .cta-section-yoga {
    padding: 60px 0;
  }
}

/* Accessibility & Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #ff4500;
    --secondary-color: #000000;
    --text-muted: #000000;
  }
}
