/* ═══════════════════════════════════════════════════
   cta-banner.css — Compact Inline CTA Banner + WhatsApp
   <link rel="stylesheet" href="cta-banner.css"/>
═══════════════════════════════════════════════════ */

/* ══════════════════════════════════════
   COMPACT MINI BANNER
══════════════════════════════════════ */
.ctab-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0f7f4;
  border-radius: 14px;
  padding: 24px 28px 24px 32px;
  max-width: 960px;       /* compact width — fits in article/sidebar */
  margin: 20px auto;
  gap: 16px;
  border: 1px solid #d4ece3;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
}

/* Subtle blob */
.ctab-mini::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(26,107,74,0.05);
  pointer-events: none;
}

/* ── Left text area ── */
.ctab-mini-text {
  flex: 1;
  min-width: 0;
  z-index: 1;
}

.ctab-mini-heading {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.45;
  margin: 0 0 16px;
}

/* ── Buttons ── */
.ctab-mini-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 7px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.ctab-mini-btn:hover {
  transform: translateY(-2px);
}

/* Purple — Book Appointment */
.ctab-btn-purple {
  background: #5c3d99;
  color: #fff;
  box-shadow: 0 4px 14px rgba(92,61,153,0.3);
}
.ctab-btn-purple:hover {
  background: #4a2f80;
  box-shadow: 0 6px 20px rgba(92,61,153,0.4);
  color: #fff;
}

/* Green — Calculate Cost */
.ctab-btn-green {
  background: #1a6b4a;
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,107,74,0.28);
}
.ctab-btn-green:hover {
  background: #134f37;
  box-shadow: 0 6px 20px rgba(26,107,74,0.38);
  color: #fff;
}

/* ── Right illustration ── */
.ctab-mini-img {
  flex-shrink: 0;
  width: 150px;
  z-index: 1;
}

.ctab-mini-img svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 520px) {
  .ctab-mini {
    flex-direction: column;
    padding: 24px 20px;
    text-align: center;
    max-width: 100%;
  }

  .ctab-mini-img {
    width: 130px;
    order: -1;
  }

  .ctab-mini-btn {
    width: 100%;
    justify-content: center;
  }
}


