.hero-wrap {
  position: relative;
  padding: 40px 0;
  background: #fff;
}

.hero-bg {
  display: none;
  /* Removed the blurry background entirely */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  align-items: flex-start;
}

.hero-left img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.gallery-thumbs img {
  width: 120px;
  height: 85px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border: 2px solid transparent;
}

.gallery-thumbs img:hover {
  opacity: 0.8;
  border-color: #1da6a0;
}

.hero-right {
  display: flex;
  flex-direction: column;
}

.hero-right h1 {
  font-size: 32px;
  margin: 0;
}

.hero-location {
  color: #6b7280;
  font-size: 16px;
}

.badge {
  display: inline-block;
  background: rgba(97, 88, 208, .12);
  color: #6158D0;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  width: fit-content;
}

.hero-trust {
  margin: 12px 0 20px;
  color: #374151;
}

.hero-trust span {
  color: #6b7280;
}

.hero-trust .dot {
  margin: 0 6px;
}

.hero-cta {
  display: flex;
  gap: 14px;
}

.btn-secondary {
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  color: #111827;
}

/* MOBILE */
@media(max-width:768px) {
  .hero-card {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 24px;
  }

  .hero-left img {
    height: auto;
    aspect-ratio: 16/10;
  }

  .gallery-thumbs img {
    width: 70px;
    height: 60px;
  }

  .hero-right h1 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .btn {
    padding: 5px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-location {
    color: #6b7280;
    font-size: 12px;
  }

  .hero-trust {
    margin: 10px 0 16px;
    font-size: 14px;
  }

  .hero-wrap {
    padding: 20px 0;
  }

  .services-section,
  .team-section {
    padding: 40px 0;
  }

  .section-head {
    margin-bottom: 30px;
    text-align: center;
    display: block;
  }

  .section-head h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .section-head p {
    font-size: 15px;
    line-height: 1.5;
    padding: 0 10px;
  }

  .fresha-card {
    margin-top: 30px;
  }
}

/* services secton styling */

.services-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
  display: flex;
  /*flex-direction: column;*/
  justify-content: space-between;
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.service-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.muted {
  font-style: italic;
  color: #888;
}

.service-tags {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}

.tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 50px;
  font-weight: 600;
}

.tag.insurance {
  background: rgba(97, 88, 208, .1);
  color: #6158D0;
}

.tag.consult {
  background: #eef0f4;
  color: #555;
}

.service-btn {
  text-align: center;
  background: black;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
}


/* team section */

.team-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.modern-doc-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .03);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.modern-doc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .08);
  border-color: rgba(29, 166, 160, 0.3);
}

.doctor-photo {
  margin-bottom: 20px;
}

.doctor-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
  background: #f3f4f6;
}

.doctor-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.doc-name {
  font-size: 19px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.doc-role {
  display: block;
  font-size: 15px;
  color: #1da6a0;
  font-weight: 600;
  margin-bottom: 16px;
}

.doc-exp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 16px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 50px;
}

.doc-exp i {
  color: #1da6a0;
}

.doc-book-btn {
  display: block;
  width: 100%;
  margin-top: auto;
  background: #fff;
  color: #1da6a0;
  border: 1.5px solid #1da6a0;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.doc-book-btn:hover {
  background: #1da6a0;
  color: #fff;
  box-shadow: 0 6px 15px rgba(29, 166, 160, 0.2);
}

/* Service Chip Styles */
.services-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.service-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 8px 12px 8px 8px;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.service-chip:hover {
  border-color: #1da6a0;
  box-shadow: 0 4px 12px rgba(29, 166, 160, 0.12);
  transform: translateY(-2px);
}

.chip-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(29, 166, 160, 0.1);
  color: #1da6a0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.chip-name {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.chip-book-btn {
  background: #1da6a0;
  color: #fff;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 15px;
  transition: 0.2s ease;
}

.chip-book-btn:hover {
  background: #158f89;
  color: #fff;
}

/* Service Chip Styles */
.services-section {
  padding: 60px 0;
  background: #fff;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 32px;
  color: #1a202c;
  margin-bottom: 8px;
}

.section-head p {
  color: #718096;
  font-size: 16px;
}

.services-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  padding: 0 15px;
}

.service-chip {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.service-chip:hover {
  border-color: #1da6a0;
  box-shadow: 0 4px 12px rgba(29, 166, 160, 0.1);
  transform: translateY(-2px);
}

.chip-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f0fdfa;
  color: #1da6a0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.chip-name {
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  line-height: 1.3;
}

.chip-book-btn {
  background: #f8fafc;
  color: #1da6a0;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.chip-book-btn:hover {
  background: #1da6a0;
  color: #fff;
}


/* Booking Modal Specific CSS */

.booking-stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 50px;
  padding: 0 15px;
}

.booking-stepper::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: #e2e8f0;
  z-index: 1;
  border-radius: 3px;
}

.booking-stepper .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.booking-stepper .step {
  background: #fff;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid #e2e8f0;
  color: #94a3b8;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}

.booking-stepper .step-label {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  position: absolute;
  top: 45px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.booking-stepper .step.active {
  border-color: #1da6a0;
  background: #1da6a0;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(29, 166, 160, 0.15);
}

.booking-stepper .step.active+.step-label {
  color: #1da6a0;
}

.booking-stepper .step.completed {
  border-color: #1da6a0;
  background: #fff;
  color: #1da6a0;
}

.booking-stepper .step.completed+.step-label {
  color: #1da6a0;
}

.step-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-content.active {
  display: block;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
}

.modern-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #fff;
  font-size: 15px;
  color: #334155;
  transition: all 0.2s ease;
}

.modern-input:focus {
  border-color: #1da6a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(29, 166, 160, 0.1);
}

/* Select2 Customization to match modern-input */
.select2-container--default .select2-selection--single {
  height: 50px !important;
  padding: 10px 16px !important;
  border-radius: 12px !important;
  border: 1px solid #cbd5e1 !important;
  background: #fff !important;
  font-size: 15px !important;
  color: #334155 !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #1da6a0 !important;
  box-shadow: 0 0 0 4px rgba(29, 166, 160, 0.1) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px !important;
  right: 12px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #1da6a0 !important;
  color: white !important;
}

.select2-container {
  width: 100% !important;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
}

.time-slot-btn {
  padding: 10px 8px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #64748b;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.time-slot-btn:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}

.time-slot-btn.active {
  background: #1da6a0;
  border-color: #1da6a0;
  color: #fff;
  box-shadow: 0 2px 8px rgba(29, 166, 160, 0.25);
}

.time-preference {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.time-btn {
  padding: 14px 10px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.time-btn:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}

.time-btn.active {
  background: #1da6a0;
  border-color: #1da6a0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(29, 166, 160, 0.2);
}

.step-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  gap: 15px;
}

.btn-action {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-back {
  background: #f1f5f9;
  color: #64748b;
}

.btn-back:hover {
  background: #e2e8f0;
}

.btn-next {
  background: #1da6a0;
  color: #fff;
  flex-grow: 1;
  text-align: center;
}

.btn-next:hover {
  background: #158f89;
  box-shadow: 0 4px 12px rgba(29, 166, 160, 0.25);
  transform: translateY(-2px);
}

.booking-summary-box {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  margin-top: 25px;
  border: 1px solid #e2e8f0;
}

.booking-summary-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-summary-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-summary-box li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #cbd5e1;
  font-size: 14px;
}

.booking-summary-box li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.booking-summary-box li span {
  color: #64748b;
}

.booking-summary-box li strong {
  color: #0f172a;
  font-weight: 600;
  text-align: right;
  max-width: 60%;
}