/* ========================================
   VIPRA WELLNESS - Main Stylesheet
   Inspired by Satvatholistics Design
   ======================================== */

/* CSS Variables */
:root {
  /* Mind Care Colors - Sand & Sage (Calm, Grounded) */
  --mindcare-primary: #7C9070;
  --mindcare-secondary: #5C6B4D;
  --mindcare-accent: #D4A574;
  --mindcare-light: #FAF8F5;
  --mindcare-card-bg: #F5F1EB;
  --mindcare-text: #3D3830;
  --mindcare-text-light: #6B6560;

  /* Sound Wellness Colors - Purple (Spiritual, Healing) */
  --sound-primary: #825574;
  --sound-secondary: #7C5190;
  --sound-accent: #FDA50F;
  --sound-light: #F2F0FB;
  --sound-card-bg: #FFF7FC;
  --sound-text: #4A3347;
  --sound-text-light: #7A6878;

  /* Neutral Colors */
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: clamp(80px, 12vw, 140px);
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s linear;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-soft: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  --shadow-card: rgba(99, 99, 99, 0.2) 0px 2px 8px;
  --shadow-hover: rgba(0, 0, 0, 0.1) 0px 10px 40px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

/* Body Theme Classes */
body.mindcare-page {
  --primary: var(--mindcare-primary);
  --secondary: var(--mindcare-secondary);
  --accent: var(--mindcare-accent);
  --light-bg: var(--mindcare-light);
  --card-bg: var(--mindcare-card-bg);
  --text-dark: var(--mindcare-text);
  --text-light: var(--mindcare-text-light);
}

body.sound-page {
  --primary: var(--sound-primary);
  --secondary: var(--sound-secondary);
  --accent: var(--sound-accent);
  --light-bg: var(--sound-light);
  --card-bg: var(--sound-card-bg);
  --text-dark: var(--sound-text);
  --text-light: var(--sound-text-light);
}

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

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

ul, ol {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.section-tag,
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}

.section-tag::before,
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 2px;
  background: var(--primary);
}

/* Centered section labels (in section headers) */
.section-header .section-tag,
.section-header .section-label {
  padding-left: 0;
}

.section-header .section-tag::before,
.section-header .section-label::before {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16.5px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 0;
  transition: all 0.4s ease;
}

/* Glassmorphism Effect on Sticky Header */
.header.sticky {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
  animation: slideDown 0.4s ease;
}

.mindcare-page .header.sticky {
  background: rgba(250, 248, 245, 0.9);
  border-bottom: 1px solid rgba(124, 144, 112, 0.1);
}

.sound-page .header.sticky {
  background: rgba(242, 240, 251, 0.9);
  border-bottom: 1px solid rgba(130, 85, 116, 0.1);
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Circular Logo Background for White Logo Visibility */
.logo img {
  height: 45px;
  width: 45px;
  padding: 8px;
  border-radius: 50%;
  object-fit: contain;
  transition: all var(--transition-medium);
}

.mindcare-page .logo img {
  background: linear-gradient(135deg, var(--mindcare-primary), var(--mindcare-secondary));
  box-shadow: 0 4px 15px rgba(124, 144, 112, 0.3);
}

.sound-page .logo img {
  background: linear-gradient(135deg, var(--sound-primary), var(--sound-secondary));
  box-shadow: 0 4px 15px rgba(130, 85, 116, 0.3);
}

.header.sticky .logo img {
  height: 40px;
  width: 40px;
  padding: 6px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition-medium);
}

.header:not(.sticky) .logo-text {
  color: var(--primary);
}

.header.sticky .logo-text {
  color: var(--primary);
}

/* Navigation Menu - Glassmorphism Style */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 10px 16px;
  border-radius: 25px;
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--primary);
  background: rgba(124, 144, 112, 0.08);
}

.sound-page .nav-menu a:hover {
  background: rgba(130, 85, 116, 0.08);
}

.nav-menu a.active {
  color: var(--primary);
  background: rgba(124, 144, 112, 0.1);
}

