/* ==================================================
   APPOINTMENT BOOKING PAGE – SPECIAL CSS
   Applies ONLY to Appointment Booking System page
================================================== */

/* ---------------- PRICING SECTION ---------------- */

.as_pricing_plan {
  background: #fff;
}

/* MAIN PRICING BOX */
.as_pricing_box {
  min-height: 620px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px 22px;
  border-radius: 18px;
  background-image: linear-gradient(0deg,#F4AA36,#F37335);
  box-shadow: 0 14px 34px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

/* subtle shine overlay */
.as_pricing_box::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
  transform: rotate(25deg);
}

/* REGION TAG */
.plan-region {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  background: rgba(255,255,255,0.75);
  border-radius: 20px;
  letter-spacing: 0.4px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* PRICE */
.as_pricing {
  font-size: 30px;
  font-weight: 900;
  color: #000;
  margin: 12px 0 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #fff3d6, #ffe2a8);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  display: inline-block;
}

.as_pricing sub {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}


/* PLAN TITLE */
.as_pricing_box h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 8px 0 4px;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 10px;
  color: #000;
  box-shadow: 0 5px 14px rgba(0,0,0,0.25);
}

/* PLAN BADGE / SMALL TEXT */
.as_pricing_box small {
  display: inline-block;
  margin: 8px 0 14px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #1b5e20;
  background: #dcedc8;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* FEATURE LIST */
.as_pricing_box ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  flex-grow: 1;
}

.as_pricing_box ul li {
  font-size: 14px;
  line-height: 20px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px dashed rgba(0,0,0,0.25);
  color: #000;
}

.as_pricing_box ul li:last-child {
  border-bottom: none;
}

.as_pricing_box ul li i {
  font-size: 14px;
  color: #000;
}

/* CTA BUTTON */
.as_pricing_box .as_btn {
  margin-top: auto;
  display: block;
  width: 100%;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(#ffffff);
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.as_pricing_box .as_btn:hover {
  background: linear-gradient(135deg, #111, #000);
  transform: translateY(-2px);
}

/* ---------------- APPOINTMENT GUIDELINES ---------------- */

.appointment-guidelines-box {
  margin-top: 40px;
  padding: 25px;
  border: 2px solid #d6a354;
  border-radius: 12px;
  background: #fffaf1;
}

.appointment-guidelines-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #b07e28;
  text-align: center;
}

.appointment-guidelines-box p {
  font-size: 15px;
  line-height: 26px;
  color: #444;
  text-align: center;
}

/* WhatsApp Highlight */
.appointment-guidelines-box a {
  color: #d9534f;
  font-weight: 700;
  text-decoration: none;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 992px) {
  .as_pricing_box {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .as_pricing_box {
    padding: 24px 18px;
  }
  .as_pricing_box h2 {
    font-size: 18px;
  }
}

/* Mobile view – spacing between pricing boxes */
@media (max-width: 767px) {
  .as_pricing_plan .col-lg-3,
  .as_pricing_plan .col-md-6,
  .as_pricing_plan .col-sm-6,
  .as_pricing_plan .col-12 {
    margin-bottom: 30px;
  }
}

