.professionals-page {
    margin: 10% 0;
  }
  
  .page-title {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  /* Grid of cards */
  .pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  
  /* Each card */
  .pro-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform .2s, box-shadow .2s;
  }
  
  .pro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }
  
  /* Card header (avatar circle) */
  .pro-card-header {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .initials {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
  }
  
  /* Card body */
  .pro-card-body {
    padding: 1rem;
    text-align: center;
  }
  
  .pro-name {
    margin: 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 500;
  }
  
  .pro-rating,
  .pro-exp {
    margin: 0.25rem 0;
    color: #555;
    font-size: 0.9rem;
  }
  
  /* Footer with button */
  .pro-card-footer {
    padding: 0.75rem;
    text-align: center;
    background: #f9f9f9;
  }
  
  .btn-view {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: #86003c;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background .2s;
  }
  
  .btn-view:hover {
    background: #a7154c;
  }
  

  /* Booking section wrapper */
.booking {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  padding: 1.5rem;
  transition: box-shadow .2s;
}

.booking:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Booking header */
.booking > h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: #333;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.booking > h3 small {
  font-size: 0.85rem;
  color: #777;
}

/* Reviews list */
.reviews {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.reviews li {
  background: #f9f9f9;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.reviews li em {
  font-style: normal;
  font-weight: bold;
  color: #86003c;
}

/* Booking images grid */
.booking-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.booking-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.booking-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .3s;
}

.booking-image:hover img {
  transform: scale(1.05);
}

/* Featured badge */
.booking-image .badge.featured {
  position: absolute;
  top: 6px;
  right: 6px;
  background: gold;
  color: #333;
  padding: 2px 6px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 3px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .booking > h3 {
    font-size: 1.1rem;
  }

  .booking-images {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}