.sound-page .nav-menu a.active {
  background: rgba(130, 85, 116, 0.1);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  margin-left: 8px;
  transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--secondary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.header.sticky .nav-toggle span {
  background: var(--primary);
}

/* ========================================
   HERO SECTION
   ======================================== */

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

/* Hero Background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mindcare-page .hero-bg {
  background: var(--mindcare-light);
}

.sound-page .hero-bg {
  background: var(--sound-light);
}

.hero-bg video {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mindcare-page .hero-overlay {
  background: linear-gradient(
    90deg,
    var(--mindcare-light) 0%,
    var(--mindcare-light) 40%,
    rgba(250, 248, 245, 0.8) 60%,
    rgba(250, 248, 245, 0.4) 100%
  );
}

.sound-page .hero-overlay {
  background: linear-gradient(
    90deg,
    var(--sound-light) 0%,
    var(--sound-light) 40%,
    rgba(242, 240, 251, 0.8) 60%,
    rgba(242, 240, 251, 0.4) 100%
  );
}

/* Hero Content */
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 20px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
  animation: fadeInDown 0.8s ease-out;
}

.mindcare-page .hero-badge {
  background: rgba(124, 144, 112, 0.15);
  color: var(--mindcare-primary);
  border: 1px solid rgba(124, 144, 112, 0.3);
}

.sound-page .hero-badge {
  background: rgba(130, 85, 116, 0.15);
  color: var(--sound-primary);
  border: 1px solid rgba(130, 85, 116, 0.3);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 65px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-description {
  font-size: 16.5px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 500px;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-hover);
}

/* Floating Decorative Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element.elem-1 {
  width: 80px;
  height: 80px;
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.floating-element.elem-2 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: -30px;
  animation-delay: 2s;
}

.floating-element.elem-3 {
  width: 40px;
  height: 40px;
  bottom: -10px;
  right: 20%;
  animation-delay: 4s;
}

.mindcare-page .floating-element {
  background: linear-gradient(135deg, var(--mindcare-primary), var(--mindcare-accent));
  opacity: 0.6;
}

.sound-page .floating-element {
  background: linear-gradient(135deg, var(--sound-primary), var(--sound-accent));
  opacity: 0.6;
}

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

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition-medium);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

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

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

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

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

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

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: var(--section-padding) 20px;
}

.section-light {
  background: var(--light-bg);
}

.section-alt {
  background: var(--gray-50);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Duplicate rules removed - handled above */

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ========================================
   SERVICE CARDS (Swiper Style)
   ======================================== */

.services-swiper {
  padding: 20px 10px 60px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
  height: 100%;
}

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

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(124, 81, 144, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.mindcare-page .service-card-overlay {
  background: rgba(92, 107, 77, 0.85);
}

.sound-page .service-card-overlay {
  background: rgba(124, 81, 144, 0.85);
}

.service-card:hover .service-card-overlay {
  opacity: 1;
  visibility: visible;
}

.service-card-overlay p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.service-card-icon {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 2;
  border: 4px solid var(--white);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.service-card-content {
  padding: 50px 25px 30px;
  text-align: center;
}

.service-card-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Services Grid (Static) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-item {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
  text-align: center;
}

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

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
}

.mindcare-page .service-icon {
  background: var(--mindcare-card-bg);
  border: 2px solid var(--mindcare-primary);
}

.sound-page .service-icon {
  background: var(--sound-card-bg);
  border: 2px solid var(--sound-primary);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
  transition: transform var(--transition-medium);
}

.service-item:hover .service-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.service-item:hover .service-icon svg {
  color: var(--white);
  transform: rotateY(-180deg);
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.about-content .section-tag {
  margin-bottom: 20px;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--card-bg);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ========================================
   KEY FACTS / STATS
   ======================================== */

.stats-section {
  background: var(--light-bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
}

.stat-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 2px solid var(--primary);
  transition: all var(--transition-medium);
  cursor: pointer;
}

.stat-icon:hover {
  background: var(--primary);
  transform: rotateY(-180deg);
}

.stat-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
  transition: color var(--transition-medium);
}

.stat-icon:hover svg {
  color: var(--white);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

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

.testimonials-swiper {
  padding: 60px 10px 80px;
}

.testimonial-card {
  background: var(--white);
  padding: 50px 30px 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  margin-top: 40px;
}

.testimonial-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-bg);
}

