/* ================= INNER BANNER ================= */
.inner-banner {
  position: relative;
  background: url("../img/submenu/page-header-bg.jpg") center/cover no-repeat;
  height: 360px;
  display: flex;
  align-items: center;
}

.inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.inner-banner .container {
  position: relative;
  z-index: 2;
  padding-left: 70px;
}

.inner-banner h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.breadcrumb-box {
  display: inline-block;
  background: rgba(0,0,0,0.6);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
}

.breadcrumb-box a,
.breadcrumb-box span {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-box .active {
  opacity: 0.75;
}

/* ================= SERVICE DETAILS ================= */
.service-details {
  padding: 90px 0;
  background: #faf9f7;
}

/* Heading */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #3b2a20;
  margin-bottom: 25px;
  position: relative;
  padding-left: 18px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 28px;
  background: #c78b5c;
  border-radius: 3px;
}

.desc {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 600;
  color: #3b2a20;
  margin: 30px 0 15px;
}

/* Lists */
.list {
  list-style: none;
  padding-left: 0;
}

.list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: #444;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c78b5c;
  font-size: 22px;
}

/* Appointment Card */
.appointment-box {
  margin-top: 45px;
  padding: 30px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.appointment-box span {
  font-size: 14px;
  color: #777;
}

.appointment-box h4 {
  font-size: 20px;
  color: #5a2d82;
  margin: 6px 0;
}

/* Buttons */
.btn {
  background: linear-gradient(135deg,#5a2d82,#7c4db2);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

/* ================= SIDEBAR ================= */
.sidebar {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Service list */
.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.service-list li {
  background: #f7f5f2;
  padding: 14px 18px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 14.5px;
  color: #3b2a20;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s;
}

.service-list li span {
  background: #e6e1dc;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.service-list li:hover,
.service-list li.active {
  background: #5a2d82;
  color: #fff;
  transform: translateX(6px);
}

.service-list li:hover span,
.service-list li.active span {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* Help box */
.help-box {
  background: linear-gradient(135deg,#6b3d2e,#8b5a45);
  color: #fff;
  padding: 30px;
  border-radius: 14px;
}

.help-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.help-box p {
  font-size: 14px;
  opacity: 0.9;
}

.help-box .btn.light {
  background: #fff;
  color: #3b2a20;
}

.service-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-list li a {
  flex: 1;
  text-decoration: none;
  color: inherit;
}

/* arrow always visible */
.service-list li span {
  margin-left: 10px;
  transition: 0.3s ease;
}

/* optional small move on hover */
.service-list li:hover span,
.service-list li.active span {
  transform: translateX(4px);
}

