/* ======================================================
   CORE FIX (Required)
====================================================== */
.hidden {
  display: none !important;
}

/* ======================================================
   LAYOUT
====================================================== */
.alex-section {
  padding: 24px;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
  position: relative;
  margin-bottom:30px;
}

/* ======================================================
   HEADER
====================================================== */
.alex-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.alex-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: .3px;
}

/* ======================================================
   FILTERS
====================================================== */
.alex-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.alex-filters select {
  appearance: none;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid #dbeafe;
  min-width: 160px;
  background-color: #ffffff;
  color: #374151;
  font-size: 1.5rem;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  transition: all .15s ease;
}

.alex-filters select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.2);
}

/* ======================================================
   DOCTOR CARD
====================================================== */
.alex-card {
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 18px 14px 20px;
  margin: 18px 6px 36px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(16,24,40,.1);
  transition: transform .2s ease, box-shadow .2s ease;
}

.alex-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(16,24,40,.18);
}

/* IMAGE */
.alex-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
  border: 4px solid #eff6ff;
}

/* NAME */
.alex-card h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111827;
  margin: 6px 0 2px;
}

/* META */
.alex-card small {
  font-size: 1.2rem;
  color: #6b7280;
}



/* STATS */
.alex-card .rating {
  margin-top: 8px;
  font-size: 1.2rem;
  color: #f59e0b;
}

.alex-card .fees {
  margin-top: 4px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #16a34a;
}

.alex-card .exp {
  margin-top: 2px;
  font-size: 1.2rem;
  color: #9ca3af;
}

/* ======================================================
   NO DATA
====================================================== */
.alex-nodata {
  background: #ffffff;
  padding: 36px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
}

.alex-nodata h3 {
  margin: 0;
  color: #374151;
}

.alex-nodata p {
  margin-top: 6px;
  font-size: .9rem;
  color: #6b7280;
}

/* ======================================================
   SWIPER FIX
====================================================== */
.swiper {
  padding-bottom: 32px;
}

.swiper-pagination-bullet {
  background: #93c5fd;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #2563eb;
}

/* ======================================================
   CREDIT BADGE (BOTTOM RIGHT)
====================================================== */
.alex-credit {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 1rem;
  color: #6b7280;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  z-index: 9999;
}

.alex-credit a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.alex-credit a:hover {
  text-decoration: underline;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 640px) {
  .alex-header {
    flex-direction: column;
    align-items: stretch;
  }

  .alex-filters select {
    width: 100%;
  }
}