.testimonial-author h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.testimonial-author span {
  font-size: 14px;
  color: var(--text-light);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  fill: var(--accent);
}

/* Testimonials Carousel */
.testimonials-carousel {
  padding: 50px 10px 70px;
}

.testimonials-carousel .swiper-slide {
  height: auto;
}

@media (max-width: 767px) {
  .testimonials-carousel {
    padding: 40px 5px 60px;
  }

  .testimonial-card {
    padding: 35px 18px 25px;
    margin-top: 35px;
  }

  .testimonial-icon {
    width: 60px;
    height: 60px;
    top: -30px;
  }

  .testimonial-icon svg {
    width: 24px;
    height: 24px;
  }

  .testimonial-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .testimonial-author img {
    width: 50px;
    height: 50px;
  }

  .testimonial-author h4 {
    font-size: 16px;
  }
}

/* Testimonial Rating */
.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 15px;
}

.testimonial-rating svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  fill: var(--accent);
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.mindcare-page .cta-banner {
  background: linear-gradient(135deg, var(--mindcare-primary) 0%, var(--mindcare-secondary) 100%);
}

.sound-page .cta-banner {
  background: linear-gradient(135deg, var(--sound-primary) 0%, var(--sound-secondary) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-white {
  color: var(--primary);
}

.cta-buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.cta-buttons .btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
}

/* CTA Decorative Elements */
.cta-decor {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 8s ease-in-out infinite;
}

.cta-decor.decor-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}

.cta-decor.decor-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: 10%;
  animation-delay: 3s;
}

.cta-decor.decor-3 {
  width: 80px;
  height: 80px;
  top: 30%;
  right: -20px;
  animation-delay: 5s;
}

/* CTA Decorations (circles) */
.cta-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 8s ease-in-out infinite;
}

.cta-circle-1 {
  width: 200px;
  height: 200px;
  top: -60px;
  left: -60px;
}

.cta-circle-2 {
  width: 150px;
  height: 150px;
  bottom: -40px;
  right: 10%;
  animation-delay: 2s;
}

.cta-circle-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: -30px;
  animation-delay: 4s;
}

@media (max-width: 767px) {
  .cta-circle-1 {
    width: 120px;
    height: 120px;
  }

  .cta-circle-2 {
    width: 90px;
    height: 90px;
  }

  .cta-circle-3 {
    width: 60px;
    height: 60px;
  }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--card-bg);
  transition: all var(--transition-medium);
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.contact-item:hover .contact-icon {
  background: var(--primary);
}

.contact-item:hover .contact-icon svg {
  color: var(--white);
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.contact-item p,
.contact-item a {
  font-size: 17px;
  color: var(--text-dark);
  font-weight: 500;
}

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

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 50px;
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--gray-50);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(124, 144, 112, 0.1);
}

.sound-page .form-group input:focus,
.sound-page .form-group textarea:focus,
.sound-page .form-group select:focus {
  box-shadow: 0 0 0 4px rgba(130, 85, 116, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--primary);
  cursor: pointer;
  transition: all var(--transition-medium);
}

.form-submit:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--light-bg);
  padding: 80px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr 1.2fr;
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto 50px;
}

.footer-brand img {
  height: 70px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social a:hover svg {
  color: var(--white);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 25px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  font-size: 15px;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

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

/* Footer Contact Section */
.footer-contact {
  min-width: 200px;
}

.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.footer-contact .practitioner-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 15px;
}

.footer-contact address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 15px;
}

.footer-contact .contact-phone {
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact .contact-phone a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 30px;
  text-align: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-light);
}

/* ========================================
   PAGE HEADER (Inner Pages)
   ======================================== */

