/* ================================
   Review Form + Testimonials
   ================================ */

/* Review Form */
.sdlsheet-form-card {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  max-width: 500px;
  margin: auto;
  transition: 0.3s;
}
.sdlsheet-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

#sdlsheet-reviewForm .form-control {
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #d1d5db;
}
#sdlsheet-reviewForm .form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

/* Stars */
.sdlsheet-star {
  font-size: 26px;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s ease;
}
input[type="radio"]:checked ~ label.sdlsheet-star,
.sdlsheet-star:hover,
.sdlsheet-star:hover ~ .sdlsheet-star {
  color: #fbbf24;
}

/* Submit Button */
#sdlsheet-submitBtn {
  border-radius: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}
#sdlsheet-submitBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37,99,235,0.3);
}

/* Testimonials Section */
.sdlsheet-testimonial-wrapper {
  background: #f9fafb;
}

/* Testimonials Grid */
.sdlsheet-testimonials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Tablet: 2 cards */
@media (max-width: 992px) {
  .sdlsheet-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 card */
@media (max-width: 576px) {
  .sdlsheet-testimonials {
    grid-template-columns: 1fr;
  }
}

/* Ensure testimonial cards have same height */
.sdlsheet-testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}


/* Card */
.sdlsheet-testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.sdlsheet-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}
.sdlsheet-testimonial-card h5 {
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.sdlsheet-testimonial-card p {
  font-size: 14px;
  color: #374151;
  margin-bottom: 0.8rem;
  font-style: italic;
}
.sdlsheet-testimonial-card .review-stars {
  color: #fbbf24;
  font-size: 15px;
  margin-bottom: 0.5rem;
}
.sdlsheet-testimonial-card small {
  font-size: 12px;
  color: #6b7280;
}

/* Pagination */
.sdlsheet-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 0.5rem;
}
.sdlsheet-pagination button {
  border: none;
  background: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: 0.3s;
}
.sdlsheet-pagination button.active {
  background: #2563eb;
  color: #fff;
  font-weight: 600;
}
.sdlsheet-pagination button:hover {
  background: #2563eb;
  color: #fff;
}









/* ================================
   Appointment Form Styling
   ================================ */
#booking {
  background: #f9fafb;
}

.appointment-form {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.appointment-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}
.appointment-form h1 {
  font-weight: 700;
  font-size: 2rem;
}
.appointment-form .form-control,
.appointment-form .form-select {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  padding: 12px 14px;
  transition: all 0.25s;
}
.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

.appointment-form button {
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
}
.appointment-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,99,235,0.3);
}



/* ==========================
   Overview Slider Styles
   ========================== */
.sdlsheet-response-overview-section {
  background: #f9fafb;
}
.sdlsheet-response-overview-title {
  font-size: 2rem;
}
.sdlsheet-response-overview-subtitle {
  letter-spacing: 1px;
}
.sdlsheet-response-overview-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sdlsheet-response-overview-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}
.sdlsheet-response-overview-card:hover {
  transform: translateY(-5px);
}
.sdlsheet-response-overview-img {
  width: 100%;
  height: auto; /* keep natural aspect ratio */
  object-fit: contain; /* scale inside without cropping */
}

.sdlsheet-response-overview-caption {
  font-size: 1rem;
  font-weight: 600;
  padding: 10px;
  background: #fff;
  color: #333;
}

/* Custom pagination bullets */
.sdlsheet-response-overview-pagination .swiper-pagination-bullet {
  background: #750c0c;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
  display: none !important;
}
.sdlsheet-response-overview-pagination .swiper-pagination-bullet-active {
  background: #750c0c;
  opacity: 1;
  transform: scale(1.2);
}


/* ================================
   Camp Section Styles
   ================================ */
.sdlsheet-slider-camp-section {
  background: linear-gradient(135deg, #fdfdfd 0%, #f9fafb 100%);
  padding: 4rem 0;
}

.sdlsheet-slider-camp-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #750c0c; /* Clinic red */
  position: relative;
}
.sdlsheet-slider-camp-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #750c0c;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

.sdlsheet-slider-camp-text {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.sdlsheet-slider-camp-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.sdlsheet-slider-camp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #111827;
  background: #fff;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.sdlsheet-slider-camp-item i {
  color: #750c0c;
  font-size: 1.2rem;
}
.sdlsheet-slider-camp-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.08);
}

/* Slider */
.sdlsheet-slider-camp-swiper {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.sdlsheet-slider-camp-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Hide bullets & arrows */
.sdlsheet-slider-camp-pagination,
.sdlsheet-slider-camp-next,
.sdlsheet-slider-camp-prev {
  display: none !important;
}


/* =======================
   Branches Section
   ======================= */
.sdlsheet-response-branch-section {
  background: #f9fafb;
}

.sdlsheet-response-branch-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0077b6;
}

.sdlsheet-response-branch-card {
  background: #fff;
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sdlsheet-response-branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.sdlsheet-response-branch-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.sdlsheet-response-branch-body {
  flex: 1;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sdlsheet-response-branch-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.sdlsheet-response-branch-address {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.sdlsheet-response-branch-btn {
  border-radius: 50px;
  background: linear-gradient(45deg, #0077b6, #00b4d8);
  color: #fff;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sdlsheet-response-branch-btn:hover {
  background: linear-gradient(45deg, #00b4d8, #0077b6);
  color: #fff;
  transform: translateY(-2px);
}
