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

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  overflow-x: hidden;
  color: #333;
  padding-top: 90px;
}

@media (max-width: 992px) {
  body {
    padding-top: 80px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 75px;
  }
}

section {
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Ensure all content is visible by default */
.hero-banner,
.hero-content,
.hero-title,
.hero-description,
.enroll-btn,
.section-header,
.section-title,
.section-subtitle,
.training-card,
.healing-header,
.healing-title,
.healing-subtitle,
.healing-card,
.additional-header,
.additional-title,
.service-item,
.testimonials-header,
.testimonial-card {
  display: block;
  visibility: visible;
  opacity: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Services Hero Section */
.services-hero {
  padding: 120px 20px 100px;
  background: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-banner {
  margin-bottom: 40px;
}

.banner-text {
  display: inline-block;
  background: linear-gradient(135deg, #10b548 0%, #0d8f3a 100%);
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(16, 181, 72, 0.25);
  font-family: 'Montserrat', sans-serif;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 700;
  color: #0b2e2a;
  margin-bottom: 30px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero-description {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 22px);
  color: #6b7c7f;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.enroll-btn {
  display: inline-block;
  background: #0b2e2a;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(11, 46, 42, 0.3);
  position: relative;
  overflow: hidden;
}

.enroll-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.enroll-btn:hover::before {
  width: 300px;
  height: 300px;
}

.enroll-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(11, 46, 42, 0.5);
}

.enroll-btn:active {
  transform: translateY(-2px) scale(1.02);
}

/* Training Section */
.training-section {
  padding: 100px 0;
  background: #fff;
  display: block;
  visibility: visible;
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.section-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0b746, #d69c2c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(240, 183, 70, 0.3);
  transition: all 0.4s ease;
}

.section-header:hover .section-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(240, 183, 70, 0.4);
}

.section-title-group {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  color: #0b2e2a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: #5e7380;
  line-height: 1.7;
}

.training-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  visibility: visible;
  opacity: 1;
}

.training-card {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 30px rgba(11, 46, 42, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  display: block;
  visibility: visible;
  opacity: 1;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  display: block;
  background: #ffffff;
}

.card-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 46, 42, 0.1) 0%, rgba(11, 46, 42, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

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

.training-card:hover .card-image-overlay {
  opacity: 1;
}

.training-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f0b746, #d69c2c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.training-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 183, 70, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

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

.training-card:hover::after {
  width: 400px;
  height: 400px;
}

.training-card:hover {
  border-color: rgba(240, 183, 70, 0.3);
  box-shadow: 0 20px 60px rgba(11, 46, 42, 0.2), 0 0 40px rgba(240, 183, 70, 0.15);
  transform: translateY(-12px) rotateX(2deg);
}

.training-card .card-content {
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.training-card:hover .card-content {
  transform: translateY(-4px);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f0b746, #d69c2c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(240, 183, 70, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.training-card:hover .card-badge {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 6px 25px rgba(240, 183, 70, 0.6);
  background: linear-gradient(135deg, #f5c85a, #e8b03a);
}

.card-content {
  position: relative;
  padding: 40px;
  padding-top: 30px;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #0b2e2a;
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.training-card:hover .card-title {
  color: #0d5a52;
}

.card-duration {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #10b548;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding: 6px 12px;
  background: rgba(16, 181, 72, 0.1);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.training-card:hover .card-duration {
  background: rgba(16, 181, 72, 0.2);
  transform: translateX(4px);
}

.card-description {
  font-size: 16px;
  color: #5e7380;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.card-features li {
  font-size: 15px;
  color: #5e7380;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.card-features li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #10b548;
  font-size: 16px;
  transition: all 0.3s ease;
}

.training-card:hover .card-features li i {
  transform: scale(1.2) rotate(5deg);
  color: #0d8f3a;
}

.card-footer {
  margin-top: auto;
}

.card-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 28px;
  background: #fff;
  color: #0b2e2a;
  border: 2px solid #0b2e2a;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0b2e2a, #154c53);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.card-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}

.card-btn:hover {
  color: #fff;
  border-color: #0b2e2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 46, 42, 0.3);
}

.card-btn:hover::before {
  left: 0;
}

.card-btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Healing Section */
.healing-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0b2e2a 0%, #154c53 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: block;
  visibility: visible;
}

.healing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Use correct relative path from css/ -> images/ */
  background: url("../images/bgimg.583dd8c21428.jpg") center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.healing-section > .container {
  position: relative;
  z-index: 1;
}

.healing-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.healing-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0b746, #d69c2c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(240, 183, 70, 0.3);
  transition: all 0.4s ease;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(240, 183, 70, 0.3);
  }
  50% {
    box-shadow: 0 6px 30px rgba(240, 183, 70, 0.5);
  }
}

.healing-header:hover .healing-icon {
  transform: scale(1.15) rotate(-5deg);
  animation: none;
  box-shadow: 0 8px 30px rgba(240, 183, 70, 0.6);
}

.healing-title-group {
  flex: 1;
  min-width: 300px;
}

.healing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  color: #f0b746;
  margin-bottom: 15px;
  line-height: 1.2;
}

.healing-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.book-session-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f0b746, #d69c2c);
  color: #0b2e2a;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(240, 183, 70, 0.4);
  white-space: nowrap;
}

.book-session-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(240, 183, 70, 0.6);
  background: linear-gradient(135deg, #f5c85a, #e8b03a);
}

.book-session-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.healing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  visibility: visible;
  opacity: 1;
}

