/* =================================================
   Custom Spiritual & Healing Theme Stylesheet
   ================================================= */

/* Deep Spiritual Color Variables */
:root {
  --primary-spiritual: #8cb81d;
  --secondary-spiritual: #5eca62; /* Gold */
  --bg-dark-purple: #120224;
  --bg-light-purple: #f8f4fc;
  --accent-teal: #17a2b8;
  --text-dark: #192e3f;
  --text-muted: #6b6b84;
  --white: #ffffff;
}

/* Slide Overlay Override - Deep Spiritual Purple instead of Black */
.main-slides-item::before {
  background: linear-gradient(135deg, rgba(18, 2, 36, 0.85) 0%, rgba(111, 25, 178, 0.7) 100%) !important;
  opacity: 1 !important;
}

/* Slides Content Sub-title */
.main-slides-content .sub-title {
  color: var(--secondary-spiritual) !important;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Service Section Styling */
.services-section {
  background-color: var(--bg-light-purple);
  padding-top: 100px;
  padding-bottom: 70px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(111, 25, 178, 0.05);
  border: 1px solid rgba(111, 25, 178, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(111, 25, 178, 0.12);
  border-color: rgba(111, 25, 178, 0.25);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: rgba(111, 25, 178, 0.1);
  color: var(--primary-spiritual);
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-card:hover .service-card-icon {
  background-color: var(--primary-spiritual);
  color: var(--white);
}

.service-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.service-card-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-spiritual);
  transition: all 0.3s ease;
}

.service-card:hover .service-card-title::after {
  width: 60px;
  background-color: var(--secondary-spiritual);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.service-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

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

.service-item i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary-spiritual);
  font-size: 16px;
}

.service-item-name {
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  font-size: 16px;
}

.service-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 3px;
  display: block;
}

/* Healing Areas Styling */
.healing-areas-section {
  background-color: var(--white);
  padding-top: 100px;
  padding-bottom: 70px;
}

.healing-badge-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.healing-badge {
  background: var(--bg-light-purple);
  color: var(--primary-spiritual);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(111, 25, 178, 0.15);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(111, 25, 178, 0.02);
}

.healing-badge:hover {
  background: var(--primary-spiritual);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(111, 25, 178, 0.2);
  border-color: var(--primary-spiritual);
}

/* About Me Mentor Image Styling */
.about-mentor-image {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 5px solid var(--white);
  max-width: 100%;
  height: auto;
  transition: all 0.4s ease;
}

.about-mentor-image:hover {
  transform: scale(1.02);
}

/* Booking Section Form Styling */
.booking-section {
  position: relative;
  background-color: var(--bg-dark-purple);
  color: var(--white);
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 1;
}

.booking-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../assets/images/subscribe-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: -1;
}

.booking-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.booking-card h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-weight: 700;
}

.booking-form .form-group {
  margin-bottom: 20px;
}

.booking-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--white);
  padding: 12px 20px;
  height: auto;
}

.booking-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-spiritual);
  box-shadow: 0 0 10px rgba(111, 25, 178, 0.4);
  color: var(--white);
}

.booking-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.booking-form select.form-control option {
  background-color: var(--bg-dark-purple);
  color: var(--white);
}

.booking-btn-submit {
  background-color: var(--primary-spiritual);
  color: var(--white);
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
}

.booking-btn-submit:hover {
  background-color: var(--secondary-spiritual);
  color: var(--bg-dark-purple);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Step list spacing */
.single-choose i.spiritual-icon {
  font-size: 40px;
  color: var(--primary-spiritual);
  margin-bottom: 15px;
  display: inline-block;
}

.choose-item-icon {
  font-size: 20px;
  color: var(--primary-spiritual);
  margin-right: 10px;
}

/* General button adjustment to match theme */
.default-btn {
  background-color: var(--primary-spiritual) !important;
  color: var(--white) !important;
  border: 1px solid var(--primary-spiritual) !important;
}
.default-btn span {
  background-color: var(--secondary-spiritual) !important;
}
.default-btn:hover {
  color: var(--bg-dark-purple) !important;
  border: 1px solid var(--secondary-spiritual) !important;
}

/* Override responsive header search/optional styling */
.header-information {
  display: none !important;
}
