.booking-page-wrapper {
  padding: 60px 0 80px;
  padding-top:140px;
  background-color: #fcfcfc;
}

/* === Top Banner Head === */
.booking-page-title {
  font-family: "Playfair Display", serif;
  color: var(--theme-maroon);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 10px;
}
.booking-page-desc {
  text-align: center;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  font-size: 1rem;
}

/* === The Split Hero Dashboard === */
.booking-dashboard-wrapper {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-bottom: 50px;
  border: 1px solid #f0f0f0;
}

/* Left Side: The Spiritual Vibe */
.booking-hero-left {
  background: linear-gradient(145deg, #ff7a00 0%, #9e1e18 100%);
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.booking-hero-left::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.booking-hero-left h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.booking-hero-left p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}
.booking-hero-left .btn-hero-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  z-index: 2;
  background: transparent;
}
.booking-hero-left .btn-hero-outline:hover {
  background: #fff;
  color: var(--theme-maroon);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Right Side: The Form */
.booking-hero-right {
  padding: 40px;
  background: #fff;
  height: 100%;
}
.booking-hero-right h4 {
  font-family: "Playfair Display", serif;
  color: var(--theme-maroon);
  margin-bottom: 5px;
}
.booking-hero-right p {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

.form-label-custom {
  font-weight: 500;
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}
.input-custom {
  border-radius: 4px !important;
  border: 1px solid #e0e0e0;
  padding: 12px 15px;
  font-size: 14px;
  transition: 0.3s;
  width: 100%;
  background: #fff;
}
.input-custom:focus {
  border-color: var(--theme-orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.08);
  outline: none;
}

.btn-submit-form {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  background: var(--theme-maroon);
  color: #fff;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-submit-form:hover {
  background: #7a1510;
  transform: translateY(-2px);
}

/* === Quick Action Cards (Below Dashboard) === */
.action-row-card {
  padding: 25px 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  height: 100%;
  border: 1px solid transparent;
  transition: 0.3s;
}
.action-row-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.action-row-card.green-action {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.action-row-card.orange-action {
  background: #fff7ed;
  border-color: #ffedd5;
}

.action-row-card .content h6 {
  font-weight: 700;
  color: #333;
  margin: 0;
}
.action-row-card .content p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.btn-action-mini {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: 0.3s;
  white-space: nowrap;
}
.btn-wa-action {
  background: var(--theme-green);
  color: #fff;
}
.btn-wa-action:hover {
  background: #128c7e;
  color: #fff;
  transform: scale(1.05);
}

.btn-call-action {
  background: var(--theme-orange);
  color: #fff;
}
.btn-call-action:hover {
  background: #e06d00;
  color: #fff;
  transform: scale(1.05);
}

/* === Steps Section (Horizontal) === */
.steps-unique-row {
  margin-top: 60px;
  margin-bottom: 50px;
}
.step-unique-item {
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}
.step-unique-circle {
  width: 50px;
  height: 50px;
  background: #f0f0f0;
  color: #999;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 15px auto;
  border: 2px solid transparent;
  transition: 0.3s;
}
.step-unique-item.active .step-unique-circle {
  background: var(--theme-orange);
  color: #fff;
  border-color: var(--theme-orange);
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}
.step-unique-item h6 {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
.step-unique-item p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

@media (min-width: 768px) {
  .step-unique-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #f0f0f0;
    z-index: 0;
    display: block;
  }
  .step-unique-item.active:not(:last-child)::after {
    background: var(--theme-orange);
  }
}
.step-unique-circle,
.step-unique-item {
  position: relative;
  z-index: 1;
}

/* === Unique FAQ & Resources === */
.faq-resources-wrapper {
  margin-top: 30px;
}
details.faq-unique-box {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  margin-bottom: 12px;
  transition: 0.3s;
}
details.faq-unique-box summary {
  padding: 18px 20px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
details.faq-unique-box summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--theme-orange);
  transition: 0.3s;
}
details.faq-unique-box[open] {
  border-color: var(--theme-orange);
  background: #fcfcfc;
}
details.faq-unique-box[open] summary::after {
  transform: rotate(180deg);
}
details.faq-unique-box .answer-body {
  padding: 0 20px 20px 20px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Resource Cards */
.resource-unique-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  margin-bottom: 12px;
  transition: 0.3s;
}
.resource-unique-link:hover {
  border-color: var(--theme-orange);
  transform: translateX(6px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}
.resource-unique-link i {
  color: var(--theme-orange);
  width: 20px;
  margin-right: 12px;
}
.resource-unique-link span {
  flex: 1;
  font-weight: 500;
}

/* === Mobile Adjustments === */
@media (max-width: 991px) {
  .booking-hero-left {
    padding: 30px 20px;
  }
  .booking-hero-right {
    padding: 25px;
  }
  .booking-page-title {
    font-size: 2.2rem;
  }
  .action-row-card {
    text-align: center;
    justify-content: center;
  }
}