.page-header {
  padding: 180px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mindcare-page .page-header {
  background: linear-gradient(135deg, var(--mindcare-light) 0%, var(--mindcare-card-bg) 100%);
}

.sound-page .page-header {
  background: linear-gradient(135deg, var(--sound-light) 0%, var(--sound-card-bg) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-header .section-tag {
  padding-left: 0;
}

.page-header .section-tag::before {
  display: none;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Page Header Decorative Elements */
.page-header-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.mindcare-page .page-header-decor {
  background: var(--mindcare-primary);
}

.sound-page .page-header-decor {
  background: var(--sound-primary);
}

.page-header-decor.decor-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.page-header-decor.decor-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}

/* ========================================
   MISSION/VALUES SECTION
   ======================================== */

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

.mission-card {
  background: var(--white);
  padding: 50px 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
  border-top: 4px solid transparent;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--primary);
}

.mission-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
}

.mission-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.mission-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.mission-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   SERVICE DETAIL SECTION
   ======================================== */

.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-100);
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: start;
}

.service-detail.reverse .service-detail-content {
  direction: rtl;
}

.service-detail.reverse .service-detail-content > * {
  direction: ltr;
}

.service-detail-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow-soft);
}

.service-detail-icon svg {
  width: 45px;
  height: 45px;
  color: var(--white);
}

.service-detail-text h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-tagline {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-detail-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.service-features li {
  font-size: 15px;
  color: var(--text-light);
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
}

.service-features li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 22px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12%;
  width: 76%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--primary), transparent);
  opacity: 0.2;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   BENEFITS GRID
   ======================================== */

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

.benefit-item {
  text-align: center;
  padding: 35px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  transition: all var(--transition-medium);
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
}

.benefit-item:hover .benefit-icon {
  background: var(--primary);
}

.benefit-item:hover .benefit-icon svg {
  color: var(--white);
}

.benefit-item h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ========================================
   SCIENCE/INSTRUMENTS GRID
   ======================================== */

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

.science-card {
  background: var(--white);
  padding: 45px 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
  border-left: 5px solid var(--primary);
}

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

.science-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.science-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.science-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.science-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Instruments Grid */
.instruments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.instrument-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--primary);
  transition: all var(--transition-medium);
}

.instrument-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.instrument-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.instrument-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   TEAM SECTION
   ======================================== */

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

.team-card {
  text-align: center;
  padding: 50px 35px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
}

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

.team-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 30px;
  overflow: hidden;
  border: 5px solid var(--card-bg);
  box-shadow: var(--shadow-soft);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.team-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.team-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   MAP CONTAINER
   ======================================== */

.map-section {
  padding: 0;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  margin: 0 auto;
  max-width: var(--container-width);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes smoothMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

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

/* AOS Custom Animations */
[data-aos="fade-up"] {
  transform: translateY(40px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="fade-in"] {
  opacity: 0;
  transition-property: opacity;
}

[data-aos="fade-in"].aos-animate {
  opacity: 1;
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

/* Scroll Animation Fallback */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   SWIPER CUSTOMIZATION
   ======================================== */

.swiper {
  padding-bottom: 60px;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--gray-300);
  opacity: 1;
  transition: all var(--transition-fast);
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--secondary);
  transform: scale(1.1);
}

/* ========================================
   RESPONSIVE DESIGN - Mobile First Approach
   ======================================== */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
  .hero-container {
    padding: 140px 40px 80px;
    gap: 60px;
  }

  .container {
    max-width: 1300px;
  }
}

/* Large Screens (1200px - 1399px) */
@media (max-width: 1399px) {
  .hero-container {
    padding: 120px 30px 70px;
    gap: 50px;
  }

  .hero-anim-img.anim-1 {
    width: 280px;
    height: 350px;
  }

  .hero-anim-img.anim-2 {
    width: 160px;
    height: 190px;
  }
}