.healing-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(240, 183, 70, 0.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: block;
  visibility: visible;
  opacity: 1;
}

.healing-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.healing-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  display: block;
}

.healing-card-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(240, 183, 70, 0.2) 0%, rgba(11, 46, 42, 0.4) 100%);
  opacity: 0.3;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.healing-card:hover .healing-card-image {
  transform: scale(1.15);
}

.healing-card:hover .healing-card-image-overlay {
  opacity: 0.5;
}

.healing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(240, 183, 70, 0.15), rgba(240, 183, 70, 0.05));
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.healing-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(240, 183, 70, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(0.5);
  pointer-events: none;
  z-index: 0;
}

.healing-card:hover::before {
  opacity: 1;
}

.healing-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.healing-card:hover {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-color: rgba(240, 183, 70, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 60px rgba(240, 183, 70, 0.3);
  transform: scale(1.03) translateY(-8px);
}

.healing-card-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  padding-top: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.healing-card:hover .healing-card-content {
  transform: translateY(-4px);
}

.healing-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #f0b746;
  margin-bottom: 10px;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.healing-card:hover .healing-card-title {
  color: #f5c85a;
  text-shadow: 0 0 20px rgba(240, 183, 70, 0.4);
}

.healing-card-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #f0b746;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.healing-card:hover .healing-card-subtitle {
  color: #f5c85a;
  transform: translateX(4px);
  text-shadow: 0 0 10px rgba(240, 183, 70, 0.3);
}

.healing-card-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.healing-features li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.healing-features li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #f0b746;
  font-size: 16px;
  transition: all 0.3s ease;
}

.healing-card:hover .healing-features li i {
  transform: scale(1.2) rotate(-5deg);
  color: #f5c85a;
  text-shadow: 0 0 10px rgba(240, 183, 70, 0.5);
}

.healing-card-footer {
  margin-top: auto;
}

.healing-card-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.95);
  color: #0b2e2a;
  border: 2px solid transparent;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.healing-card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0b746, #d69c2c);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.healing-card-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}

.healing-card-btn:hover {
  color: #fff;
  border-color: #f0b746;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 183, 70, 0.5);
}

.healing-card-btn:hover::before {
  left: 0;
}

.healing-card-btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Additional Services */
.additional-services {
  padding: 100px 0;
  background: #f8f9fa;
  display: block;
  visibility: visible;
}

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

.additional-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  color: #0b2e2a;
  margin-bottom: 15px;
}

.additional-subtitle {
  font-size: 18px;
  color: #5e7380;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

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

.service-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(11, 46, 42, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid transparent;
}

.service-item:hover {
  border-top-color: #f0b746;
  box-shadow: 0 15px 50px rgba(11, 46, 42, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #f0b746, #d69c2c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(240, 183, 70, 0.3);
}

.service-item h3 {
  font-size: 22px;
  color: #0b2e2a;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-item p {
  font-size: 16px;
  color: #5e7380;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b2e2a;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #f0b746;
}

.service-link i {
  transition: transform 0.3s ease;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: #fff;
  display: block;
  visibility: visible;
}

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

.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  color: #0b2e2a;
  margin-bottom: 15px;
}

.testimonials-subtitle {
  font-size: 18px;
  color: #5e7380;
}

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

.testimonial-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(11, 46, 42, 0.08);
  transition: all 0.4s ease;
  border-left: 4px solid #f0b746;
}

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

.testimonial-stars {
  color: #f0b746;
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  margin-right: 3px;
}

.testimonial-text {
  font-size: 16px;
  color: #5e7380;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  color: #0b2e2a;
  font-size: 16px;
}

.testimonial-author span {
  color: #5e7380;
  font-size: 14px;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: #0b2e2a;
  color: #fff;
}

.contact-section .section-title {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 42px);
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #f0b746;
}

.contact-info p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
}

.info-item {
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.info-item i {
  color: #f0b746;
  font-size: 20px;
}

.info-item strong {
  color: #f0b746;
  margin-right: 10px;
}

/* Responsive Design */
@media (min-width: 1200px) {
  .card-image-wrapper {
    height: 400px;
    min-height: 400px;
  }
  
  .card-image {
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 968px) {
  .healing-header {
    flex-direction: column;
  }

  .book-session-btn {
    width: 100%;
    text-align: center;
  }

  .healing-cards {
    grid-template-columns: 1fr;
  }

  .training-cards {
    grid-template-columns: 1fr;
  }
  
  .card-image-wrapper {
    height: 320px;
    min-height: 320px;
  }
  
  .card-image {
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 120px 20px 60px;
  }

  .training-section,
  .healing-section,
  .additional-services,
  .testimonials-section {
    padding: 80px 0;
  }

  .section-header {
    flex-direction: column;
  }

  .card-image-wrapper {
    height: 300px;
    min-height: 300px;
  }
  
  .card-image {
    object-fit: contain;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
  }
  
  .healing-card-image-wrapper {
    height: 220px;
  }

  .card-content,
  .healing-card-content {
    padding: 30px 20px;
    padding-top: 25px;
  }

  .additional-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .section-title,
  .healing-title,
  .additional-title {
    font-size: 28px;
  }

  .card-title,
  .healing-card-title {
    font-size: 24px;
  }

  .card-image-wrapper {
    height: 280px;
    min-height: 280px;
  }
  
  .card-image {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }

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

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

