#button-lte {
    background-color: #ffffff !important;
    border-color: #060708 !important;
    color: #060708 !important;
}
/* Banner defaults: fits content naturally */
.hero-banner {
  height: auto;           /* content defines height */
  display: block;         /* natural stacking */
  padding: 2rem 1.5rem;   /* some spacing around text */
  box-sizing: border-box;
  text-align: center;
}

/* Headings */
.hero-banner h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hero-banner h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Service lines with icons */
.hero-banner p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hero-banner .service-icon {
  color: #9CA3AF;
  margin-right: 8px;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .hero-banner {
    padding: 1rem;       /* smaller padding for mobile */
  }
  
  .hero-banner h5 {
    font-size: 1rem;
  }
  
  .hero-banner h3 {
    font-size: 1.4rem;
  }
  
  .hero-banner p {
    font-size: 0.9rem;
  }
}
.provider-card.coming-soon-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    max-width: 850px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

/* IMAGE */
.provider-avatar {
    flex: 0 0 170px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
}

.provider-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.provider-content {
    flex: 1;
    text-align: left;
}

/* NAME */
.provider-name {
    margin-bottom: 6px;
}

/* STATUS */
.provider-status {
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 12px;
}

/* META — FORCE LEFT ALIGN (THIS IS THE KEY FIX) */
.provider-meta {
    text-align: left !important;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.provider-meta strong {
    color: #b88d3e;
}

/* BIO */
.provider-bio {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}

/* CTA BUTTON */
.provider-cta {
    margin-top: 15px;
}

.book-now-btn {
    display: inline-block;
    background: #b88d3e;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.book-now-btn:hover {
    background: #9f7732;
    transform: translateY(-1px);
}

/* MOBILE */
@media (max-width: 768px) {
    .provider-card.coming-soon-card {
        flex-direction: column;
        text-align: center;
    }

    .provider-avatar {
        margin: 0 auto 15px auto;
    }

    .provider-content {
        text-align: center;
    }

    /* IMPORTANT: KEEP META LEFT EVEN ON MOBILE */
    .provider-meta {
        text-align: left !important;
    }

    .provider-bio {
        text-align: left !important;
    }
	.status-badge {
    display: inline-block !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
    border: 1px solid transparent !important;
}

.provider-card .status-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    margin-bottom: 10px !important;
    border: 1px solid transparent !important;
}

/* ACTIVE */
.provider-card .status-badge.active {
    background: #e8f5ee !important;
    color: #1f7a4a !important;
    border-color: #bfe6cc !important;
}

/* WAITLIST */
.provider-card .status-badge.waitlist {
    background: #fff6e5 !important;
    color: #a66a00 !important;
    border-color: #f3d49a !important;
}

/* COMING SOON */
.provider-card .status-badge.coming-soon {
    background: #eef2f7 !important;
    color: #4a5a6a !important;
    border-color: #cfd8e3 !important;
}