/* Medium-Large Screens (1024px - 1199px) */
@media (max-width: 1199px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 110px 25px 60px;
    min-height: auto;
  }

  .hero-content {
    max-width: 650px;
    margin: 0 auto;
  }

  .hero-description {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual,
  .hero-animated-images {
    display: none;
  }

  .hero-bg video {
    width: 100%;
    opacity: 0.2;
  }

  .mindcare-page .hero-overlay,
  .sound-page .hero-overlay {
    background: linear-gradient(
      180deg,
      var(--light-bg) 0%,
      rgba(255, 255, 255, 0.92) 50%,
      var(--light-bg) 100%
    );
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .process-grid::before {
    display: none;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-images {
    order: -1;
    height: 380px;
    max-width: 480px;
    margin: 0 auto;
  }

  .why-choose-content {
    max-width: 100%;
    text-align: center;
  }

  .why-choose-list {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Tablet Landscape (992px - 1023px) */
@media (max-width: 1023px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-image img {
    height: 400px;
  }

  .about-image::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .nav-menu {
    padding: 10px 20px;
    gap: 3px;
  }

  .nav-menu a {
    font-size: 13px;
    padding: 8px 12px;
  }

  .nav-cta {
    padding: 8px 16px !important;
    font-size: 12px !important;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0;
    padding: 100px 30px 60px;
    z-index: 1000;
  }

  .mindcare-page .nav-menu {
    background: rgba(250, 248, 245, 0.98);
  }

  .sound-page .nav-menu {
    background: rgba(242, 240, 251, 0.98);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    font-size: 18px;
    padding: 15px 30px;
    text-align: center;
    width: 100%;
    max-width: 280px;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background: var(--card-bg);
    border-radius: 12px;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 15px;
    padding: 15px 35px !important;
    font-size: 15px !important;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    padding: 100px 20px 50px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-tagline {
    font-size: clamp(16px, 4vw, 20px);
  }

  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-detail.reverse .service-detail-content {
    direction: ltr;
  }

  .service-detail-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
  }

  .service-detail-text {
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-brand {
    margin-bottom: 10px;
  }

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

  .footer-links ul {
    align-items: center;
  }

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

  .footer-contact address {
    text-align: center;
  }

  .page-header {
    padding: 130px 20px 60px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item {
    padding: 30px 15px;
  }

  .stat-icon {
    width: 80px;
    height: 80px;
  }

  .stat-number {
    font-size: 40px;
  }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
  .header-container {
    padding: 0 15px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .section-subtitle {
    font-size: 15px;
  }

  .hero-container {
    padding: 95px 15px 45px;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 38px);
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 25px;
    font-size: 15px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-form h3 {
    font-size: 24px;
  }

  .why-choose-images {
    height: 320px;
  }

  .why-choose-img.img-1 {
    width: 180px;
    height: 220px;
  }

  .why-choose-img.img-2 {
    width: 140px;
    height: 180px;
  }

  .why-choose-img.img-3 {
    width: 90px;
    height: 90px;
  }

  .why-choose-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .testimonial-card {
    padding: 40px 20px 30px;
  }

  .workshop-content {
    padding: 20px;
  }

  .workshop-content h3 {
    font-size: 20px;
  }
}

/* Mobile Portrait (480px - 575px) */
@media (max-width: 575px) {
  .hero-container {
    padding: 90px 15px 40px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 8px 18px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .hero-tagline {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

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

  .stat-item {
    padding: 25px 10px;
  }

  .stat-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
  }

  .stat-icon svg {
    width: 28px;
    height: 28px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 13px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .process-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .process-step h3 {
    font-size: 18px;
  }

  .page-header {
    padding: 110px 15px 50px;
  }

  .page-header h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .footer {
    padding: 50px 15px 25px;
  }

  .footer-newsletter {
    padding: 25px 20px;
  }

  .footer-newsletter h4 {
    font-size: 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .cta-banner {
    padding: 60px 15px;
  }

  .cta-content h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .cta-content p {
    font-size: 15px;
  }
}

/* Extra Small Mobile (under 480px) */
@media (max-width: 479px) {
  .header {
    padding: 12px 0;
  }

  .header-container {
    padding: 0 12px;
  }

  .logo img {
    height: 38px;
    width: 38px;
    padding: 6px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .nav-toggle {
    padding: 8px;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
  }

  .hero-container {
    padding: 85px 12px 35px;
  }

  .hero-title {
    font-size: 26px;
  }

  .section {
    padding: 50px 12px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-title {
    font-size: 24px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .contact-form {
    padding: 25px 15px;
  }

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

  .stat-item {
    padding: 30px 20px;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
  }

  .stat-number {
    font-size: 36px;
  }

  .why-choose-images {
    height: 280px;
  }

  .why-choose-img.img-1 {
    width: 160px;
    height: 200px;
  }

  .why-choose-img.img-2 {
    width: 120px;
    height: 160px;
  }

  .why-choose-img.img-3 {
    width: 80px;
    height: 80px;
  }

  .why-choose-icon {
    width: 50px;
    height: 50px;
  }

  .why-choose-icon svg {
    width: 22px;
    height: 22px;
  }

  .why-choose-item h4 {
    font-size: 16px;
  }

  .why-choose-item p {
    font-size: 13px;
  }

  .service-card-carousel {
    margin: 0 5px;
  }

  .service-card-body {
    padding: 40px 15px 25px;
  }

  .service-card-body h3 {
    font-size: 18px;
  }

  .testimonial-card {
    padding: 35px 15px 25px;
    margin-top: 30px;
  }

  .testimonial-content p {
    font-size: 14px;
  }

  .workshop-card {
    margin: 0 5px;
  }

  .workshop-image {
    height: 160px;
  }

  .workshop-content {
    padding: 18px 15px;
  }

  .workshop-content h3 {
    font-size: 18px;
  }

  .workshop-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ========================================
   SECTION CTA
   ======================================== */

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

/* ========================================
   TIPS GRID
   ======================================== */

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

.tip-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
  border-left: 4px solid var(--primary);
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.tip-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.tip-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   NEWSLETTER SECTION (Footer)
   ======================================== */

.footer-newsletter {
  grid-column: 1 / -1;
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}

.footer-newsletter h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.footer-newsletter p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--gray-50);
  transition: all var(--transition-fast);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.newsletter-form button {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .footer-newsletter {
    padding: 30px 20px;
    text-align: center;
  }

  .footer-newsletter h4 {
    font-size: 20px;
  }

  .footer-newsletter p {
    font-size: 14px;
  }
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose-section {
  background: var(--light-bg);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-choose-content {
  max-width: 550px;
}

.why-choose-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.2;
}

.why-choose-content > p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 35px;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
}

.why-choose-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.why-choose-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.why-choose-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.why-choose-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.why-choose-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.why-choose-images {
  position: relative;
  height: 500px;
}

.why-choose-img {
  position: absolute;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.why-choose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-img.img-1 {
  width: 280px;
  height: 320px;
  top: 0;
  left: 0;
  animation: floatUp 4s ease-in-out infinite;
}

.why-choose-img.img-2 {
  width: 220px;
  height: 280px;
  bottom: 0;
  right: 0;
  animation: floatUp 4s ease-in-out infinite 1s;
}

.why-choose-img.img-3 {
  width: 160px;
  height: 160px;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  animation: floatUp 4s ease-in-out infinite 2s;
  border-radius: 50%;
}

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

.why-choose-img.img-3 {
  animation: floatRotate 6s ease-in-out infinite;
}

@keyframes floatRotate {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(calc(-50% - 15px)) rotate(5deg); }
}

@media (max-width: 1023px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-content {
    max-width: 100%;
    text-align: center;
  }

  .why-choose-images {
    order: -1;
    height: 350px;
    max-width: 450px;
    margin: 0 auto;
  }

  .why-choose-list {
    max-width: 550px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .why-choose-images {
    height: 280px;
  }

  .why-choose-img.img-1 {
    width: 170px;
    height: 210px;
  }

  .why-choose-img.img-2 {
    width: 130px;
    height: 170px;
  }

  .why-choose-img.img-3 {
    width: 85px;
    height: 85px;
  }

  .why-choose-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
}

/* ========================================
   WORKSHOPS/EVENTS SECTION
   ======================================== */

.workshops-section {
  overflow: hidden;
}

.workshops-swiper {
  padding: 20px 10px 70px;
}

.workshop-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
  height: 100%;
}

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

.workshop-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.workshop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.workshop-date {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 10px 15px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.workshop-date span {
  display: block;
}

.workshop-date .day {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.workshop-date .month {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.workshop-content {
  padding: 25px;
}

.workshop-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--card-bg);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.workshop-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.workshop-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.workshop-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--gray-100);
}

.workshop-meta .time,
.workshop-meta .location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.workshop-meta svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* ========================================
   HERO ANIMATED IMAGES
   ======================================== */

.hero-animated-images {
  position: relative;
  width: 100%;
  height: 500px;
}

.hero-anim-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.hero-anim-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Large image - main */
.hero-anim-img.anim-1 {
  width: 320px;
  height: 400px;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: heroFloat1 5s ease-in-out infinite;
}

/* Top right image */
.hero-anim-img.anim-2 {
  width: 180px;
  height: 220px;
  top: 0;
  right: 0;
  z-index: 2;
  animation: heroFloat2 6s ease-in-out infinite;
}

/* Bottom left image */
.hero-anim-img.anim-3 {
  width: 160px;
  height: 200px;
  bottom: 0;
  left: 0;
  z-index: 2;
  animation: heroFloat3 5.5s ease-in-out infinite;
}

/* Small floating circle image */
.hero-anim-img.anim-4 {
  width: 100px;
  height: 100px;
  bottom: 80px;
  right: 20px;
  z-index: 4;
  border-radius: 50%;
  animation: heroRotate 8s linear infinite;
}

@keyframes heroFloat1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-20px); }
}

@keyframes heroFloat2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(3deg); }
}

@keyframes heroFloat3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(-3deg); }
}

@keyframes heroRotate {
  0% { transform: rotate(0deg) translateY(0); }
  25% { transform: rotate(90deg) translateY(-10px); }
  50% { transform: rotate(180deg) translateY(0); }
  75% { transform: rotate(270deg) translateY(10px); }
  100% { transform: rotate(360deg) translateY(0); }
}

/* Decorative floating shapes */
.hero-decor-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.hero-decor-shape.shape-1 {
  width: 60px;
  height: 60px;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0.6;
  animation: shapeFloat 4s ease-in-out infinite;
}

.hero-decor-shape.shape-2 {
  width: 40px;
  height: 40px;
  bottom: 100px;
  right: 30%;
  background: var(--accent);
  opacity: 0.4;
  animation: shapeFloat 5s ease-in-out infinite 1s;
}

.hero-decor-shape.shape-3 {
  width: 25px;
  height: 25px;
  top: 40%;
  left: 10%;
  background: var(--secondary);
  opacity: 0.5;
  animation: shapeFloat 6s ease-in-out infinite 2s;
}

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.1); }
}

@media (max-width: 1199px) {
  .hero-animated-images {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero-animated-images {
    display: none;
  }
}

/* ========================================
   SERVICES CAROUSEL (Swiper)
   ======================================== */

.services-carousel {
  padding: 30px 0 70px;
}

.service-card-carousel {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
  height: 100%;
}

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

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-carousel:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.mindcare-page .service-card-overlay {
  background: rgba(92, 107, 77, 0.9);
}

.sound-page .service-card-overlay {
  background: rgba(124, 81, 144, 0.9);
}

.service-card-carousel:hover .service-card-overlay {
  opacity: 1;
  visibility: visible;
}

.service-card-overlay p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.service-card-icon-float {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 5;
  transition: transform var(--transition-medium);
}

.service-card-carousel:hover .service-card-icon-float {
  transform: translateX(-50%) rotateY(180deg);
}

.service-card-icon-float svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.service-card-body {
  padding: 45px 25px 30px;
  text-align: center;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card-body > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Swiper Navigation Arrows Positioning */
.services-carousel .swiper-button-prev,
.services-carousel .swiper-button-next {
  top: 40%;
}

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

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

@media (max-width: 991px) {
  .services-carousel .swiper-button-prev,
  .services-carousel .swiper-button-next {
    display: none;
  }

  .workshops-swiper .swiper-button-prev,
  .workshops-swiper .swiper-button-next {
    display: none;
  }
}

@media (max-width: 767px) {
  .services-carousel {
    padding: 20px 0 50px;
  }

  .service-card-image {
    height: 180px;
  }

  .service-card-body {
    padding: 35px 15px 20px;
  }

  .service-card-icon-float {
    width: 50px;
    height: 50px;
    bottom: -25px;
  }

  .service-card-icon-float svg {
    width: 22px;
    height: 22px;
  }

  .workshops-swiper {
    padding: 15px 0 50px;
  }
}

@media (max-width: 575px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .swiper-pagination-bullet-active {
    width: 24px;
  }
}
